search for: myproc

Displaying 6 results from an estimated 6 matches for "myproc".

Did you mean: myprog
2005 Aug 26
3
[LLVMdev] Mapping of class derivated and interfaces
...ent of "derived" is the "base" portion, thus having the same pointer. But what if it was not the first? For example with multiple derivation only one class can be in the first position: %base1 = type { int } %base2 = type { sbyte } %derived = type { %base1, %base2, long } void myProc(base2 obj) { } Now if you use get elementptr to obtain "base2" member of "derived" to pass it to myProc, then you're basically passing a different pointer, breaking instance identity among other things: public Derived global_var = new ....; main() { myProc(d); } void myPr...
2005 Aug 26
0
[LLVMdev] Mapping of class derivated and interfaces
...For example with multiple > derivation only one class can be in the first position: > > %base1 = type { int } > %base2 = type { sbyte } > %derived = type { %base1, %base2, long } This will not work with multiple inheritance but I assume we are talking about Java, right? > void myProc(base2 obj) > { > } > > Now if you use get elementptr to obtain "base2" member of "derived" to > pass it to myProc, then you're basically passing a different pointer, > breaking instance identity among other things: > > public Derived global_var = ne...
2005 Aug 26
0
[LLVMdev] Mapping of class derivated and interfaces
> Hi! i'm tring to figure out how classes and dependencies > can be mapped to llvm. > [snip] > how do i encode a function that takes "base" type > so that it also takes "derived" ? You'll notice that your function doesn't take an object of type base, but a pointer to it. This is important - in a language such as LLVM where actual structures can be
2005 Aug 25
5
[LLVMdev] Mapping of class derivated and interfaces
Hi! i'm tring to figure out how classes and dependencies can be mapped to llvm. I've read on docs that nesting can be used: class base { int Y; }; class derived : base { short Z; }; becomes: %base = type { int } %derived = type { %base, short } That's ok, but now the question is: how do i encode a function that takes "base" type so that it also takes "derived"
2008 Sep 18
0
[LLVMdev] Beginner needs some glue between Kaleidoscope and other docs
...code. Add custom optimization passes to support custom instruction optimization. -add information and/or code about the target hardware (registers, ...) to llvm to make it able to allocate registers. add a backend to llvm to support my instruction set and assembler syntax. (i.e. write a lib/Target/MyProc) Please, could you comment on this approach? Given the fact that my source and target are way less complex than e.g. C/x86, llvm should have enough (if not too many : ) facilities to achieve this. Thank you, Christian
2007 Jul 18
2
set up automatic running of R
Hi useR, I am trying to find how to schedule an automatic run of R periodically, I have written some scripts to extract data which are updated monthly on another server, my os is xp. The goal is that my script will run at a scheduled time every month and record the results to some directories. Now the scripts are done, only thing I need is to know how to let R run my scripts at a certain time,