* symtab.h (enum address_class): Remove LOC_BASEREG and
LOC_BASEREG_ARG. (struct symbol): Remove "basereg" member of "aux_value" union. (SYMBOL_BASEREG): Remove. * ada-exp.y (select_possible_type_sym): Do not handle LOC_BASEREG or LOC_BASEREG_ARG. * ada-lang.c (resolve_subexp, symtab_for_sym): Likewise. (ada_add_block_symbols): Likewise. * ax-gdb.c (gen_var_ref): Likewise. * buildsym.c (finish_block): Likewise. * findvar.c (symbol_read_needs_frame, read_var_value): Likewise. * m2-exp.y (yylex): Likewise. * mi/mi-cmd-stack.c (list_args_or_locals): Likewise. * printcmd.c (address_info): Likewise. * stack.c (print_frame_args, print_block_frame_locals): Likewise. (print_frame_arg_vars): Likewise. * symmisc.c (print_symbol): Likewise. * symtab.c (lookup_block_symbol): Likewise. * tracepoint.c (collect_symbol, add_local_symbols): Likewise. (scope_info): Likewise.
This commit is contained in:
parent
aa59ba6b27
commit
c3b22bd09c
14 changed files with 24 additions and 115 deletions
|
@ -1290,19 +1290,6 @@ collect_symbol (struct collection_list *collect,
|
|||
}
|
||||
add_memrange (collect, reg, offset, len);
|
||||
break;
|
||||
case LOC_BASEREG:
|
||||
case LOC_BASEREG_ARG:
|
||||
reg = SYMBOL_BASEREG (sym);
|
||||
offset = SYMBOL_VALUE (sym);
|
||||
if (info_verbose)
|
||||
{
|
||||
printf_filtered ("LOC_BASEREG %s: collect %ld bytes at offset ",
|
||||
DEPRECATED_SYMBOL_NAME (sym), len);
|
||||
printf_vma (offset);
|
||||
printf_filtered (" from basereg %d\n", reg);
|
||||
}
|
||||
add_memrange (collect, reg, offset, len);
|
||||
break;
|
||||
case LOC_UNRESOLVED:
|
||||
printf_filtered ("Don't know LOC_UNRESOLVED %s\n",
|
||||
DEPRECATED_SYMBOL_NAME (sym));
|
||||
|
@ -1338,7 +1325,6 @@ add_local_symbols (struct collection_list *collect, CORE_ADDR pc,
|
|||
case LOC_LOCAL:
|
||||
case LOC_STATIC:
|
||||
case LOC_REGISTER:
|
||||
case LOC_BASEREG:
|
||||
if (type == 'L') /* collecting Locals */
|
||||
{
|
||||
count++;
|
||||
|
@ -1350,7 +1336,6 @@ add_local_symbols (struct collection_list *collect, CORE_ADDR pc,
|
|||
case LOC_REF_ARG:
|
||||
case LOC_REGPARM:
|
||||
case LOC_REGPARM_ADDR:
|
||||
case LOC_BASEREG_ARG:
|
||||
if (type == 'A') /* collecting Arguments */
|
||||
{
|
||||
count++;
|
||||
|
@ -2491,18 +2476,6 @@ scope_info (char *args, int from_tty)
|
|||
printf_filtered ("a function at address ");
|
||||
printf_filtered ("%s", paddress (BLOCK_START (SYMBOL_BLOCK_VALUE (sym))));
|
||||
break;
|
||||
case LOC_BASEREG:
|
||||
printf_filtered ("a variable at offset %ld from register $%s",
|
||||
SYMBOL_VALUE (sym),
|
||||
gdbarch_register_name
|
||||
(current_gdbarch, SYMBOL_BASEREG (sym)));
|
||||
break;
|
||||
case LOC_BASEREG_ARG:
|
||||
printf_filtered ("an argument at offset %ld from register $%s",
|
||||
SYMBOL_VALUE (sym),
|
||||
gdbarch_register_name
|
||||
(current_gdbarch, SYMBOL_BASEREG (sym)));
|
||||
break;
|
||||
case LOC_UNRESOLVED:
|
||||
msym = lookup_minimal_symbol (DEPRECATED_SYMBOL_NAME (sym),
|
||||
NULL, NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue