Home
last modified time | relevance | path

Searched refs:UnwindTable (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp31 UnwindTable::UnwindTable(Module &module) in UnwindTable() function in UnwindTable
39 void UnwindTable::Initialize() { in Initialize()
86 UnwindTable::~UnwindTable() = default;
115 UnwindTable::GetFuncUnwindersContainingAddress(const Address &addr, in GetFuncUnwindersContainingAddress()
164 void UnwindTable::Dump(Stream &s) { in Dump()
176 lldb_private::CallFrameInfo *UnwindTable::GetObjectFileUnwindInfo() { in GetObjectFileUnwindInfo()
181 DWARFCallFrameInfo *UnwindTable::GetEHFrameInfo() { in GetEHFrameInfo()
186 DWARFCallFrameInfo *UnwindTable::GetDebugFrameInfo() { in GetDebugFrameInfo()
191 CompactUnwindInfo *UnwindTable::GetCompactUnwindInfo() { in GetCompactUnwindInfo()
196 ArmUnwindInfo *UnwindTable::GetArmUnwindInfo() { in GetArmUnwindInfo()
[all …]
H A DFuncUnwinders.cpp36 FuncUnwinders::FuncUnwinders(UnwindTable &unwind_table, AddressRange range) in FuncUnwinders()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindTable.h23 class UnwindTable {
26 explicit UnwindTable(Module &module);
28 ~UnwindTable();
82 UnwindTable(const UnwindTable &) = delete;
83 const UnwindTable &operator=(const UnwindTable &) = delete;
H A DFuncUnwinders.h11 class UnwindTable; variable
34 FuncUnwinders(lldb_private::UnwindTable &unwind_table, AddressRange range);
115 UnwindTable &m_unwind_table;
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp191 void UnwindTable::dump(raw_ostream &OS, const MCRegisterInfo *MRI, bool IsEH, in dump()
197 raw_ostream &llvm::dwarf::operator<<(raw_ostream &OS, const UnwindTable &Rows) { in operator <<()
202 Expected<UnwindTable> UnwindTable::create(const FDE *Fde) { in create()
211 return UnwindTable(); in create()
213 UnwindTable UT; in create()
232 Expected<UnwindTable> UnwindTable::create(const CIE *Cie) { in create()
235 return UnwindTable(); in create()
237 UnwindTable UT; in create()
513 Error UnwindTable::parseRows(const CFIProgram &CFIP, UnwindRow &Row, in parseRows()
979 if (Expected<UnwindTable> RowsOrErr = UnwindTable::create(this)) in dump()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h317 class UnwindTable {
358 static Expected<UnwindTable> create(const CIE *Cie);
368 static Expected<UnwindTable> create(const FDE *Fde);
395 raw_ostream &operator<<(raw_ostream &OS, const UnwindTable &Rows);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h593 UnwindTable &GetUnwindTable();
960 llvm::Optional<UnwindTable> m_unwind_table; ///< Table of FuncUnwinders
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h257 class UnwindTable; variable
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp1295 UnwindTable &Module::GetUnwindTable() { in GetUnwindTable()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile570 SRCS+= Symbol/UnwindTable.cpp