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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp1890 MachineBasicBlock *NewPH = MF->CreateMachineBasicBlock(); local
1891 MF->insert(Header->getIterator(), NewPH);
1905 NewPH->insert(NewPH->end(), NewPN);
1937 PN->addOperand(MachineOperand::CreateMBB(NewPH));
1953 MO.setMBB(NewPH);
1974 TII->insertBranch(*PB, NewPH, nullptr, EmptyCond, DL);
1975 PB->ReplaceUsesOfBlockWith(Header, NewPH);
1989 TII->insertBranch(*NewPH, Header, nullptr, EmptyCond, DL);
1990 NewPH
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp768 BasicBlock *NewPH = CloneBasicBlock(OrigPH, VMap, NameSuffix, F); local
770 VMap[OrigPH] = NewPH;
771 Blocks.push_back(NewPH);
775 ParentLoop->addBasicBlockToLoop(NewPH, *LI);
778 DT->addNewBlock(NewPH, LoopDomBB);
808 DT->addNewBlock(NewBB, NewPH);
827 NewPH);
H A DLoopRotationUtils.cpp526 BasicBlock *NewPH = SplitCriticalEdge(
529 NewPH->setName(NewHeader->getName() + ".lr.ph");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimpleLoopUnswitch.cpp449 BasicBlock *NewPH = SplitEdge(OldPH, L.getHeader(), &DT, &LI, MSSAU); local
488 BI.setSuccessor(1 - LoopExitSuccIdx, NewPH);
501 *UnswitchedBB, *NewPH);
552 hoistLoopToNewParent(L, *NewPH, DT, LI, MSSAU, SE);
706 BasicBlock *NewPH = SplitEdge(OldPH, L.getHeader(), &DT, &LI, MSSAU); local
710 auto *NewSI = SwitchInst::Create(LoopCond, NewPH, ExitCases.size(), OldPH);
784 NewSIW.addCase(Case.getCaseValue(), NewPH,
862 hoistLoopToNewParent(L, *NewPH, DT, LI, MSSAU, SE);
H A DLoopUnswitch.cpp993 BasicBlock *NewPH = SplitEdge(LoopPreheader, LoopHeader, DT, LI, MSSAU.get()); local
1011 emitPreheaderBranchOnCondition(Cond, Val, NewExit, NewPH, OldBranch, TI);
H A DLoopStrengthReduce.cpp2158 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH); local
2165 NewPH, CFP, "IV.S.next.", Incr);
2167 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
2168 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
2171 ShadowUse->replaceAllUsesWith(NewPH);

Completed in 279 milliseconds