mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-23 17:28:54 +00:00
When we look at instructions to convert to setting the 's' flag, we need to look
at more than those which define CPSR. You can have this situation: (1) subs ... (2) sub r6, r5, r4 (3) movge ... (4) cmp r6, 0 (5) movge ... We cannot convert (2) to "subs" because (3) is using the CPSR set by (1). There's an analogous situation here: (1) sub r1, r2, r3 (2) sub r4, r5, r6 (3) cmp r4, ... (5) movge ... (6) cmp r1, ... (7) movge ... We cannot convert (1) to "subs" because of the intervening use of CPSR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117950 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -50,6 +50,10 @@ static cl::opt<bool>
|
||||
Aggressive("aggressive-ext-opt", cl::Hidden,
|
||||
cl::desc("Aggressive extension optimization"));
|
||||
|
||||
static cl::opt<bool>
|
||||
DisablePeephole("disable-peephole", cl::Hidden, cl::init(false),
|
||||
cl::desc("Disable the peephole optimizer"));
|
||||
|
||||
STATISTIC(NumReuse, "Number of extension results reused");
|
||||
STATISTIC(NumEliminated, "Number of compares eliminated");
|
||||
|
||||
@@ -276,11 +280,9 @@ bool PeepholeOptimizer::runOnMachineFunction(MachineFunction &MF) {
|
||||
|
||||
if (MI->getDesc().isCompare() &&
|
||||
!MI->getDesc().hasUnmodeledSideEffects()) {
|
||||
#if 0
|
||||
if (OptimizeCmpInstr(MI, MBB, MII))
|
||||
if (!DisablePeephole && OptimizeCmpInstr(MI, MBB, MII))
|
||||
Changed = true;
|
||||
else
|
||||
#endif
|
||||
++MII;
|
||||
} else {
|
||||
Changed |= OptimizeExtInstr(MI, MBB, LocalMIs);
|
||||
|
Reference in New Issue
Block a user