Lines Matching refs:NextState

791       APInt NextState = TPath.getExitValue();  in isLegalAndProfitableToTransform()  local
796 BasicBlock *VisitedBB = getClonedBB(BB, NextState, DuplicateMap); in isLegalAndProfitableToTransform()
799 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
812 VisitedBB = getClonedBB(BB, NextState, DuplicateMap); in isLegalAndProfitableToTransform()
816 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
949 APInt NextState = Path.getExitValue(); in createExitPath() local
967 BasicBlock *NextBB = getClonedBB(BB, NextState, DuplicateMap); in createExitPath()
976 BB, PrevBB, NextState, DuplicateMap, NewDefs, DTU); in createExitPath()
977 DuplicateMap[BB].push_back({NewBB, NextState}); in createExitPath()
1042 const APInt &NextState, in cloneBlockAndUpdatePredecessor()
1048 BB, VMap, ".jt" + std::to_string(NextState.getLimitedValue()), in cloneBlockAndUpdatePredecessor()
1065 updateSuccessorPhis(BB, NewBB, NextState, VMap, DuplicateMap); in cloneBlockAndUpdatePredecessor()
1084 const APInt &NextState, ValueToValueMapTy &VMap, in updateSuccessorPhis()
1092 BasicBlock *NextCase = getNextCaseSuccessor(Switch, NextState); in updateSuccessorPhis()
1094 BasicBlock *ClonedSucc = getClonedBB(NextCase, NextState, DuplicateMap); in updateSuccessorPhis()
1106 BasicBlock *ClonedSucc = getClonedBB(Succ, NextState, DuplicateMap); in updateSuccessorPhis()
1194 APInt NextState = TPath.getExitValue(); in updateLastSuccessor() local
1196 BasicBlock *LastBlock = getClonedBB(BB, NextState, DuplicateMap); in updateLastSuccessor()
1203 BasicBlock *NextCase = getNextCaseSuccessor(Switch, NextState); in updateLastSuccessor()
1248 BasicBlock *getClonedBB(BasicBlock *BB, const APInt &NextState, in getClonedBB()
1254 auto It = llvm::find_if(ClonedBBs, [NextState](const ClonedBlock &C) { in getClonedBB()
1255 return C.State == NextState; in getClonedBB()
1262 BasicBlock *getNextCaseSuccessor(SwitchInst *Switch, const APInt &NextState) { in getNextCaseSuccessor()
1265 if (Case.getCaseValue()->getValue() == NextState) { in getNextCaseSuccessor()