-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support OCaml Multicore #1088
Comments
Js_of_ocaml doesn't support ocaml multicore
- GETFIELD0, GETFIELD1, GETFIELD2, GETFIELD3, GETFIELD, GETFLOATFIELD,
+ GETFIELD0, GETFIELD1, GETFIELD2, GETFIELD3, GETFIELD,
+ GETMUTABLEFIELD0, GETMUTABLEFIELD1, GETMUTABLEFIELD2, GETMUTABLEFIELD3,
+ GETMUTABLEFIELD, GETFLOATFIELD,
|
IIRC @Armael and @kayceesrk worked on supporting multicore in jsoo. I dont know what they ended up with |
I thought it might be possible to compile plain OCaml code which does not use any of the multicore features to JS. However given that the bytecode instructions have changed, it is a more substantial task than I expected. I believe multicore will be part of OCaml 5, so this issue might become relevant again soon. |
I've a branch that propagate changes for some of the instructions. But it fail to compile the |
I've opened an issue regarding the instructions/opcodes reuse. ocaml-multicore/ocaml-multicore#475 |
There is relevant prior work done on supporting Golang's goroutines (which have M:N mapping to real threads with smart runtime scheduler on the native Golang compilation target) in Gopherjs project [1]. What they seem to be doing is unwinding stack when blocking call is encountered and reconstruct it later when it is to be resumed. It works well in practice - when playing around with it I was just copy pasting some Go code using threads and watched it somehow work in JS, that felt like magic. May be something similar could be done for js_of_ocaml to support multicore and effects? |
From an effects perspective I thought I would just flag that I managed to port some of https://github.com/Armael/js_of_ocaml to the From the root of the project (with a
I tried a lot to get this to work with examples using js_of_ocaml libraries but the CPS transform wasn't happy (or I ported it incorrectly). I think this might have something to do with |
I think the reason is that the CPS translation I implemented back then is not correct! :D |
Do you have more information about the incorrect implementation worth keeping track of ? |
Just to clarify what I meant by "...something to do with Printexc...", when compiling programs that tried to use effects and say used |
I've updated my branch for multicore.4.12+domains -> https://github.com/ocsigen/js_of_ocaml/tree/multicore-412 |
We now have #1265 |
#1340 has been merged. |
Describe the bug
When compiling code using the OCaml Multicore compiler, I get the following error message:
dune build jsoo js_of_ocaml .js/stdlib/std_exit.cmo.js (exit 1) (cd _build/default/.js/stdlib && /home/pkl/.opam/4.10.0+multicore+no-effect-syntax/bin/js_of_ocaml --pretty --source-map-inline -o std_exit.cmo.js /home/pkl/.opam/4.10.0+multicore+no-effect-syntax/lib/ocaml/std_exit.cmo) /home/pkl/.opam/4.10.0+multicore+no-effect-syntax/bin/js_of_ocaml: You found a bug. Please report it at https://github.com/ocsigen/js_of_ocaml/issues : Error: File "compiler/lib/parse_bytecode.ml", line 693, characters 2-8: Assertion failed make: *** [Makefile:4: all] Error 1
Expected behavior
Code compiles without problems.
Versions
4.10.0+multicore+no-effect-syntax opam switch
The text was updated successfully, but these errors were encountered: