Browse thread
[Caml-list] The Bytecode Interpreter...
-
Jonathan Roewen
- David MENTRE
- Jonathan Roewen
- Jonathan Roewen
[
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: | -- (:) |
| From: | David MENTRE <david.mentre@g...> |
| Subject: | Re: [Caml-list] The Bytecode Interpreter... |
Hello, 2005/10/21, Jonathan Roewen <jonathan.roewen@gmail.com>: > How does the toplevel differ from the bytecode interpreter? No difference. Toplevel expression are compiled as bytecode and then executed by bytecode interpreter. > Am I right that bytecode just runs in a VM? Yes. > Also, is the VM written in OCaml itself? No, in C (see directory byterun/ in ocaml source code). Yours, d.