Home
last modified time | relevance | path

Searched refs:debug_info (Results 1 – 25 of 135) sorted by relevance

123456

/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DUUID.cpp38 UUID::UUID(UUID::CvRecordPdb70 debug_info) { in UUID() argument
39 llvm::sys::swapByteOrder(debug_info.Uuid.Data1); in UUID()
40 llvm::sys::swapByteOrder(debug_info.Uuid.Data2); in UUID()
41 llvm::sys::swapByteOrder(debug_info.Uuid.Data3); in UUID()
42 llvm::sys::swapByteOrder(debug_info.Age); in UUID()
43 if (debug_info.Age) in UUID()
44 *this = UUID(&debug_info, sizeof(debug_info)); in UUID()
46 *this = UUID(&debug_info.Uuid, sizeof(debug_info.Uuid)); in UUID()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/builders/
H A Dbuilder.py133 def _getDebugInfoArgs(self, debug_info): argument
134 if debug_info is None:
136 if debug_info == "dwarf":
138 if debug_info == "dwo":
140 if debug_info == "gmodules":
144 def getBuildCommand(self, debug_info, architecture=None, compiler=None, argument
146 debug_info_args = self._getDebugInfoArgs(debug_info)
H A Ddarwin.py124 def _getDebugInfoArgs(self, debug_info): argument
125 if debug_info == "dsym":
127 return super(BuilderDarwin, self)._getDebugInfoArgs(debug_info)
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dmdebugread.c112 struct ecoff_debug_info *debug_info; member
125 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
206 static struct ecoff_debug_info *debug_info; variable
371 fdrs = debug_info->fdr; in get_rfd()
377 ((char *) debug_info->external_rfd in get_rfd()
393 return debug_info->ss + f->issBase + f->rss; in fdr_name()
407 debug_info = info; in mdebug_build_psymtabs()
552 int f_idx = fh - debug_info->fdr; in is_pending_symbol()
567 int f_idx = fh - debug_info->fdr; in add_pending()
614 name = debug_info->ssext + sh->iss; in parse_symbol()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp60 DWARFDebugInfo &debug_info = DebugInfo(); in FindSingleCompileUnit() local
64 if (!debug_info.ContainsTypeUnits() && debug_info.GetNumUnits() == 1) in FindSingleCompileUnit()
65 return llvm::cast<DWARFCompileUnit>(debug_info.GetUnitAtIndex(0)); in FindSingleCompileUnit()
70 for (size_t i = 0; i < debug_info.GetNumUnits(); ++i) { in FindSingleCompileUnit()
72 llvm::dyn_cast<DWARFCompileUnit>(debug_info.GetUnitAtIndex(i))) { in FindSingleCompileUnit()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py177 debug_info=None, argument
193 debug_info, self.getDebugInfo())
229 (debug_info, skip_for_debug_info, "debug info format"),
277 debug_info=None, argument
287 debug_info=debug_info,
304 debug_info=None, argument
314 debug_info=debug_info,
412 debug_info=None, argument
419 debug_info=debug_info)
422 def expectedFailureDarwin(bugnumber=None, compilers=None, debug_info=None, archs=None): argument
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/alpha/
H A Dvms-dwarf2.asm49 .section .debug_info,NOWRT
51 .globl $dwarf2.debug_info
52 $dwarf2.debug_info:
/openbsd-src/gnu/gcc/gcc/config/alpha/
H A Dvms-dwarf2.asm49 .section .debug_info,NOWRT
51 .globl $dwarf2.debug_info
52 $dwarf2.debug_info:
/openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp31 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(debug_info); in LLDB_PLUGIN_DEFINE()
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Decoff.c429 if (ecoff_data (abfd)->debug_info.symbolic_header.magic == in ecoff_slurp_symbolic_header()
459 internal_symhdr = &ecoff_data (abfd)->debug_info.symbolic_header; in ecoff_slurp_symbolic_header()
504 BFD_ASSERT (debug == &ecoff_data (abfd)->debug_info); in _bfd_ecoff_slurp_symbolic_info()
867 &ecoff_data (abfd)->debug_info)) in _bfd_ecoff_slurp_symbol_table()
879 eraw_src = (char *) ecoff_data (abfd)->debug_info.external_ext; in _bfd_ecoff_slurp_symbol_table()
881 + (ecoff_data (abfd)->debug_info.symbolic_header.iextMax in _bfd_ecoff_slurp_symbol_table()
888 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ssext in _bfd_ecoff_slurp_symbol_table()
896 internal_ptr->fdr = (ecoff_data (abfd)->debug_info.fdr in _bfd_ecoff_slurp_symbol_table()
906 fdr_ptr = ecoff_data (abfd)->debug_info.fdr; in _bfd_ecoff_slurp_symbol_table()
907 fdr_end = fdr_ptr + ecoff_data (abfd)->debug_info.symbolic_header.ifdMax; in _bfd_ecoff_slurp_symbol_table()
[all …]
H A Decofflink.c1782 mk_fdrtab (abfd, debug_info, debug_swap, line_info) in mk_fdrtab() argument
1784 struct ecoff_debug_info * const debug_info;
1796 fdr_start = debug_info->fdr;
1797 fdr_end = fdr_start + debug_info->symbolic_header.ifdMax;
1829 sym_ptr = ((char *) debug_info->external_sym
1832 if (strcmp (debug_info->ss + fdr_ptr->issBase + sym.iss,
1924 lookup_line (abfd, debug_info, debug_swap, line_info) in lookup_line() argument
1926 struct ecoff_debug_info * const debug_info;
1942 && !mk_fdrtab (abfd, debug_info, debug_swap, line_info))
2032 sym_ptr = ((char *) debug_info->external_sym
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Decofflink.c1822 mk_fdrtab (abfd, debug_info, debug_swap, line_info) in mk_fdrtab() argument
1824 struct ecoff_debug_info * const debug_info;
1836 fdr_start = debug_info->fdr;
1837 fdr_end = fdr_start + debug_info->symbolic_header.ifdMax;
1869 sym_ptr = ((char *) debug_info->external_sym
1872 if (strcmp (debug_info->ss + fdr_ptr->issBase + sym.iss,
1894 pdr_ptr = ((char *) debug_info->external_pdr
1979 lookup_line (abfd, debug_info, debug_swap, line_info) in lookup_line() argument
1981 struct ecoff_debug_info * const debug_info;
1997 && !mk_fdrtab (abfd, debug_info, debug_swap, line_info))
[all …]
H A Decoff.c462 if (ecoff_data (abfd)->debug_info.symbolic_header.magic ==
492 internal_symhdr = &ecoff_data (abfd)->debug_info.symbolic_header;
538 BFD_ASSERT (debug == &ecoff_data (abfd)->debug_info);
973 &ecoff_data (abfd)->debug_info))
985 eraw_src = (char *) ecoff_data (abfd)->debug_info.external_ext;
987 + (ecoff_data (abfd)->debug_info.symbolic_header.iextMax
994 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ssext
1002 internal_ptr->fdr = (ecoff_data (abfd)->debug_info.fdr
1012 fdr_ptr = ecoff_data (abfd)->debug_info.fdr;
1013 fdr_end = fdr_ptr + ecoff_data (abfd)->debug_info.symbolic_header.ifdMax;
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dobj-ecoff.c150 hdr = &ecoff_data (stdoutput)->debug_info.symbolic_header; in ecoff_frob_file()
157 ecoff_data (stdoutput)->debug_info.ptr = NULL; \ in ecoff_frob_file()
160 ecoff_data (stdoutput)->debug_info.ptr = (type) set; \ in ecoff_frob_file()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp248 const DWARFDataExtractor &debug_info, in extract() argument
255 debug_info.getInitialLength(offset_ptr, &Err); in extract()
256 FormParams.Version = debug_info.getU16(offset_ptr, &Err); in extract()
258 UnitType = debug_info.getU8(offset_ptr, &Err); in extract()
259 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract()
260 AbbrOffset = debug_info.getRelocatedValue( in extract()
263 AbbrOffset = debug_info.getRelocatedValue( in extract()
265 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err); in extract()
274 TypeHash = debug_info.getU64(offset_ptr, &Err); in extract()
275 TypeOffset = debug_info.getUnsigned( in extract()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dobj-ecoff.c217 hdr = &ecoff_data (stdoutput)->debug_info.symbolic_header; in ecoff_frob_file()
224 ecoff_data (stdoutput)->debug_info.ptr = (type) NULL; \ in ecoff_frob_file()
227 ecoff_data (stdoutput)->debug_info.ptr = (type) set; \ in ecoff_frob_file()
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp379 static std::string ConvertDebugInfoSizeToString(uint64_t debug_info) { in ConvertDebugInfoSizeToString() argument
382 if (debug_info < 1024) { in ConvertDebugInfoSizeToString()
383 oss << debug_info << "B"; in ConvertDebugInfoSizeToString()
384 } else if (debug_info < 1024 * 1024) { in ConvertDebugInfoSizeToString()
385 double kb = double(debug_info) / 1024.0; in ConvertDebugInfoSizeToString()
387 } else if (debug_info < 1024 * 1024 * 1024) { in ConvertDebugInfoSizeToString()
388 double mb = double(debug_info) / (1024.0 * 1024.0); in ConvertDebugInfoSizeToString()
391 double gb = double(debug_info) / (1024.0 * 1024.0 * 1024.0); in ConvertDebugInfoSizeToString()
410 uint64_t debug_info = GetDebugInfoSize(module); in CreateModule() local
411 if (debug_info > 0) { in CreateModule()
[all …]
/openbsd-src/gnu/usr.bin/binutils/ld/scripttempl/
H A Di386go32.sc71 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
H A Dip2k.sc142 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
H A Delf32avr.sc140 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/
H A Di386go32.sc71 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
H A Delf32crx.sc43 .debug_info .gnu.linkonce.wi.foo */
165 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
H A Dip2k.sc142 .debug_info 0 : { *(.debug_info) *(.gnu.linkonce.wi.*) }
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dnlmconv.h47 extern bfd_boolean debug_info;
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dnlmconv.h47 extern bfd_boolean debug_info;

123456