Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDFAJumpThreading.cpp791 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()
[all …]
/src/contrib/llvm-project/clang/lib/Serialization/
H A DModuleManager.cpp291 FirstVisitState = std::move(Result->NextState); in allocateVisitState()
300 assert(State->NextState == nullptr && "Visited state is in list?"); in returnVisitState()
301 State->NextState = std::move(FirstVisitState); in returnVisitState()
/src/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h118 std::unique_ptr<VisitState> NextState; member