Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] Random extra stuff after compiled functions"
2008 Jul 03
0
[LLVMdev] Random extra stuff after compiled functions
It could be stubs, data in text sections. Jump tables, constant pools,
etc.? Are they ever executed?
Evan
On Jul 3, 2008, at 2:15 AM, Gary Benson wrote:
> Hi all,
>
> When I've been disassembling JIT-compiled functions I've noticed they
> all have the same three random instructions after them:
>
> bns- cr5,0xd04bbfe8
> stfs f10,-16404(r3)
> stfs
2008 Jul 03
1
[LLVMdev] Random extra stuff after compiled functions
On Jul 3, 2008, at 11:06 AMPDT, Evan Cheng wrote:
> It could be stubs, data in text sections. Jump tables, constant pools,
> etc.? Are they ever executed?
>
> Evan
Almost certainly data not code. What are they in hex?
> On Jul 3, 2008, at 2:15 AM, Gary Benson wrote:
>
>> Hi all,
>>
>> When I've been disassembling JIT-compiled functions I've noticed
2012 Sep 26
1
Specifying a response variable in a Bayesian network
I'm trying to teach myself about Bayesian Networks and am working with the
following data and the bnlearn package.
I understand the conceptual aspects of BNs, but I'm not sure how to specify
the response variables in R when constructing
a dag plot. I've cecked ?hc and done numerous google searches without luck.
Can anyone help?
library("bnlearn")
2008 Apr 30
1
help text key F10 in pxelinux > 3.61
Hi,
i have a strange problem since pxelinux 3.62 with the F10 help key.
I configured this:
DISPLAY pxelinux.cfg/schlunix_new.txt
F1 pxelinux.cfg/helps/schlunix
F2 pxelinux.cfg/helps/schlunix64
F3 pxelinux.cfg/helps/rescue
F4 pxelinux.cfg/helps/rescue64
F5 pxelinux.cfg/helps/stress
F6 pxelinux.cfg/helps/stress64
F7 pxelinux.cfg/helps/dosimages
F8 pxelinux.cfg/helps/mailsystem
F9
2010 Oct 14
2
Stumped by extlinux After OS Upgrade
Hello fellow syslinux/extlinux users! Please forgive the long post, but I
believe my problem warrants the background info to understand the issue.
I've developed a specialized spin of Fedora that runs off CompactFlash.
The spin is actually produced by the livecd-tools package and is then
transferred to the CF card -- which has been formatted with ext3 -- using
livecd-tools'
2012 Sep 17
1
How to filter information from a big .csv table into a new table
Hi,
I have big .csv file. I would like to filter that file into a new table.
For example, I have .csv file as below:
f1 f2 f3 f4 f5 f6 f7 f9 f10 f11
t1 1 0 1 0 1 0 0 0 0 1
t2 1 0 0 0 0 1 1 1 1 1
t3 0 0 0 0 0 0 0 0 0 0
t4 1 0 0 0 1 0 0 0 0 0
t5 0 0 0 0 0 0 0 0 0 0
t6 0 0 0 0 0 0 0 0 0 0
2009 May 16
1
How to run stubdom with the most recent Xen 3.4 ?
Having fs-backend running in background, tried to start:-
root@ServerXen331:/etc/xen# cat f10.hvm-stubdom
kernel = "/usr/lib/xen/boot/hvmloader"
builder="hvm"
memory = 1024
name = "f10.hvm"
disk = [ ''phy:/dev/sdb11,hda,w'', ''phy:/dev/loop0,hdc:cdrom,r'' ]
vif = [ ''type=ioemu, bridge=eth0'' ]
device_model =
2013 Jan 31
0
[LLVMdev] Getting command line options to affect subtarget features
On Thu, 2013-01-31 at 11:29 -0600, Bill Schmidt wrote:
> On Thu, 2013-01-31 at 11:23 -0600, Bill Schmidt wrote:
> > On Thu, 2013-01-31 at 10:17 -0600, Bill Schmidt wrote:
> > >
> > > On Thu, 2013-01-31 at 09:42 -0600, Hal Finkel wrote:
> > > > ----- Original Message -----
> > > > > From: "Bill Schmidt" <wschmidt at
2009 Apr 04
1
Locally attached disk is seen, 40 gig PATA in USB enclosure is not.
Hi Folks,
When I boot ISOLinux, the locally attached disk is visible but the PATA
40 Gig in a USB attached enclosure is not. The locally attached disk
has no bearing on what I am doing and to avoid confusion will not be
mentioned again. Everything is happening on the 40 Gig.
Let me explain.
The goal is: Copy an installation iso to the disk, boot the disk and
install it on that disk. I have
2008 Apr 19
2
problem in caluclaring the multiple regression
I am trying to calculate the regression for the follwing input data stored in
'data.txt' file.I am reading this and storing it in the variable i .then i
am trying to get the predicted value using f1 as dependent and others
f2....f10 as independent variables.It is giving the following error. Also i
want that i shoul get one predicted value for each row(y). What should i do.
Please help me
2012 Sep 18
1
chunk row to new table/file
I have big .csv file. I would like to filter that file into a new table.
For example, I have .csv file as below:
f1 f2 f3 f4 f5 f6 f7 f9 f10 f11
t1 1 0 1 0 1 0 0 0 0 1
t2 1 0 0 0 0 1 1 1 1 1
t3 0 0 0 0 0 0 0 0 0 0
t4 1 0 0 0 1 0 0 0 0 0
t5 0 0 0 0 0 0 0 0 0 0
t6 0 0 0 0 0 0
2006 Nov 16
2
[LLVMdev] 1.9 Prerelease Available for Testing
On Thu, 16 Nov 2006, Tanya M. Lattner wrote:
>> We could just make the testsuite detect that all the targets weren't
>> built, and refuse to run the tests...
>
> No. I don't think thats a good solution. There are many other tests that
> should be run. I just need to fix that bug so we only run tests for the
> specific target we are on.
The issue is that we have
2007 Jul 19
2
(R) Using arguments for the empirical cumulative distribution function
Hi,
I have just started using R. Now I have the following problem:
I want to create an Empirical Cumulative Distribution Function and I only
came so far:
F10 <- ecdf(x)
plot(F10, verticals= TRUE, do.p = TRUE, lwd=3)
x=c(1.6,1.8,2.4,2.7,2.9,3.3,3.4,3.4,4,5.2)
Now I'd like to use arguments such as xlabs and main but I don't know how to
integrate them.
I hope someone can help me, I am
2007 Aug 28
1
HDL F10 brazilian doorbell device + TDM2400
Hi,
I'm trying to connect an HDL F10 device for a friend living in Brazil to
the TDM2400 on his Asterisk server.
That device should behave like a normal doorbell and it is if connected
to an analog PBX.
I connected to the TDM2400 and everything works fine except for one
thing: when the called party hangs up his phone, the F10 HDL device does
not hang up.
I'm not brazilian and not
1999 Nov 12
3
problems running samba on Caldera 2.3?
I have the default installation of samba (2.0.5) that came with Caldera OL
2.3, but it doesn't seem to be starting up properly, nor is SWAT working.
When I run the script 'samba start', I get the message "Starting samba:
smbd nmbd", but when I check the running processes, only nmbd shows up.
Running smbstatus gives me the message "Couldn't open status file
2010 Feb 14
1
mlogit function cut off formular
I'm trying to fit a multinominal logistic model using package mlogit. I have
15 independent variables. The code looks like this:
m<-mlogit(score~0|f1+f2+f3+f4+f5+f6+f7+f8+f9+f10+f11+f12+f13+f14+f15, data,
reflevel="1")
And it gives the following error message:
Error in parse(text = x) :
unexpected ')' in "score ~ 0 + alt:(f1 + f2 + f3 + f4 + f5 + f6 + f7 + f8
+ f9
2018 Dec 11
2
efi config hang
> What is F0?
See "prompt.cfg" in Debian's "hd-image"'s boot.img.
> or how do I test it?
That's an old directive that was "replaced" by the equivalent 'F10'
directive (so you test it in the same exact way).
BTW, in other distribution media such as Debian's ISO images, it is
already changed from "f0 f10.txt" to
2009 Mar 25
3
freeradius version
Hi All,
The freeradius version in CentOS 5 is ancient, so I've been considering
rebuilding the Fedora 10 rpm for freeradius-2.1.3 on CentOS. That means
I'll have to maintain the package, and I'm not an uber packager.
Normally I wouldn't care, but in this case I do because the freeradius
server is going to be critical.
So, should I rebuild the F10 rpm, or should I just stick with
2009 May 27
1
How to write a loop?
Dear R helpers,
Following is a R script I am using to run the Fast Fourier Transform. The csv files has 10 columns with titles m1, m2, m3 .....m10.
When I use the following commands, I am getting the required results. The probelm is if there are 100 columns, it is not wise to define 100 commands as fk <- ONS$mk and so on. Thus, I need some guidance to write the loop for the STEP A and
2009 May 22
4
Prog running in Wine OK but needs Alt+F10 to maximise.
Hi
I've got 'WriteOutloud' (talking wordprocessor for dyslexic children) working pretty well on an Asus Eeepc (Xandros) and on an Acer Aspire One (Kuki Linux) I'm using Wine 1.0.1 on both machines. What happens is that the prog starts up normally then immediately minimises to the taskbar. To make it run fullscreen you have to click on it and press Alt+F10
Although not a serious