Home
last modified time | relevance | path

Searched refs:CreateRegisterContextForFrame (Results 1 – 15 of 15) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
H A DThreadMinidump.cpp46 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
52 ThreadMinidump::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadMinidump
108 reg_ctx_sp = m_unwinder_ap->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
H A DThreadMinidump.h34 CreateRegisterContextForFrame(StackFrame *frame) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp59 HistoryThread::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in HistoryThread
60 return m_unwinder_ap->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
H A DThreadMemory.cpp54 ThreadMemory::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadMemory
66 reg_ctx_sp = unwinder->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
H A DHistoryThread.h48 CreateRegisterContextForFrame(StackFrame *frame) override;
H A DThreadMemory.h31 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp290 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
295 ThreadGDBRemote::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadGDBRemote
318 reg_ctx_sp = unwinder->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
H A DThreadGDBRemote.h55 CreateRegisterContextForFrame(StackFrame *frame) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp64 m_reg_context_sp = CreateRegisterContextForFrame(nullptr); in GetRegisterContext()
70 ThreadElfCore::CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function in ThreadElfCore
241 reg_ctx_sp = unwinder->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
H A DThreadElfCore.h147 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DUnwind.h58 lldb::RegisterContextSP CreateRegisterContextForFrame(StackFrame *frame) { in CreateRegisterContextForFrame() function
H A DThread.h475 CreateRegisterContextForFrame(StackFrame *frame) = 0;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DFreeBSDThread.h50 CreateRegisterContextForFrame(lldb_private::StackFrame *frame) override;
H A DFreeBSDThread.cpp244 FreeBSDThread::CreateRegisterContextForFrame(lldb_private::StackFrame *frame) { in CreateRegisterContextForFrame() function in FreeBSDThread
258 reg_ctx_sp = GetUnwinder()->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStackFrame.cpp1122 m_reg_context_sp = thread_sp->CreateRegisterContextForFrame(this); in GetRegisterContext()