2002-08-02 16:43:03 +00:00
|
|
|
//===- PostDominators.cpp - Post-Dominator Calculation --------------------===//
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 21:13:18 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
2002-08-02 16:43:03 +00:00
|
|
|
// This file implements the post-dominator construction algorithms.
|
2001-07-02 05:46:38 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-08-21 23:43:50 +00:00
|
|
|
#include "llvm/Analysis/PostDominators.h"
|
2004-07-29 17:30:56 +00:00
|
|
|
#include "llvm/Instructions.h"
|
2002-02-12 21:07:25 +00:00
|
|
|
#include "llvm/Support/CFG.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
|
|
|
#include "llvm/ADT/SetOperations.h"
|
2007-09-23 22:21:00 +00:00
|
|
|
#include "PostDominatorCalculation.h"
|
2003-12-07 00:35:42 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-03-11 02:20:46 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-04-15 08:47:27 +00:00
|
|
|
// PostDominatorTree Implementation
|
2006-03-11 02:20:46 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char PostDominatorTree::ID = 0;
|
|
|
|
char PostDominanceFrontier::ID = 0;
|
2007-04-15 08:47:27 +00:00
|
|
|
static RegisterPass<PostDominatorTree>
|
|
|
|
F("postdomtree", "Post-Dominator Tree Construction", true);
|
2006-03-11 02:20:46 +00:00
|
|
|
|
2007-08-05 00:02:00 +00:00
|
|
|
unsigned PostDominatorTree::DFSPass(BasicBlock *V, unsigned N) {
|
|
|
|
std::vector<BasicBlock *> workStack;
|
2007-08-05 00:15:57 +00:00
|
|
|
SmallPtrSet<BasicBlock *, 32> Visited;
|
2007-08-05 00:02:00 +00:00
|
|
|
workStack.push_back(V);
|
2006-09-07 23:22:37 +00:00
|
|
|
|
|
|
|
do {
|
2007-08-05 00:02:00 +00:00
|
|
|
BasicBlock *currentBB = workStack.back();
|
|
|
|
InfoRec &CurVInfo = Info[currentBB];
|
2006-09-07 23:22:37 +00:00
|
|
|
|
2006-09-27 17:18:05 +00:00
|
|
|
// Visit each block only once.
|
2007-08-05 00:15:57 +00:00
|
|
|
if (Visited.insert(currentBB)) {
|
2007-08-05 00:02:00 +00:00
|
|
|
CurVInfo.Semi = ++N;
|
|
|
|
CurVInfo.Label = currentBB;
|
2006-09-27 17:18:05 +00:00
|
|
|
|
|
|
|
Vertex.push_back(currentBB); // Vertex[n] = current;
|
|
|
|
// Info[currentBB].Ancestor = 0;
|
|
|
|
// Ancestor[n] = 0
|
|
|
|
// Child[currentBB] = 0;
|
2007-08-05 00:02:00 +00:00
|
|
|
CurVInfo.Size = 1; // Size[currentBB] = 1
|
2006-09-27 17:18:05 +00:00
|
|
|
}
|
2006-09-07 23:22:37 +00:00
|
|
|
|
2006-09-27 17:18:05 +00:00
|
|
|
// Visit children
|
|
|
|
bool visitChild = false;
|
2006-09-07 23:22:37 +00:00
|
|
|
for (pred_iterator PI = pred_begin(currentBB), PE = pred_end(currentBB);
|
2006-09-27 17:18:05 +00:00
|
|
|
PI != PE && !visitChild; ++PI) {
|
2006-09-07 23:22:37 +00:00
|
|
|
InfoRec &SuccVInfo = Info[*PI];
|
|
|
|
if (SuccVInfo.Semi == 0) {
|
2006-09-07 23:29:19 +00:00
|
|
|
SuccVInfo.Parent = currentBB;
|
2007-08-05 00:15:57 +00:00
|
|
|
if (!Visited.count(*PI)) {
|
2007-08-05 00:02:00 +00:00
|
|
|
workStack.push_back(*PI);
|
2006-09-27 17:18:05 +00:00
|
|
|
visitChild = true;
|
|
|
|
}
|
2006-09-07 23:22:37 +00:00
|
|
|
}
|
2006-03-11 02:20:46 +00:00
|
|
|
}
|
2006-09-27 17:18:05 +00:00
|
|
|
|
|
|
|
// If all children are visited or if this block has no child then pop this
|
|
|
|
// block out of workStack.
|
|
|
|
if (!visitChild)
|
|
|
|
workStack.pop_back();
|
|
|
|
|
2006-09-07 23:22:37 +00:00
|
|
|
} while (!workStack.empty());
|
2006-09-27 17:18:05 +00:00
|
|
|
|
2006-03-11 02:20:46 +00:00
|
|
|
return N;
|
|
|
|
}
|
|
|
|
|
2001-07-02 05:46:38 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-02 16:43:03 +00:00
|
|
|
// PostDominanceFrontier Implementation
|
2001-07-02 05:46:38 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-08-27 22:30:17 +00:00
|
|
|
static RegisterPass<PostDominanceFrontier>
|
2002-07-30 16:27:52 +00:00
|
|
|
H("postdomfrontier", "Post-Dominance Frontier Construction", true);
|
2002-01-31 00:42:27 +00:00
|
|
|
|
2002-04-28 16:21:30 +00:00
|
|
|
const DominanceFrontier::DomSetType &
|
2005-04-21 21:13:18 +00:00
|
|
|
PostDominanceFrontier::calculate(const PostDominatorTree &DT,
|
2007-06-04 00:32:22 +00:00
|
|
|
const DomTreeNode *Node) {
|
2001-07-06 16:58:22 +00:00
|
|
|
// Loop over CFG successors to calculate DFlocal[Node]
|
2003-09-11 16:26:13 +00:00
|
|
|
BasicBlock *BB = Node->getBlock();
|
2001-07-06 16:58:22 +00:00
|
|
|
DomSetType &S = Frontiers[BB]; // The new set to fill in...
|
2003-09-10 20:37:08 +00:00
|
|
|
if (getRoots().empty()) return S;
|
|
|
|
|
|
|
|
if (BB)
|
|
|
|
for (pred_iterator SI = pred_begin(BB), SE = pred_end(BB);
|
2007-04-18 01:19:55 +00:00
|
|
|
SI != SE; ++SI) {
|
2003-09-11 18:14:24 +00:00
|
|
|
// Does Node immediately dominate this predecessor?
|
2007-06-04 00:32:22 +00:00
|
|
|
DomTreeNode *SINode = DT[*SI];
|
2007-04-18 01:19:55 +00:00
|
|
|
if (SINode && SINode->getIDom() != Node)
|
2003-09-10 20:37:08 +00:00
|
|
|
S.insert(*SI);
|
2007-04-18 01:19:55 +00:00
|
|
|
}
|
2001-07-06 16:58:22 +00:00
|
|
|
|
|
|
|
// At this point, S is DFlocal. Now we union in DFup's of our children...
|
|
|
|
// Loop through and visit the nodes that Node immediately dominates (Node's
|
|
|
|
// children in the IDomTree)
|
|
|
|
//
|
2007-06-04 00:32:22 +00:00
|
|
|
for (DomTreeNode::const_iterator
|
2002-07-26 18:40:14 +00:00
|
|
|
NI = Node->begin(), NE = Node->end(); NI != NE; ++NI) {
|
2007-06-04 00:32:22 +00:00
|
|
|
DomTreeNode *IDominee = *NI;
|
2002-07-26 18:40:14 +00:00
|
|
|
const DomSetType &ChildDF = calculate(DT, IDominee);
|
2001-07-06 16:58:22 +00:00
|
|
|
|
|
|
|
DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
|
|
|
|
for (; CDFI != CDFE; ++CDFI) {
|
2007-06-07 17:47:21 +00:00
|
|
|
if (!DT.properlyDominates(Node, DT[*CDFI]))
|
2005-04-22 04:01:18 +00:00
|
|
|
S.insert(*CDFI);
|
2001-07-06 16:58:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return S;
|
|
|
|
}
|
2002-08-21 23:43:50 +00:00
|
|
|
|
2006-06-07 22:00:26 +00:00
|
|
|
// Ensure that this .cpp file gets linked when PostDominators.h is used.
|
|
|
|
DEFINING_FILE_FOR(PostDominanceFrontier)
|