• Ingvar Stepanyan's avatar
    [wasm] Pretend that DWARF section is a fake source map · 1b5f3be0
    Ingvar Stepanyan authored
    Unfortunately, codebase contains lots of places that use one of the two
    formats as an internal representation for Wasm locations:
    1) {line: 0, column: byte offset within entire module}
    2) {line: function index, column: byte offset within function}
    
    These places choose these formats interchangeably and convert from one
    to another depending on the presence of source map URL in Wasm.
    
    This is not very convenient and makes it hard to add support for DWARF
    which should behave just like Wasm with source maps - that is, report a
    raw Wasm script instead of fake scripts per each disassembled function,
    and use representation (1) instead of (2) internally.
    
    I tried to refactor these locations and avoid checking for source map
    URLs in the previous CL - https://crrev.com/c/v8/v8/+/1833688. However,
    it quickly got out of hand, and updating code in one place just kept
    revealing yet another that gets broken by the changes, so I made a
    decision to abandon it and leave to someone who knows the codebase
    better.
    
    Instead, this CL is based on https://crrev.com/c/v8/v8/+/1809375, but,
    rather than trying to integrate DWARF separately and only for supported
    agents, it pretends that encountering DWARF section is the same as
    encountering a `sourceMappingURL` section with fake URL "wasm://dwarf".
    
    This ensures that Wasm with DWARF behaves exactly in the same way as
    Wasm with source maps, just like we want, with minimal changes to the
    codebase. The only downside is that frontends without DWARF support
    won't get even a disassembled version of Wasm that contains DWARF info.
    This is unfortunate, but, as per previous discussions, should be fine
    given current state of Wasm debugging.
    
    Change-Id: Ia7256075e4bfd2f407d001d02b96883d7267436e
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1834341
    Commit-Queue: Ingvar Stepanyan <rreverser@google.com>
    Reviewed-by: 's avatarYang Guo <yangguo@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#64157}
    1b5f3be0
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
ast Loading commit data...
base 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...
sanitizer Loading commit data...
snapshot Loading commit data...
strings Loading commit data...
tasks 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...
zone Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...