mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Push analysis passes to InstSimplify when they're around anyways.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191309 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3706eda52c
commit
d721520e4c
@ -790,7 +790,7 @@ Instruction *InstCombiner::SliceUpIllegalIntegerPHI(PHINode &FirstPhi) {
|
||||
// PHINode simplification
|
||||
//
|
||||
Instruction *InstCombiner::visitPHINode(PHINode &PN) {
|
||||
if (Value *V = SimplifyInstruction(&PN, TD))
|
||||
if (Value *V = SimplifyInstruction(&PN, TD, TLI))
|
||||
return ReplaceInstUsesWith(PN, V);
|
||||
|
||||
// If all PHI operands are the same operation, pull them through the PHI,
|
||||
|
@ -1893,7 +1893,8 @@ bool CodeGenPrepare::OptimizeInst(Instruction *I) {
|
||||
// It is possible for very late stage optimizations (such as SimplifyCFG)
|
||||
// to introduce PHI nodes too late to be cleaned up. If we detect such a
|
||||
// trivial PHI, go ahead and zap it here.
|
||||
if (Value *V = SimplifyInstruction(P)) {
|
||||
if (Value *V = SimplifyInstruction(P, TLI ? TLI->getDataLayout() : 0,
|
||||
TLInfo, DT)) {
|
||||
P->replaceAllUsesWith(V);
|
||||
P->eraseFromParent();
|
||||
++NumPHIsElim;
|
||||
|
@ -413,7 +413,7 @@ bool llvm::SimplifyInstructionsInBlock(BasicBlock *BB, const DataLayout *TD,
|
||||
Instruction *Inst = BI++;
|
||||
|
||||
WeakVH BIHandle(BI);
|
||||
if (recursivelySimplifyInstruction(Inst, TD)) {
|
||||
if (recursivelySimplifyInstruction(Inst, TD, TLI)) {
|
||||
MadeChange = true;
|
||||
if (BIHandle != BI)
|
||||
BI = BB->begin();
|
||||
|
Loading…
x
Reference in New Issue
Block a user