Searched refs:TmpBB (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | GVN.cpp | 1574 BasicBlock *TmpBB = LoadBB; in PerformLoadPRE() local 1594 while (TmpBB->getSinglePredecessor()) { in PerformLoadPRE() 1595 TmpBB = TmpBB->getSinglePredecessor(); in PerformLoadPRE() 1596 if (TmpBB == LoadBB) // Infinite (unreachable) loop. in PerformLoadPRE() 1598 if (Blockers.count(TmpBB)) in PerformLoadPRE() 1606 if (TmpBB->getTerminator()->getNumSuccessors() != 1) in PerformLoadPRE() 1611 MustEnsureSafetyOfSpeculativeExecution || ICF->hasICF(TmpBB); in PerformLoadPRE() 1614 assert(TmpBB); in PerformLoadPRE() 1615 LoadBB = TmpBB; in PerformLoadPRE()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | RDFLiveness.cpp | 224 std::vector<MachineBasicBlock *> TmpBB; in getAllReachingDefs() local 226 TmpBB.push_back(Bucket.first); in getAllReachingDefs() 233 llvm::sort(TmpBB, in getAllReachingDefs() 237 for (MachineBasicBlock *MBB : llvm::reverse(TmpBB)) { in getAllReachingDefs()
|
H A D | CodeGenPrepare.cpp | 8793 auto *TmpBB = in splitBranchCondition() local 8797 FreshBBs.insert(TmpBB); in splitBranchCondition() 8807 Br1->setSuccessor(0, TmpBB); in splitBranchCondition() 8809 Br1->setSuccessor(1, TmpBB); in splitBranchCondition() 8812 auto *Br2 = IRBuilder<>(TmpBB).CreateCondBr(Cond2, TBB, FBB); in splitBranchCondition() 8831 TBB->replacePhiUsesWith(&BB, TmpBB); in splitBranchCondition() 8836 PN.addIncoming(Val, TmpBB); in splitBranchCondition() 8919 TmpBB->dump()); in splitBranchCondition()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | IRTranslator.cpp | 472 MachineBasicBlock *TmpBB = in findMergedConditions() local 474 CurBB->getParent()->insert(++BBI, TmpBB); in findMergedConditions() 500 findMergedConditions(BOpOp0, TBB, TmpBB, CurBB, SwitchBB, Opc, NewTrueProb, in findMergedConditions() 507 findMergedConditions(BOpOp1, TBB, FBB, TmpBB, SwitchBB, Opc, Probs[0], in findMergedConditions() 533 findMergedConditions(BOpOp0, TmpBB, FBB, CurBB, SwitchBB, Opc, NewTrueProb, in findMergedConditions() 540 findMergedConditions(BOpOp1, TBB, FBB, TmpBB, SwitchBB, Opc, Probs[0], in findMergedConditions()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 2677 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); in FindMergedConditions() local 2678 CurBB->getParent()->insert(++BBI, TmpBB); in FindMergedConditions() 2704 FindMergedConditions(BOpOp0, TBB, TmpBB, CurBB, SwitchBB, Opc, NewTrueProb, in FindMergedConditions() 2711 FindMergedConditions(BOpOp1, TBB, FBB, TmpBB, SwitchBB, Opc, Probs[0], in FindMergedConditions() 2737 FindMergedConditions(BOpOp0, TmpBB, FBB, CurBB, SwitchBB, Opc, NewTrueProb, in FindMergedConditions() 2744 FindMergedConditions(BOpOp1, TBB, FBB, TmpBB, SwitchBB, Opc, Probs[0], in FindMergedConditions()
|