diff options
author | Alon Zakai <azakai@google.com> | 2024-03-14 15:06:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 15:06:51 -0700 |
commit | 17823cdc7f639e889b1be8e028492cd2cd835c43 (patch) | |
tree | a39310271697ced2646de7fe00cd983fba6482c2 /src/wasm-interpreter.h | |
parent | e62653d08bca554d96bb13b9fae1747513b45870 (diff) | |
download | binaryen-17823cdc7f639e889b1be8e028492cd2cd835c43.tar.gz binaryen-17823cdc7f639e889b1be8e028492cd2cd835c43.tar.bz2 binaryen-17823cdc7f639e889b1be8e028492cd2cd835c43.zip |
[Strings] Fix precomputing of StringEq (#6401)
We incorrectly overrode the string operations in the interpreter's subclasses. But
string operations can be implemented in the topmost class there (as they depend on
no module state), so just implement them there, once, in a proper way.
This fixes StringEq by removing its override, and moves the others to the right
place.
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 55 |
1 files changed, 20 insertions, 35 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index 47b8d5eb5..46e5c1752 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -1904,7 +1904,9 @@ public: } Flow visitStringMeasure(StringMeasure* curr) { // For now we only support JS-style strings. - assert(curr->op == StringMeasureWTF16View); + if (curr->op != StringMeasureWTF16View) { + return Flow(NONCONSTANT_FLOW); + } Flow flow = visit(curr->ref); if (flow.breaking()) { @@ -1917,8 +1919,8 @@ public: } return Literal(int32_t(data->values.size())); } - Flow visitStringEncode(StringEncode* curr) { WASM_UNREACHABLE("unimp"); } - Flow visitStringConcat(StringConcat* curr) { WASM_UNREACHABLE("unimp"); } + Flow visitStringEncode(StringEncode* curr) { return Flow(NONCONSTANT_FLOW); } + Flow visitStringConcat(StringConcat* curr) { return Flow(NONCONSTANT_FLOW); } Flow visitStringEq(StringEq* curr) { NOTE_ENTER("StringEq"); Flow flow = visit(curr->left); @@ -1987,7 +1989,9 @@ public: } Flow visitStringAs(StringAs* curr) { // For now we only support JS-style strings. - assert(curr->op == StringAsWTF16); + if (curr->op != StringAsWTF16) { + return Flow(NONCONSTANT_FLOW); + } Flow flow = visit(curr->ref); if (flow.breaking()) { @@ -2004,10 +2008,10 @@ public: return Literal(data, curr->type.getHeapType()); } Flow visitStringWTF8Advance(StringWTF8Advance* curr) { - WASM_UNREACHABLE("unimp"); + return Flow(NONCONSTANT_FLOW); } Flow visitStringWTF16Get(StringWTF16Get* curr) { - NOTE_ENTER("StringEq"); + NOTE_ENTER("StringWTF16Get"); Flow ref = visit(curr->ref); if (ref.breaking()) { return ref; @@ -2028,11 +2032,17 @@ public: } return Literal(values[i].geti32()); } - Flow visitStringIterNext(StringIterNext* curr) { WASM_UNREACHABLE("unimp"); } - Flow visitStringIterMove(StringIterMove* curr) { WASM_UNREACHABLE("unimp"); } - Flow visitStringSliceWTF(StringSliceWTF* curr) { WASM_UNREACHABLE("unimp"); } + Flow visitStringIterNext(StringIterNext* curr) { + return Flow(NONCONSTANT_FLOW); + } + Flow visitStringIterMove(StringIterMove* curr) { + return Flow(NONCONSTANT_FLOW); + } + Flow visitStringSliceWTF(StringSliceWTF* curr) { + return Flow(NONCONSTANT_FLOW); + } Flow visitStringSliceIter(StringSliceIter* curr) { - WASM_UNREACHABLE("unimp"); + return Flow(NONCONSTANT_FLOW); } virtual void trap(const char* why) { WASM_UNREACHABLE("unimp"); } @@ -2369,31 +2379,6 @@ public: NOTE_ENTER("Rethrow"); return Flow(NONCONSTANT_FLOW); } - Flow visitStringMeasure(StringMeasure* curr) { - return Flow(NONCONSTANT_FLOW); - } - Flow visitStringEncode(StringEncode* curr) { return Flow(NONCONSTANT_FLOW); } - Flow visitStringConcat(StringConcat* curr) { return Flow(NONCONSTANT_FLOW); } - Flow visitStringEq(StringEq* curr) { return Flow(NONCONSTANT_FLOW); } - Flow visitStringAs(StringAs* curr) { return Flow(NONCONSTANT_FLOW); } - Flow visitStringWTF8Advance(StringWTF8Advance* curr) { - return Flow(NONCONSTANT_FLOW); - } - Flow visitStringWTF16Get(StringWTF16Get* curr) { - return Flow(NONCONSTANT_FLOW); - } - Flow visitStringIterNext(StringIterNext* curr) { - return Flow(NONCONSTANT_FLOW); - } - Flow visitStringIterMove(StringIterMove* curr) { - return Flow(NONCONSTANT_FLOW); - } - Flow visitStringSliceWTF(StringSliceWTF* curr) { - return Flow(NONCONSTANT_FLOW); - } - Flow visitStringSliceIter(StringSliceIter* curr) { - return Flow(NONCONSTANT_FLOW); - } Flow visitRefAs(RefAs* curr) { // TODO: Remove this once interpretation is implemented. if (curr->op == ExternInternalize || curr->op == ExternExternalize) { |