mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 21:31:03 +00:00
Instcombine PHI's of the form %PN = phi PN, X into X and
%PN = phi PN, PN, PN into 0 (because the phi must not be reachable) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3470 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
74d8dcc9d2
commit
c20e24524f
@ -610,10 +610,19 @@ Instruction *InstCombiner::visitPHINode(PHINode &PN) {
|
|||||||
// Otherwise if all of the incoming values are the same for the PHI, replace
|
// Otherwise if all of the incoming values are the same for the PHI, replace
|
||||||
// the PHI node with the incoming value.
|
// the PHI node with the incoming value.
|
||||||
//
|
//
|
||||||
Value *InVal = PN.getIncomingValue(0);
|
Value *InVal = 0;
|
||||||
for (unsigned i = 1, e = PN.getNumIncomingValues(); i != e; ++i)
|
for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
|
||||||
if (PN.getIncomingValue(i) != InVal)
|
if (PN.getIncomingValue(i) != &PN) // Not the PHI node itself...
|
||||||
return 0; // Not the same, bail out.
|
if (InVal && PN.getIncomingValue(i) != InVal)
|
||||||
|
return 0; // Not the same, bail out.
|
||||||
|
else
|
||||||
|
InVal = PN.getIncomingValue(i);
|
||||||
|
|
||||||
|
// The only case that could cause InVal to be null is if we have a PHI node
|
||||||
|
// that only has entries for itself. In this case, there is no entry into the
|
||||||
|
// loop, so kill the PHI.
|
||||||
|
//
|
||||||
|
if (InVal == 0) InVal = Constant::getNullValue(PN.getType());
|
||||||
|
|
||||||
// All of the incoming values are the same, replace the PHI node now.
|
// All of the incoming values are the same, replace the PHI node now.
|
||||||
return ReplaceInstUsesWith(PN, InVal);
|
return ReplaceInstUsesWith(PN, InVal);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user