Home
last modified time | relevance | path

Searched refs:UnwindData (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DARMWinEH.h106 const support::ulittle32_t UnwindData; variable
109 : BeginAddress(Data[0]), UnwindData(Data[1]) {} in RuntimeFunction()
112 const support::ulittle32_t UnwindData) in RuntimeFunction() argument
113 : BeginAddress(BeginAddress), UnwindData(UnwindData) {} in RuntimeFunction()
116 return RuntimeFunctionFlag(UnwindData & 0x3); in Flag()
122 return (UnwindData & ~0x3); in ExceptionInformationRVA()
129 return (UnwindData & ~0x3); in PackedUnwindData()
135 return (((UnwindData & 0x00001ffc) >> 2) << 1); in FunctionLength()
141 assert(((UnwindData & 0x00006000) || L()) && "L must be set to 1"); in Ret()
142 return ReturnType((UnwindData & 0x00006000) >> 13); in Ret()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h235 struct UnwindData { struct
239 std::optional<UnwindData> m_unwind_data; argument
/openbsd-src/gnu/llvm/libunwind/src/
H A DUnwindCursor.hpp1590 uint32_t *UnwindData = reinterpret_cast<uint32_t*>(exceptionTableAddr) + 1; in getInfoFromEHABISection() local
1591 uint32_t FirstDataWord = *UnwindData; in getInfoFromEHABISection()
1594 lsda = reinterpret_cast<uintptr_t>(UnwindData + NDataWords); in getInfoFromEHABISection()
1974 UNWIND_INFO *xdata = reinterpret_cast<UNWIND_INFO *>(base + unwindEntry->UnwindData); in getInfoFromSEH()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1149 if (!RF.UnwindData && !XDataRecord) in dumpUnpackedEntry()