diff options
author | Thomas Lively <tlively@google.com> | 2024-12-19 17:45:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-19 17:45:05 -0800 |
commit | 7c42700738fa9f9aff29dd930e9fd7f6cf71fc29 (patch) | |
tree | 75b8df675e6da753d1209f7b02c9781c8db6cc4e /src/passes/GUFA.cpp | |
parent | 74b2b064e59beee84e88afaa952a8c51cf9309a4 (diff) | |
download | binaryen-7c42700738fa9f9aff29dd930e9fd7f6cf71fc29.tar.gz binaryen-7c42700738fa9f9aff29dd930e9fd7f6cf71fc29.tar.bz2 binaryen-7c42700738fa9f9aff29dd930e9fd7f6cf71fc29.zip |
Do not optimize atomic gets in GUFA (#7161)
Conservatively avoid introducing synchronization bugs by not optimizing
atomic struct.gets at all in GUFA. It is possible that we could be more
precise in the future.
Also remove obsolete logic dealing with the types of null values as a
drive-by. All null values now have bottom types, so the type mismatch
this code checked for is impossible.
Diffstat (limited to 'src/passes/GUFA.cpp')
-rw-r--r-- | src/passes/GUFA.cpp | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/src/passes/GUFA.cpp b/src/passes/GUFA.cpp index 513b2cf3d..2ca1ac6ef 100644 --- a/src/passes/GUFA.cpp +++ b/src/passes/GUFA.cpp @@ -150,20 +150,14 @@ struct GUFAOptimizer return; } - if (contents.isNull() && curr->type.isNullable()) { - // Null values are all identical, so just fix up the type here if we need - // to (the null's type might not fit in this expression, if it passed - // through casts). - if (!Type::isSubType(contents.getType(), curr->type)) { - contents = PossibleContents::literal( - Literal::makeNull(curr->type.getHeapType())); - } - - // Note that if curr's type is *not* nullable, then the code will trap at - // runtime (the null must arrive through a cast that will trap). We handle - // that below, so we don't need to think about it here. - - // TODO: would emitting a more specific null be useful when valid? + if (Properties::getMemoryOrder(curr) != MemoryOrder::Unordered) { + // This load might synchronize with some store, and if we replaced the + // load with a constant or with a load from a global, it would not + // synchronize with that store anymore. Since we know what value the store + // must write, and we know it is the same as every other store to the same + // location, it's possible that optimizing here would be allowable, but + // for now be conservative and do not optimize. + return; } auto* c = contents.makeExpression(wasm); |