Searched defs:PostDominatorTree (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/
H A DPostDominators.cpp27 // PostDominatorTree Implementation
30 char PostDominatorTree::ID = 0;
31 INITIALIZE_PASS(PostDominatorTree, "postdomtree",
34 bool PostDominatorTree::runOnFunction(Function &F) {
39 PostDominatorTree::~PostDominatorTree() {
43 void PostDominatorTree::print(raw_ostream &OS, const Module *) const {
49 return new PostDominatorTree();
/external/llvm/include/llvm/Analysis/
H A DPostDominators.h21 /// PostDominatorTree Class - Concrete subclass of DominatorTree that is used to
24 struct PostDominatorTree : public FunctionPass { struct in namespace:llvm
28 PostDominatorTree() : FunctionPass(ID) { function in struct:llvm::PostDominatorTree
33 ~PostDominatorTree();
86 template <> struct GraphTraits<PostDominatorTree*>
88 static NodeType *getEntryNode(PostDominatorTree *DT) {
92 static nodes_iterator nodes_begin(PostDominatorTree *N) {
99 static nodes_iterator nodes_end(PostDominatorTree *N) {

Completed in 290 milliseconds