Set Ready For Review
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM with a comment. (Didn't look at `src/wasm/interpreter/` as usual.)
['variant == jitless', {Please move this somewhere further down, so the `ALWAYS` block remains first. Perhaps around line 32, after the `variant in (jitless, ...` block?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
Hi Jakob, could you take another look? Many thanks!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Please move this somewhere further down, so the `ALWAYS` block remains first. Perhaps around line 32, after the `variant in (jitless, ...` block?
Marking as done.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[Wasm interpreter] Fix handling of globals storage
This fixes the Wasm interpreter build and all the tests after a
recent change to the handling of globals' storage.
The fix avoids caching the location of the globals because they can
be moved by the GC. Instead, the location is looked up on demand
when needed.
Also fixes an unrelated issue after a recent change to SafepointEntry.
Also fixes the build after a revert made to Managed<T>::raw(), which
does not return a std::shared_ptr<T> anymore.
Bug: 491318550
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |