Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h62 std::unique_ptr<DWARFDebugFrame> DebugFrame;
63 std::unique_ptr<DWARFDebugFrame> EHFrame;
287 Expected<const DWARFDebugFrame *> getDebugFrame();
290 Expected<const DWARFDebugFrame *> getEHFrame();
H A DDWARFDebugFrame.h663 class DWARFDebugFrame {
681 DWARFDebugFrame(Triple::ArchType Arch,
683 ~DWARFDebugFrame();
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp1019 DWARFDebugFrame::DWARFDebugFrame(Triple::ArchType Arch, in DWARFDebugFrame() function in DWARFDebugFrame
1023 DWARFDebugFrame::~DWARFDebugFrame() = default;
1035 Error DWARFDebugFrame::parse(DWARFDataExtractor Data) { in parse()
1230 FrameEntry *DWARFDebugFrame::getEntryAtOffset(uint64_t Offset) const { in getEntryAtOffset()
1239 void DWARFDebugFrame::dump(raw_ostream &OS, DIDumpOptions DumpOpts, in dump()
H A DDWARFContext.cpp459 if (Expected<const DWARFDebugFrame *> DF = getDebugFrame()) in dump()
468 if (Expected<const DWARFDebugFrame *> DF = getEHFrame()) in dump()
822 Expected<const DWARFDebugFrame *> DWARFContext::getDebugFrame() { in getDebugFrame()
840 std::make_unique<DWARFDebugFrame>(getArch(), /*IsEH=*/false, DS.Address); in getDebugFrame()
848 Expected<const DWARFDebugFrame *> DWARFContext::getEHFrame() { in getEHFrame()
857 std::make_unique<DWARFDebugFrame>(getArch(), /*IsEH=*/true, DS.Address); in getEHFrame()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DDwarfCFIEHPrinter.h193 DWARFDebugFrame EHFrame(Triple::ArchType(ObjF.getArch()), /*IsEH=*/true, in printEHFrame()
/freebsd-13.1/lib/clang/libllvm/
H A DMakefile493 SRCS_MIW+= DebugInfo/DWARF/DWARFDebugFrame.cpp