-
Notifications
You must be signed in to change notification settings - Fork 2
Reading material
cgeoffroy edited this page Feb 23, 2012
·
4 revisions
LLVM tutorial Very good for getting up to speed on llvm and the way it works. LLVM language reference Comprehensive reference of the llvm IR language
OCaml marshalled format Describes the serialization of Ocaml data and code into Ocaml executable files
OCaml instructions All ZAM instructions. This is the only comprehensive guide about Ocaml instructions. very useful
The Zinc Experiment Paper by X. Leroy on the initial implementation of the ZAM
VMKit A paper about VMKit. Quite vague and outdated but does give some context.
svn co http://llvm.org/svn/llvm-project/vmkit/branches/multi-vm
cd multi-vm
svn update -r r121368
ls tools/toy-vm
OCAMLJIT a faster Just-In-Time Ocaml Implementation
Just-In-Time compilation of OCaml byte-code
OCamlJIT 2.0 - Faster Objective Caml