[LLVMdev] Suggestion for VM porting to LLVM

Jon Harrop jon at ffconsultancy.com
Sat Apr 4 10:46:14 PDT 2009


On Saturday 04 April 2009 09:20:21 Gabriele Farina wrote:
> - generate IR from my complier;
> - build a VM that converts at runtime my bytecode to IR and executes it;
>
> I largely prefer the second option because it would be great if I can
> continue to use to old programs without having to recompile them.
>
> Which approach do you suggest ? are there any alternatives ?

I've done something similar with HLVM, albeit for a new VM that uses a new 
representation. I found the combination of OCaml and LLVM to work extremely 
well. OCaml makes it very easy to manipulate programs and its LLVM bindings 
make it very easy to JIT compile and execute native code. My entire VM 
(including GC) is only 1kLOC.

-- 
Dr Jon Harrop, Flying Frog Consultancy Ltd.
http://www.ffconsultancy.com/?e



More information about the llvm-dev mailing list