Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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 …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h224 struct UnwindData { struct
228 std::optional<UnwindData> m_unwind_data; argument
/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwindCursor.hpp1607 uint32_t *UnwindData = reinterpret_cast<uint32_t*>(exceptionTableAddr) + 1; in getInfoFromEHABISection() local
1608 uint32_t FirstDataWord = *UnwindData; in getInfoFromEHABISection()
1611 lsda = reinterpret_cast<uintptr_t>(UnwindData + NDataWords); in getInfoFromEHABISection()
1991 UNWIND_INFO *xdata = reinterpret_cast<UNWIND_INFO *>(base + unwindEntry->UnwindData); in getInfoFromSEH()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp1157 if (!RF.UnwindData && !XDataRecord) in dumpUnpackedEntry()