Searched refs:NewPH (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp673 BasicBlock *NewPH = CloneBasicBlock(OrigPH, VMap, NameSuffix, F); local
675 VMap[OrigPH] = NewPH;
676 Blocks.push_back(NewPH);
680 ParentLoop->addBasicBlockToLoop(NewPH, *LI);
683 DT->addNewBlock(NewPH, LoopDomBB);
693 DT->addNewBlock(NewBB, NewPH);
707 NewPH);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DLoopRotation.cpp318 BasicBlock *NewPH = SplitCriticalEdge(OrigPreheader, NewHeader, this); local
319 NewPH->setName(NewHeader->getName() + ".lr.ph");
H A DLoopUnswitch.cpp525 BasicBlock *NewPH = SplitEdge(loopPreheader, loopHeader, this); local
540 EmitPreheaderBranchOnCondition(Cond, Val, NewExit, NewPH,
H A DLoopStrengthReduce.cpp1558 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH); local
1565 NewPH, CFP, "IV.S.next.", Incr);
1567 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1568 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
1571 ShadowUse->replaceAllUsesWith(NewPH);
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1852 MachineBasicBlock *NewPH = MF->CreateMachineBasicBlock(); local
1853 MF->insert(Header->getIterator(), NewPH);
1867 NewPH->insert(NewPH->end(), NewPN);
1899 PN->addOperand(MachineOperand::CreateMBB(NewPH));
1916 MO.setMBB(NewPH);
1937 TII->InsertBranch(*PB, NewPH, nullptr, EmptyCond, DL);
1938 PB->ReplaceUsesOfBlockWith(Header, NewPH);
1952 TII->InsertBranch(*NewPH, Header, nullptr, EmptyCond, DL);
1953 NewPH
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopRotation.cpp391 BasicBlock *NewPH = SplitCriticalEdge( local
394 NewPH->setName(NewHeader->getName() + ".lr.ph");
H A DLoopUnswitch.cpp829 BasicBlock *NewPH = SplitEdge(loopPreheader, loopHeader, DT, LI); local
844 EmitPreheaderBranchOnCondition(Cond, Val, NewExit, NewPH,
H A DLoopStrengthReduce.cpp1874 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH); local
1881 NewPH, CFP, "IV.S.next.", Incr);
1883 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1884 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
1887 ShadowUse->replaceAllUsesWith(NewPH);

Completed in 612 milliseconds