mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
If fast-isel fails, remove dead instructions generated during the failed
attempt. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145425 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -381,6 +381,10 @@ private:
|
|||||||
|
|
||||||
/// hasTrivialKill - Test whether the given value has exactly one use.
|
/// hasTrivialKill - Test whether the given value has exactly one use.
|
||||||
bool hasTrivialKill(const Value *V) const;
|
bool hasTrivialKill(const Value *V) const;
|
||||||
|
|
||||||
|
/// removeDeadCode - Remove all dead instructions between the I and E.
|
||||||
|
void removeDeadCode(MachineBasicBlock::iterator I,
|
||||||
|
MachineBasicBlock::iterator E);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -66,6 +66,7 @@ STATISTIC(NumFastIselSuccessIndependent, "Number of insts selected by "
|
|||||||
"target-independent selector");
|
"target-independent selector");
|
||||||
STATISTIC(NumFastIselSuccessTarget, "Number of insts selected by "
|
STATISTIC(NumFastIselSuccessTarget, "Number of insts selected by "
|
||||||
"target-specific selector");
|
"target-specific selector");
|
||||||
|
STATISTIC(NumFastIselDead, "Number of dead insts removed on failure");
|
||||||
|
|
||||||
/// startNewBlock - Set the current block to which generated machine
|
/// startNewBlock - Set the current block to which generated machine
|
||||||
/// instructions will be appended, and clear the local CSE map.
|
/// instructions will be appended, and clear the local CSE map.
|
||||||
@ -309,6 +310,18 @@ void FastISel::recomputeInsertPt() {
|
|||||||
++FuncInfo.InsertPt;
|
++FuncInfo.InsertPt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void FastISel::removeDeadCode(MachineBasicBlock::iterator I,
|
||||||
|
MachineBasicBlock::iterator E) {
|
||||||
|
assert (I && E && std::distance(I, E) > 0 && "Invalid iterator!");
|
||||||
|
while (I != E) {
|
||||||
|
MachineInstr *Dead = &*I;
|
||||||
|
++I;
|
||||||
|
Dead->eraseFromParent();
|
||||||
|
++NumFastIselDead;
|
||||||
|
}
|
||||||
|
recomputeInsertPt();
|
||||||
|
}
|
||||||
|
|
||||||
FastISel::SavePoint FastISel::enterLocalValueArea() {
|
FastISel::SavePoint FastISel::enterLocalValueArea() {
|
||||||
MachineBasicBlock::iterator OldInsertPt = FuncInfo.InsertPt;
|
MachineBasicBlock::iterator OldInsertPt = FuncInfo.InsertPt;
|
||||||
DebugLoc OldDL = DL;
|
DebugLoc OldDL = DL;
|
||||||
@ -794,19 +807,33 @@ FastISel::SelectInstruction(const Instruction *I) {
|
|||||||
|
|
||||||
DL = I->getDebugLoc();
|
DL = I->getDebugLoc();
|
||||||
|
|
||||||
|
MachineBasicBlock::iterator SavedInsertPt = FuncInfo.InsertPt;
|
||||||
|
|
||||||
// First, try doing target-independent selection.
|
// First, try doing target-independent selection.
|
||||||
if (SelectOperator(I, I->getOpcode())) {
|
if (SelectOperator(I, I->getOpcode())) {
|
||||||
++NumFastIselSuccessIndependent;
|
++NumFastIselSuccessIndependent;
|
||||||
DL = DebugLoc();
|
DL = DebugLoc();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
// Remove dead code. However, ignore call instructions since we've flushed
|
||||||
|
// the local value map and recomputed the insert point.
|
||||||
|
if (!isa<CallInst>(I)) {
|
||||||
|
recomputeInsertPt();
|
||||||
|
if (SavedInsertPt != FuncInfo.InsertPt)
|
||||||
|
removeDeadCode(FuncInfo.InsertPt, SavedInsertPt);
|
||||||
|
}
|
||||||
|
|
||||||
// Next, try calling the target to attempt to handle the instruction.
|
// Next, try calling the target to attempt to handle the instruction.
|
||||||
|
SavedInsertPt = FuncInfo.InsertPt;
|
||||||
if (TargetSelectInstruction(I)) {
|
if (TargetSelectInstruction(I)) {
|
||||||
++NumFastIselSuccessTarget;
|
++NumFastIselSuccessTarget;
|
||||||
DL = DebugLoc();
|
DL = DebugLoc();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
// Check for dead code and remove as necessary.
|
||||||
|
recomputeInsertPt();
|
||||||
|
if (SavedInsertPt != FuncInfo.InsertPt)
|
||||||
|
removeDeadCode(FuncInfo.InsertPt, SavedInsertPt);
|
||||||
|
|
||||||
DL = DebugLoc();
|
DL = DebugLoc();
|
||||||
return false;
|
return false;
|
||||||
|
23
test/CodeGen/ARM/fast-isel-deadcode.ll
Normal file
23
test/CodeGen/ARM/fast-isel-deadcode.ll
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
; RUN: llc < %s -O0 -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-darwin | FileCheck %s --check-prefix=THUMB
|
||||||
|
|
||||||
|
; Target-specific selector can't properly handle the double because it isn't
|
||||||
|
; being passed via a register, so the materialized arguments become dead code.
|
||||||
|
|
||||||
|
define i32 @main(i32 %argc, i8** %argv) nounwind {
|
||||||
|
entry:
|
||||||
|
; THUMB: main
|
||||||
|
call void @printArgsNoRet(i32 1, float 0x4000CCCCC0000000, i8 signext 99, double 4.100000e+00)
|
||||||
|
; THUMB: blx _printArgsNoRet
|
||||||
|
; THUMB-NOT: ldr
|
||||||
|
; THUMB-NOT: vldr
|
||||||
|
; THUMB-NOT: vmov
|
||||||
|
; THUMB-NOT: ldr
|
||||||
|
; THUMB-NOT: sxtb
|
||||||
|
; THUMB: movs r0, #0
|
||||||
|
; THUMB: movt r0, #0
|
||||||
|
; THUMB: add sp, #32
|
||||||
|
; THUMb: pop {r7, pc}
|
||||||
|
ret i32 0
|
||||||
|
}
|
||||||
|
|
||||||
|
declare void @printArgsNoRet(i32 %a1, float %a2, i8 signext %a3, double %a4)
|
Reference in New Issue
Block a user