search for: ocamlnews

Displaying 6 results from an estimated 6 matches for "ocamlnews".

2009 Apr 05
3
[LLVMdev] Suggestion for VM porting to LLVM
Hi Mike, thanks for the suggestion. Do you know if there are any articles around that explains how to use LLVM to build a VM that should work like mine ? I've read something around (mostly source code) but a good article/doc will be perfect Gabriele Il giorno 04/apr/09, alle ore 19:23, Mike Stump ha scritto: > On Apr 4, 2009, at 1:20 AM, Gabriele Farina wrote: >> Which
2009 Jan 25
2
[LLVMdev] OCaml Journal article: Building a Virtual Machine with LLVM
...ion of high-level languages using LLVM. In particular, these new articles are more pragmatic in nature and go beyond describing working compilers to also discuss testing, debugging and the performance of LLVM-based compilers. The first article in this new series has just been published: http://ocamlnews.blogspot.com/2009/01/building-virtual-machine-using-llvm.html This article describes a basic design for a High-Level Virtual Machine (HLVM) and walks through a core implementation written in OCaml that can JIT compile functions from a simple language (with unit, bool, int, float and array types...
2009 Feb 01
0
[LLVMdev] OCaml Journal article: Building a Virtual Machine with LLVM
...In particular, these new articles > are more > pragmatic in nature and go beyond describing working compilers to also > discuss testing, debugging and the performance of LLVM-based > compilers. > > The first article in this new series has just been published: > > http://ocamlnews.blogspot.com/2009/01/building-virtual-machine-using-llvm.html > > This article describes a basic design for a High-Level Virtual > Machine (HLVM) > and walks through a core implementation written in OCaml that can > JIT compile > functions from a simple language (with unit, bo...
2009 Jun 24
0
[LLVMdev] New HLVM examples
...to be among our most popular. Consequently, we have decided to run another series of related articles that build upon this foundation in order to develop complete compilers. The first article describes a compiler written in only 228 lines of code that can execute interesting programs:   http://ocamlnews.blogspot.com/2009/06/compiler-development-part-1.html For example, the compiler described in the article can execute the following OCaml-like program to print the Mandelbrot set: # let rec pixel((n, zr, zi, cr, ci) : int * float * float * float * float) : unit =     if n = 65536 then print_char...
2008 Dec 30
0
[LLVMdev] first two chapters for the ocaml bindings in svn
On Sat, Sep 20, 2008 at 9:57 AM, Jon Harrop <jonathandeanharrop at googlemail.com> wrote: > I think your new OCaml tutorials and the original C++ ones are absolutely > brilliant! Thanks Jon. I'm sorry I missed this message. Now that you've had some more experience with llvm, would you be interested in adding to the doc some performance and GC stuff? I haven't personally
2008 Sep 20
2
[LLVMdev] first two chapters for the ocaml bindings in svn
On Monday 31 March 2008 09:56:45 Erick Tryzelaar wrote: > The full series of the ocaml tutorial is done! You can find it here: > > http://llvm.org/docs/tutorial/ > > Please let me know if you have any comments, bugs, suggestions, and > etc. I'll send a mail to the ocaml mailing list tomorrow to drum up > some interest from the other ocaml users. I think your new OCaml