diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 16:03:07 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 16:03:07 +0000 |
commit | 652a899601383bee12293508992ca5f5e0d76967 (patch) | |
tree | 8583d93154479945d63136f771a5f35c86333479 /gdb/symfile.h | |
parent | af529f8f61348016fc75bcb2e09c8f5d8bd1cc3a (diff) | |
download | gdb-652a899601383bee12293508992ca5f5e0d76967.zip gdb-652a899601383bee12293508992ca5f5e0d76967.tar.gz gdb-652a899601383bee12293508992ca5f5e0d76967.tar.bz2 |
gdb/
Code cleanup.
* dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
(dw2_expand_symtabs_with_fullname): ... here. Rename parameter
filename to fullname. Rename variable this_name to this_fullname.
Lowercase FILENAME_CMP call.
(dw2_find_symbol_file): New comment for the returned string.
(dwarf2_gdb_index_functions): Rename the function to
dw2_expand_symtabs_with_fullname.
* psymtab.c (read_psymtabs_with_filename): Rename to ...
(read_psymtabs_with_fullname): ... here. Rename parameter filename to
fullname.
(psym_functions): Rename the function to read_psymtabs_with_fullname.
* symfile.h (struct quick_symbol_functions): Rename field
expand_symtabs_with_filename to expand_symtabs_with_fullname and its
parameter filename to fullname. Document returned string meaning for
find_symbol_file.
* symtab.c (find_line_symtab): Rename the called function to
expand_symtabs_with_fullname.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index aec2148..2a0d656 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -212,16 +212,17 @@ struct quick_symbol_functions /* Read all symbol tables associated with OBJFILE. */ void (*expand_all_symtabs) (struct objfile *objfile); - /* Read all symbol tables associated with OBJFILE which have the - file name FILENAME. + /* Read all symbol tables associated with OBJFILE which have + symtab_to_fullname equal to FULLNAME. This is for the purposes of examining code only, e.g., expand_line_sal. The routine may ignore debug info that is known to not be useful with code, e.g., DW_TAG_type_unit for dwarf debug info. */ - void (*expand_symtabs_with_filename) (struct objfile *objfile, - const char *filename); + void (*expand_symtabs_with_fullname) (struct objfile *objfile, + const char *fullname); /* Return the file name of the file holding the global symbol in OBJFILE - named NAME. If no such symbol exists in OBJFILE, return NULL. */ + named NAME. If no such symbol exists in OBJFILE, return NULL. + Only file extension of returned filename is recognized. */ const char *(*find_symbol_file) (struct objfile *objfile, const char *name); /* Find global or static symbols in all tables that are in NAMESPACE |