Lines Matching refs:DCtx
59 std::unique_ptr<DWARFContext> DCtx, unsigned RawSegments) in MachODumper() argument
60 : Obj(O), DWARFCtx(std::move(DCtx)), RawSegment(RawSegments) {} in MachODumper()
138 static Error dumpDebugSection(StringRef SecName, DWARFContext &DCtx, in dumpDebugSection() argument
141 dumpDebugAbbrev(DCtx, DWARF); in dumpDebugSection()
145 return dumpDebugARanges(DCtx, DWARF); in dumpDebugSection()
147 dumpDebugInfo(DCtx, DWARF); in dumpDebugSection()
151 dumpDebugLines(DCtx, DWARF); in dumpDebugSection()
156 dumpDebugPubSections(DCtx, DWARF); in dumpDebugSection()
160 return dumpDebugRanges(DCtx, DWARF); in dumpDebugSection()
162 return dumpDebugStrings(DCtx, DWARF); in dumpDebugSection()
625 std::unique_ptr<DWARFContext> DCtx = DWARFContext::create(Obj); in macho2yaml() local
626 MachODumper Dumper(Obj, std::move(DCtx), RawSegments); in macho2yaml()
661 std::unique_ptr<DWARFContext> DCtx = DWARFContext::create(*SliceObj.get()); in macho2yaml() local
662 MachODumper Dumper(*SliceObj.get(), std::move(DCtx), RawSegments); in macho2yaml()