mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-22 02:05:01 +00:00
Helpful comment added. Some code cleanup. No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91479 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fe586b3e38
commit
c70d331151
@ -450,14 +450,29 @@ void MachineBasicBlock::ReplaceUsesOfBlockWith(MachineBasicBlock *Old,
|
|||||||
|
|
||||||
/// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in the
|
/// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in the
|
||||||
/// CFG to be inserted. If we have proven that MBB can only branch to DestA and
|
/// CFG to be inserted. If we have proven that MBB can only branch to DestA and
|
||||||
/// DestB, remove any other MBB successors from the CFG. DestA and DestB can
|
/// DestB, remove any other MBB successors from the CFG. DestA and DestB can be
|
||||||
/// be null.
|
/// null.
|
||||||
|
///
|
||||||
/// Besides DestA and DestB, retain other edges leading to LandingPads
|
/// Besides DestA and DestB, retain other edges leading to LandingPads
|
||||||
/// (currently there can be only one; we don't check or require that here).
|
/// (currently there can be only one; we don't check or require that here).
|
||||||
/// Note it is possible that DestA and/or DestB are LandingPads.
|
/// Note it is possible that DestA and/or DestB are LandingPads.
|
||||||
bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
|
bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
|
||||||
MachineBasicBlock *DestB,
|
MachineBasicBlock *DestB,
|
||||||
bool isCond) {
|
bool isCond) {
|
||||||
|
// The values of DestA and DestB frequently come from a call to the
|
||||||
|
// 'TargetInstrInfo::AnalyzeBranch' method. We take our meaning of the initial
|
||||||
|
// values from there.
|
||||||
|
//
|
||||||
|
// 1. If both DestA and DestB are null, then the block ends with no branches
|
||||||
|
// (it falls through to its successor).
|
||||||
|
// 2. If DestA is set, DestB is null, and isCond is false, then the block ends
|
||||||
|
// with only an unconditional branch.
|
||||||
|
// 3. If DestA is set, DestB is null, and isCond is true, then the block ends
|
||||||
|
// with a conditional branch that falls through to a successor (DestB).
|
||||||
|
// 4. If DestA and DestB is set and isCond is true, then the block ends with a
|
||||||
|
// conditional branch followed by an unconditional branch. DestA is the
|
||||||
|
// 'true' destination and DestB is the 'false' destination.
|
||||||
|
|
||||||
bool MadeChange = false;
|
bool MadeChange = false;
|
||||||
bool AddedFallThrough = false;
|
bool AddedFallThrough = false;
|
||||||
|
|
||||||
@ -483,14 +498,15 @@ bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
|
|||||||
MachineBasicBlock::succ_iterator SI = succ_begin();
|
MachineBasicBlock::succ_iterator SI = succ_begin();
|
||||||
MachineBasicBlock *OrigDestA = DestA, *OrigDestB = DestB;
|
MachineBasicBlock *OrigDestA = DestA, *OrigDestB = DestB;
|
||||||
while (SI != succ_end()) {
|
while (SI != succ_end()) {
|
||||||
if (*SI == DestA) {
|
const MachineBasicBlock *MBB = *SI;
|
||||||
|
if (MBB == DestA) {
|
||||||
DestA = 0;
|
DestA = 0;
|
||||||
++SI;
|
++SI;
|
||||||
} else if (*SI == DestB) {
|
} else if (MBB == DestB) {
|
||||||
DestB = 0;
|
DestB = 0;
|
||||||
++SI;
|
++SI;
|
||||||
} else if ((*SI)->isLandingPad() &&
|
} else if (MBB->isLandingPad() &&
|
||||||
*SI!=OrigDestA && *SI!=OrigDestB) {
|
MBB != OrigDestA && MBB != OrigDestB) {
|
||||||
++SI;
|
++SI;
|
||||||
} else {
|
} else {
|
||||||
// Otherwise, this is a superfluous edge, remove it.
|
// Otherwise, this is a superfluous edge, remove it.
|
||||||
@ -498,12 +514,12 @@ bool MachineBasicBlock::CorrectExtraCFGEdges(MachineBasicBlock *DestA,
|
|||||||
MadeChange = true;
|
MadeChange = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!AddedFallThrough) {
|
|
||||||
assert(DestA == 0 && DestB == 0 &&
|
if (!AddedFallThrough)
|
||||||
"MachineCFG is missing edges!");
|
assert(DestA == 0 && DestB == 0 && "MachineCFG is missing edges!");
|
||||||
} else if (isCond) {
|
else if (isCond)
|
||||||
assert(DestA == 0 && "MachineCFG is missing edges!");
|
assert(DestA == 0 && "MachineCFG is missing edges!");
|
||||||
}
|
|
||||||
return MadeChange;
|
return MadeChange;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user