[PATCH] D125653: [TypePromotion] Fix another case for sext vs zext in promoted constant.
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri May 20 09:30:54 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG8d3894f67ebf: [TypePromotion] Fix another case for sext vs zext in promoted constant. (authored by craig.topper).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125653/new/
https://reviews.llvm.org/D125653
Files:
llvm/lib/CodeGen/TypePromotion.cpp
llvm/test/Transforms/TypePromotion/ARM/icmps.ll
Index: llvm/test/Transforms/TypePromotion/ARM/icmps.ll
===================================================================
--- llvm/test/Transforms/TypePromotion/ARM/icmps.ll
+++ llvm/test/Transforms/TypePromotion/ARM/icmps.ll
@@ -361,3 +361,14 @@
%3 = select i1 %2, i32 1, i32 0
ret i32 %3
}
+
+define i1 @pr55490() {
+; CHECK-LABEL: @pr55490(
+; CHECK-NEXT: [[TMP1:%.*]] = sub i32 10, 8
+; CHECK-NEXT: [[TMP2:%.*]] = icmp ult i32 [[TMP1]], 3
+; CHECK-NEXT: ret i1 [[TMP2]]
+;
+ %1 = sub i4 -6, -8
+ %2 = icmp ult i4 %1, 3
+ ret i1 %2
+}
Index: llvm/lib/CodeGen/TypePromotion.cpp
===================================================================
--- llvm/lib/CodeGen/TypePromotion.cpp
+++ llvm/lib/CodeGen/TypePromotion.cpp
@@ -484,7 +484,10 @@
continue;
if (auto *Const = dyn_cast<ConstantInt>(Op)) {
- Constant *NewConst = (SafeWrap.contains(I) && i == 1)
+ // For subtract, we don't need to sext the constant. We only put it in
+ // SafeWrap because SafeWrap.size() is used elsewhere.
+ Constant *NewConst = (SafeWrap.contains(I) && i == 1 &&
+ I->getOpcode() != Instruction::Sub)
? ConstantExpr::getSExt(Const, ExtTy)
: ConstantExpr::getZExt(Const, ExtTy);
I->setOperand(i, NewConst);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125653.430998.patch
Type: text/x-patch
Size: 1363 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220520/017cf242/attachment.bin>
More information about the llvm-commits
mailing list