-
Notifications
You must be signed in to change notification settings - Fork 323
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
Add exception paragraph to JSPI article #703
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, assuming you think this will be clear enough for the target audience.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO, I am not sure that this is good advice for someone using JSPI.
JSPI does include an exception handling provision: a rejected Promise returned by a call to an import becomes an exception in your code: your import call raises an exception.
Similarly, if your main program raises an exception, it becomes a rejected Promise.
OTOH, if you are using a language that does not have an exception mechanism, then, yes, you need to map rejected promises into a return code of some kind.
Are there any toolchains that actually handle the exceptions thrown by JSPI properly? @aheejin or @brendandahl, do you know if Emscripten supports this? If so, it would be good to add an example of this to the docs, otherwise I think the current recommendation in this PR makes sense. |
As long as they are JS exceptions, Wasm EH instructions will treat that as such, meaning, |
I haven't experimented with JSPI and exceptions. Maybe @SPY knows the status in V8? |
But does that work out of the box with Emscripten, @aheejin? |
For For But this JS tag spec has not landed yet in the EH repo. I think we shouldn't assume this feature as finished at this point. |
Thanks. Since Emscripten does not support smooth interop with JSPI exceptions (or any JS exceptions) at the moment, I think this PR should be good to land as-is. |
I am drafting some text to more fully explain this. However, it turns out that returning multiple values (result+errorcode) from JS into wasm/C is completely non-trivial :( |
I propose the following wording re exceptions: Some programming languages, such as C, do not have explicit mechanisms for handling exceptions. In addition, dealing with foreign exceptions in languages that do support exceptions is always likely to be difficult and not very portable. So, while JSPI does support exceptions -- in the sense that a rejected One way of dealing with this is to map the result of an operation into a combination of a result value and an error code. In this strategy, you would need to modify the JS of the function you are calling to catch all exceptions and map them into the result code/result value pair. For example, one might write: function suspFun(args...){
try{
return [ok,realFun(args)];
} catch (E){
return [bad,E];
}
} On the WebAssembly side, you would need to have code that checked the result code to ensure that the results are as expected. In this case, though, it is unfortunately very awkward to deal with arrays coming from JS in C. What we actually have to write is closer to: const ok = 0;
const bad = 1;
function suspFun(ptr,args...){
try{
setValue(ptr,ok,i32);
setValue(ptr+4,realFun(args),i32)); // depending on the return type of realFun
return ptr;
} catch (E){
setValue(ptr,bad,i32);
setValue(ptr+4,E,*); // We can't really handle exceptions in C
return ptr;
}
} On the C/WebAssembly side, the call to the struct{
enum{ok,bad} code;
void *result
} RetSpec;
suspFun(&RetSpec,arg0,..,argn);
|
Perhaps we can simplify things by having an example where the suspended function just returns 0 on success and -1 on failure. The problem of returning multiple values into Wasm is a real problem, but not directly related to JSPI. |
Or we can not change the blog post at all; given that the issues are not actually JSPI-related. |
I think saying something about how to handle errors would be useful. This PR was motivated by a partner asking us about error handling with JSPI, and I'm sure other developers would wonder the same thing. The current content of this PR is the best advice we can give that works today with existing toolchains (i.e. Emscripten), so perhaps we can add "In the future, toolchains may make it easier to handle JS exceptions directly" and land this. |
This came up as a developer question.