aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@intel.com>2019-10-01 21:55:55 +0000
committerTom Stellard <tstellar@redhat.com>2019-11-12 16:06:26 -0800
commit933cfc66fbe1de1b20c756db9a986f5aa841343c (patch)
treef376b1576b4ca1f1a14054a837d9666b0dae7d0e
parent28726b909b997f42bd42fa3e14073f2e491aa2a5 (diff)
downloadllvm-933cfc66fbe1de1b20c756db9a986f5aa841343c.zip
llvm-933cfc66fbe1de1b20c756db9a986f5aa841343c.tar.gz
llvm-933cfc66fbe1de1b20c756db9a986f5aa841343c.tar.bz2
Merging r373397:
------------------------------------------------------------------------ r373397 | ctopper | 2019-10-01 14:55:55 -0700 (Tue, 01 Oct 2019) | 8 lines [X86] convertToThreeAddress, make sure second operand of SUB32ri is really an immediate before calling getImm(). It might be a symbol instead. We can't fold those since we can't negate them. Similar for other SUB with immediates. Fixes PR43529. ------------------------------------------------------------------------
-rw-r--r--llvm/lib/Target/X86/X86InstrInfo.cpp4
-rw-r--r--llvm/test/CodeGen/X86/pr43529.ll39
2 files changed, 43 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.cpp b/llvm/lib/Target/X86/X86InstrInfo.cpp
index dbe4535..e039e71 100644
--- a/llvm/lib/Target/X86/X86InstrInfo.cpp
+++ b/llvm/lib/Target/X86/X86InstrInfo.cpp
@@ -1085,6 +1085,8 @@ X86InstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
return nullptr;
case X86::SUB32ri8:
case X86::SUB32ri: {
+ if (!MI.getOperand(2).isImm())
+ return nullptr;
int64_t Imm = MI.getOperand(2).getImm();
if (!isInt<32>(-Imm))
return nullptr;
@@ -1111,6 +1113,8 @@ X86InstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI,
case X86::SUB64ri8:
case X86::SUB64ri32: {
+ if (!MI.getOperand(2).isImm())
+ return nullptr;
int64_t Imm = MI.getOperand(2).getImm();
if (!isInt<32>(-Imm))
return nullptr;
diff --git a/llvm/test/CodeGen/X86/pr43529.ll b/llvm/test/CodeGen/X86/pr43529.ll
new file mode 100644
index 0000000..afccf5e
--- /dev/null
+++ b/llvm/test/CodeGen/X86/pr43529.ll
@@ -0,0 +1,39 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=i386-unknown-linux-gnu | FileCheck %s
+
+define i32 @a() nounwind {
+; CHECK-LABEL: a:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: pushl %esi
+; CHECK-NEXT: subl $8, %esp
+; CHECK-NEXT: leal {{[0-9]+}}(%esp), %esi
+; CHECK-NEXT: movl %esi, %eax
+; CHECK-NEXT: subl $a, %eax
+; CHECK-NEXT: calll d
+; CHECK-NEXT: cmpl $a, %esi
+; CHECK-NEXT: jbe .LBB0_2
+; CHECK-NEXT: .p2align 4, 0x90
+; CHECK-NEXT: .LBB0_1: # %for.cond
+; CHECK-NEXT: # =>This Inner Loop Header: Depth=1
+; CHECK-NEXT: jmp .LBB0_1
+; CHECK-NEXT: .LBB0_2: # %for.end.split
+; CHECK-NEXT: addl $8, %esp
+; CHECK-NEXT: popl %esi
+; CHECK-NEXT: retl
+entry:
+ %b = alloca i32, align 4
+ %0 = bitcast i32* %b to i8*
+ %1 = ptrtoint i32* %b to i32
+ %sub = sub nsw i32 %1, ptrtoint (i32 ()* @a to i32)
+ %call = call i32 bitcast (i32 (...)* @d to i32 (i32)*)(i32 inreg %sub)
+ %cmp = icmp ugt i32* %b, bitcast (i32 ()* @a to i32*)
+ br i1 %cmp, label %for.cond, label %for.end.split
+
+for.cond: ; preds = %entry, %for.cond
+ br label %for.cond
+
+for.end.split: ; preds = %entry
+ ret i32 undef
+}
+
+declare i32 @d(...)