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

/external/llvm/lib/Analysis/
H A DPostDominators.cpp26 // PostDominatorTree Implementation
29 char PostDominatorTree::ID = 0;
30 INITIALIZE_PASS(PostDominatorTree, "postdomtree",
33 bool PostDominatorTree::runOnFunction(Function &F) {
38 PostDominatorTree::~PostDominatorTree() {
42 void PostDominatorTree::print(raw_ostream &OS, const Module *) const {
48 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() override;
97 template <> struct GraphTraits<PostDominatorTree*>
99 static NodeType *getEntryNode(PostDominatorTree *DT) {
103 static nodes_iterator nodes_begin(PostDominatorTree *N) {
110 static nodes_iterator nodes_end(PostDominatorTree *N) {

Completed in 494 milliseconds