[PATCH] D16785: [AArch64] AArch64LoadStoreOptimizer: fix bug in pre-inc check iterator
Geoff Berry via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 9 12:51:54 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL260275: [AArch64] AArch64LoadStoreOptimizer: fix bug in pre-inc check iterator (authored by gberry).
Changed prior to commit:
http://reviews.llvm.org/D16785?vs=46971&id=47353#toc
Repository:
rL LLVM
http://reviews.llvm.org/D16785
Files:
llvm/trunk/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
llvm/trunk/test/CodeGen/AArch64/arm64-nvcast.ll
Index: llvm/trunk/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
===================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
+++ llvm/trunk/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
@@ -1023,6 +1023,8 @@
if (!MO.isReg())
continue;
unsigned Reg = MO.getReg();
+ if (!Reg)
+ continue;
if (MO.isDef()) {
for (MCRegAliasIterator AI(Reg, TRI, true); AI.isValid(); ++AI)
ModifiedRegs.set(*AI);
@@ -1496,15 +1498,14 @@
// (inclusive) and the second insn.
ModifiedRegs.reset();
UsedRegs.reset();
- --MBBI;
- for (unsigned Count = 0; MBBI != B && Count < Limit; --MBBI) {
+ unsigned Count = 0;
+ do {
+ --MBBI;
MachineInstr *MI = MBBI;
- // Skip DBG_VALUE instructions.
- if (MI->isDebugValue())
- continue;
- // Now that we know this is a real instruction, count it.
- ++Count;
+ // Don't count DBG_VALUE instructions towards the search limit.
+ if (!MI->isDebugValue())
+ ++Count;
// If we found a match, return it.
if (isMatchingUpdateInsn(I, MI, BaseReg, Offset))
@@ -1517,7 +1518,7 @@
// return early.
if (ModifiedRegs[BaseReg] || UsedRegs[BaseReg])
return E;
- }
+ } while (MBBI != B && Count < Limit);
return E;
}
Index: llvm/trunk/test/CodeGen/AArch64/arm64-nvcast.ll
===================================================================
--- llvm/trunk/test/CodeGen/AArch64/arm64-nvcast.ll
+++ llvm/trunk/test/CodeGen/AArch64/arm64-nvcast.ll
@@ -2,7 +2,7 @@
; CHECK-LABEL: _test:
; CHECK: fmov.2d v0, #2.00000000
-; CHECK: str q0, [sp]
+; CHECK: str q0, [sp, #-16]!
; CHECK: mov x8, sp
; CHECK: ldr s0, [x8, w1, sxtw #2]
; CHECK: str s0, [x0]
@@ -16,7 +16,7 @@
; CHECK-LABEL: _test2
; CHECK: movi.16b v0, #0x3f
-; CHECK: str q0, [sp]
+; CHECK: str q0, [sp, #-16]!
; CHECK: mov x8, sp
; CHECK: ldr s0, [x8, w1, sxtw #2]
; CHECK: str s0, [x0]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16785.47353.patch
Type: text/x-patch
Size: 1982 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160209/c007b463/attachment.bin>
More information about the llvm-commits
mailing list