• Thibaud Michaud's avatar
    [wasm] Handle arguments in stack-switching export wrapper · 921135c7
    Thibaud Michaud authored
    Use the existing generic js-to-wasm wrapper to handle arguments in
    the stack-switching export wrapper, by combining them into a single
    helper function parameterized by a boolean.
    
    If the stack_switch parameter is false, the generated js-to-wasm wrapper
    is the same as before.
    
    If the stack_switch parameter is true, we allocate and switch to the new
    stack before starting to process the parameters. To load the parameters,
    we also keep a pointer to the old stack.
    After the call, we convert the return value according to the return type
    as usual, and then switch back to the parent stack (which may be
    different than the original stack, but has a compatible stack frame
    layout).
    If the stack suspends during the call, control-flow jumps right before
    we deconstruct and leave the frame, and returns the Promise as an
    externref in the return register.
    
    R=ahaas@chromium.org,jkummerow@chromium.org
    CC=fgm@chromium.org
    
    Bug: v8:12191
    Change-Id: If3f8eaba8edebe6e98d4738f79f895fdb5322adc
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3460410Reviewed-by: 's avatarJakob Kummerow <jkummerow@chromium.org>
    Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
    Commit-Queue: Thibaud Michaud <thibaudm@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#79148}
    921135c7
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
ast Loading commit data...
base Loading commit data...
baseline Loading commit data...
bigint Loading commit data...
builtins Loading commit data...
codegen Loading commit data...
common Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
d8 Loading commit data...
date Loading commit data...
debug Loading commit data...
deoptimizer Loading commit data...
diagnostics Loading commit data...
execution Loading commit data...
extensions Loading commit data...
flags Loading commit data...
handles Loading commit data...
heap Loading commit data...
ic Loading commit data...
init Loading commit data...
inspector Loading commit data...
interpreter Loading commit data...
json Loading commit data...
libplatform Loading commit data...
libsampler Loading commit data...
logging Loading commit data...
numbers Loading commit data...
objects Loading commit data...
parsing Loading commit data...
profiler Loading commit data...
protobuf Loading commit data...
regexp Loading commit data...
roots Loading commit data...
runtime Loading commit data...
sandbox Loading commit data...
sanitizer Loading commit data...
snapshot Loading commit data...
strings Loading commit data...
tasks Loading commit data...
temporal Loading commit data...
third_party Loading commit data...
torque Loading commit data...
tracing Loading commit data...
trap-handler Loading commit data...
utils Loading commit data...
wasm Loading commit data...
web-snapshot Loading commit data...
zone Loading commit data...
DEPS Loading commit data...
DIR_METADATA Loading commit data...
OWNERS Loading commit data...