Home
last modified time | relevance | path

Searched refs:FromState (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/utils/TableGen/
H A DDFAEmitter.cpp63 for (state_type FromState : DS) { in visitDfaState() local
66 auto I = NfaTransitions.find({FromState, A}); in visitDfaState()
71 TI.emplace_back(FromState, ToState); in visitDfaState()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp406 ProgramStateRef FromState, in getPersistentStateWithGDM() argument
408 ProgramState NewState(*FromState); in getPersistentStateWithGDM()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DCFLAndersAliasAnalysis.cpp661 auto MemAliasPropagate = [&](MatchState FromState, MatchState ToState) { in processWorkListItem() argument
662 if (Mapping.second.test(static_cast<size_t>(FromState))) in processWorkListItem()
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryFunction.cpp2596 bool BinaryFunction::replayCFIInstrs(int32_t FromState, int32_t ToState, in replayCFIInstrs() argument
2599 if (FromState == ToState) in replayCFIInstrs()
2601 assert(FromState < ToState && "can only replay CFIs forward"); in replayCFIInstrs()
2604 FrameRestoreEquivalents, FromState); in replayCFIInstrs()
2607 for (int32_t CurState = FromState; CurState < ToState; ++CurState) { in replayCFIInstrs()
2631 BinaryFunction::unwindCFIState(int32_t FromState, int32_t ToState, in unwindCFIState() argument
2639 FromCFITable.advanceTo(FromState); in unwindCFIState()
2739 for (int32_t I = ToState, E = FromState; I != E; ++I) { in unwindCFIState()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryFunction.h2129 bool replayCFIInstrs(int32_t FromState, int32_t ToState,
2137 SmallVector<int32_t, 4> unwindCFIState(int32_t FromState, int32_t ToState,
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h603 ProgramStateRef getPersistentStateWithGDM(ProgramStateRef FromState,