| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | UUID.cpp | 38 UUID UUID::fromCvRecord(UUID::CvRecordPdb70 debug_info) { in fromCvRecord() argument 39 llvm::sys::swapByteOrder(debug_info.Uuid.Data1); in fromCvRecord() 40 llvm::sys::swapByteOrder(debug_info.Uuid.Data2); in fromCvRecord() 41 llvm::sys::swapByteOrder(debug_info.Uuid.Data3); in fromCvRecord() 42 llvm::sys::swapByteOrder(debug_info.Age); in fromCvRecord() 43 if (debug_info.Age) in fromCvRecord() 44 return UUID::fromOptionalData(&debug_info, sizeof(debug_info)); in fromCvRecord() 45 return UUID::fromOptionalData(&debug_info.Uuid, sizeof(debug_info.Uuid)); in fromCvRecord()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDwo.cpp | 58 DWARFDebugInfo &debug_info = DebugInfo(); in FindSingleCompileUnit() local 62 if (!debug_info.ContainsTypeUnits() && debug_info.GetNumUnits() == 1) in FindSingleCompileUnit() 63 return llvm::cast<DWARFCompileUnit>(debug_info.GetUnitAtIndex(0)); in FindSingleCompileUnit() 68 for (size_t i = 0; i < debug_info.GetNumUnits(); ++i) { in FindSingleCompileUnit() 70 llvm::dyn_cast<DWARFCompileUnit>(debug_info.GetUnitAtIndex(i))) { in FindSingleCompileUnit()
|
| H A D | DWARFUnit.cpp | 897 const DWARFDataExtractor &debug_info, in extract() argument 899 assert(debug_info.ValidOffset(*offset_ptr)); in extract() 902 debug_info, section, dwarf.GetDWARFContext(), offset_ptr); in extract()
|
| /freebsd-13.1/contrib/elftoolchain/libdwarf/ |
| H A D | dwarf_sections.c | 38 dwarf_get_section_max_offsets_b(Dwarf_Debug dbg, Dwarf_Unsigned *debug_info, in dwarf_get_section_max_offsets_b() argument 53 SET(debug_info, 0); in dwarf_get_section_max_offsets_b() 70 SET(debug_info, sz); in dwarf_get_section_max_offsets_b() 99 dwarf_get_section_max_offsets(Dwarf_Debug dbg, Dwarf_Unsigned *debug_info, in dwarf_get_section_max_offsets() argument 107 return (dwarf_get_section_max_offsets_b(dbg, debug_info, debug_abbrev, in dwarf_get_section_max_offsets()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/ |
| H A D | ObjectFilePDB.cpp | 31 UUID::CvRecordPdb70 debug_info; in LLDB_PLUGIN_DEFINE() local 32 memcpy(&debug_info.Uuid, IS.getGuid().Guid, sizeof(debug_info.Uuid)); in LLDB_PLUGIN_DEFINE() 33 debug_info.Age = IS.getAge(); in LLDB_PLUGIN_DEFINE() 34 return UUID::fromCvRecord(debug_info); in LLDB_PLUGIN_DEFINE()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFUnit.cpp | 237 debug_info.getInitialLength(offset_ptr, &Err); in extract() 238 FormParams.Version = debug_info.getU16(offset_ptr, &Err); in extract() 240 UnitType = debug_info.getU8(offset_ptr, &Err); in extract() 241 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract() 242 AbbrOffset = debug_info.getRelocatedValue( in extract() 245 AbbrOffset = debug_info.getRelocatedValue( in extract() 247 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract() 256 TypeHash = debug_info.getU64(offset_ptr, &Err); in extract() 257 TypeOffset = debug_info.getUnsigned( in extract() 260 DWOId = debug_info.getU64(offset_ptr, &Err); in extract() [all …]
|
| /freebsd-13.1/stand/arm/uboot/ |
| H A D | ldscript.arm | 121 .debug_info 0 : { *(.debug_info) }
|
| /freebsd-13.1/stand/mips/uboot/ |
| H A D | ldscript.mips | 121 .debug_info 0 : { *(.debug_info) }
|
| /freebsd-13.1/stand/powerpc/ofw/ |
| H A D | ldscript.powerpc | 128 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.powerpcle | 128 .debug_info 0 : { *(.debug_info) }
|
| /freebsd-13.1/stand/powerpc/uboot/ |
| H A D | ldscript.powerpc | 124 .debug_info 0 : { *(.debug_info) }
|
| /freebsd-13.1/sys/conf/ |
| H A D | ldscript.powerpc | 141 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.powerpcspe | 142 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.riscv | 136 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.powerpc64le | 166 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.arm | 145 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.powerpc64 | 166 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.arm64 | 145 .debug_info 0 : { *(.debug_info) }
|
| H A D | ldscript.i386 | 187 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
| H A D | ldscript.amd64 | 202 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|
| H A D | ldscript.mips | 287 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
|
| H A D | ldscript.mips.mips64 | 288 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
|
| H A D | ldscript.mips.cfe | 304 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | UUID.h | 41 static UUID fromCvRecord(CvRecordPdb70 debug_info);
|
| /freebsd-13.1/sys/contrib/octeon-sdk/ |
| H A D | cvmx-shared-linux-o32.ld | 264 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
|