Browse thread
JIT-compilation for OCaml?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2001-01-03 (13:37) |
From: | Mattias Waldau <mattias.waldau@t...> |
Subject: | RE: JIT-compilation for OCaml? |
If you just want portability, then why not generate Java-byte code instead of Ocaml-bytecode. Then you can distribute you Ocaml-applications in Jars. And you can benefit from the JIT of SUN etc, for example SUN's latest JIT called HotSpot. This has been done for many languages, for example JPython. See http://grunge.cs.tu-berlin.de/~tolk/vmlanguages.html for more examples. /mattias > Certainly! I definitely don't want to replace the normal byte code > interpreter with a purely JIT-one. My motivation was rather portability + > speed rather than speed alone. For the latter "ocamlopt" is more than > good enough, and for portability we have the byte code compiler. But > if you want to have portability with reasonable speed for demanding > applications...