diff options
author | Alon Zakai <azakai@google.com> | 2019-12-19 15:45:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-19 15:45:16 -0800 |
commit | 05d785e6e476e55c05fda9b7e3fb38c15b25271e (patch) | |
tree | 946dca404bc9ebeb8c4797a25978081ea7ec2335 /src/wasm/wasm-io.cpp | |
parent | 02e6ba2b139e6c7ac0a97baa2af75df4250e140f (diff) | |
download | binaryen-05d785e6e476e55c05fda9b7e3fb38c15b25271e.tar.gz binaryen-05d785e6e476e55c05fda9b7e3fb38c15b25271e.tar.bz2 binaryen-05d785e6e476e55c05fda9b7e3fb38c15b25271e.zip |
Binary format code section offset tracking (#2515)
Optionally track the binary format code section offsets,
that is, when loading a binary, remember where each IR
node was read from. This is necessary for DWARF
debug info, as these are the offsets DWARF refers to.
(Note that eventually we may want to do something
else, like first read the DWARF and only then add
debug info annotations into the IR in a more LLVM-like
manner, but this is more straightforward and should be
enough to update debug lines and ranges).
This tracking adds noticeable overhead - every single
IR node adds an entry in a map - so avoid it unless
actually necessary. Specifically, if the user passes in
-g and there are actually DWARF sections in the
binary, and we are not about to remove those sections,
then we need it.
Print binary format code section offsets in text, when
printing with -g. This will help debug and test dwarf
support. It looks like
;; code offset: 0x7
as an annotation right before each node.
Also add support for -g in wasm-opt tests (unlike
a pass, it has just one - as a prefix).
Helps #2400
Diffstat (limited to 'src/wasm/wasm-io.cpp')
-rw-r--r-- | src/wasm/wasm-io.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wasm/wasm-io.cpp b/src/wasm/wasm-io.cpp index d874494c0..8fa714d9c 100644 --- a/src/wasm/wasm-io.cpp +++ b/src/wasm/wasm-io.cpp @@ -45,11 +45,12 @@ void ModuleReader::readText(std::string filename, Module& wasm) { readTextData(input, wasm); } -static void readBinaryData(std::vector<char>& input, - Module& wasm, - std::string sourceMapFilename) { +void ModuleReader::readBinaryData(std::vector<char>& input, + Module& wasm, + std::string sourceMapFilename) { std::unique_ptr<std::ifstream> sourceMapStream; WasmBinaryBuilder parser(wasm, input); + parser.setDWARF(DWARF); if (sourceMapFilename.size()) { sourceMapStream = make_unique<std::ifstream>(); sourceMapStream->open(sourceMapFilename); |