search for: antrl

Displaying 1 result from an estimated 1 matches for "antrl".

Did you mean: antlr
2008 Jul 09
3
[LLVMdev] Generating machine code directly to memory
...: Scripting language (Antlr) -> LLVM IR -> (Optimization) -> Raw Machine code -> (Transport media) -> Execution The idea is that I could compile my scripts directly to asm without any extra steps and in run-time. Then those asm pieces could be loaded back later without need to use Antrl/LLVM at all. I've already been able to turn script into asm files using antlr/llvm but there's an extra step to compile the asm... Is it possible to emit code directly to memory and then execute it somehow? LLVM BC with JIT is just fine, but I really would like to release my soft witho...