search for: research_people

Displaying 4 results from an estimated 4 matches for "research_people".

2011 Feb 02
1
[LLVMdev] Compile function with limited set of registers? Jump to another function?
Hi James, Joshua is right, what you're trying to accomplish is quite known in the Java VM world ( http://domino.research.ibm.com/comm/research_people.nsf/pages/dgrove.oopsla01.html ). In order to express the "thunk" code in LLVM you need a full control of how registers are used (because otherwise they would mess up with the arguments). I haven't investigated enough to know if that's possible today in LLVM (I think it wasn'...
2007 Apr 03
0
Release: VMKNOPPIX(20070328) with Trusted Boot
...IMA(Integrity Measured Architecture) on TPM(Trusted Platform Module)1.2. Caution: The BIOS must deal with Trusted Boot to enable this function. Trusted GRUB: http://trousers.sourceforge.net/grub.html IMA: http://domino.research.ibm.com/comm/research_people.nsf/pages/sailer.ima.html ***Help us***: If you have vTPM on your virtual machine, please boot with this ISO image and report. If possible we want to integrate vTPM on our VMKnoppix and OS Circular. OS Circular: VMKNOPPIX in...
2011 Jan 31
0
[LLVMdev] Compile function with limited set of registers? Jump to another function?
Thanks, that's a good idea - I'll have a look through the VMKit source. -- James On 31 January 2011 21:39, Joshua Warner <joshuawarner32 at gmail.com> wrote: > Hi James, > > I see the problem now. You might look at VMKit (a Java VM build with the > LLVM JIT compiler) - I would expect it uses a similar method for resolving > interface calls (the method, if I
2011 Jan 31
3
[LLVMdev] Compile function with limited set of registers? Jump to another function?
Hi James, I see the problem now. You might look at VMKit (a Java VM build with the LLVM JIT compiler) - I would expect it uses a similar method for resolving interface calls (the method, if I understand it correctly, is well-known in the Java world). I've CC'd the main dev behind VMKit - he might be able to lend some insight. --Joshua On Mon, Jan 31, 2011 at 2:24 PM, James Williams