HomeSort by relevance Sort by last modified time
    Searched defs:PostDominatorTree (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Analysis/
PostDominators.cpp 27 // 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/
PostDominators.h 21 /// PostDominatorTree Class - Concrete subclass of DominatorTree that is used to
24 struct PostDominatorTree : public FunctionPass {
28 PostDominatorTree() : FunctionPass(ID) {
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 363 milliseconds