• clemensh's avatar
    [wasm] Provide better stack traces for asm.js code · 5d9fa102
    clemensh authored
    For the asm.js to WASM pipeline, the current stack traces only show
    low-level WASM information.
    This CL maps this back to asm.js source positions.
    It does so by attaching the asm.js source Script to the compiled WASM
    module, and emitting a delta-encoded table which maps from WASM byte
    offsets to positions within that Script. As asm.js code does not throw
    exceptions, we only store a mapping for call instructions.
    
    The new AsmJsWasmStackFrame implementation inherits from
    WasmStackFrame, but contains the logic to provide the source script and
    the position inside of it.
    What is still missing is the JSFunction object returned by
    CallSite.getFunction(). We currently return null.
    
    R=jgruber@chromium.org, titzer@chromium.org
    BUG=v8:4203
    
    Review-Url: https://codereview.chromium.org/2404253002
    Cr-Commit-Position: refs/heads/master@{#40205}
    5d9fa102
Name
Last commit
Last update
..
benchmarks Loading commit data...
cctest Loading commit data...
common Loading commit data...
fuzzer Loading commit data...
inspector Loading commit data...
inspector_protocol_parser_test Loading commit data...
intl Loading commit data...
js-perf-test Loading commit data...
memory Loading commit data...
message Loading commit data...
mjsunit Loading commit data...
mozilla Loading commit data...
preparser Loading commit data...
promises-aplus Loading commit data...
simdjs Loading commit data...
test262 Loading commit data...
unittests Loading commit data...
webkit Loading commit data...
BUILD.gn Loading commit data...
bot_default.gyp Loading commit data...
bot_default.isolate Loading commit data...
default.gyp Loading commit data...
default.isolate Loading commit data...
optimize_for_size.gyp Loading commit data...
optimize_for_size.isolate Loading commit data...
perf.gyp Loading commit data...
perf.isolate Loading commit data...