Improve panics/traps from imported functions #857
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit performs a few refactorings and fixes a bug as well. The
changes here are:
The
thread_local!in thewasmtimecrate for trap information isremoved. The thread local in the
wasmtime_runtimecrate is nowleveraged to transmit trap information.
Panics in user-provided functions are now caught explicitly to be
carried across JIT code manually. Getting Rust panics unwinding
through JIT code is pretty likely to be super tricky and difficult to
do, so in the meantime we can get by with catching panics and resuming
the panic once we've resumed in Rust code.
Various take/record trap apis have all been removed in favor of
working directly with
Trapobjects, where the internal trap objecthas been expanded slightly to encompass user-provided errors as well.
This borrows a bit #839 and otherwise will...
Closes #848