diff options
author | Sam Clegg <sbc@chromium.org> | 2022-11-22 13:20:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 21:20:14 +0000 |
commit | 09ce29d4ab6fd03a9e777f7244154f504a6c0113 (patch) | |
tree | 13a4d7b68e9df9d98d08addb8c184a9a3f49d7b2 /src/wasm/wasm-debug.cpp | |
parent | 776c15a1ae4a6c8b97784bd60c6696fdb4e626ef (diff) | |
download | binaryen-09ce29d4ab6fd03a9e777f7244154f504a6c0113.tar.gz binaryen-09ce29d4ab6fd03a9e777f7244154f504a6c0113.tar.bz2 binaryen-09ce29d4ab6fd03a9e777f7244154f504a6c0113.zip |
Rename UserSection -> CustomSection. NFC (#5288)
This reflects that naming used in the spec.
Diffstat (limited to 'src/wasm/wasm-debug.cpp')
-rw-r--r-- | src/wasm/wasm-debug.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wasm/wasm-debug.cpp b/src/wasm/wasm-debug.cpp index 8ca06b04d..abe1cd05c 100644 --- a/src/wasm/wasm-debug.cpp +++ b/src/wasm/wasm-debug.cpp @@ -34,7 +34,7 @@ namespace wasm::Debug { bool isDWARFSection(Name name) { return name.startsWith(".debug_"); } bool hasDWARFSections(const Module& wasm) { - for (auto& section : wasm.userSections) { + for (auto& section : wasm.customSections) { if (isDWARFSection(section.name)) { return true; } @@ -53,7 +53,7 @@ struct BinaryenDWARFInfo { BinaryenDWARFInfo(const Module& wasm) { // Get debug sections from the wasm. - for (auto& section : wasm.userSections) { + for (auto& section : wasm.customSections) { if (Name(section.name).startsWith(".debug_") && section.data.data()) { // TODO: efficiency sections[section.name.substr(1)] = llvm::MemoryBuffer::getMemBufferCopy( @@ -75,7 +75,7 @@ void dumpDWARF(const Module& wasm) { BinaryenDWARFInfo info(wasm); std::cout << "DWARF debug info\n"; std::cout << "================\n\n"; - for (auto& section : wasm.userSections) { + for (auto& section : wasm.customSections) { if (Name(section.name).startsWith(".debug_")) { std::cout << "Contains section " << section.name << " (" << section.data.size() << " bytes)\n"; @@ -1085,7 +1085,7 @@ void writeDWARFSections(Module& wasm, const BinaryLocations& newLocations) { // Update the custom sections in the wasm. // TODO: efficiency - for (auto& section : wasm.userSections) { + for (auto& section : wasm.customSections) { if (Name(section.name).startsWith(".debug_")) { auto llvmName = section.name.substr(1); if (newSections.count(llvmName)) { |