OSDN Git Service

[Hexagon] Handle subregisters when calculating iteration count in HW loops
authorKrzysztof Parzyszek <kparzysz@codeaurora.org>
Fri, 6 Apr 2018 17:51:57 +0000 (17:51 +0000)
committerKrzysztof Parzyszek <kparzysz@codeaurora.org>
Fri, 6 Apr 2018 17:51:57 +0000 (17:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@329434 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Hexagon/HexagonHardwareLoops.cpp
test/CodeGen/Hexagon/hwloop-subreg.ll [new file with mode: 0644]

index 715fd52..0703606 100644 (file)
@@ -928,6 +928,7 @@ CountValue *HexagonHardwareLoops::computeCount(MachineLoop *Loop,
       // 'Add' instruction.
       const MachineInstr *EndValInstr = MRI->getVRegDef(End->getReg());
       if (EndValInstr->getOpcode() == Hexagon::A2_addi &&
+          EndValInstr->getOperand(1).getSubReg() == 0 &&
           EndValInstr->getOperand(2).getImm() == StartV) {
         DistR = EndValInstr->getOperand(1).getReg();
       } else {
diff --git a/test/CodeGen/Hexagon/hwloop-subreg.ll b/test/CodeGen/Hexagon/hwloop-subreg.ll
new file mode 100644 (file)
index 0000000..602e1bd
--- /dev/null
@@ -0,0 +1,30 @@
+; RUN: llc -march=hexagon < %s
+; REQUIRES: asserts
+
+target triple = "hexagon"
+
+; Function Attrs: nounwind optsize readonly
+define void @f0() #0 align 2 {
+b0:
+  %v0 = load i32, i32* undef, align 8
+  %v1 = zext i32 %v0 to i64
+  %v2 = add nuw nsw i64 %v1, 63
+  %v3 = lshr i64 %v2, 6
+  %v4 = trunc i64 %v3 to i32
+  br i1 undef, label %b3, label %b1
+
+b1:                                               ; preds = %b0
+  %v5 = add nsw i32 %v4, -1
+  br label %b2
+
+b2:                                               ; preds = %b2, %b1
+  %v6 = phi i32 [ %v5, %b1 ], [ %v7, %b2 ]
+  %v7 = add i32 %v6, -1
+  %v8 = icmp sgt i32 %v7, -1
+  br i1 %v8, label %b2, label %b3
+
+b3:                                               ; preds = %b2, %b0
+  ret void
+}
+
+attributes #0 = { nounwind optsize readonly }