1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Carefully remove extraneous CFG edges after each ifcvt.

llvm-svn: 37529
This commit is contained in:
Evan Cheng 2007-06-08 22:01:07 +00:00
parent 1a6c0341fd
commit 7996fc5d23

View File

@ -126,6 +126,7 @@ namespace {
bool AnalyzeBlocks(MachineFunction &MF, bool AnalyzeBlocks(MachineFunction &MF,
std::vector<BBInfo*> &Candidates); std::vector<BBInfo*> &Candidates);
void ReTryPreds(MachineBasicBlock *BB); void ReTryPreds(MachineBasicBlock *BB);
void RemoveExtraEdges(BBInfo &BBI);
bool IfConvertSimple(BBInfo &BBI); bool IfConvertSimple(BBInfo &BBI);
bool IfConvertTriangle(BBInfo &BBI); bool IfConvertTriangle(BBInfo &BBI);
bool IfConvertDiamond(BBInfo &BBI); bool IfConvertDiamond(BBInfo &BBI);
@ -542,9 +543,10 @@ bool IfConverter::AnalyzeBlocks(MachineFunction &MF,
return Change; return Change;
} }
/// isNextBlock - Returns true either if ToBB the next block after BB or /// canFallThroughTo - Returns true either if ToBB is the next block after BB or
/// that all the intervening blocks are empty. /// that all the intervening blocks are empty (given BB can fall through to its
static bool isNextBlock(MachineBasicBlock *BB, MachineBasicBlock *ToBB) { /// next block).
static bool canFallThroughTo(MachineBasicBlock *BB, MachineBasicBlock *ToBB) {
MachineFunction::iterator I = BB; MachineFunction::iterator I = BB;
MachineFunction::iterator TI = ToBB; MachineFunction::iterator TI = ToBB;
MachineFunction::iterator E = BB->getParent()->end(); MachineFunction::iterator E = BB->getParent()->end();
@ -554,12 +556,23 @@ static bool isNextBlock(MachineBasicBlock *BB, MachineBasicBlock *ToBB) {
return true; return true;
} }
/// getNextBlock - Returns the next block in the function blocks ordering. If
/// it is the end, returns NULL.
static inline MachineBasicBlock *getNextBlock(MachineBasicBlock *BB) {
MachineFunction::iterator I = BB;
MachineFunction::iterator E = BB->getParent()->end();
if (++I == E)
return NULL;
return I;
}
/// ReTryPreds - Invalidate predecessor BB info so it would be re-analyzed /// ReTryPreds - Invalidate predecessor BB info so it would be re-analyzed
/// to determine if it can be if-converted. /// to determine if it can be if-converted.
void IfConverter::ReTryPreds(MachineBasicBlock *BB) { void IfConverter::ReTryPreds(MachineBasicBlock *BB) {
for (MachineBasicBlock::pred_iterator PI = BB->pred_begin(), for (MachineBasicBlock::pred_iterator PI = BB->pred_begin(),
E = BB->pred_end(); PI != E; ++PI) { E = BB->pred_end(); PI != E; ++PI) {
BBInfo &PBBI = BBAnalysis[(*PI)->getNumber()]; BBInfo &PBBI = BBAnalysis[(*PI)->getNumber()];
if (PBBI.Kind == ICNotClassfied)
PBBI.Kind = ICReAnalyze; PBBI.Kind = ICReAnalyze;
} }
} }
@ -572,6 +585,23 @@ static void InsertUncondBranch(MachineBasicBlock *BB, MachineBasicBlock *ToBB,
TII->InsertBranch(*BB, ToBB, NULL, NoCond); TII->InsertBranch(*BB, ToBB, NULL, NoCond);
} }
/// RemoveExtraEdges - Remove true / false edges if either / both are no longer
/// successors.
void IfConverter::RemoveExtraEdges(BBInfo &BBI) {
MachineBasicBlock *TBB = NULL, *FBB = NULL;
std::vector<MachineOperand> Cond;
bool isAnalyzable = !TII->AnalyzeBranch(*BBI.BB, TBB, FBB, Cond);
bool CanFallthrough = isAnalyzable && (TBB == NULL || FBB == NULL);
if (BBI.TrueBB && BBI.BB->isSuccessor(BBI.TrueBB))
if (!(BBI.TrueBB == TBB || BBI.TrueBB == FBB ||
(CanFallthrough && getNextBlock(BBI.BB) == BBI.TrueBB)))
BBI.BB->removeSuccessor(BBI.TrueBB);
if (BBI.FalseBB && BBI.BB->isSuccessor(BBI.FalseBB))
if (!(BBI.FalseBB == TBB || BBI.FalseBB == FBB ||
(CanFallthrough && getNextBlock(BBI.BB) == BBI.FalseBB)))
BBI.BB->removeSuccessor(BBI.FalseBB);
}
/// IfConvertSimple - If convert a simple (split, no rejoin) sub-CFG. /// IfConvertSimple - If convert a simple (split, no rejoin) sub-CFG.
/// ///
bool IfConverter::IfConvertSimple(BBInfo &BBI) { bool IfConverter::IfConvertSimple(BBInfo &BBI) {
@ -588,14 +618,12 @@ bool IfConverter::IfConvertSimple(BBInfo &BBI) {
PredicateBlock(*CvtBBI, Cond); PredicateBlock(*CvtBBI, Cond);
// Merge converted block into entry block. Also add an unconditional branch // Merge converted block into entry block.
// to the 'false' branch.
BBI.NonPredSize -= TII->RemoveBranch(*BBI.BB); BBI.NonPredSize -= TII->RemoveBranch(*BBI.BB);
MergeBlocks(BBI, *CvtBBI); MergeBlocks(BBI, *CvtBBI);
BBI.BB->removeSuccessor(CvtBBI->BB);
bool IterIfcvt = true; bool IterIfcvt = true;
if (!isNextBlock(BBI.BB, NextBBI->BB)) { if (!canFallThroughTo(BBI.BB, NextBBI->BB)) {
InsertUncondBranch(BBI.BB, NextBBI->BB, TII); InsertUncondBranch(BBI.BB, NextBBI->BB, TII);
BBI.hasFallThrough = false; BBI.hasFallThrough = false;
// Now ifcvt'd block will look like this: // Now ifcvt'd block will look like this:
@ -611,6 +639,8 @@ bool IfConverter::IfConvertSimple(BBInfo &BBI) {
IterIfcvt = false; IterIfcvt = false;
} }
RemoveExtraEdges(BBI);
// Update block info. BB can be iteratively if-converted. // Update block info. BB can be iteratively if-converted.
if (IterIfcvt) if (IterIfcvt)
BBI.Kind = ICReAnalyze; BBI.Kind = ICReAnalyze;
@ -650,7 +680,7 @@ bool IfConverter::IfConvertTriangle(BBInfo &BBI) {
BBInfo &FalseBBI = BBAnalysis[BBI.FalseBB->getNumber()]; BBInfo &FalseBBI = BBAnalysis[BBI.FalseBB->getNumber()];
bool FalseBBDead = false; bool FalseBBDead = false;
bool IterIfcvt = true; bool IterIfcvt = true;
bool isFallThrough = isNextBlock(BBI.BB, FalseBBI.BB); bool isFallThrough = canFallThroughTo(BBI.BB, FalseBBI.BB);
if (!isFallThrough) { if (!isFallThrough) {
// Only merge them if the true block does not fallthrough to the false // Only merge them if the true block does not fallthrough to the false
// block. By not merging them, we make it possible to iteratively // block. By not merging them, we make it possible to iteratively
@ -667,9 +697,7 @@ bool IfConverter::IfConvertTriangle(BBInfo &BBI) {
IterIfcvt = false; IterIfcvt = false;
} }
// Remove entry to false edge if false block is merged in as well. RemoveExtraEdges(BBI);
if (FalseBBDead)
BBI.BB->removeSuccessor(FalseBBI.BB);
// Update block info. BB can be iteratively if-converted. // Update block info. BB can be iteratively if-converted.
if (IterIfcvt) if (IterIfcvt)
@ -767,7 +795,7 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI) {
if (NeedBr2 && !NeedBr1) { if (NeedBr2 && !NeedBr1) {
// If BBI2 isn't going to be merged in, then the existing fallthrough // If BBI2 isn't going to be merged in, then the existing fallthrough
// or branch is fine. // or branch is fine.
if (!isNextBlock(BBI.BB, *BBI2->BB->succ_begin())) { if (!canFallThroughTo(BBI.BB, *BBI2->BB->succ_begin())) {
InsertUncondBranch(BBI2->BB, *BBI2->BB->succ_begin(), TII); InsertUncondBranch(BBI2->BB, *BBI2->BB->succ_begin(), TII);
BBI2->hasFallThrough = false; BBI2->hasFallThrough = false;
} }
@ -785,7 +813,7 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI) {
// 'True' and 'false' aren't combined, see if we need to add a unconditional // 'True' and 'false' aren't combined, see if we need to add a unconditional
// branch to the 'false' block. // branch to the 'false' block.
if (NeedBr1 && !isNextBlock(BBI.BB, BBI2->BB)) { if (NeedBr1 && !canFallThroughTo(BBI.BB, BBI2->BB)) {
InsertUncondBranch(BBI.BB, BBI2->BB, TII); InsertUncondBranch(BBI.BB, BBI2->BB, TII);
BBI1->hasFallThrough = false; BBI1->hasFallThrough = false;
} }
@ -802,6 +830,8 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI) {
TailBBI.Kind = ICDead; TailBBI.Kind = ICDead;
} }
RemoveExtraEdges(BBI);
// Update block info. // Update block info.
BBI.Kind = ICDead; BBI.Kind = ICDead;
TrueBBI.Kind = ICDead; TrueBBI.Kind = ICDead;
@ -834,14 +864,6 @@ void IfConverter::PredicateBlock(BBInfo &BBI,
NumIfConvBBs++; NumIfConvBBs++;
} }
static MachineBasicBlock *getNextBlock(MachineBasicBlock *BB) {
MachineFunction::iterator I = BB;
MachineFunction::iterator E = BB->getParent()->end();
if (++I == E)
return NULL;
return I;
}
/// MergeBlocks - Move all instructions from FromBB to the end of ToBB. /// MergeBlocks - Move all instructions from FromBB to the end of ToBB.
/// ///
void IfConverter::MergeBlocks(BBInfo &ToBBI, BBInfo &FromBBI) { void IfConverter::MergeBlocks(BBInfo &ToBBI, BBInfo &FromBBI) {
@ -860,11 +882,12 @@ void IfConverter::MergeBlocks(BBInfo &ToBBI, BBInfo &FromBBI) {
std::vector<MachineBasicBlock *> Succs(FromBBI.BB->succ_begin(), std::vector<MachineBasicBlock *> Succs(FromBBI.BB->succ_begin(),
FromBBI.BB->succ_end()); FromBBI.BB->succ_end());
MachineBasicBlock *FallThrough = FromBBI.hasFallThrough MachineBasicBlock *NBB = getNextBlock(FromBBI.BB);
? getNextBlock(FromBBI.BB) : NULL; MachineBasicBlock *FallThrough = FromBBI.hasFallThrough ? NBB : NULL;
for (unsigned i = 0, e = Succs.size(); i != e; ++i) { for (unsigned i = 0, e = Succs.size(); i != e; ++i) {
MachineBasicBlock *Succ = Succs[i]; MachineBasicBlock *Succ = Succs[i];
// Fallthrough edge can't be transferred.
if (Succ == FallThrough) if (Succ == FallThrough)
continue; continue;
FromBBI.BB->removeSuccessor(Succ); FromBBI.BB->removeSuccessor(Succ);
@ -872,6 +895,10 @@ void IfConverter::MergeBlocks(BBInfo &ToBBI, BBInfo &FromBBI) {
ToBBI.BB->addSuccessor(Succ); ToBBI.BB->addSuccessor(Succ);
} }
// Now FromBBI always fall through to the next block!
if (NBB)
FromBBI.BB->addSuccessor(NBB);
ToBBI.NonPredSize += FromBBI.NonPredSize; ToBBI.NonPredSize += FromBBI.NonPredSize;
FromBBI.NonPredSize = 0; FromBBI.NonPredSize = 0;