diff options
author | Keith Winstein <keithw@cs.stanford.edu> | 2022-09-18 15:17:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-18 15:17:55 -0700 |
commit | 65ce49a6d307b101aa058da8269e1ccae43feeb9 (patch) | |
tree | 11845b9a299c9387982c865f1e6c2ccbf321aff0 /src/binary-reader-ir.cc | |
parent | c2f10f2ce47205f8337fd2f3e7fac45385bff40c (diff) | |
download | wabt-65ce49a6d307b101aa058da8269e1ccae43feeb9.tar.gz wabt-65ce49a6d307b101aa058da8269e1ccae43feeb9.tar.bz2 wabt-65ce49a6d307b101aa058da8269e1ccae43feeb9.zip |
BinaryReaderIR: set name of type if given in name section (#1996)
Fixes #1687
Diffstat (limited to 'src/binary-reader-ir.cc')
-rw-r--r-- | src/binary-reader-ir.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/binary-reader-ir.cc b/src/binary-reader-ir.cc index 340b938d..859293ec 100644 --- a/src/binary-reader-ir.cc +++ b/src/binary-reader-ir.cc @@ -366,6 +366,7 @@ class BinaryReaderIR : public BinaryReaderNop { Result SetMemoryName(Index index, std::string_view name); Result SetTableName(Index index, std::string_view name); Result SetFunctionName(Index index, std::string_view name); + Result SetTypeName(Index index, std::string_view name); Result SetGlobalName(Index index, std::string_view name); Result SetDataSegmentName(Index index, std::string_view name); Result SetElemSegmentName(Index index, std::string_view name); @@ -1402,6 +1403,22 @@ Result BinaryReaderIR::SetFunctionName(Index index, std::string_view name) { return Result::Ok; } +Result BinaryReaderIR::SetTypeName(Index index, std::string_view name) { + if (name.empty()) { + return Result::Ok; + } + if (index >= module_->types.size()) { + PrintError("invalid type index: %" PRIindex, index); + return Result::Error; + } + TypeEntry* type = module_->types[index]; + std::string dollar_name = + GetUniqueName(&module_->type_bindings, MakeDollarName(name)); + type->name = dollar_name; + module_->type_bindings.emplace(dollar_name, Binding(index)); + return Result::Ok; +} + Result BinaryReaderIR::SetTableName(Index index, std::string_view name) { if (name.empty()) { return Result::Ok; @@ -1496,7 +1513,9 @@ Result BinaryReaderIR::OnNameEntry(NameSectionSubsection type, case NameSectionSubsection::Local: case NameSectionSubsection::Module: case NameSectionSubsection::Label: + break; case NameSectionSubsection::Type: + SetTypeName(index, name); break; case NameSectionSubsection::Tag: SetTagName(index, name); |