Home
last modified time | relevance | path

Searched refs:DebugInfo (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-12.1/lib/clang/libllvm/
H A DMakefile397 SRCS_MIN+= DebugInfo/CodeView/Line.cpp
432 SRCS_MIW+= DebugInfo/DWARF/DWARFDie.cpp
441 SRCS_MIN+= DebugInfo/MSF/MSFBuilder.cpp
442 SRCS_MIN+= DebugInfo/MSF/MSFCommon.cpp
443 SRCS_MIN+= DebugInfo/MSF/MSFError.cpp
488 SRCS_EXT+= DebugInfo/PDB/PDB.cpp
489 SRCS_EXT+= DebugInfo/PDB/PDBContext.cpp
490 SRCS_EXT+= DebugInfo/PDB/PDBExtras.cpp
493 SRCS_EXT+= DebugInfo/PDB/PDBSymbol.cpp
525 SRCS_EXT+= DebugInfo/PDB/UDTLayout.cpp
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/
H A Dmodule.modulemap92 umbrella "DebugInfo/DWARF"
99 umbrella "DebugInfo/PDB"
115 exclude header "DebugInfo/PDB/DIA/DIAFrameData.h"
118 exclude header "DebugInfo/PDB/DIA/DIARawSymbol.h"
120 exclude header "DebugInfo/PDB/DIA/DIASession.h"
122 exclude header "DebugInfo/PDB/DIA/DIASupport.h"
123 exclude header "DebugInfo/PDB/DIA/DIATable.h"
124 exclude header "DebugInfo/PDB/DIA/DIAUtils.h"
130 umbrella "DebugInfo/PDB/DIA"
137 umbrella "DebugInfo/MSF"
[all …]
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/MachO/
H A DDebugInfo.h23 class DebugInfo {
37 DebugInfo(Kind kind) : _kind(kind) {} in DebugInfo() function
49 class DwarfDebugInfo : public DebugInfo {
52 : DebugInfo(Kind::Dwarf), _tu(std::move(tu)) {} in DwarfDebugInfo()
54 static inline bool classof(const DebugInfo *di) { in classof()
85 class StabsDebugInfo : public DebugInfo {
91 : DebugInfo(Kind::Stabs), _stabs(std::move(stabs)) {} in StabsDebugInfo()
93 static inline bool classof(const DebugInfo *di) { in classof()
H A DFile.h234 void setDebugInfo(std::unique_ptr<DebugInfo> debugInfo) { in setDebugInfo()
238 DebugInfo* debugInfo() const { return _debugInfo.get(); } in debugInfo()
239 std::unique_ptr<DebugInfo> takeDebugInfo() { return std::move(_debugInfo); } in takeDebugInfo()
281 std::unique_ptr<DebugInfo> _debugInfo;
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp142 writeInitialLength(CU.Length, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit()
143 writeInteger((uint16_t)CU.Version, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit()
145 writeInteger((uint8_t)CU.Type, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit()
146 writeInteger((uint8_t)CU.AddrSize, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit()
147 writeInteger((uint32_t)CU.AbbrOffset, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit()
150 writeInteger((uint8_t)CU.AddrSize, OS, DebugInfo.IsLittleEndian); in onStartCompileUnit()
160 writeInteger(U, OS, DebugInfo.IsLittleEndian); in onValue()
164 writeInteger(U, OS, DebugInfo.IsLittleEndian); in onValue()
168 writeInteger(U, OS, DebugInfo.IsLittleEndian); in onValue()
175 writeInteger(U, OS, DebugInfo.IsLittleEndian); in onValue()
[all …]
H A DDWARFVisitor.h35 T &DebugInfo;
68 VisitorImpl(T &DI) : DebugInfo(DI) {} in VisitorImpl()
H A DDWARFVisitor.cpp48 for (auto &Unit : DebugInfo.CompileUnits) { in traverseDebugInfo()
56 auto &Abbrev = DebugInfo.AbbrevDecls[Entry.AbbrCode - FirstAbbrevCode]; in traverseDebugInfo()
/freebsd-12.1/contrib/llvm/tools/lld/COFF/
H A DPDB.h18 union DebugInfo;
31 llvm::codeview::DebugInfo *BuildId);
H A DPDB.cpp105 void initialize(llvm::codeview::DebugInfo *BuildId);
1542 llvm::codeview::DebugInfo *BuildId) { in createPDB()
1557 void PDBLinker::initialize(llvm::codeview::DebugInfo *BuildId) { in initialize()
H A DWriter.cpp142 return sizeof(codeview::DebugInfo) + Config->PDBAltPath.size() + 1; in getSize()
148 BuildId = reinterpret_cast<codeview::DebugInfo *>(B + OutputSectionOff); in writeTo()
157 mutable codeview::DebugInfo *BuildId = nullptr;
/freebsd-12.1/contrib/llvm/
H A DFREEBSD-Xlist49 lib/DebugInfo/CMakeLists.txt
50 lib/DebugInfo/CodeView/CMakeLists.txt
51 lib/DebugInfo/CodeView/LLVMBuild.txt
52 lib/DebugInfo/DWARF/CMakeLists.txt
53 lib/DebugInfo/DWARF/LLVMBuild.txt
54 lib/DebugInfo/LLVMBuild.txt
55 lib/DebugInfo/MSF/CMakeLists.txt
56 lib/DebugInfo/MSF/LLVMBuild.txt
57 lib/DebugInfo/PDB/CMakeLists.txt
58 lib/DebugInfo/PDB/LLVMBuild.txt
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp66 return DebugInfo()->GetCompileUnitAtIndex(0); in GetCompileUnit()
169 return DebugInfo()->GetDIEForDIEOffset(die_ref.die_offset); in GetDIE()
H A DSymbolFileDWARF.cpp361 DWARFDebugInfo *info = DebugInfo(); in GetTypes()
757 DWARFDebugInfo *info = DebugInfo(); in GetDWARFCompileUnit()
870 DWARFDebugInfo *info = DebugInfo(); in GetNumCompileUnits()
879 DWARFDebugInfo *info = DebugInfo(); in ParseCompileUnitAtIndex()
2084 DWARFDebugInfo *info = DebugInfo(); in FindGlobalVariables()
2185 DWARFDebugInfo *info = DebugInfo(); in FindGlobalVariables()
2331 DWARFDebugInfo *info = DebugInfo(); in FindFunctions()
2382 DWARFDebugInfo *info = DebugInfo(); in FindFunctions()
2411 DWARFDebugInfo *info = DebugInfo(); in GetMangledNamesForFunction()
2454 DWARFDebugInfo *info = DebugInfo(); in FindTypes()
[all …]
H A DDIERef.cpp24 DWARFDebugInfo *debug_info = actual_dwarf->DebugInfo(); in DIERef()
H A DDWARFDebugAranges.cpp80 DWARFDebugInfo *debug_info = dwarf2Data->DebugInfo(); in Generate()
H A DSymbolFileDWARF.h254 DWARFDebugInfo *DebugInfo();
256 const DWARFDebugInfo *DebugInfo() const;
H A DDWARFDIE.cpp104 return DWARFDIE(dwarf->DebugInfo()->GetCompileUnit( in LookupDeepestBlock()
H A DDWARFASTParserClang.cpp769 dwarf->DebugInfo()->GetDIE(DIERef(type_sp->GetID(), dwarf))); in ParseTypeFromDWARF()
1065 GetCachedClangDeclContextForDIE(dwarf->DebugInfo()->GetDIE( in ParseTypeFromDWARF()
1390 class_type_die = class_symfile->DebugInfo()->GetDIE( in ParseTypeFromDWARF()
1394 class_type_die = dwarf->DebugInfo()->GetDIE( in ParseTypeFromDWARF()
1426 DWARFDIE spec_die = dwarf->DebugInfo()->GetDIE( in ParseTypeFromDWARF()
1446 DWARFDIE abs_die = dwarf->DebugInfo()->GetDIE( in ParseTypeFromDWARF()
1599 dwarf->DebugInfo()->GetDIE(DIERef(abstract_origin_die_form)); in ParseTypeFromDWARF()
2222 DWARFDebugInfo *debug_info = dwarf->DebugInfo(); in CompleteTypeFromDWARF()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp403 const codeview::DebugInfo *DebugInfo; in getOrCreateModuleInfo() local
405 auto EC = CoffObject->getDebugPDBInfo(DebugInfo, PDBFileName); in getOrCreateModuleInfo()
406 if (!EC && DebugInfo != nullptr && !PDBFileName.empty()) { in getOrCreateModuleInfo()
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dxray-account.cpp233 std::string DebugInfo; member
292 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId); in exportStats()
367 << " " << Row.DebugInfo << ": " << Row.Function << "\n"; in exportStatsAsText()
377 << ",\"" << Row.DebugInfo << "\",\"" << Row.Function << "\"\n"; in exportStatsAsCSV()
/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DCVDebugRecord.h46 union DebugInfo { union
H A DCOFF.h1057 const codeview::DebugInfo *&Info,
1064 std::error_code getDebugPDBInfo(const codeview::DebugInfo *&Info,
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp747 const codeview::DebugInfo *DebugInfo; in printCOFFDebugDirectory() local
749 error(Obj->getDebugPDBInfo(&D, DebugInfo, PDBFileName)); in printCOFFDebugDirectory()
751 W.printHex("PDBSignature", DebugInfo->Signature.CVSignature); in printCOFFDebugDirectory()
752 if (DebugInfo->Signature.CVSignature == OMF::Signature::PDB70) { in printCOFFDebugDirectory()
753 W.printBinary("PDBGUID", makeArrayRef(DebugInfo->PDB70.Signature)); in printCOFFDebugDirectory()
754 W.printNumber("PDBAge", DebugInfo->PDB70.Age); in printCOFFDebugDirectory()
/freebsd-12.1/contrib/llvm/lib/Object/
H A DCOFFObjectFile.cpp509 const codeview::DebugInfo *&PDBInfo, in getDebugPDBInfo()
517 PDBInfo = reinterpret_cast<const codeview::DebugInfo *>(InfoBytes.data()); in getDebugPDBInfo()
527 COFFObjectFile::getDebugPDBInfo(const codeview::DebugInfo *&PDBInfo, in getDebugPDBInfo()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenModule.h320 std::unique_ptr<CGDebugInfo> DebugInfo; variable
644 CGDebugInfo *getModuleDebugInfo() { return DebugInfo.get(); } in getModuleDebugInfo()

12