[llvm] [ValueTracking] Handle not in dominating condition. (PR #126423)

Andreas Jonson via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 9 12:10:42 PST 2025


================
@@ -10272,6 +10280,8 @@ void llvm::findValuesAffectedByCondition(
                                                            m_Value()))) {
       // Handle patterns that computeKnownFPClass() support.
       AddAffected(A);
+    } else if (!IsAssume && match(V, m_Not(m_Value(X)))) {
----------------
andjo403 wrote:

to be able to do that `isEphemeralValueOf `need to be updated to handle that.
example of test that will fail as the assume is optimized away.
https://github.com/llvm/llvm-project/blob/3d140004c70e2bc79416825e43207e8b711c56d9/llvm/test/Transforms/GVN/assume.ll#L48-L61

Maybe all instructions with boolean results building up the condition for the assume shall be Ephemeral.

https://github.com/llvm/llvm-project/pull/126423


More information about the llvm-commits mailing list