/external/llvm-project/llvm/lib/CodeGen/ |
D | RDFLiveness.cpp | 228 std::vector<MachineBasicBlock*> TmpBB; in getAllReachingDefs() local 230 TmpBB.push_back(Bucket.first); in getAllReachingDefs() 237 llvm::sort(TmpBB.begin(), TmpBB.end(), in getAllReachingDefs() 241 for (auto I = TmpBB.rbegin(), E = TmpBB.rend(); I != E; ++I) { in getAllReachingDefs()
|
D | CodeGenPrepare.cpp | 7869 auto *TmpBB = in splitBranchCondition() local 7881 Br1->setSuccessor(0, TmpBB); in splitBranchCondition() 7883 Br1->setSuccessor(1, TmpBB); in splitBranchCondition() 7886 auto *Br2 = IRBuilder<>(TmpBB).CreateCondBr(Cond2, TBB, FBB); in splitBranchCondition() 7905 TBB->replacePhiUsesWith(&BB, TmpBB); in splitBranchCondition() 7910 PN.addIncoming(Val, TmpBB); in splitBranchCondition() 7988 TmpBB->dump()); in splitBranchCondition()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 1042 BasicBlock *TmpBB = LoadBB; in PerformLoadPRE() local 1062 while (TmpBB->getSinglePredecessor()) { in PerformLoadPRE() 1063 TmpBB = TmpBB->getSinglePredecessor(); in PerformLoadPRE() 1064 if (TmpBB == LoadBB) // Infinite (unreachable) loop. in PerformLoadPRE() 1066 if (Blockers.count(TmpBB)) in PerformLoadPRE() 1074 if (TmpBB->getTerminator()->getNumSuccessors() != 1) in PerformLoadPRE() 1078 if (!IsSafeToSpeculativelyExecute && ICF->hasICF(TmpBB)) in PerformLoadPRE() 1082 assert(TmpBB); in PerformLoadPRE() 1083 LoadBB = TmpBB; in PerformLoadPRE()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 1143 BasicBlock *TmpBB = LoadBB; in PerformLoadPRE() local 1163 while (TmpBB->getSinglePredecessor()) { in PerformLoadPRE() 1164 TmpBB = TmpBB->getSinglePredecessor(); in PerformLoadPRE() 1165 if (TmpBB == LoadBB) // Infinite (unreachable) loop. in PerformLoadPRE() 1167 if (Blockers.count(TmpBB)) in PerformLoadPRE() 1175 if (TmpBB->getTerminator()->getNumSuccessors() != 1) in PerformLoadPRE() 1180 MustEnsureSafetyOfSpeculativeExecution || ICF->hasICF(TmpBB); in PerformLoadPRE() 1183 assert(TmpBB); in PerformLoadPRE() 1184 LoadBB = TmpBB; in PerformLoadPRE()
|
/external/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 1410 BasicBlock *TmpBB = LoadBB; in PerformLoadPRE() local 1412 while (TmpBB->getSinglePredecessor()) { in PerformLoadPRE() 1413 TmpBB = TmpBB->getSinglePredecessor(); in PerformLoadPRE() 1414 if (TmpBB == LoadBB) // Infinite (unreachable) loop. in PerformLoadPRE() 1416 if (Blockers.count(TmpBB)) in PerformLoadPRE() 1424 if (TmpBB->getTerminator()->getNumSuccessors() != 1) in PerformLoadPRE() 1428 assert(TmpBB); in PerformLoadPRE() 1429 LoadBB = TmpBB; in PerformLoadPRE()
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | IRTranslator.cpp | 456 MachineBasicBlock *TmpBB = in findMergedConditions() local 458 CurBB->getParent()->insert(++BBI, TmpBB); in findMergedConditions() 484 findMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc, in findMergedConditions() 491 findMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in findMergedConditions() 517 findMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc, in findMergedConditions() 524 findMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in findMergedConditions()
|
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 5516 auto TmpBB = in splitBranchCondition() local 5528 Br1->setSuccessor(0, TmpBB); in splitBranchCondition() 5530 Br1->setSuccessor(1, TmpBB); in splitBranchCondition() 5533 auto *Br2 = IRBuilder<>(TmpBB).CreateCondBr(Cond2, TBB, FBB); in splitBranchCondition() 5558 PN->setIncomingBlock(i, TmpBB); in splitBranchCondition() 5567 PN->addIncoming(Val, TmpBB); in splitBranchCondition() 5648 TmpBB->dump()); in splitBranchCondition()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 7379 auto TmpBB = in splitBranchCondition() local 7391 Br1->setSuccessor(0, TmpBB); in splitBranchCondition() 7393 Br1->setSuccessor(1, TmpBB); in splitBranchCondition() 7396 auto *Br2 = IRBuilder<>(TmpBB).CreateCondBr(Cond2, TBB, FBB); in splitBranchCondition() 7415 TBB->replacePhiUsesWith(&BB, TmpBB); in splitBranchCondition() 7420 PN.addIncoming(Val, TmpBB); in splitBranchCondition() 7498 TmpBB->dump()); in splitBranchCondition()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 1681 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); in FindMergedConditions() local 1682 CurBB->getParent()->insert(++BBI, TmpBB); in FindMergedConditions() 1708 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc, in FindMergedConditions() 1715 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in FindMergedConditions() 1741 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc, in FindMergedConditions() 1748 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in FindMergedConditions()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 2150 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); in FindMergedConditions() local 2151 CurBB->getParent()->insert(++BBI, TmpBB); in FindMergedConditions() 2177 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc, in FindMergedConditions() 2184 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in FindMergedConditions() 2210 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc, in FindMergedConditions() 2217 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in FindMergedConditions()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 2118 MachineBasicBlock *TmpBB = MF.CreateMachineBasicBlock(CurBB->getBasicBlock()); in FindMergedConditions() local 2119 CurBB->getParent()->insert(++BBI, TmpBB); in FindMergedConditions() 2145 FindMergedConditions(BOp->getOperand(0), TBB, TmpBB, CurBB, SwitchBB, Opc, in FindMergedConditions() 2152 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in FindMergedConditions() 2178 FindMergedConditions(BOp->getOperand(0), TmpBB, FBB, CurBB, SwitchBB, Opc, in FindMergedConditions() 2185 FindMergedConditions(BOp->getOperand(1), TBB, FBB, TmpBB, SwitchBB, Opc, in FindMergedConditions()
|