diff options
author | Thomas Lively <tlively@google.com> | 2023-08-31 14:32:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-31 12:32:33 -0700 |
commit | 90d8185ba2be34fa6b6a8f8ce0cbb87e0a9ed0da (patch) | |
tree | 02c201b1afd2de7f8237adc3737734e19b77cd2b /src/passes/OptimizeInstructions.cpp | |
parent | 5bfb19239a15fec2d2ce44606d7c6e2b821302e1 (diff) | |
download | binaryen-90d8185ba2be34fa6b6a8f8ce0cbb87e0a9ed0da.tar.gz binaryen-90d8185ba2be34fa6b6a8f8ce0cbb87e0a9ed0da.tar.bz2 binaryen-90d8185ba2be34fa6b6a8f8ce0cbb87e0a9ed0da.zip |
Remove the GCNNLocals feature (#5080)
Now that the WasmGC spec has settled on a way of validating non-nullable locals,
we no longer need this experimental feature that allowed nonstandard uses of
non-nullable locals.
Diffstat (limited to 'src/passes/OptimizeInstructions.cpp')
-rw-r--r-- | src/passes/OptimizeInstructions.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/passes/OptimizeInstructions.cpp b/src/passes/OptimizeInstructions.cpp index f15bac23d..0b787105e 100644 --- a/src/passes/OptimizeInstructions.cpp +++ b/src/passes/OptimizeInstructions.cpp @@ -1155,17 +1155,9 @@ struct OptimizeInstructions void visitLocalSet(LocalSet* curr) { // Interactions between local.set/tee and ref.as_non_null can be optimized - // in some cases, by removing or moving the ref.as_non_null operation. In - // all cases, we only do this when we do *not* allow non-nullable locals. If - // we do allow such locals, then (1) this local might be non-nullable, so we - // can't remove or move a ref.as_non_null flowing into a local.set/tee, and - // (2) even if the local were nullable, if we change things we might prevent - // the LocalSubtyping pass from turning it into a non-nullable local later. - // Note that we must also check if this local is nullable regardless, as a - // parameter might be non-nullable even if nullable locals are disallowed - // (as that just affects vars, and not params). + // in some cases, by removing or moving the ref.as_non_null operation. if (auto* as = curr->value->dynCast<RefAs>()) { - if (as->op == RefAsNonNull && !getModule()->features.hasGCNNLocals() && + if (as->op == RefAsNonNull && getFunction()->getLocalType(curr->index).isNullable()) { // (local.tee (ref.as_non_null ..)) // => |