Home
last modified time | relevance | path

Searched refs:ToState (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/lld/test/COFF/
H A Dguard-ehcont.s138 .long -1 # ToState
140 .long -1 # ToState
156 .long -1 # ToState
158 .long 0 # ToState
160 .long -1 # ToState
162 .long 1 # ToState
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dseh-unwind-inline-asm-codegen.ll54 ; CHECK-NEXT: .long -1 # ToState
58 ; CHECK-NEXT: .long -1 # ToState
60 ; CHECK-NEXT: .long 0 # ToState
62 ; CHECK-NEXT: .long -1 # ToState
H A Dno-seh-unwind-inline-asm-codegen.ll54 ; CHECK-NEXT: .long -1 # ToState
58 ; CHECK-NEXT: .long -1 # ToState
H A Dwin32-seh-nested-finally.ll79 ; CHECK: .long -1 # ToState
82 ; CHECK: .long 0 # ToState
H A Dseh-finally.ll52 ; X86-NEXT: .long -1 # ToState
H A Dwin32-seh-catchpad.ll49 ; CHECK: .long -1 # ToState
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DWinEHFuncInfo.h41 int ToState; member
49 int ToState = -1; member
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DDFAEmitter.cpp69 for (state_type &ToState : I->second) { in visitDfaState()
70 NewStates.push_back(ToState); in visitDfaState()
71 TI.emplace_back(FromState, ToState); in visitDfaState()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DWinException.cpp671 assert(UME.ToState < State && "states should decrease"); in emitSEHActionsForRange()
672 State = UME.ToState; in emitSEHActionsForRange()
785 OS.emitInt32(UME.ToState); in emitCXXFrameHandler3Table()
1081 int ToState = UME.ToState == -1 ? BaseState : UME.ToState; in emitExceptHandlerTable() local
1083 OS.emitInt32(ToState); in emitExceptHandlerTable()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp132 static int addUnwindMapEntry(WinEHFuncInfo &FuncInfo, int ToState, in addUnwindMapEntry() argument
135 UME.ToState = ToState; in addUnwindMapEntry()
339 Entry.ToState = ParentState; in addSEHExcept()
350 Entry.ToState = ParentState; in addSEHFinally()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DCFLAndersAliasAnalysis.cpp661 auto MemAliasPropagate = [&](MatchState FromState, MatchState ToState) { in processWorkListItem() argument
663 propagate(Src, *ToNodeBelow, ToState, ReachSet, WorkList); 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()
2607 for (int32_t CurState = FromState; CurState < ToState; ++CurState) { in replayCFIInstrs()
2631 BinaryFunction::unwindCFIState(int32_t FromState, int32_t ToState, in unwindCFIState() argument
2637 FrameRestoreEquivalents, ToState); 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,