blob: 0384fad732ef5fbc905ef2e2c9dc3feda15bea39 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- PostDominators.cpp - Post-Dominator Calculation --------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the post-dominator construction algorithms.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Analysis/PostDominators.h"
15#include "llvm/Instructions.h"
16#include "llvm/Support/CFG.h"
17#include "llvm/ADT/DepthFirstIterator.h"
18#include "llvm/ADT/SetOperations.h"
Owen Anderson715247e2007-10-03 21:25:45 +000019#include "llvm/Analysis/DominatorInternals.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020using namespace llvm;
21
22//===----------------------------------------------------------------------===//
23// PostDominatorTree Implementation
24//===----------------------------------------------------------------------===//
25
26char PostDominatorTree::ID = 0;
27char PostDominanceFrontier::ID = 0;
28static RegisterPass<PostDominatorTree>
29F("postdomtree", "Post-Dominator Tree Construction", true);
30
Owen Anderson94d4bb52007-10-03 03:20:17 +000031bool PostDominatorTree::runOnFunction(Function &F) {
32 reset(); // Reset from the last time we were run...
33
34 // Initialize the roots list
35 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
36 TerminatorInst *Insn = I->getTerminator();
37 if (Insn->getNumSuccessors() == 0) {
38 // Unreachable block is not a root node.
39 if (!isa<UnreachableInst>(Insn))
40 Roots.push_back(I);
41 }
42
43 // Prepopulate maps so that we don't get iterator invalidation issues later.
44 IDoms[I] = 0;
45 DomTreeNodes[I] = 0;
46 }
47
48 Vertex.push_back(0);
49
Owen Andersonee06c722007-10-16 19:59:25 +000050 Calculate<Inverse<BasicBlock*>, GraphTraits<Inverse<BasicBlock*> > >(*this, F);
Owen Anderson94d4bb52007-10-03 03:20:17 +000051 return false;
52}
53
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054//===----------------------------------------------------------------------===//
55// PostDominanceFrontier Implementation
56//===----------------------------------------------------------------------===//
57
58static RegisterPass<PostDominanceFrontier>
59H("postdomfrontier", "Post-Dominance Frontier Construction", true);
60
61const DominanceFrontier::DomSetType &
62PostDominanceFrontier::calculate(const PostDominatorTree &DT,
63 const DomTreeNode *Node) {
64 // Loop over CFG successors to calculate DFlocal[Node]
65 BasicBlock *BB = Node->getBlock();
66 DomSetType &S = Frontiers[BB]; // The new set to fill in...
67 if (getRoots().empty()) return S;
68
69 if (BB)
70 for (pred_iterator SI = pred_begin(BB), SE = pred_end(BB);
71 SI != SE; ++SI) {
72 // Does Node immediately dominate this predecessor?
73 DomTreeNode *SINode = DT[*SI];
74 if (SINode && SINode->getIDom() != Node)
75 S.insert(*SI);
76 }
77
78 // At this point, S is DFlocal. Now we union in DFup's of our children...
79 // Loop through and visit the nodes that Node immediately dominates (Node's
80 // children in the IDomTree)
81 //
82 for (DomTreeNode::const_iterator
83 NI = Node->begin(), NE = Node->end(); NI != NE; ++NI) {
84 DomTreeNode *IDominee = *NI;
85 const DomSetType &ChildDF = calculate(DT, IDominee);
86
87 DomSetType::const_iterator CDFI = ChildDF.begin(), CDFE = ChildDF.end();
88 for (; CDFI != CDFE; ++CDFI) {
89 if (!DT.properlyDominates(Node, DT[*CDFI]))
90 S.insert(*CDFI);
91 }
92 }
93
94 return S;
95}
96
97// Ensure that this .cpp file gets linked when PostDominators.h is used.
98DEFINING_FILE_FOR(PostDominanceFrontier)