summaryrefslogtreecommitdiff
path: root/src/tools/fuzzing.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-04-24 15:51:53 -0700
committerGitHub <noreply@github.com>2024-04-24 15:51:53 -0700
commit403568091b42c6bfe38e46d73d8d10cd4c0747e9 (patch)
treea6252105ea092ca5158097588fbc2b39d074a36c /src/tools/fuzzing.h
parent69c232ce43fce5c217331e8b07b60ac8ff3c5e78 (diff)
downloadbinaryen-403568091b42c6bfe38e46d73d8d10cd4c0747e9.tar.gz
binaryen-403568091b42c6bfe38e46d73d8d10cd4c0747e9.tar.bz2
binaryen-403568091b42c6bfe38e46d73d8d10cd4c0747e9.zip
Fuzzer: Update the typeLocals data structure before mutation (#6537)
Rather than compute the map of type to locals of that type once, at the start, also update it when relevant, as we can add more locals in some cases. This allows us to local.get from those late-added locals too.
Diffstat (limited to 'src/tools/fuzzing.h')
-rw-r--r--src/tools/fuzzing.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tools/fuzzing.h b/src/tools/fuzzing.h
index 4aef9c372..ea9598f85 100644
--- a/src/tools/fuzzing.h
+++ b/src/tools/fuzzing.h
@@ -150,6 +150,14 @@ private:
}
~FunctionCreationContext();
+
+ // Fill in the typeLocals data structure.
+ void computeTypeLocals() {
+ typeLocals.clear();
+ for (Index i = 0; i < func->getNumLocals(); i++) {
+ typeLocals[func->getLocalType(i)].push_back(i);
+ }
+ }
};
FunctionCreationContext* funcContext = nullptr;