Home
last modified time | relevance | path

Searched refs:DWARFDebugFrame (Results 1 – 5 of 5) sorted by relevance

/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugFrame.h24 class DWARFDebugFrame {
28 DWARFDebugFrame(bool IsEH);
29 ~DWARFDebugFrame();
DDWARFContext.h49 std::unique_ptr<DWARFDebugFrame> DebugFrame;
50 std::unique_ptr<DWARFDebugFrame> EHFrame;
170 const DWARFDebugFrame *getDebugFrame();
173 const DWARFDebugFrame *getEHFrame();
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp459 DWARFDebugFrame::DWARFDebugFrame(bool IsEH) : IsEH(IsEH) { in DWARFDebugFrame() function in DWARFDebugFrame
462 DWARFDebugFrame::~DWARFDebugFrame() { in ~DWARFDebugFrame()
509 void DWARFDebugFrame::parse(DataExtractor Data) { in parse()
672 void DWARFDebugFrame::dump(raw_ostream &OS) const { in dump()
DCMakeLists.txt9 DWARFDebugFrame.cpp
DDWARFContext.cpp350 const DWARFDebugFrame *DWARFContext::getDebugFrame() { in getDebugFrame()
365 DebugFrame.reset(new DWARFDebugFrame(false /* IsEH */)); in getDebugFrame()
370 const DWARFDebugFrame *DWARFContext::getEHFrame() { in getEHFrame()
376 DebugFrame.reset(new DWARFDebugFrame(true /* IsEH */)); in getEHFrame()