use of org.mapleir.ir.cfg.FastBlockGraph in project maple-ir by LLVM-but-worse.
the class BoissinotDestructor method traverseDominatorTree.
private SimpleDfs<BasicBlock> traverseDominatorTree() {
FastBlockGraph dominatorTree = new FastBlockGraph();
resolver.domc.makeTree(dominatorTree);
dominatorTree.getEntries().add(dummyHead);
return new SimpleDfs<>(dominatorTree, dummyHead, SimpleDfs.PRE | SimpleDfs.TOPO);
}
Aggregations