| Anonymous | Login | Signup for a new account | 2013-05-21 10:08 CEST | ![]() |
| Main | My View | View Issues | Change Log | Roadmap |
| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | ||||||||||
| ID | Project | Category | View Status | Date Submitted | Last Update | ||||||
| 0005664 | OCaml | OCaml runtime system | public | 2012-06-27 15:54 | 2012-07-24 21:42 | ||||||
| Reporter | gerd | ||||||||||
| Assigned To | |||||||||||
| Priority | high | Severity | feature | Reproducibility | have not tried | ||||||
| Status | acknowledged | Resolution | open | ||||||||
| Platform | OS | OS Version | |||||||||
| Product Version | 4.00.0+beta2/+rc1 | ||||||||||
| Target Version | Fixed in Version | ||||||||||
| Summary | 0005664: Wish: caml_unregister_frametable | ||||||||||
| Description | Hi, I'd like to see a function caml_unregister_frametable that removes a frame table that was previously registered. Background: I'm currently experimenting with a JIT compiler where the input is an algebraic expression and the output machine code. The resulting code can be called as OCaml function, and the code mainly calls other OCaml functions. A very simple generator, and it works well so far, with a little drawback: one cannot deallocate the generated code anymore, because there is no way to unregister the also generated frametable from the OCaml runtime. caml_unregister_frametable would just have to remove the table from the linked list "frametables", and create the hash tables again. Simple to do, and I will happily provide a patch if this wish is granted. | ||||||||||
| Additional Information | Of course, I know I depend on the internal calling conventions of OCaml, and the JIT compiler will always be very specific to the OCaml version. The intention of the JIT compiler is to remove interpretation overhead, especially the cost of random indirect jumps. Even with the minimalistic approach I'm currently following, I see already speedups. Why the need for deallocation of generated code? The compiler is also used in server context where the expressions to compile come from a client. I'm doing this right now for a company, but there is hope that I can release the compiler, hopefully driving the discussion. | ||||||||||
| Tags | No tags attached. | ||||||||||
| Attached Files | |||||||||||
Notes |
|
|
(0007765) gerd (reporter) 2012-07-17 16:42 |
Attached you find a patch: it does not only add caml_unregister_frametable, but also improves the management of the hash table. If new frametables are registered, the hash table is not always rebuilt, but entries are directly added so far the headroom allows this. I observed that the rebuilding of the hash table can take a considerable amount of time (several hundred milliseconds, even for a moderately-sized program), so this should be better avoided if possible. If no frametables are dynamically added, the code behaves as before. The patch got some testing, but not yet ultimately much. |
Issue History |
|||
| Date Modified | Username | Field | Change |
| 2012-06-27 15:54 | gerd | New Issue | |
| 2012-07-17 14:30 | doligez | Priority | normal => high |
| 2012-07-17 14:30 | doligez | Status | new => acknowledged |
| 2012-07-17 16:36 | gerd | File Added: ocaml-frametable.patch | |
| 2012-07-17 16:42 | gerd | Note Added: 0007765 | |
| Copyright © 2000 - 2011 MantisBT Group |