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