2002-08-02 18:43:03 +02:00
|
|
|
//===- PostDominators.cpp - Post-Dominator Calculation --------------------===//
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-02 07:46:38 +02:00
|
|
|
//
|
2002-08-02 18:43:03 +02:00
|
|
|
// This file implements the post-dominator construction algorithms.
|
2001-07-02 07:46:38 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-04-16 06:21:16 +02:00
|
|
|
#define DEBUG_TYPE "postdomtree"
|
|
|
|
|
2002-08-22 01:43:50 +02:00
|
|
|
#include "llvm/Analysis/PostDominators.h"
|
2004-07-29 19:30:56 +02:00
|
|
|
#include "llvm/Instructions.h"
|
2002-02-12 22:07:25 +01:00
|
|
|
#include "llvm/Support/CFG.h"
|
2008-04-16 06:21:16 +02:00
|
|
|
#include "llvm/Support/Debug.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/ADT/DepthFirstIterator.h"
|
|
|
|
#include "llvm/ADT/SetOperations.h"
|
2007-10-03 23:25:45 +02:00
|
|
|
#include "llvm/Analysis/DominatorInternals.h"
|
2003-12-07 01:35:42 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2006-03-11 03:20:46 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2007-04-15 10:47:27 +02:00
|
|
|
// PostDominatorTree Implementation
|
2006-03-11 03:20:46 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2007-05-03 03:11:54 +02:00
|
|
|
char PostDominatorTree::ID = 0;
|
|
|
|
char PostDominanceFrontier::ID = 0;
|
2007-04-15 10:47:27 +02:00
|
|
|
static RegisterPass<PostDominatorTree>
|
2008-03-21 00:27:18 +01:00
|
|
|
F("postdomtree", "Post-Dominator Tree Construction", true, true);
|
2006-03-11 03:20:46 +01:00
|
|
|
|
2007-10-03 05:20:17 +02:00
|
|
|
bool PostDominatorTree::runOnFunction(Function &F) {
|
2007-10-23 22:58:37 +02:00
|
|
|
DT->recalculate(F);
|
2009-12-23 22:16:54 +01:00
|
|
|
DEBUG(DT->print(dbgs()));
|
2007-10-03 05:20:17 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-08-23 07:17:37 +02:00
|
|
|
PostDominatorTree::~PostDominatorTree() {
|
2008-05-03 22:25:26 +02:00
|
|
|
delete DT;
|
|
|
|
}
|
|
|
|
|
2009-08-23 08:03:38 +02:00
|
|
|
void PostDominatorTree::print(raw_ostream &OS, const Module *) const {
|
|
|
|
DT->print(OS);
|
2009-08-23 07:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-29 19:00:13 +02:00
|
|
|
FunctionPass* llvm::createPostDomTree() {
|
|
|
|
return new PostDominatorTree();
|
|
|
|
}
|
|
|
|
|
2001-07-02 07:46:38 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-08-02 18:43:03 +02:00
|
|
|
// PostDominanceFrontier Implementation
|
2001-07-02 07:46:38 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-08-28 00:30:17 +02:00
|
|
|
static RegisterPass<PostDominanceFrontier>
|
2008-03-21 00:27:18 +01:00
|
|
|
H("postdomfrontier", "Post-Dominance Frontier Construction", true, true);
|
2002-01-31 01:42:27 +01:00
|
|
|
|
2002-04-28 18:21:30 +02:00
|
|
|
const DominanceFrontier::DomSetType &
|
2005-04-21 23:13:18 +02:00
|
|
|
PostDominanceFrontier::calculate(const PostDominatorTree &DT,
|
2007-06-04 02:32:22 +02:00
|
|
|
const DomTreeNode *Node) {
|
2001-07-06 18:58:22 +02:00
|
|
|
// Loop over CFG successors to calculate DFlocal[Node]
|
2003-09-11 18:26:13 +02:00
|
|
|
BasicBlock *BB = Node->getBlock();
|
2001-07-06 18:58:22 +02:00
|
|
|
DomSetType &S = Frontiers[BB]; // The new set to fill in...
|
2003-09-10 22:37:08 +02:00
|
|
|
if (getRoots().empty()) return S;
|
|
|
|
|
|
|
|
if (BB)
|
|
|
|
for (pred_iterator SI = pred_begin(BB), SE = pred_end(BB);
|
2007-04-18 03:19:55 +02:00
|
|
|
SI != SE; ++SI) {
|
2003-09-11 20:14:24 +02:00
|
|
|
// Does Node immediately dominate this predecessor?
|
2007-06-04 02:32:22 +02:00
|
|
|
DomTreeNode *SINode = DT[*SI];
|
2007-04-18 03:19:55 +02:00
|
|
|
if (SINode && SINode->getIDom() != Node)
|
2003-09-10 22:37:08 +02:00
|
|
|
S.insert(*SI);
|
2007-04-18 03:19:55 +02:00
|
|
|
}
|
2001-07-06 18:58:22 +02: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 02:32:22 +02:00
|
|
|
for (DomTreeNode::const_iterator
|
2002-07-26 20:40:14 +02:00
|
|
|
NI = Node->begin(), NE = Node->end(); NI != NE; ++NI) {
|
2007-06-04 02:32:22 +02:00
|
|
|
DomTreeNode *IDominee = *NI;
|
2002-07-26 20:40:14 +02:00
|
|
|
const DomSetType &ChildDF = calculate(DT, IDominee);
|
2001-07-06 18:58:22 +02:00
|
|
|
|
|
|
|
DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
|
|
|
|
for (; CDFI != CDFE; ++CDFI) {
|
2007-06-07 19:47:21 +02:00
|
|
|
if (!DT.properlyDominates(Node, DT[*CDFI]))
|
2005-04-22 06:01:18 +02:00
|
|
|
S.insert(*CDFI);
|
2001-07-06 18:58:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return S;
|
|
|
|
}
|
2008-05-29 19:00:13 +02:00
|
|
|
|
|
|
|
FunctionPass* llvm::createPostDomFrontier() {
|
|
|
|
return new PostDominanceFrontier();
|
2008-05-29 23:05:16 +02:00
|
|
|
}
|