Home
last modified time | relevance | path

Searched refs:NextState (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDFAJumpThreading.cpp832 APInt NextState = TPath.getExitValue(); in isLegalAndProfitableToTransform() local
837 BasicBlock *VisitedBB = getClonedBB(BB, NextState, DuplicateMap); in isLegalAndProfitableToTransform()
840 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
853 VisitedBB = getClonedBB(BB, NextState, DuplicateMap); in isLegalAndProfitableToTransform()
857 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
989 APInt NextState = Path.getExitValue(); in createExitPath() local
1007 BasicBlock *NextBB = getClonedBB(BB, NextState, DuplicateMap); in createExitPath()
1016 BB, PrevBB, NextState, DuplicateMap, NewDefs, DTU); in createExitPath()
1017 DuplicateMap[BB].push_back({NewBB, NextState}); in createExitPath()
1082 const APInt &NextState, in cloneBlockAndUpdatePredecessor()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp295 FirstVisitState = std::move(Result->NextState); in allocateVisitState()
304 assert(State->NextState == nullptr && "Visited state is in list?"); in returnVisitState()
305 State->NextState = std::move(FirstVisitState); in returnVisitState()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h118 std::unique_ptr<VisitState> NextState; member