Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DDFAJumpThreading.cpp783 uint64_t NextState = TPath.getExitValue(); in isLegalAndProfitableToTransform() local
788 BasicBlock *VisitedBB = getClonedBB(BB, NextState, DuplicateMap); in isLegalAndProfitableToTransform()
791 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
804 VisitedBB = getClonedBB(BB, NextState, DuplicateMap); in isLegalAndProfitableToTransform()
808 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
938 uint64_t NextState = Path.getExitValue(); in createExitPath() local
955 BasicBlock *NextBB = getClonedBB(BB, NextState, DuplicateMap); in createExitPath()
964 BB, PrevBB, NextState, DuplicateMap, NewDefs, DTU); in createExitPath()
965 DuplicateMap[BB].push_back({NewBB, NextState}); in createExitPath()
1030 uint64_t NextState, in cloneBlockAndUpdatePredecessor()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DModuleManager.cpp302 FirstVisitState = std::move(Result->NextState); in allocateVisitState()
311 assert(State->NextState == nullptr && "Visited state is in list?"); in returnVisitState()
312 State->NextState = std::move(FirstVisitState); in returnVisitState()
/openbsd-src/gnu/llvm/clang/include/clang/Serialization/
H A DModuleManager.h119 std::unique_ptr<VisitState> NextState; member