[PATCH] D58176: [ARM] Ensure we update the correct flags in the peephole optimiser
Dave Green via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 14 03:10:43 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL354018: [ARM] Ensure we update the correct flags in the peephole optimiser (authored by dmgreen, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D58176?vs=186678&id=186808#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58176/new/
https://reviews.llvm.org/D58176
Files:
llvm/trunk/lib/Target/ARM/ARMBaseInstrInfo.cpp
llvm/trunk/test/CodeGen/Thumb2/peephole-addsub.mir
Index: llvm/trunk/test/CodeGen/Thumb2/peephole-addsub.mir
===================================================================
--- llvm/trunk/test/CodeGen/Thumb2/peephole-addsub.mir
+++ llvm/trunk/test/CodeGen/Thumb2/peephole-addsub.mir
@@ -0,0 +1,35 @@
+# RUN: llc -run-pass=peephole-opt -verify-machineinstrs -o - %s | FileCheck %s
+--- |
+ target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
+ target triple = "thumbv7-none-eabi"
+
+ define i32 @test(i32 %a, i32 %b) {
+ unreachable
+ }
+
+...
+---
+name: test
+tracksRegLiveness: true
+liveins:
+ - { reg: '$r0', virtual-reg: '%0' }
+ - { reg: '$r1', virtual-reg: '%1' }
+body: |
+ bb.0 (%ir-block.0):
+ liveins: $r0, $r1
+
+ %1:rgpr = COPY $r1
+ %0:rgpr = COPY $r0
+ %2:rgpr = t2MOVi 1, 14, $noreg, $noreg
+ %3:gprnopc = t2ADDrr %0, %1, 14, $noreg, $noreg
+ %4:gprnopc = t2SUBri %3, 0, 14, $noreg, def dead $cpsr
+ t2CMPri killed %3, 0, 14, $noreg, implicit-def $cpsr
+ %5:rgpr = t2MOVCCi %2, 0, 7, $cpsr
+ $r0 = COPY %5
+ tBX_RET 14, $noreg, implicit $r0
+
+# CHECK-LABEL: name: test
+# CHECK: %3:gprnopc = t2ADDrr %0, %1, 14, $noreg, $noreg
+# CHECK-NEXT: %4:gprnopc = t2SUBri %3, 0, 14, $noreg, def $cpsr
+# CHECK-NEXT: %5:rgpr = t2MOVCCi %2, 0, 7, $cpsr
+...
Index: llvm/trunk/lib/Target/ARM/ARMBaseInstrInfo.cpp
===================================================================
--- llvm/trunk/lib/Target/ARM/ARMBaseInstrInfo.cpp
+++ llvm/trunk/lib/Target/ARM/ARMBaseInstrInfo.cpp
@@ -2825,8 +2825,11 @@
if (!MI && !SubAdd)
return false;
- // The single candidate is called MI.
- if (!MI) MI = SubAdd;
+ // If we found a SubAdd, use it as it will be closer to the CMP
+ if (SubAdd) {
+ MI = SubAdd;
+ IsThumb1 = false;
+ }
// We can't use a predicated instruction - it doesn't always write the flags.
if (isPredicated(*MI))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58176.186808.patch
Type: text/x-patch
Size: 1899 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190214/0218e03d/attachment.bin>
More information about the llvm-commits
mailing list