Home
last modified time | relevance | path

Searched refs:objf (Results 1 – 25 of 38) sorted by relevance

12

/netbsd/external/gpl3/gdb/dist/gdb/
H A Dminsyms.c193 bool maybe_collect (const char *sfile, objfile *objf,
312 struct objfile *objf) in lookup_minimal_symbol() argument
333 if (objf == NULL || objf == objfile in lookup_minimal_symbol()
334 || objf == objfile->separate_debug_objfile_backlink) in lookup_minimal_symbol()
477 (struct objfile *objf, const lookup_name_info &lookup_name, in iterate_over_minimal_symbols() argument
530 for (objfile *objfile : objf->separate_debug_objfiles ()) in lookup_minimal_symbol_linkage()
562 if (objf == NULL || objf == objfile in lookup_minimal_symbol_text()
563 || objf == objfile->separate_debug_objfile_backlink) in lookup_minimal_symbol_text()
601 struct objfile *objf) in lookup_minimal_symbol_by_pc_name() argument
609 if (objf == NULL || objf == objfile in lookup_minimal_symbol_by_pc_name()
[all …]
H A Dsymfile-mem.c86 struct objfile *objf; in symbol_file_add_from_memory() local
121 objf = symbol_file_add_from_bfd (nbfd, bfd_get_filename (nbfd), in symbol_file_add_from_memory()
124 add_target_sections_of_objfile (objf); in symbol_file_add_from_memory()
129 return objf; in symbol_file_add_from_memory()
H A Djit.c254 get_jiter_objfile_data (objfile *objf) in get_jiter_objfile_data() argument
256 if (objf->jiter_data == nullptr) in get_jiter_objfile_data()
257 objf->jiter_data.reset (new jiter_objfile_data ()); in get_jiter_objfile_data()
259 return objf->jiter_data.get (); in get_jiter_objfile_data()
854 for (objfile *objf : current_program_space->objfiles ()) in jit_find_objf_with_entry_addr()
856 if (objf->jited_data != nullptr && objf->jited_data->addr == entry_addr) in jit_find_objf_with_entry_addr()
857 return objf; in jit_find_objf_with_entry_addr()
874 for (objfile *objf : iter->pspace->objfiles ()) in jit_breakpoint_deleted()
876 jiter_objfile_data *jiter_data = objf->jiter_data.get (); in jit_breakpoint_deleted()
1266 if (objf->jited_data != nullptr && objf->jited_data->addr != 0) in jit_inferior_exit_hook()
[all …]
H A Dminsyms.h214 (const char *name, struct objfile *objf)
282 (struct objfile *objf, const lookup_name_info &name,
297 type *find_minsym_type_and_address (minimal_symbol *msymbol, objfile *objf,
H A Dpsympriv.h363 void read_symtab (struct objfile *objf) override in read_symtab()
366 (*legacy_read_symtab) (this, objf); in read_symtab()
369 void expand_psymtab (struct objfile *objf) override in expand_psymtab()
371 (*legacy_expand_psymtab) (this, objf); in expand_psymtab()
H A Dprogspace.c187 [=] (const std::shared_ptr<::objfile> &objf) in add_objfile()
189 return objf.get () == before; in add_objfile()
208 [=] (const std::shared_ptr<::objfile> &objf) in remove_objfile()
210 return objf.get () == objfile; in remove_objfile()
H A Dsymfile.c2163 = build_section_addr_info_from_objfile (objf); in set_objfile_default_section_offset()
2196 objfile_relocate (objf, offsets); in set_objfile_default_section_offset()
2209 struct objfile *objf; in add_symbol_file_command() local
2342 if (!objfile_has_symbols (objf) && objf->per_bfd->minimal_symbol_count <= 0) in add_symbol_file_command()
2349 add_target_sections_of_objfile (objf); in add_symbol_file_command()
2362 struct objfile *objf = NULL; in remove_symbol_file_command() local
2392 objf = objfile; in remove_symbol_file_command()
2413 objf = objfile; in remove_symbol_file_command()
2419 if (objf == NULL) in remove_symbol_file_command()
2424 objfile_name (objf))) in remove_symbol_file_command()
[all …]
H A Dobjfiles.c898 for (objfile *objf : current_program_space->objfiles_safe ())
903 if (!(objf->flags & OBJF_USERLOADED) && (objf->flags & OBJF_SHARED))
904 objf->unlink ();
H A Dlinux-tdep.c2425 struct objfile *objf;
2428 struct value *mmap_val = find_function_in_inferior ("mmap64", &objf);
2430 struct gdbarch *gdbarch = objf->arch ();
2466 struct objfile *objf;
2467 struct value *munmap_val = find_function_in_inferior ("munmap", &objf);
2469 struct gdbarch *gdbarch = objf->arch ();
H A Dcp-support.c1454 for (objfile *objf : current_program_space->objfiles ())
1456 if (objf->sf)
1457 objf->sf->qf->expand_symtabs_for_function (objf, func_name);
/netbsd/external/gpl3/gdb.old/dist/gdb/
H A Dminsyms.c193 bool maybe_collect (const char *sfile, objfile *objf,
312 struct objfile *objf) in lookup_minimal_symbol() argument
333 if (objf == NULL || objf == objfile in lookup_minimal_symbol()
334 || objf == objfile->separate_debug_objfile_backlink) in lookup_minimal_symbol()
477 (struct objfile *objf, const lookup_name_info &lookup_name, in iterate_over_minimal_symbols() argument
530 for (objfile *objfile : objf->separate_debug_objfiles ()) in lookup_minimal_symbol_linkage()
562 if (objf == NULL || objf == objfile in lookup_minimal_symbol_text()
563 || objf == objfile->separate_debug_objfile_backlink) in lookup_minimal_symbol_text()
601 struct objfile *objf) in lookup_minimal_symbol_by_pc_name() argument
609 if (objf == NULL || objf == objfile in lookup_minimal_symbol_by_pc_name()
[all …]
H A Dsymfile-mem.c86 struct objfile *objf; in symbol_file_add_from_memory() local
121 objf = symbol_file_add_from_bfd (nbfd, bfd_get_filename (nbfd), in symbol_file_add_from_memory()
124 add_target_sections_of_objfile (objf); in symbol_file_add_from_memory()
129 return objf; in symbol_file_add_from_memory()
H A Djit.c254 get_jiter_objfile_data (objfile *objf) in get_jiter_objfile_data() argument
256 if (objf->jiter_data == nullptr) in get_jiter_objfile_data()
257 objf->jiter_data.reset (new jiter_objfile_data ()); in get_jiter_objfile_data()
259 return objf->jiter_data.get (); in get_jiter_objfile_data()
854 for (objfile *objf : current_program_space->objfiles ()) in jit_find_objf_with_entry_addr()
856 if (objf->jited_data != nullptr && objf->jited_data->addr == entry_addr) in jit_find_objf_with_entry_addr()
857 return objf; in jit_find_objf_with_entry_addr()
874 for (objfile *objf : iter->pspace->objfiles ()) in jit_breakpoint_deleted()
876 jiter_objfile_data *jiter_data = objf->jiter_data.get (); in jit_breakpoint_deleted()
1266 if (objf->jited_data != nullptr && objf->jited_data->addr != 0) in jit_inferior_exit_hook()
[all …]
H A Dminsyms.h214 (const char *name, struct objfile *objf)
282 (struct objfile *objf, const lookup_name_info &name,
297 type *find_minsym_type_and_address (minimal_symbol *msymbol, objfile *objf,
H A Dpsympriv.h363 void read_symtab (struct objfile *objf) override in read_symtab()
366 (*legacy_read_symtab) (this, objf); in read_symtab()
369 void expand_psymtab (struct objfile *objf) override in expand_psymtab()
371 (*legacy_expand_psymtab) (this, objf); in expand_psymtab()
H A Dprogspace.c187 [=] (const std::shared_ptr<::objfile> &objf) in add_objfile()
189 return objf.get () == before; in add_objfile()
208 [=] (const std::shared_ptr<::objfile> &objf) in remove_objfile()
210 return objf.get () == objfile; in remove_objfile()
H A Dsymfile.c2163 = build_section_addr_info_from_objfile (objf); in set_objfile_default_section_offset()
2196 objfile_relocate (objf, offsets); in set_objfile_default_section_offset()
2209 struct objfile *objf; in add_symbol_file_command() local
2342 if (!objfile_has_symbols (objf) && objf->per_bfd->minimal_symbol_count <= 0) in add_symbol_file_command()
2349 add_target_sections_of_objfile (objf); in add_symbol_file_command()
2362 struct objfile *objf = NULL; in remove_symbol_file_command() local
2392 objf = objfile; in remove_symbol_file_command()
2413 objf = objfile; in remove_symbol_file_command()
2419 if (objf == NULL) in remove_symbol_file_command()
2424 objfile_name (objf))) in remove_symbol_file_command()
[all …]
H A Dobjfiles.c898 for (objfile *objf : current_program_space->objfiles_safe ())
903 if (!(objf->flags & OBJF_USERLOADED) && (objf->flags & OBJF_SHARED))
904 objf->unlink ();
H A Dlinux-tdep.c2425 struct objfile *objf;
2428 struct value *mmap_val = find_function_in_inferior ("mmap64", &objf);
2430 struct gdbarch *gdbarch = objf->arch ();
2466 struct objfile *objf;
2467 struct value *munmap_val = find_function_in_inferior ("munmap", &objf);
2469 struct gdbarch *gdbarch = objf->arch ();
/netbsd/external/gpl3/gdb/dist/gdb/guile/
H A Dscm-objfile.c373 for (objfile *objf : current_program_space->objfiles ()) in gdbscm_objfiles()
375 SCM item = ofscm_scm_from_objfile (objf); in gdbscm_objfiles()
/netbsd/external/gpl3/gdb.old/dist/gdb/guile/
H A Dscm-objfile.c373 for (objfile *objf : current_program_space->objfiles ()) in gdbscm_objfiles()
375 SCM item = ofscm_scm_from_objfile (objf); in gdbscm_objfiles()
/netbsd/external/gpl3/gdb/dist/gdb/python/
H A Dpy-prettyprint.c98 gdbpy_ref<> objf = objfile_to_objfile_object (obj); in find_pretty_printer_from_objfiles() local
99 if (objf == NULL) in find_pretty_printer_from_objfiles()
106 gdbpy_ref<> pp_list (objfpy_get_printers (objf.get (), NULL)); in find_pretty_printer_from_objfiles()
H A Dpy-progspace.c335 for (objfile *objf : self->pspace->objfiles ()) in pspy_get_objfiles()
337 gdbpy_ref<> item = objfile_to_objfile_object (objf); in pspy_get_objfiles()
/netbsd/external/gpl3/gdb.old/dist/gdb/python/
H A Dpy-prettyprint.c98 gdbpy_ref<> objf = objfile_to_objfile_object (obj); in find_pretty_printer_from_objfiles() local
99 if (objf == NULL) in find_pretty_printer_from_objfiles()
106 gdbpy_ref<> pp_list (objfpy_get_printers (objf.get (), NULL)); in find_pretty_printer_from_objfiles()
H A Dpy-progspace.c335 for (objfile *objf : self->pspace->objfiles ()) in pspy_get_objfiles()
337 gdbpy_ref<> item = objfile_to_objfile_object (objf); in pspy_get_objfiles()

12