summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/PeepholeOptimizer.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-10-31 22:07:12 +0000
committerBill Wendling <isanbard@gmail.com>2010-10-31 22:07:12 +0000
commit0392f1b437cc84862131e67dbd8d7d19d38529a7 (patch)
tree6dbcb5a0db9623a8e0e367f809c1c252eb3cc94a /llvm/lib/CodeGen/PeepholeOptimizer.cpp
parent233e2727750a53caa90bb30176391f416944da6c (diff)
downloadbcm5719-llvm-0392f1b437cc84862131e67dbd8d7d19d38529a7.tar.gz
bcm5719-llvm-0392f1b437cc84862131e67dbd8d7d19d38529a7.zip
Disable the peephole optimizer until 186.crafty on armv6 is fixed. This is what
looks like is happening: Without the peephole optimizer: (1) sub r6, r6, #32 orr r12, r12, lr, lsl r9 orr r2, r2, r3, lsl r10 (x) cmp r6, #0 ldr r9, LCPI2_10 ldr r10, LCPI2_11 (2) sub r8, r8, #32 (a) movge r12, lr, lsr r6 (y) cmp r8, #0 LPC2_10: ldr lr, [pc, r10] (b) movge r2, r3, lsr r8 With the peephole optimizer: ldr r9, LCPI2_10 ldr r10, LCPI2_11 (1*) subs r6, r6, #32 (2*) subs r8, r8, #32 (a*) movge r12, lr, lsr r6 (b*) movge r2, r3, lsr r8 (1) is used by (x) for the conditional move at (a). (2) is used by (y) for the conditional move at (b). After the peephole optimizer, these the flags resulting from (1*) are ignored and only the flags from (2*) are considered for both conditional moves. llvm-svn: 117876
Diffstat (limited to 'llvm/lib/CodeGen/PeepholeOptimizer.cpp')
-rw-r--r--llvm/lib/CodeGen/PeepholeOptimizer.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/PeepholeOptimizer.cpp b/llvm/lib/CodeGen/PeepholeOptimizer.cpp
index 210f8866dfe..e27ea153d15 100644
--- a/llvm/lib/CodeGen/PeepholeOptimizer.cpp
+++ b/llvm/lib/CodeGen/PeepholeOptimizer.cpp
@@ -276,9 +276,11 @@ bool PeepholeOptimizer::runOnMachineFunction(MachineFunction &MF) {
if (MI->getDesc().isCompare() &&
!MI->getDesc().hasUnmodeledSideEffects()) {
+#if 0
if (OptimizeCmpInstr(MI, MBB, MII))
Changed = true;
else
+#endif
++MII;
} else {
Changed |= OptimizeExtInstr(MI, MBB, LocalMIs);
OpenPOWER on IntegriCloud