summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing.h
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2021-06-18 14:20:03 -0700
committerGitHub <noreply@github.com>2021-06-18 14:20:03 -0700
commit28e88b9f993a2e45662fde0b10920aa22e7b1b7f (patch)
tree77bbd5f1dd1bfcb089b12f6fa9fcf828c135c099 /src/tools/fuzzing.h
parent97e277c51218778d1d76fd59fed3b4ca7756382e (diff)
downloadbinaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.tar.gz
binaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.tar.bz2
binaryen-28e88b9f993a2e45662fde0b10920aa22e7b1b7f.zip
[EH] Replace event with tag (#3937)
We recently decided to change 'event' to 'tag', and to '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/tools/fuzzing.h')
-rw-r--r--src/tools/fuzzing.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h
index 0635dc61d..f1fc61e06 100644
--- a/src/tools/fuzzing.h
+++ b/src/tools/fuzzing.h
@@ -200,7 +200,7 @@ public:
setupTables();
setupGlobals();
if (wasm.features.hasExceptionHandling()) {
- setupEvents();
+ setupTags();
}
modifyInitialFunctions();
addImportLoggingSupport();
@@ -495,14 +495,13 @@ private:
}
}
- void setupEvents() {
+ void setupTags() {
Index num = upTo(3);
for (size_t i = 0; i < num; i++) {
- auto event =
- builder.makeEvent(Names::getValidEventName(wasm, "event$"),
- WASM_EVENT_ATTRIBUTE_EXCEPTION,
- Signature(getControlFlowType(), Type::none));
- wasm.addEvent(std::move(event));
+ auto tag = builder.makeTag(Names::getValidTagName(wasm, "tag$"),
+ WASM_TAG_ATTRIBUTE_EXCEPTION,
+ Signature(getControlFlowType(), Type::none));
+ wasm.addTag(std::move(tag));
}
}