diff options
author | Alon Zakai <azakai@google.com> | 2024-03-20 12:40:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 12:40:30 -0700 |
commit | 70ac213fce134840609190a5d3a18118a089ba8a (patch) | |
tree | eefb41fcd7c3282b1e590a93ae4211e093823d90 /src/passes/Precompute.cpp | |
parent | f9dc56913085eb7c2565047d87ca84b84a837518 (diff) | |
download | binaryen-70ac213fce134840609190a5d3a18118a089ba8a.tar.gz binaryen-70ac213fce134840609190a5d3a18118a089ba8a.tar.bz2 binaryen-70ac213fce134840609190a5d3a18118a089ba8a.zip |
Strings: Disable precomputing for now (#6412)
Our UTF implementation is still not fully stable it seems as we have reports of
issues. Disable it for now.
Diffstat (limited to 'src/passes/Precompute.cpp')
-rw-r--r-- | src/passes/Precompute.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/passes/Precompute.cpp b/src/passes/Precompute.cpp index d2f3543ad..64b555028 100644 --- a/src/passes/Precompute.cpp +++ b/src/passes/Precompute.cpp @@ -195,6 +195,36 @@ public: } return Literal(canonical, curr->type.getHeapType()); } + + // Disable string operations pending investigation of the correctness of our + // UTF implementation. FIXME + Flow visitStringNew(StringNew* curr) { return Flow(NONCONSTANT_FLOW); } + Flow visitStringConst(StringConst* curr) { return Flow(NONCONSTANT_FLOW); } + Flow visitStringMeasure(StringMeasure* curr) { + return Flow(NONCONSTANT_FLOW); + } + Flow visitStringConcat(StringConcat* curr) { return Flow(NONCONSTANT_FLOW); } + Flow visitStringEncode(StringEncode* 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); + } }; struct Precompute |