Searched refs:debug_info (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwo.cpp67 DWARFDebugInfo *debug_info = DebugInfo(); local
68 if (!debug_info)
73 if (!debug_info->ContainsTypeUnits() && debug_info->GetNumUnits() == 1)
74 return llvm::cast<DWARFCompileUnit>(debug_info->GetUnitAtIndex(0));
79 for (size_t i = 0; i < debug_info->GetNumUnits(); ++i) {
81 llvm::dyn_cast<DWARFCompileUnit>(debug_info->GetUnitAtIndex(i))) {
H A DDebugNamesDWARFIndex.h23 DWARFDataExtractor debug_str, DWARFDebugInfo *debug_info);
52 DWARFDebugInfo &debug_info)
53 : DWARFIndex(module), m_debug_info(debug_info),
56 m_fallback(module, &debug_info, GetUnits(*m_debug_names_up)) {}
48 DebugNamesDWARFIndex(Module &module, std::unique_ptr<llvm::DWARFDebugNames> debug_names_up, DWARFDataExtractor debug_names_data, DWARFDataExtractor debug_str_data, DWARFDebugInfo &debug_info) argument
H A DManualDWARFIndex.h21 ManualDWARFIndex(Module &module, DWARFDebugInfo *debug_info, argument
23 : DWARFIndex(module), m_debug_info(debug_info),
H A DManualDWARFIndex.cpp28 DWARFDebugInfo &debug_info = *m_debug_info;
32 Timer scoped_timer(func_cat, "%p", static_cast<void *>(&debug_info));
35 units_to_index.reserve(debug_info.GetNumUnits());
36 for (size_t U = 0; U < debug_info.GetNumUnits(); ++U) {
37 DWARFUnit *unit = debug_info.GetUnitAtIndex(U);
99 log, "ManualDWARFIndex::IndexUnit for unit at .debug_info[0x%8.8x]",
H A DDebugNamesDWARFIndex.cpp22 DWARFDebugInfo *debug_info) {
23 if (!debug_info) {
33 module, std::move(index_up), debug_names, debug_str, *debug_info));
20 Create(Module &module, DWARFDataExtractor debug_names, DWARFDataExtractor debug_str, DWARFDebugInfo *debug_info) argument
H A DDWARFUnit.h78 const lldb_private::DWARFDataExtractor &debug_info,
103 /// this DWARFUnit. It could be .debug_info or .debug_types
H A DDWARFUnit.cpp871 const DWARFDataExtractor &debug_info,
873 assert(debug_info.ValidOffset(*offset_ptr));
876 DWARFUnitHeader::extract(debug_info, section, offset_ptr);
870 extract(SymbolFileDWARF &dwarf, user_id_t uid, const DWARFDataExtractor &debug_info, DIERef::Section section, lldb::offset_t *offset_ptr) argument
H A DSymbolFileDWARF.cpp1531 DWARFDebugInfo *debug_info = DebugInfo(); local
1532 if (debug_info)
1533 return debug_info->GetDIE(die_ref);
1634 DWARFDebugInfo *debug_info = DebugInfo(); local
1640 llvm::dyn_cast<DWARFCompileUnit>(debug_info->GetUnitAtIndex(cu_idx));
1794 DWARFDebugInfo *debug_info = DebugInfo(); local
1795 if (debug_info) {
1797 debug_info->GetCompileUnitAranges();
1830 debug_info->GetUnitAtOffset(DIERef::Section::DebugInfo,
2738 DWARFDebugInfo *debug_info local
[all...]
H A DDWARFASTParserClang.cpp2008 DWARFDebugInfo *debug_info = dwarf->DebugInfo(); local
2013 DWARFDIE method_die = debug_info->GetDIE(die_ref);
/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Ddwarf_sections.c38 dwarf_get_section_max_offsets_b(Dwarf_Debug dbg, Dwarf_Unsigned *debug_info, argument
53 SET(debug_info, 0);
69 if (!strcmp(n, ".debug_info"))
70 SET(debug_info, sz);
99 dwarf_get_section_max_offsets(Dwarf_Debug dbg, Dwarf_Unsigned *debug_info, argument
107 return (dwarf_get_section_max_offsets_b(dbg, debug_info, debug_abbrev,
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmdebugread.c118 struct ecoff_debug_info *debug_info;
131 #define DEBUG_INFO(p) (PST_PRIVATE(p)->debug_info)
214 static struct ecoff_debug_info *debug_info;
385 fdrs = debug_info->fdr;
391 ((char *) debug_info->external_rfd
407 return debug_info->ss + f->issBase + f->rss;
421 debug_info = info;
567 int f_idx = fh - debug_info->fdr;
582 int f_idx = fh - debug_info->fdr;
630 name = debug_info
117 struct ecoff_debug_info *debug_info; member in struct:symloc
211 static struct ecoff_debug_info *debug_info; variable in typeref:struct:ecoff_debug_info
[all...]
H A Dmipsread.c94 (abfd, (asection *) NULL, &ecoff_data (abfd)->debug_info)))
98 &ecoff_data (abfd)->debug_info);
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dobj-ecoff.c150 hdr = &ecoff_data (stdoutput)->debug_info.symbolic_header;
157 ecoff_data (stdoutput)->debug_info.ptr = NULL; \
160 ecoff_data (stdoutput)->debug_info.ptr = (type) set; \
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddwarf.h72 we extract from the.debug_info section. */
87 debug_info; typedef in typeref:struct:__anon276
H A Ddwarf.c36 static debug_info *debug_information = NULL;
934 debug_info *debug_info_p,
1510 debug_info *debug_info_p,
1525 /* Process the contents of a .debug_info section. If do_loc is non-zero
1787 /* Locate and scan the .debug_info section in the file and record the pointer
2145 printf (_(" Offset into .debug_info section: %ld\n"),
2147 printf (_(" Size of area in .debug_info section: %ld\n"),
2316 /* Check the order of location list in .debug_info section. If
2355 error (_("Location lists in .debug_info section aren't in ascending order!\n"));
2358 error (_("No location lists in .debug_info sectio
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp256 const DWARFDataExtractor &debug_info,
266 Length = debug_info.getRelocatedValue(4, offset_ptr, nullptr, &Err);
269 Length = debug_info.getU64(offset_ptr, &Err);
272 FormParams.Version = debug_info.getU16(offset_ptr, &Err);
274 UnitType = debug_info.getU8(offset_ptr, &Err);
275 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err);
276 AbbrOffset = debug_info.getRelocatedValue(
279 AbbrOffset = debug_info.getRelocatedValue(
281 FormParams.AddrSize = debug_info.getU8(offset_ptr, &Err);
301 TypeHash = debug_info
255 extract(DWARFContext &Context, const DWARFDataExtractor &debug_info, uint64_t *offset_ptr, DWARFSectionKind SectionKind, const DWARFUnitIndex *Index, const DWARFUnitIndex::Entry *Entry) argument
[all...]
/freebsd-11-stable/libexec/rtld-elf/amd64/
H A Delf_rtld.x118 .debug_info 0 : { *(.debug_info) }
/freebsd-11-stable/libexec/rtld-elf/i386/
H A Delf_rtld.x118 .debug_info 0 : { *(.debug_info) }
/freebsd-11-stable/contrib/binutils/bfd/
H A Decoff.c430 if (ecoff_data (abfd)->debug_info.symbolic_header.magic ==
460 internal_symhdr = &ecoff_data (abfd)->debug_info.symbolic_header;
505 BFD_ASSERT (debug == &ecoff_data (abfd)->debug_info);
869 &ecoff_data (abfd)->debug_info))
881 eraw_src = (char *) ecoff_data (abfd)->debug_info.external_ext;
883 + (ecoff_data (abfd)->debug_info.symbolic_header.iextMax
890 internal_ptr->symbol.name = (ecoff_data (abfd)->debug_info.ssext
898 internal_ptr->fdr = (ecoff_data (abfd)->debug_info.fdr
908 fdr_ptr = ecoff_data (abfd)->debug_info.fdr;
909 fdr_end = fdr_ptr + ecoff_data (abfd)->debug_info
994 struct ecoff_debug_info * const debug_info = &ecoff_data (abfd)->debug_info; local
1709 struct ecoff_debug_info * const debug_info = &ecoff_data (abfd)->debug_info; local
[all...]
H A Decofflink.c1783 mk_fdrtab (abfd, debug_info, debug_swap, line_info)
1785 struct ecoff_debug_info * const debug_info;
1797 fdr_start = debug_info->fdr;
1798 fdr_end = fdr_start + debug_info->symbolic_header.ifdMax;
1830 sym_ptr = ((char *) debug_info->external_sym
1833 if (strcmp (debug_info->ss + fdr_ptr->issBase + sym.iss,
1925 lookup_line (abfd, debug_info, debug_swap, line_info)
1927 struct ecoff_debug_info * const debug_info;
1943 && !mk_fdrtab (abfd, debug_info, debug_swap, line_info))
2033 sym_ptr = ((char *) debug_info
[all...]
H A Dlibecoff.h113 struct ecoff_debug_info debug_info; member in struct:ecoff_tdata
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnit.h72 /// Parse a unit header from \p debug_info starting at \p offset_ptr.
73 bool extract(DWARFContext &Context, const DWARFDataExtractor &debug_info,
113 /// .debug_info and .debug_types, or from .debug_info.dwo and .debug_types.dwo.
129 /// Read units from a .debug_info or .debug_types section. Calls made
130 /// before finishedInfoUnits() are assumed to be for .debug_info sections,
135 /// Read units from a .debug_info.dwo or .debug_types.dwo section. Calls
136 /// made before finishedInfoUnits() are assumed to be for .debug_info.dwo
149 /// Returns number of units from all .debug_info[.dwo] sections.
155 /// Indicate that parsing .debug_info[
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp229 // Zero out the debug_info contribution
257 // Zero out the debug_info contribution
513 {"debug_info.dwo", {MCOFI.getDwarfInfoDWOSection(), DW_SECT_INFO}},
/freebsd-11-stable/sys/dev/liquidio/
H A Dlio_sysctl.c743 char debug_info[30] = "Debugging is disabled"; local
745 return (sysctl_handle_string(oidp, debug_info,
746 strlen(debug_info), req));
/freebsd-11-stable/contrib/gcc/
H A Dgimplify.c654 declare_vars (tree vars, tree scope, bool debug_info) argument
671 if (!block || !debug_info)

Completed in 406 milliseconds

12