• 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
benchmarks Loading commit data...
build_overrides Loading commit data...
custom_deps Loading commit data...
docs Loading commit data...
gni Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.clang-tidy Loading commit data...
.editorconfig Loading commit data...
.flake8 Loading commit data...
.git-blame-ignore-revs Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.vpython Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
COMMON_OWNERS Loading commit data...
ChangeLog Loading commit data...
DEPS Loading commit data...
ENG_REVIEW_OWNERS Loading commit data...
INFRA_OWNERS Loading commit data...
INTL_OWNERS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
MIPS_OWNERS Loading commit data...
OWNERS Loading commit data...
PPC_OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
S390_OWNERS Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...