diff options
author | Markus Deuling <deuling@de.ibm.com> | 2008-01-11 13:34:15 +0000 |
---|---|---|
committer | Markus Deuling <deuling@de.ibm.com> | 2008-01-11 13:34:15 +0000 |
commit | ed49a04fe1bc299bc4b22c01a15c1f46ae21a294 (patch) | |
tree | 2aa63b9e2824bf8419d240f8dd2e7f6a370ee5df /gdb/symmisc.c | |
parent | 6093d2eb3a94fe7f15abaec2ad363cffd46aa8cd (diff) | |
download | gdb-ed49a04fe1bc299bc4b22c01a15c1f46ae21a294.zip gdb-ed49a04fe1bc299bc4b22c01a15c1f46ae21a294.tar.gz gdb-ed49a04fe1bc299bc4b22c01a15c1f46ae21a294.tar.bz2 |
* exec.c: #include "arch-utils.h"
(print_section_info): Use gdbarch_from_bfd to get at the
current architecture. Replace current_gdbarch. Fix indention.
Replace deprecated_print_address_numeric by paddress.
* Makefile.in (exec.o) Add dependency to arch-utils.h.
* valprint.c (val_print_string): Replace
deprecated_print_address_numeric.
* tracepoint.c (trace_mention, scope_info): Likewise.
* symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
(print_symbol, print_partial_symbols, maintenance_info_psymtabs)
(maintenance_check_symtabs): Likewise.
* symfile.c (list_overlays_command): Likewise.
* stack.c (frame_info, print_block_frame_labels): Likewise.
* printcmd.c (print_address, print_address_demangle)
(address_info): Likewise.
* corefile.c (memory_error): Likewise.
* infcmd.c (jump_command): Likewise.
* breakpoint.c (insert_bp_location, describe_other_breakpoints)
(mention, delete_breakpoint): Likewise.
* c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
* dwarf2read.c (dump_die): Likewise.
* ada-valprint.c (ada_val_print_1): Likewise.
* f-valprint.c (f_val_print): Likewise.
* linux-fork.c (info_forks_command): Likewise.
* m32r-com.c (m32r_load_section, m32r_load)
(m32r_upload_command): Likewise.
* ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r-- | gdb/symmisc.c | 53 |
1 files changed, 25 insertions, 28 deletions
diff --git a/gdb/symmisc.c b/gdb/symmisc.c index 5c5950a..46645c1 100644 --- a/gdb/symmisc.c +++ b/gdb/symmisc.c @@ -346,7 +346,7 @@ dump_msymbols (struct objfile *objfile, struct ui_file *outfile) break; } fprintf_filtered (outfile, "[%2d] %c ", index, ms_type); - deprecated_print_address_numeric (SYMBOL_VALUE_ADDRESS (msymbol), 1, outfile); + fputs_filtered (paddress (SYMBOL_VALUE_ADDRESS (msymbol)), outfile); fprintf_filtered (outfile, " %s", DEPRECATED_SYMBOL_NAME (msymbol)); if (SYMBOL_BFD_SECTION (msymbol)) fprintf_filtered (outfile, " section %s", @@ -400,16 +400,15 @@ dump_psymtab (struct objfile *objfile, struct partial_symtab *psymtab, if (i != 0) fprintf_filtered (outfile, ", "); wrap_here (" "); - deprecated_print_address_numeric (ANOFFSET (psymtab->section_offsets, i), - 1, - outfile); + fputs_filtered (paddress (ANOFFSET (psymtab->section_offsets, i)), + outfile); } fprintf_filtered (outfile, "\n"); fprintf_filtered (outfile, " Symbols cover text addresses "); - deprecated_print_address_numeric (psymtab->textlow, 1, outfile); + fputs_filtered (paddress (psymtab->textlow), outfile); fprintf_filtered (outfile, "-"); - deprecated_print_address_numeric (psymtab->texthigh, 1, outfile); + fputs_filtered (paddress (psymtab->texthigh), outfile); fprintf_filtered (outfile, "\n"); fprintf_filtered (outfile, " Depends on %d other partial symtabs.\n", psymtab->number_of_dependencies); @@ -466,7 +465,7 @@ dump_symtab_1 (struct objfile *objfile, struct symtab *symtab, for (i = 0; i < len; i++) { fprintf_filtered (outfile, " line %d at ", l->item[i].line); - deprecated_print_address_numeric (l->item[i].pc, 1, outfile); + fputs_filtered (paddress (l->item[i].pc), outfile); fprintf_filtered (outfile, "\n"); } } @@ -494,9 +493,9 @@ dump_symtab_1 (struct objfile *objfile, struct symtab *symtab, wants it. */ fprintf_filtered (outfile, ", %d syms/buckets in ", dict_size (BLOCK_DICT (b))); - deprecated_print_address_numeric (BLOCK_START (b), 1, outfile); + fputs_filtered (paddress (BLOCK_START (b)), outfile); fprintf_filtered (outfile, ".."); - deprecated_print_address_numeric (BLOCK_END (b), 1, outfile); + fputs_filtered (paddress (BLOCK_END (b)), outfile); if (BLOCK_FUNCTION (b)) { fprintf_filtered (outfile, ", function %s", DEPRECATED_SYMBOL_NAME (BLOCK_FUNCTION (b))); @@ -609,7 +608,7 @@ print_symbol (void *args) if (SYMBOL_DOMAIN (symbol) == LABEL_DOMAIN) { fprintf_filtered (outfile, "label %s at ", SYMBOL_PRINT_NAME (symbol)); - deprecated_print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), 1, outfile); + fputs_filtered (paddress (SYMBOL_VALUE_ADDRESS (symbol)), outfile); if (SYMBOL_BFD_SECTION (symbol)) fprintf_filtered (outfile, " section %s\n", bfd_section_name (SYMBOL_BFD_SECTION (symbol)->owner, @@ -674,7 +673,7 @@ print_symbol (void *args) case LOC_STATIC: fprintf_filtered (outfile, "static at "); - deprecated_print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), 1, outfile); + fputs_filtered (paddress (SYMBOL_VALUE_ADDRESS (symbol)), outfile); if (SYMBOL_BFD_SECTION (symbol)) fprintf_filtered (outfile, " section %s", bfd_section_name @@ -684,7 +683,7 @@ print_symbol (void *args) case LOC_INDIRECT: fprintf_filtered (outfile, "extern global at *("); - deprecated_print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), 1, outfile); + fputs_filtered (paddress (SYMBOL_VALUE_ADDRESS (symbol)), outfile); fprintf_filtered (outfile, "),"); break; @@ -734,7 +733,7 @@ print_symbol (void *args) case LOC_LABEL: fprintf_filtered (outfile, "label at "); - deprecated_print_address_numeric (SYMBOL_VALUE_ADDRESS (symbol), 1, outfile); + fputs_filtered (paddress (SYMBOL_VALUE_ADDRESS (symbol)), outfile); if (SYMBOL_BFD_SECTION (symbol)) fprintf_filtered (outfile, " section %s", bfd_section_name @@ -746,13 +745,11 @@ print_symbol (void *args) fprintf_filtered (outfile, "block object "); gdb_print_host_address (SYMBOL_BLOCK_VALUE (symbol), outfile); fprintf_filtered (outfile, ", "); - deprecated_print_address_numeric (BLOCK_START (SYMBOL_BLOCK_VALUE (symbol)), - 1, - outfile); + fputs_filtered (paddress (BLOCK_START (SYMBOL_BLOCK_VALUE (symbol))), + outfile); fprintf_filtered (outfile, ".."); - deprecated_print_address_numeric (BLOCK_END (SYMBOL_BLOCK_VALUE (symbol)), - 1, - outfile); + fputs_filtered (paddress (BLOCK_END (SYMBOL_BLOCK_VALUE (symbol))), + outfile); if (SYMBOL_BFD_SECTION (symbol)) fprintf_filtered (outfile, " section %s", bfd_section_name @@ -925,7 +922,7 @@ print_partial_symbols (struct partial_symbol **p, int count, char *what, break; } fputs_filtered (", ", outfile); - deprecated_print_address_numeric (SYMBOL_VALUE_ADDRESS (*p), 1, outfile); + fputs_filtered (paddress (SYMBOL_VALUE_ADDRESS (*p)), outfile); fprintf_filtered (outfile, "\n"); p++; } @@ -1088,9 +1085,9 @@ maintenance_info_psymtabs (char *regexp, int from_tty) printf_filtered (" fullname %s\n", psymtab->fullname ? psymtab->fullname : "(null)"); printf_filtered (" text addresses "); - deprecated_print_address_numeric (psymtab->textlow, 1, gdb_stdout); + fputs_filtered (paddress (psymtab->textlow), gdb_stdout); printf_filtered (" -- "); - deprecated_print_address_numeric (psymtab->texthigh, 1, gdb_stdout); + fputs_filtered (paddress (psymtab->texthigh), gdb_stdout); printf_filtered ("\n"); printf_filtered (" globals "); if (psymtab->n_global_syms) @@ -1199,9 +1196,9 @@ maintenance_check_symtabs (char *ignore, int from_tty) printf_filtered ("Psymtab "); puts_filtered (ps->filename); printf_filtered (" covers bad range "); - deprecated_print_address_numeric (ps->textlow, 1, gdb_stdout); + fputs_filtered (paddress (ps->textlow), gdb_stdout); printf_filtered (" - "); - deprecated_print_address_numeric (ps->texthigh, 1, gdb_stdout); + fputs_filtered (paddress (ps->texthigh), gdb_stdout); printf_filtered ("\n"); continue; } @@ -1212,13 +1209,13 @@ maintenance_check_symtabs (char *ignore, int from_tty) printf_filtered ("Psymtab "); puts_filtered (ps->filename); printf_filtered (" covers "); - deprecated_print_address_numeric (ps->textlow, 1, gdb_stdout); + fputs_filtered (paddress (ps->textlow), gdb_stdout); printf_filtered (" - "); - deprecated_print_address_numeric (ps->texthigh, 1, gdb_stdout); + fputs_filtered (paddress (ps->texthigh), gdb_stdout); printf_filtered (" but symtab covers only "); - deprecated_print_address_numeric (BLOCK_START (b), 1, gdb_stdout); + fputs_filtered (paddress (BLOCK_START (b)), gdb_stdout); printf_filtered (" - "); - deprecated_print_address_numeric (BLOCK_END (b), 1, gdb_stdout); + fputs_filtered (paddress (BLOCK_END (b)), gdb_stdout); printf_filtered ("\n"); } } |