mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
Lett users of sparse propagation do their own thing with phi nodes if they want
to. This can be combined with LCSSA or SSI form to store more information on a PHINode than can be computed by looking at its incoming values. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82317 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -223,6 +223,13 @@ void SparseSolver::visitTerminatorInst(TerminatorInst &TI) {
|
||||
}
|
||||
|
||||
void SparseSolver::visitPHINode(PHINode &PN) {
|
||||
if (LatticeFunc->IsSpecialCasedPHI(&PN)) {
|
||||
LatticeVal IV = LatticeFunc->ComputeInstructionState(PN, *this);
|
||||
if (IV != LatticeFunc->getUntrackedVal())
|
||||
UpdateState(PN, IV);
|
||||
return;
|
||||
}
|
||||
|
||||
LatticeVal PNIV = getOrInitValueState(&PN);
|
||||
LatticeVal Overdefined = LatticeFunc->getOverdefinedVal();
|
||||
|
||||
|
Reference in New Issue
Block a user