aboutsummaryrefslogtreecommitdiff
path: root/gdb/symmisc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/symmisc.c')
-rw-r--r--gdb/symmisc.c53
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");
}
}