Home
last modified time | relevance | path

Searched refs:debugInfo (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DFile.h234 void setDebugInfo(std::unique_ptr<DebugInfo> debugInfo) { in setDebugInfo() argument
235 _debugInfo = std::move(debugInfo); in setDebugInfo()
238 DebugInfo* debugInfo() const { return _debugInfo.get(); } in debugInfo() function
H A DMachONormalizedFileToAtoms.cpp819 file.debugInfo()->setAllocator(std::move(allocator)); in parseStabs()
943 const Section *debugInfo = nullptr; in parseDebugInfo() local
950 debugInfo = &s; in parseDebugInfo()
958 if (!debugInfo) in parseDebugInfo()
961 if (debugInfo->content.size() == 0) in parseDebugInfo()
964 if (debugInfo->content.size() < 12) in parseDebugInfo()
972 if (auto tuOrErr = readCompUnit(normalizedFile, *debugInfo, *debugAbbrev, in parseDebugInfo()
984 file.debugInfo()->setAllocator(std::move(allocator)); in parseDebugInfo()
H A DMachONormalizedFileFromAtoms.cpp823 if (atomFile->debugInfo()) { in synthesizeDebugNotes()
824 if (isa<mach_o::DwarfDebugInfo>(atomFile->debugInfo())) in synthesizeDebugNotes()
826 else if (isa<mach_o::StabsDebugInfo>(atomFile->debugInfo())) in synthesizeDebugNotes()
857 assert(dyn_cast_or_null<lld::mach_o::DwarfDebugInfo>(atomFile.debugInfo()) in synthesizeDebugNotes()
859 auto &dwarf = cast<lld::mach_o::DwarfDebugInfo>(*atomFile.debugInfo()); in synthesizeDebugNotes()
937 cast<mach_o::StabsDebugInfo>(objFile->debugInfo())->stabs(); in synthesizeDebugNotes()