Home | History | Annotate | Download | only in Symbol

Lines Matching refs:UnwindTable

1 //===-- UnwindTable.cpp -----------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/UnwindTable.h"
22 // There is one UnwindTable object per ObjectFile.
29 UnwindTable::UnwindTable (ObjectFile& objfile) :
42 UnwindTable::Initialize ()
65 UnwindTable::~UnwindTable ()
72 UnwindTable::GetFuncUnwindersContainingAddress (const Address& addr, SymbolContext &sc)
78 // There is an UnwindTable per object file, so we can safely use file handles
111 // UnwindTable. This is intended for use by target modules show-unwind where we want to create
115 UnwindTable::GetUncachedFuncUnwindersContainingAddress (const Address& addr, SymbolContext &sc)
136 UnwindTable::Dump (Stream &s)
138 s.Printf("UnwindTable for '%s':\n", m_object_file.GetFileSpec().GetPath().c_str());
149 UnwindTable::GetEHFrameInfo ()