Lines Matching refs:StructurizeCFG
164 class StructurizeCFG : public RegionPass { class
244 StructurizeCFG() : in StructurizeCFG() function in __anonb3112ed60111::StructurizeCFG
249 StructurizeCFG(bool SkipUniformRegions) : in StructurizeCFG() function in __anonb3112ed60111::StructurizeCFG
276 char StructurizeCFG::ID = 0;
278 INITIALIZE_PASS_BEGIN(StructurizeCFG, "structurizecfg", "Structurize the CFG",
284 INITIALIZE_PASS_END(StructurizeCFG, "structurizecfg", "Structurize the CFG", in INITIALIZE_PASS_DEPENDENCY()
288 bool StructurizeCFG::doInitialization(Region *R, RGPassManager &RGM) { in INITIALIZE_PASS_DEPENDENCY()
300 void StructurizeCFG::orderNodes() { in orderNodes()
359 void StructurizeCFG::analyzeLoops(RegionNode *N) { in analyzeLoops()
378 Value *StructurizeCFG::invert(Value *Condition) { in invert()
416 Value *StructurizeCFG::buildCondition(BranchInst *Term, unsigned Idx, in buildCondition()
429 void StructurizeCFG::gatherPredicates(RegionNode *N) { in gatherPredicates()
493 void StructurizeCFG::collectInfos() { in collectInfos()
523 void StructurizeCFG::insertConditions(bool Loops) { in insertConditions()
569 void StructurizeCFG::delPhiValues(BasicBlock *From, BasicBlock *To) { in delPhiValues()
583 void StructurizeCFG::addPhiValues(BasicBlock *From, BasicBlock *To) { in addPhiValues()
595 void StructurizeCFG::setPhiValues() { in setPhiValues()
639 void StructurizeCFG::killTerminator(BasicBlock *BB) { in killTerminator()
654 void StructurizeCFG::changeExit(RegionNode *Node, BasicBlock *NewExit, in changeExit()
701 BasicBlock *StructurizeCFG::getNextFlow(BasicBlock *Dominator) { in getNextFlow()
713 BasicBlock *StructurizeCFG::needPrefix(bool NeedEmpty) { in needPrefix()
733 BasicBlock *StructurizeCFG::needPostfix(BasicBlock *Flow, in needPostfix()
745 void StructurizeCFG::setPrevNode(BasicBlock *BB) { in setPrevNode()
751 bool StructurizeCFG::dominatesPredicates(BasicBlock *BB, RegionNode *Node) { in dominatesPredicates()
763 bool StructurizeCFG::isPredictableTrue(RegionNode *Node) { in isPredictableTrue()
786 void StructurizeCFG::wireFlow(bool ExitUseAllowed, in wireFlow()
822 void StructurizeCFG::handleLoops(bool ExitUseAllowed, in handleLoops()
866 void StructurizeCFG::createFlow() { in createFlow()
890 void StructurizeCFG::rebuildSSA() { in rebuildSSA()
923 bool StructurizeCFG::hasOnlyUniformBranches(const Region *R) { in hasOnlyUniformBranches()
937 bool StructurizeCFG::runOnRegion(Region *R, RGPassManager &RGM) { in runOnRegion()
994 return new StructurizeCFG(SkipUniformRegions); in createStructurizeCFGPass()