Lines Matching refs:DominatorTree
30 // DominatorTree implements an algorithm for finding immediate dominators,
32 class DominatorTree : public Graph
35 DominatorTree(Graph *cfg);
36 ~DominatorTree() { }
65 void DominatorTree::debugPrint()
76 DominatorTree::DominatorTree(Graph *cfgraph) : cfg(cfgraph),
98 void DominatorTree::buildDFS(Graph::Node *node)
110 void DominatorTree::squash(int v)
121 int DominatorTree::eval(int v)
129 void DominatorTree::link(int v, int w)
134 void DominatorTree::build()
190 void DominatorTree::findDominanceFrontiers()
328 domTree = new DominatorTree(&cfg);
329 reinterpret_cast<DominatorTree *>(domTree)->findDominanceFrontiers();