summaryrefslogtreecommitdiff
path: root/src/passes/Precompute.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-03-20 12:40:30 -0700
committerGitHub <noreply@github.com>2024-03-20 12:40:30 -0700
commit70ac213fce134840609190a5d3a18118a089ba8a (patch)
treeeefb41fcd7c3282b1e590a93ae4211e093823d90 /src/passes/Precompute.cpp
parentf9dc56913085eb7c2565047d87ca84b84a837518 (diff)
downloadbinaryen-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.cpp30
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