Renato Golin
2009-Sep-12 19:31 UTC
[LLVMdev] Saving/restoring executable code from the the JIT?
2009/9/12 Reid Kleckner <rnk at mit.edu>:> It's not clear how valuable the feature is if users start to do things > like inlining pointers to heap allocated objects with guards as > optimizations.or what about register variables, or objects half as registers half in memory, or optimizations that exists on one machine (presence of FPU, MMU, etc) and not on others, byte sex, word size and many other problems... All of this is the job of serialization engine. I suppose the JIT vm has already many solutions for the cross-platform compatibility, but there will still be some lost context from one place/time to another.> I could imagine an IR class representing a pointer to an object on the > heap that gets serialized to bitcode as some kind of relocatable > symbol, and then re-resolved at runtime. If the corresponding symbol > doesn't exist at runtime, the implementation could choose to drop the > particular function on the floor and recompile from source.You could loose the program's state with that, which I think is the whole point. Maybe having a class that saves all values marked with a specific metadata (all the rest could potentially be reinitialized) as a globally accessed symbol and re-read (and deleted) at restart. It's responsibility of the programmer to say what's to be saved and what can be safely reinitialized. The IRBuilder could annotate during allocation, so the JIT would know which ones to save on suspend and keep track where they are. cheers, --renato Reclaim your digital rights, eliminate DRM, learn more at http://www.defectivebydesign.org/what_is_drm
Óscar Fuentes
2009-Sep-12 21:47 UTC
[LLVMdev] Saving/restoring executable code from the the JIT?
Renato Golin <rengolin at systemcall.org> writes:> or what about register variables, or objects half as registers half in > memory, or optimizations that exists on one machine (presence of FPU, > MMU, etc) and not on others, byte sex, word size and many other > problems... All of this is the job of serialization engine.[snip] My goal is to avoid waiting several minutes on application startup until optimization and native codegen ends. No suspending/restarting, just compiling, saving native generated code, and loading on future sessions, more akin a conventional compiler. Generating a dll is not an option because: 1. It will require distributing a linker. 2. It will require the presence of an import library satisfying the external symbols referenced by the dll, and some of those symbols are unknown until the application starts (this may not apply to unixes, but it does for windows). Essentially, LLVM would have to do the linker's work when the previously saved native code is loaded back by the application on the next session. 3. Some other reasons I forgot when studied the idea on the past. -- Óscar
Renato Golin
2009-Sep-13 10:23 UTC
[LLVMdev] Saving/restoring executable code from the the JIT?
2009/9/12 Óscar Fuentes <ofv at wanadoo.es>:> My goal is to avoid waiting several minutes on application startup until > optimization and native codegen ends. No suspending/restarting, just > compiling, saving native generated code, and loading on future sessions, > more akin a conventional compiler.Saving IR shouldn't be any problem, I guess there is already a way of doing this, and re-reading it by the JIT again.> 2. It will require the presence of an import library satisfying the > external symbols referenced by the dll, and some of those symbols are > unknown until the application starts (this may not apply to unixes, but > it does for windows). Essentially, LLVM would have to do the linker's > work when the previously saved native code is loaded back by the > application on the next session.No sense when you're just running on the VM. More hassle than savings. The JVM is a good example on how things go bad when you're linking native code. cheers, --renato Reclaim your digital rights, eliminate DRM, learn more at http://www.defectivebydesign.org/what_is_drm
Possibly Parallel Threads
- [LLVMdev] Saving/restoring executable code from the the JIT?
- [LLVMdev] Saving/restoring executable code from the the JIT?
- [LLVMdev] Saving/restoring executable code from the the JIT?
- [LLVMdev] Saving/restoring executable code from the the JIT?
- [LLVMdev] Having JIT resolve extern "C" functions declared in executible