diff options
author | Sam Clegg <sbc@chromium.org> | 2021-12-07 11:07:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 19:07:46 +0000 |
commit | 356162224a50375166af2c45595e92d61aec02b9 (patch) | |
tree | f1d175144ca7a5a39b0b00c8c56f56897f7e9024 /src/binary-reader-ir.cc | |
parent | c9f22f2b73ed3b01172bfbcfe4f7304dea212ec9 (diff) | |
download | wabt-356162224a50375166af2c45595e92d61aec02b9.tar.gz wabt-356162224a50375166af2c45595e92d61aec02b9.tar.bz2 wabt-356162224a50375166af2c45595e92d61aec02b9.zip |
Show tag names in objdump disassembly (#1774)
Tag names are not officially part of the extended-name-section proposal
(because it only deals with naming things that are in the spec already).
However, I think its reasonable (and useful) to include these names
under a speculative subsection ID, on the basis that tags can only exist
when exceptions are enabled and that engines should ignore unknown name
types.
Diffstat (limited to 'src/binary-reader-ir.cc')
-rw-r--r-- | src/binary-reader-ir.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/binary-reader-ir.cc b/src/binary-reader-ir.cc index ef837c09..288876f7 100644 --- a/src/binary-reader-ir.cc +++ b/src/binary-reader-ir.cc @@ -295,6 +295,7 @@ class BinaryReaderIR : public BinaryReaderNop { Result SetGlobalName(Index index, string_view name); Result SetDataSegmentName(Index index, string_view name); Result SetElemSegmentName(Index index, string_view name); + Result SetTagName(Index index, string_view name); std::string GetUniqueName(BindingHash* bindings, const std::string& original_name); @@ -1369,6 +1370,22 @@ Result BinaryReaderIR::SetMemoryName(Index index, string_view name) { return Result::Ok; } +Result BinaryReaderIR::SetTagName(Index index, string_view name) { + if (name.empty()) { + return Result::Ok; + } + if (index >= module_->tags.size()) { + PrintError("invalid tag index: %" PRIindex, index); + return Result::Error; + } + Tag* tag = module_->tags[index]; + std::string dollar_name = + GetUniqueName(&module_->tag_bindings, MakeDollarName(name)); + tag->name = dollar_name; + module_->global_bindings.emplace(dollar_name, Binding(index)); + return Result::Ok; +} + Result BinaryReaderIR::OnFunctionName(Index index, string_view name) { return SetFunctionName(index, name); } @@ -1385,6 +1402,9 @@ Result BinaryReaderIR::OnNameEntry(NameSectionSubsection type, case NameSectionSubsection::Label: case NameSectionSubsection::Type: break; + case NameSectionSubsection::Tag: + SetTagName(index, name); + break; case NameSectionSubsection::Global: SetGlobalName(index, name); break; |