summaryrefslogtreecommitdiffstats
path: root/js/src/wasm/WasmValidate.h
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/wasm/WasmValidate.h')
-rw-r--r--js/src/wasm/WasmValidate.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/js/src/wasm/WasmValidate.h b/js/src/wasm/WasmValidate.h
index f8d712b3b3..4dab19416c 100644
--- a/js/src/wasm/WasmValidate.h
+++ b/js/src/wasm/WasmValidate.h
@@ -58,6 +58,7 @@ struct ModuleEnvironment {
MemoryDescVector memories;
MutableTypeContext types;
FuncDescVector funcs;
+ BranchHintCollection branchHints;
uint32_t numFuncImports;
uint32_t numGlobalImports;
GlobalDescVector globals;
@@ -93,6 +94,9 @@ struct ModuleEnvironment {
Maybe<Name> moduleName;
NameVector funcNames;
+ // Indicates whether the branch hint section was successfully parsed.
+ bool parsedBranchHints;
+
explicit ModuleEnvironment(FeatureArgs features,
ModuleKind kind = ModuleKind::Wasm)
: kind(kind),
@@ -103,7 +107,8 @@ struct ModuleEnvironment {
typeDefsOffsetStart(UINT32_MAX),
memoriesOffsetStart(UINT32_MAX),
tablesOffsetStart(UINT32_MAX),
- tagsOffsetStart(UINT32_MAX) {}
+ tagsOffsetStart(UINT32_MAX),
+ parsedBranchHints(false) {}
[[nodiscard]] bool init() {
types = js_new<TypeContext>(features);