[PATCH] D143542: [SeparateConstOffsetFromGEP] Fix: `b - a` matched `a - b` during reuniteExts
Liren.Peng via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 14 18:33:46 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG06f06644efb0: [SeparateConstOffsetFromGEP] Fix: `b - a` matched `a - b` during reuniteExts (authored by Peakulorain).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143542/new/
https://reviews.llvm.org/D143542
Files:
llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
llvm/test/Transforms/SeparateConstOffsetFromGEP/split-gep-sub.ll
Index: llvm/test/Transforms/SeparateConstOffsetFromGEP/split-gep-sub.ll
===================================================================
--- llvm/test/Transforms/SeparateConstOffsetFromGEP/split-gep-sub.ll
+++ llvm/test/Transforms/SeparateConstOffsetFromGEP/split-gep-sub.ll
@@ -28,13 +28,15 @@
; CHECK-NEXT: [[CMP26:%.*]] = icmp ult i32 [[SUB1]], 512
; CHECK-NEXT: br i1 [[CMP26]], label [[COND_TRUE:%.*]], label [[COND_END]]
; CHECK: cond.true:
-; CHECK-NEXT: [[SUB22:%.*]] = sext i32 [[SUB1]] to i64
-; CHECK-NEXT: [[TMP1:%.*]] = ptrtoint ptr [[P:%.*]] to i64
-; CHECK-NEXT: [[TMP2:%.*]] = shl i64 [[SUB22]], 2
-; CHECK-NEXT: [[TMP3:%.*]] = add i64 [[TMP1]], [[TMP2]]
-; CHECK-NEXT: [[TMP4:%.*]] = add i64 [[TMP3]], 2044
-; CHECK-NEXT: [[TMP5:%.*]] = inttoptr i64 [[TMP4]] to ptr
-; CHECK-NEXT: store float 1.000000e+00, ptr [[TMP5]], align 4
+; CHECK-NEXT: [[TMP1:%.*]] = sext i32 [[MUL]] to i64
+; CHECK-NEXT: [[TMP2:%.*]] = sext i32 [[REM]] to i64
+; CHECK-NEXT: [[SUB22:%.*]] = sub i64 [[TMP2]], [[TMP1]]
+; CHECK-NEXT: [[TMP3:%.*]] = ptrtoint ptr [[P:%.*]] to i64
+; CHECK-NEXT: [[TMP4:%.*]] = shl i64 [[SUB22]], 2
+; CHECK-NEXT: [[TMP5:%.*]] = add i64 [[TMP3]], [[TMP4]]
+; CHECK-NEXT: [[TMP6:%.*]] = add i64 [[TMP5]], 2044
+; CHECK-NEXT: [[TMP7:%.*]] = inttoptr i64 [[TMP6]] to ptr
+; CHECK-NEXT: store float 1.000000e+00, ptr [[TMP7]], align 4
; CHECK-NEXT: br label [[COND_END]]
; CHECK: cond.end:
; CHECK-NEXT: [[INC]] = add nuw nsw i32 [[K]], 1
Index: llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
===================================================================
--- llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
+++ llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
@@ -1232,8 +1232,8 @@
}
} else if (match(I, m_Sub(m_SExt(m_Value(LHS)), m_SExt(m_Value(RHS))))) {
if (LHS->getType() == RHS->getType()) {
- const SCEV *Key =
- SE->getAddExpr(SE->getUnknown(LHS), SE->getUnknown(RHS));
+ const SCEV *Key = SE->getAddExpr(
+ SE->getUnknown(LHS), SE->getNegativeSCEV(SE->getUnknown(RHS)));
if (auto *Dom = findClosestMatchingDominator(Key, I, DominatingSubs)) {
Instruction *NewSExt = new SExtInst(Dom, I->getType(), "", I);
NewSExt->takeName(I);
@@ -1253,8 +1253,8 @@
}
} else if (match(I, m_NSWSub(m_Value(LHS), m_Value(RHS)))) {
if (programUndefinedIfPoison(I)) {
- const SCEV *Key =
- SE->getAddExpr(SE->getUnknown(LHS), SE->getUnknown(RHS));
+ const SCEV *Key = SE->getAddExpr(
+ SE->getUnknown(LHS), SE->getNegativeSCEV(SE->getUnknown(RHS)));
DominatingSubs[Key].push_back(I);
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D143542.497524.patch
Type: text/x-patch
Size: 2736 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230215/bfa8896e/attachment.bin>
More information about the llvm-commits
mailing list