[llvm] r237373 - [Hexagon] Remove dead constant assignment in hardware loop pass
Brendon Cahoon
bcahoon at codeaurora.org
Thu May 14 10:31:40 PDT 2015
Author: bcahoon
Date: Thu May 14 12:31:40 2015
New Revision: 237373
URL: http://llvm.org/viewvc/llvm-project?rev=237373&view=rev
Log:
[Hexagon] Remove dead constant assignment in hardware loop pass
After converting a loop to a hardware loop, the pass should remove
any unnecessary instructions from the old compare-and-branch
code. This patch removes a dead constant assignment that was
used in the compare instruction.
Differential Revision: http://reviews.llvm.org/D9720
Added:
llvm/trunk/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll
Modified:
llvm/trunk/lib/Target/Hexagon/HexagonHardwareLoops.cpp
Modified: llvm/trunk/lib/Target/Hexagon/HexagonHardwareLoops.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Hexagon/HexagonHardwareLoops.cpp?rev=237373&r1=237372&r2=237373&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Hexagon/HexagonHardwareLoops.cpp (original)
+++ llvm/trunk/lib/Target/Hexagon/HexagonHardwareLoops.cpp Thu May 14 12:31:40 2015
@@ -670,6 +670,7 @@ CountValue *HexagonHardwareLoops::getLoo
MachineBasicBlock *DefBB = MRI->getVRegDef(R)->getParent();
if (!MDT->properlyDominates(DefBB, Header))
return nullptr;
+ OldInsts.push_back(MRI->getVRegDef(R));
}
return computeCount(L, InitialValue, EndValue, IVReg, IVBump, Cmp);
@@ -693,12 +694,14 @@ CountValue *HexagonHardwareLoops::comput
// If so, use the immediate value rather than the register.
if (Start->isReg()) {
const MachineInstr *StartValInstr = MRI->getVRegDef(Start->getReg());
- if (StartValInstr && StartValInstr->getOpcode() == Hexagon::A2_tfrsi)
+ if (StartValInstr && (StartValInstr->getOpcode() == Hexagon::A2_tfrsi ||
+ StartValInstr->getOpcode() == Hexagon::A2_tfrpi))
Start = &StartValInstr->getOperand(1);
}
if (End->isReg()) {
const MachineInstr *EndValInstr = MRI->getVRegDef(End->getReg());
- if (EndValInstr && EndValInstr->getOpcode() == Hexagon::A2_tfrsi)
+ if (EndValInstr && (EndValInstr->getOpcode() == Hexagon::A2_tfrsi ||
+ EndValInstr->getOpcode() == Hexagon::A2_tfrpi))
End = &EndValInstr->getOperand(1);
}
@@ -1832,11 +1835,14 @@ MachineBasicBlock *HexagonHardwareLoops:
// created PHI node in the preheader.
for (unsigned i = 1, n = PN->getNumOperands(); i < n; i += 2) {
unsigned PredR = PN->getOperand(i).getReg();
+ unsigned PredRSub = PN->getOperand(i).getSubReg();
MachineBasicBlock *PredB = PN->getOperand(i+1).getMBB();
if (PredB == Latch)
continue;
- NewPN->addOperand(MachineOperand::CreateReg(PredR, false));
+ MachineOperand MO = MachineOperand::CreateReg(PredR, false);
+ MO.setSubReg(PredRSub);
+ NewPN->addOperand(MO);
NewPN->addOperand(MachineOperand::CreateMBB(PredB));
}
Added: llvm/trunk/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll?rev=237373&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll (added)
+++ llvm/trunk/test/CodeGen/Hexagon/hwloop-ph-deadcode.ll Thu May 14 12:31:40 2015
@@ -0,0 +1,23 @@
+; RUN: llc -march=hexagon -mcpu=hexagonv5 -O2 -disable-block-placement=0 < %s | FileCheck %s
+
+; Test that there is no redundant register assignment in the hardware loop
+; preheader.
+
+; CHECK-NOT: r{{.*}} = #5
+
+ at g = external global i32
+
+define void @foo() #0 {
+entry:
+ br i1 undef, label %if.end38, label %for.body
+
+for.body:
+ %loopIdx.051 = phi i32 [ %inc, %for.body ], [ 0, %entry ]
+ store i32 1, i32* @g, align 4
+ %inc = add i32 %loopIdx.051, 1
+ %cmp9 = icmp ult i32 %inc, 5
+ br i1 %cmp9, label %for.body, label %if.end38
+
+if.end38:
+ ret void
+}
More information about the llvm-commits
mailing list