Searched refs:objf (Results 1 - 25 of 43) sorted by relevance

12

/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dminsyms.h31 bound_minimal_symbol (struct minimal_symbol *msym, struct objfile *objf) argument
33 objfile (objf)
238 (const char *name, struct objfile *objf)
306 (struct objfile *objf, const lookup_name_info &name,
321 type *find_minsym_type_and_address (minimal_symbol *msymbol, objfile *objf,
H A Dsymfile-mem.c87 struct objfile *objf; local
122 objf = symbol_file_add_from_bfd (nbfd_holder, bfd_get_filename (nbfd),
125 current_program_space->add_target_sections (objf);
130 return objf;
H A Dminsyms.c245 bool maybe_collect (const char *sfile, objfile *objf,
364 struct objfile *objf)
385 if (objf == NULL || objf == objfile
386 || objf == objfile->separate_debug_objfile_backlink)
524 (struct objfile *objf, const lookup_name_info &lookup_name,
536 for (minimal_symbol *iter = objf->per_bfd->msymbol_hash[hash];
551 if (!objf->per_bfd->demangled_hash_languages.test (liter))
561 for (minimal_symbol *iter = objf->per_bfd->msymbol_demangled_hash[hash];
573 lookup_minimal_symbol_linkage (const char *name, struct objfile *objf) argument
363 lookup_minimal_symbol(const char *name, const char *sfile, struct objfile *objf) argument
523 iterate_over_minimal_symbols(struct objfile *objf, const lookup_name_info &lookup_name, gdb::function_view<bool (struct minimal_symbol *)> callback) argument
596 lookup_minimal_symbol_text(const char *name, struct objfile *objf) argument
647 lookup_minimal_symbol_by_pc_name(CORE_ADDR pc, const char *name, struct objfile *objf) argument
1056 objfile *objf = current_program_space->symfile_object_file; local
[all...]
H A Dpsympriv.h422 void read_symtab (struct objfile *objf) override
425 (*legacy_read_symtab) (this, objf);
428 void expand_psymtab (struct objfile *objf) override
430 (*legacy_expand_psymtab) (this, objf);
H A Dprogspace.c151 [=] (const std::unique_ptr<::objfile> &objf)
153 return objf.get () == before;
172 [=] (const std::unique_ptr<::objfile> &objf)
174 return objf.get () == objfile;
H A Dsolib-frv.c753 objfile *objf = current_program_space->symfile_object_file; local
754 section_offsets new_offsets (objf->section_offsets.size ());
757 ALL_OBJFILE_OSECTIONS (objf, osect)
763 osect_idx = osect - objf->sections;
768 offset = objf->section_offsets[osect_idx];
788 objfile_relocate (objf, new_offsets);
864 objfile *objf = current_program_space->symfile_object_file; local
865 got_sym = lookup_minimal_symbol ("_GLOBAL_OFFSET_TABLE_", NULL, objf);
925 objfile *objf = current_program_space->symfile_object_file; local
927 (entry_point, got_value, name, objf
[all...]
H A Djit.c222 get_jiter_objfile_data (objfile *objf) argument
224 if (objf->jiter_data == nullptr)
225 objf->jiter_data.reset (new jiter_objfile_data ());
227 return objf->jiter_data.get ();
830 for (objfile *objf : current_program_space->objfiles ())
832 if (objf->jited_data != nullptr && objf->jited_data->addr == entry_addr)
833 return objf;
850 for (objfile *objf : iter->pspace->objfiles ())
852 jiter_objfile_data *jiter_data = objf
[all...]
H A Dobjfiles.c362 objfile *objf = current_program_space->symfile_object_file;
363 if (objf == NULL || !objf->per_bfd->ei.entry_point_p)
366 int idx = objf->per_bfd->ei.the_bfd_section_index;
367 *entry_p = objf->per_bfd->ei.entry_point + objf->section_offsets[idx];
840 for (objfile *objf : current_program_space->objfiles_safe ())
845 if (!(objf->flags & OBJF_USERLOADED) && (objf->flags & OBJF_SHARED))
846 objf
360 objfile *objf = current_program_space->symfile_object_file; local
[all...]
H A Dsolib-dsbt.c818 objfile *objf = current_program_space->symfile_object_file; local
819 section_offsets new_offsets (objf->section_offsets.size ());
822 ALL_OBJFILE_OSECTIONS (objf, osect)
828 osect_idx = osect - objf->sections;
833 offset = objf->section_offsets[osect_idx];
853 objfile_relocate (objf, new_offsets);
H A Dsolib-aix.c462 objfile *objf = current_program_space->symfile_object_file; local
463 section_offsets offsets = solib_aix_get_section_offsets (objf,
466 objfile_relocate (objf, offsets);
H A Dsymfile.c2138 set_objfile_default_section_offset (struct objfile *objf,
2143 section_offsets offsets (objf->section_offsets.size (), offset);
2152 = build_section_addr_info_from_objfile (objf);
2185 objfile_relocate (objf, offsets);
2198 struct objfile *objf;
2329 objf = symbol_file_add (filename.get (), add_flags, &section_addrs,
2331 if (!objfile_has_symbols (objf) && objf->per_bfd->minimal_symbol_count <= 0)
2336 set_objfile_default_section_offset (objf, section_addrs, offset);
2338 current_program_space->add_target_sections (objf);
2136 set_objfile_default_section_offset(struct objfile *objf, const section_addr_info &addrs, CORE_ADDR offset) argument
2196 struct objfile *objf; local
2349 struct objfile *objf = NULL; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dminsyms.h216 (const char *name, struct objfile *objf)
284 (struct objfile *objf, const lookup_name_info &name,
299 type *find_minsym_type_and_address (minimal_symbol *msymbol, objfile *objf,
H A Dsymfile-mem.c86 struct objfile *objf; local
121 objf = symbol_file_add_from_bfd (nbfd, bfd_get_filename (nbfd),
124 add_target_sections_of_objfile (objf);
129 return objf;
H A Dpsympriv.h363 void read_symtab (struct objfile *objf) override
366 (*legacy_read_symtab) (this, objf);
369 void expand_psymtab (struct objfile *objf) override
371 (*legacy_expand_psymtab) (this, objf);
H A Dminsyms.c193 bool maybe_collect (const char *sfile, objfile *objf,
312 struct objfile *objf)
333 if (objf == NULL || objf == objfile
334 || objf == objfile->separate_debug_objfile_backlink)
477 (struct objfile *objf, const lookup_name_info &lookup_name,
489 for (minimal_symbol *iter = objf->per_bfd->msymbol_hash[hash];
504 if (!objf->per_bfd->demangled_hash_languages.test (liter))
514 for (minimal_symbol *iter = objf->per_bfd->msymbol_demangled_hash[hash];
526 lookup_minimal_symbol_linkage (const char *name, struct objfile *objf) argument
311 lookup_minimal_symbol(const char *name, const char *sfile, struct objfile *objf) argument
476 iterate_over_minimal_symbols(struct objfile *objf, const lookup_name_info &lookup_name, gdb::function_view<bool (struct minimal_symbol *)> callback) argument
549 lookup_minimal_symbol_text(const char *name, struct objfile *objf) argument
600 lookup_minimal_symbol_by_pc_name(CORE_ADDR pc, const char *name, struct objfile *objf) argument
[all...]
H A Dprogspace.c190 [=] (const std::shared_ptr<::objfile> &objf)
192 return objf.get () == before;
211 [=] (const std::shared_ptr<::objfile> &objf)
213 return objf.get () == objfile;
H A Djit.c254 get_jiter_objfile_data (objfile *objf) argument
256 if (objf->jiter_data == nullptr)
257 objf->jiter_data.reset (new jiter_objfile_data ());
259 return objf->jiter_data.get ();
854 for (objfile *objf : current_program_space->objfiles ())
856 if (objf->jited_data != nullptr && objf->jited_data->addr == entry_addr)
857 return objf;
874 for (objfile *objf : iter->pspace->objfiles ())
876 jiter_objfile_data *jiter_data = objf
[all...]
H A Dsymfile.c2151 set_objfile_default_section_offset (struct objfile *objf,
2156 section_offsets offsets (objf->section_offsets.size (), offset);
2165 = build_section_addr_info_from_objfile (objf);
2198 objfile_relocate (objf, offsets);
2211 struct objfile *objf;
2342 objf = symbol_file_add (filename.get (), add_flags, &section_addrs,
2344 if (!objfile_has_symbols (objf) && objf->per_bfd->minimal_symbol_count <= 0)
2349 set_objfile_default_section_offset (objf, section_addrs, offset);
2351 add_target_sections_of_objfile (objf);
2149 set_objfile_default_section_offset(struct objfile *objf, const section_addr_info &addrs, CORE_ADDR offset) argument
2209 struct objfile *objf; local
2362 struct objfile *objf = NULL; local
[all...]
H A Dobjfiles.c902 for (objfile *objf : current_program_space->objfiles_safe ())
907 if (!(objf->flags & OBJF_USERLOADED) && (objf->flags & OBJF_SHARED))
908 objf->unlink ();
/netbsd-current/external/gpl3/gdb.old/dist/gdb/guile/
H A Dscm-objfile.c376 for (objfile *objf : current_program_space->objfiles ())
378 SCM item = ofscm_scm_from_objfile (objf);
/netbsd-current/external/gpl3/gdb/dist/gdb/guile/
H A Dscm-objfile.c360 for (objfile *objf : current_program_space->objfiles ())
362 SCM item = ofscm_scm_from_objfile (objf);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/
H A Dpy-prettyprint.c98 gdbpy_ref<> objf = objfile_to_objfile_object (obj); local
99 if (objf == NULL)
106 gdbpy_ref<> pp_list (objfpy_get_printers (objf.get (), NULL));
H A Dpy-progspace.c335 for (objfile *objf : self->pspace->objfiles ())
337 gdbpy_ref<> item = objfile_to_objfile_object (objf);
/netbsd-current/external/gpl3/gdb/dist/gdb/python/
H A Dpy-progspace.c358 for (objfile *objf : self->pspace->objfiles ())
360 gdbpy_ref<> item = objfile_to_objfile_object (objf);
H A Dpy-prettyprint.c102 gdbpy_ref<> objf = objfile_to_objfile_object (obj); local
103 if (objf == NULL)
110 gdbpy_ref<> pp_list (objfpy_get_printers (objf.get (), NULL));

Completed in 328 milliseconds

12