Displaying 4 results from an estimated 4 matches for "foo8".
Did you mean:
foo
2012 Oct 19
4
[LLVMdev] How to represent __attribute__((fastcall)) functions in the IL
...ge conventions on when a register is used
or not. For example:
void __attribute__((fastcall)) foo1(int y);
will take 'y' in ecx, but
struct S1 {
int x;
};
void __attribute__((fastcall)) foo2(struct S1 y);
will use the stack. Even more surprising is that
void __attribute__((fastcall)) foo8(struct S1 a, int b);
will take 'a' in the stack but 'b' in *edx*. That is, the first
argument consumed ecx but didn't use it. The implement this the IL
needs to be able to represent that
* an argument will go on registers
* a register was consumed but unused
A way to do this i...
2012 Oct 19
0
[LLVMdev] How to represent __attribute__((fastcall)) functions in the IL
...e:
>
> void __attribute__((fastcall)) foo1(int y);
>
> will take 'y' in ecx, but
>
> struct S1 {
> int x;
> };
> void __attribute__((fastcall)) foo2(struct S1 y);
>
> will use the stack. Even more surprising is that
>
> void __attribute__((fastcall)) foo8(struct S1 a, int b);
>
> will take 'a' in the stack but 'b' in *edx*. That is, the first
> argument consumed ecx but didn't use it. The implement this the IL
> needs to be able to represent that
> * an argument will go on registers
> * a register was consumed b...
2007 Jul 30
1
filenames
Dear all,
I want to create filename from a loop, say, i=(1:10), and the final names
will be file1.csv, file2.csv, file3.csv
in Python, it seems easer as - "file"+str(i) +'.csv , but how can i do in R
> list = as.character(1:10)
> list
[1] "1" "2" "3" "4" "5" "6" "7" "8" "9"
2003 Apr 07
4
Justifying only the X-label
...as at cisco.com
-------------- next part --------------
my.yugo.Apr.2003.other.info <- read.table(file="/auto/solperf/tgu/ActiveParsedFiles/yugo/Apr.2003/other.info", sep="=", header=TRUE)
names(my.yugo.Apr.2003.other.info)
attach(my.yugo.Apr.2003.other.info)
bitmap("foo8.bmp",type = "png256", height = 4, width = 4,)
par( omi = c(.5,.1,0,0))
plot(total.views, xlab = "Time", ylab = "Total number of views", main = "yugo's Total number of views Apr.2003", type="l", col="red", xaxt = "n",...