diff options
author | Heejin Ahn <aheejin@gmail.com> | 2021-06-22 13:06:29 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 13:06:29 -0700 |
commit | 950042585626bc639c4b330bd47c7b9be4e11bac (patch) | |
tree | 686779003eb850260a004678e5d5663ba19d0c43 /src/binary-reader-ir.cc | |
parent | c6cd63316ac53208900cda4d1089a22618b85256 (diff) | |
download | wabt-950042585626bc639c4b330bd47c7b9be4e11bac.tar.gz wabt-950042585626bc639c4b330bd47c7b9be4e11bac.tar.bz2 wabt-950042585626bc639c4b330bd47c7b9be4e11bac.zip |
[EH] Replace event with tag (#1678)
We recently decided to change 'event' to 'tag', and 'event section' to
'tag section', out of the rationale that the section contains a
generalized tag that references a type, which may be used for something
other than exceptions, and the name 'event' can be confusing in the web
context.
See
- https://github.com/WebAssembly/exception-handling/issues/159#issuecomment-857910130
- https://github.com/WebAssembly/exception-handling/pull/161
Diffstat (limited to 'src/binary-reader-ir.cc')
-rw-r--r-- | src/binary-reader-ir.cc | 72 |
1 files changed, 38 insertions, 34 deletions
diff --git a/src/binary-reader-ir.cc b/src/binary-reader-ir.cc index d060be08..1251c0af 100644 --- a/src/binary-reader-ir.cc +++ b/src/binary-reader-ir.cc @@ -83,11 +83,11 @@ class BinaryReaderIR : public BinaryReaderNop { Index global_index, Type type, bool mutable_) override; - Result OnImportEvent(Index import_index, - string_view module_name, - string_view field_name, - Index event_index, - Index sig_index) override; + Result OnImportTag(Index import_index, + string_view module_name, + string_view field_name, + Index tag_index, + Index sig_index) override; Result OnFunctionCount(Index count) override; Result OnFunction(Index index, Index sig_index) override; @@ -144,7 +144,7 @@ class BinaryReaderIR : public BinaryReaderNop { Index* target_depths, Index default_target_depth) override; Result OnCallExpr(Index func_index) override; - Result OnCatchExpr(Index event_index) override; + Result OnCatchExpr(Index tag_index) override; Result OnCatchAllExpr() override; Result OnCallIndirectExpr(Index sig_index, Index table_index) override; Result OnReturnCallExpr(Index func_index) override; @@ -194,7 +194,7 @@ class BinaryReaderIR : public BinaryReaderNop { Result OnStoreExpr(Opcode opcode, Address alignment_log2, Address offset) override; - Result OnThrowExpr(Index event_index) override; + Result OnThrowExpr(Index tag_index) override; Result OnTryExpr(Type sig_type) override; Result OnUnaryExpr(Opcode opcode) override; Result OnTernaryExpr(Opcode opcode) override; @@ -252,10 +252,10 @@ class BinaryReaderIR : public BinaryReaderNop { Index index, string_view name) override; - Result BeginEventSection(Offset size) override { return Result::Ok; } - Result OnEventCount(Index count) override { return Result::Ok; } - Result OnEventType(Index index, Index sig_index) override; - Result EndEventSection() override { return Result::Ok; } + Result BeginTagSection(Offset size) override { return Result::Ok; } + Result OnTagCount(Index count) override { return Result::Ok; } + Result OnTagType(Index index, Index sig_index) override; + Result EndTagSection() override { return Result::Ok; } Result OnInitExprF32ConstExpr(Index index, uint32_t value) override; Result OnInitExprF64ConstExpr(Index index, uint64_t value) override; @@ -274,8 +274,10 @@ class BinaryReaderIR : public BinaryReaderNop { Index global_index) override; Result OnSectionSymbol(Index index, uint32_t flags, Index section_index) override; - Result OnEventSymbol(Index index, uint32_t flags, string_view name, - Index event_index) override; + Result OnTagSymbol(Index index, + uint32_t flags, + string_view name, + Index tag_index) override; Result OnTableSymbol(Index index, uint32_t flags, string_view name, Index table_index) override; @@ -525,15 +527,15 @@ Result BinaryReaderIR::OnImportGlobal(Index import_index, return Result::Ok; } -Result BinaryReaderIR::OnImportEvent(Index import_index, - string_view module_name, - string_view field_name, - Index event_index, - Index sig_index) { - auto import = MakeUnique<EventImport>(); +Result BinaryReaderIR::OnImportTag(Index import_index, + string_view module_name, + string_view field_name, + Index tag_index, + Index sig_index) { + auto import = MakeUnique<TagImport>(); import->module_name = module_name.to_string(); import->field_name = field_name.to_string(); - SetFuncDeclaration(&import->event.decl, Var(sig_index, GetLocation())); + SetFuncDeclaration(&import->tag.decl, Var(sig_index, GetLocation())); module_->AppendField( MakeUnique<ImportModuleField>(std::move(import), GetLocation())); return Result::Ok; @@ -975,8 +977,8 @@ Result BinaryReaderIR::OnStoreExpr(Opcode opcode, return AppendExpr(MakeUnique<StoreExpr>(opcode, 1 << alignment_log2, offset)); } -Result BinaryReaderIR::OnThrowExpr(Index event_index) { - return AppendExpr(MakeUnique<ThrowExpr>(Var(event_index, GetLocation()))); +Result BinaryReaderIR::OnThrowExpr(Index tag_index) { + return AppendExpr(MakeUnique<ThrowExpr>(Var(tag_index, GetLocation()))); } Result BinaryReaderIR::OnLocalTeeExpr(Index local_index) { @@ -1482,10 +1484,10 @@ Result BinaryReaderIR::OnLocalName(Index func_index, return Result::Ok; } -Result BinaryReaderIR::OnEventType(Index index, Index sig_index) { - auto field = MakeUnique<EventModuleField>(GetLocation()); - Event& event = field->event; - SetFuncDeclaration(&event.decl, Var(sig_index, GetLocation())); +Result BinaryReaderIR::OnTagType(Index index, Index sig_index) { + auto field = MakeUnique<TagModuleField>(GetLocation()); + Tag& tag = field->tag; + SetFuncDeclaration(&tag.decl, Var(sig_index, GetLocation())); module_->AppendField(std::move(field)); return Result::Ok; } @@ -1548,20 +1550,22 @@ Result BinaryReaderIR::OnSectionSymbol(Index index, uint32_t flags, return Result::Ok; } -Result BinaryReaderIR::OnEventSymbol(Index index, uint32_t flags, - string_view name, Index event_index) { +Result BinaryReaderIR::OnTagSymbol(Index index, + uint32_t flags, + string_view name, + Index tag_index) { if (name.empty()) { return Result::Ok; } - if (event_index >= module_->events.size()) { - PrintError("invalid event index: %" PRIindex, event_index); + if (tag_index >= module_->tags.size()) { + PrintError("invalid tag index: %" PRIindex, tag_index); return Result::Error; } - Event* event = module_->events[event_index]; + Tag* tag = module_->tags[tag_index]; std::string dollar_name = - GetUniqueName(&module_->event_bindings, MakeDollarName(name)); - event->name = dollar_name; - module_->event_bindings.emplace(dollar_name, Binding(event_index)); + GetUniqueName(&module_->tag_bindings, MakeDollarName(name)); + tag->name = dollar_name; + module_->tag_bindings.emplace(dollar_name, Binding(tag_index)); return Result::Ok; } |