mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 21:05:16 +00:00
In places where it's using "getFirstNonPHI", skip the landingpad instruction if necessary.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137679 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
19cb7f491f
commit
5e38c473a4
@ -469,7 +469,7 @@ static bool OptimizeCmpExpression(CmpInst *CI) {
|
||||
|
||||
if (!InsertedCmp) {
|
||||
BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
|
||||
|
||||
if (isa<LandingPadInst>(InsertPt)) ++InsertPt; // Skip landingpad inst.
|
||||
InsertedCmp =
|
||||
CmpInst::Create(CI->getOpcode(),
|
||||
CI->getPredicate(), CI->getOperand(0),
|
||||
@ -561,10 +561,13 @@ bool CodeGenPrepare::OptimizeCallInst(CallInst *CI) {
|
||||
(DVI->getParent() != VI->getParent() || DT->dominates(DVI, VI))) {
|
||||
DEBUG(dbgs() << "Moving Debug Value before :\n" << *DVI << ' ' << *VI);
|
||||
DVI->removeFromParent();
|
||||
if (isa<PHINode>(VI))
|
||||
DVI->insertBefore(VI->getParent()->getFirstNonPHI());
|
||||
else
|
||||
if (isa<PHINode>(VI)) {
|
||||
BasicBlock::iterator InsertPt = VI->getParent()->getFirstNonPHI();
|
||||
if (isa<LandingPadInst>(InsertPt)) ++InsertPt;
|
||||
DVI->insertBefore(InsertPt);
|
||||
} else {
|
||||
DVI->insertAfter(VI);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -1061,7 +1064,7 @@ bool CodeGenPrepare::OptimizeExtUses(Instruction *I) {
|
||||
|
||||
if (!InsertedTrunc) {
|
||||
BasicBlock::iterator InsertPt = UserBB->getFirstNonPHI();
|
||||
|
||||
if (isa<LandingPadInst>(InsertPt)) ++InsertPt;
|
||||
InsertedTrunc = new TruncInst(I, Src->getType(), "", InsertPt);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user