Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDFAJumpThreading.cpp747 APInt NextState = TPath.getExitValue(); in isLegalAndProfitableToTransform() local
755 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
768 VisitedBB = getClonedBB(BB, NextState, DuplicateMap); in isLegalAndProfitableToTransform()
772 DuplicateMap[BB].push_back({BB, NextState}); in isLegalAndProfitableToTransform()
904 APInt NextState = Path.getExitValue(); in createExitPath() local
931 BB, PrevBB, NextState, DuplicateMap, NewDefs, DTU); in createExitPath()
932 DuplicateMap[BB].push_back({NewBB, NextState}); in createExitPath()
1149 APInt NextState = TPath.getExitValue(); in updateLastSuccessor() local
1203 BasicBlock *getClonedBB(BasicBlock *BB, const APInt &NextState, in getClonedBB()
1210 return C.State == NextState; in getClonedBB()
[all …]
/freebsd-14.2/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()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleManager.h119 std::unique_ptr<VisitState> NextState; member