mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 02:53:48 +08:00
8d49165d83
This patch holds all the straightforward unused variable deletions. gdb/ChangeLog 2018-07-22 Tom Tromey <tom@tromey.com> * guile/scm-value.c (gdbscm_value_call): Remove unused variables. * guile/scm-math.c (vlscm_unop_gdbthrow, vlscm_binop_gdbthrow) (vlscm_convert_typed_value_from_scheme): Remove unused variable. * buildsym-legacy.c (get_macro_table): Remove unused variable. * stack.c (frame_apply_level_command): Remove unused variable. * tic6x-tdep.c (tic6x_push_dummy_call): Remove unused variable. * sparc64-tdep.c (adi_examine_command): Remove unused variable. * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call): Remove unused variable. * nios2-tdep.c (nios2_push_dummy_call): Remove unused variable. * mep-tdep.c (mep_push_dummy_call): Remove unused variable. * ada-lang.c (ada_lookup_symbol_list_worker): Remove unused variable. * amd64-tdep.c (amd64_supply_xsave): Remove unused variable. * arm-tdep.c (arm_record_data_proc_misc_ld_str): Remove unused variable. * breakpoint.c (check_no_tracepoint_commands, update_watchpoint): Remove unused variable. * cli/cli-script.c (recurse_read_control_structure): Remove unused variable. * common/tdesc.c (print_xml_feature::visit): Remove unused variable. * compile/compile-object-load.c (store_regs): Remove unused variables. * complaints.c (clear_complaints): Remove unused variable. * corelow.c (core_target_open): Remove unused variable. * fbsd-tdep.c (fbsd_core_info_proc_status): Remove unused variable. * guile/scm-frame.c (gdbscm_frame_read_var): Remove unused variable. * guile/scm-symtab.c (stscm_print_sal_smob): Remove unused variable. * guile/scm-type.c (gdbscm_field_baseclass_p): Remove unused variable. * guile/scm-utils.c (gdbscm_parse_function_args): Remove unused variable. * hppa-tdep.c (hppa_stub_frame_unwind_cache): Remove unused variable. * ia64-tdep.c (examine_prologue): Remove unused variable. * infcall.c (run_inferior_call): Remove unused variable. * inferior.c (exit_inferior): Remove unused variable. * infrun.c (infrun_thread_ptid_changed): Remove unused variable. * linespec.c (decode_line_2): Remove unused variable. * linux-nat.c (super_close): Remove. * linux-tdep.c (linux_info_proc): Remove unused variable. * mi/mi-main.c (mi_execute_command): Remove unused variable. * microblaze-linux-tdep.c (microblaze_linux_sigtramp_cache): Remove unused variable. * parse.c (find_minsym_type_and_address): Remove unused variable. * printcmd.c (info_symbol_command, printf_floating): Remove unused variable. * python/py-breakpoint.c (bppy_set_commands): Remove unused variable. * python/py-unwind.c (unwind_infopy_dealloc): Remove unused variables. * record-btrace.c (record_btrace_target::store_registers): Remove unused variable. (cmd_show_record_btrace_cpu): Remove unused variable. * riscv-tdep.c (riscv_register_reggroup_p) (riscv_push_dummy_call, riscv_return_value): Remove unused variable. * rust-exp.y (literal): Remove unused variable. * rust-lang.c (rust_evaluate_subexp) <OP_RUST_ARARAY>: Remove unused variable. <STRUCTOP_ANONYMOUS>: Likewise. * s390-linux-tdep.c (s390_linux_init_abi_31) (s390_linux_init_abi_64): Remove unused variable. * ser-ming2.c (ser_windows_read_prim, pipe_select_thread) (file_select_thread, net_windows_open, _initialize_ser_windows): Remove unused variables. * symtab.c (find_pc_sect_line): Remove unused variable. * target-memory.c (compute_garbled_blocks): Remove unused variable. (target_write_memory_blocks): Remove unused variable. * target.c (target_stack::unpush): Remove unused variables. * tracepoint.c (start_tracing, all_tracepoint_actions) (merge_uploaded_trace_state_variables) (print_one_static_tracepoint_marker): Remove unused variable. * unittests/basic_string_view/element_access/char/1.cc (test01): Remove unused variable. * windows-nat.c (windows_continue, windows_add_all_dlls) (do_initial_windows_stuff, windows_nat_target::create_inferior): Remove unused variables.
347 lines
8.4 KiB
C
347 lines
8.4 KiB
C
/* Legacy support routines for building symbol tables in GDB's internal format.
|
||
Copyright (C) 1986-2018 Free Software Foundation, Inc.
|
||
|
||
This file is part of GDB.
|
||
|
||
This program is free software; you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation; either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||
|
||
#include "defs.h"
|
||
#include "buildsym-legacy.h"
|
||
|
||
/* The work-in-progress of the compunit we are building.
|
||
This is created first, before any subfiles by start_symtab. */
|
||
|
||
static struct buildsym_compunit *buildsym_compunit;
|
||
|
||
void
|
||
record_debugformat (const char *format)
|
||
{
|
||
buildsym_compunit->record_debugformat (format);
|
||
}
|
||
|
||
void
|
||
record_producer (const char *producer)
|
||
{
|
||
buildsym_compunit->record_producer (producer);
|
||
}
|
||
|
||
|
||
|
||
/* See buildsym.h. */
|
||
|
||
void
|
||
set_last_source_file (const char *name)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr || name == nullptr);
|
||
if (buildsym_compunit != nullptr)
|
||
buildsym_compunit->set_last_source_file (name);
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
const char *
|
||
get_last_source_file ()
|
||
{
|
||
if (buildsym_compunit == nullptr)
|
||
return nullptr;
|
||
return buildsym_compunit->get_last_source_file ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
void
|
||
set_last_source_start_addr (CORE_ADDR addr)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
buildsym_compunit->set_last_source_start_addr (addr);
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
CORE_ADDR
|
||
get_last_source_start_addr ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_last_source_start_addr ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct using_direct **
|
||
get_local_using_directives ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_local_using_directives ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
void
|
||
set_local_using_directives (struct using_direct *new_local)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
buildsym_compunit->set_local_using_directives (new_local);
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct using_direct **
|
||
get_global_using_directives ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_global_using_directives ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
bool
|
||
outermost_context_p ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->outermost_context_p ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct context_stack *
|
||
get_current_context_stack ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_current_context_stack ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
int
|
||
get_context_stack_depth ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_context_stack_depth ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct subfile *
|
||
get_current_subfile ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_current_subfile ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct pending **
|
||
get_local_symbols ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_local_symbols ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct pending **
|
||
get_file_symbols ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_file_symbols ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct pending **
|
||
get_global_symbols ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->get_global_symbols ();
|
||
}
|
||
|
||
void
|
||
start_subfile (const char *name)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
buildsym_compunit->start_subfile (name);
|
||
}
|
||
|
||
void
|
||
patch_subfile_names (struct subfile *subfile, const char *name)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
buildsym_compunit->patch_subfile_names (subfile, name);
|
||
}
|
||
|
||
void
|
||
push_subfile ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
buildsym_compunit->push_subfile ();
|
||
}
|
||
|
||
const char *
|
||
pop_subfile ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->pop_subfile ();
|
||
}
|
||
|
||
/* Delete the buildsym compunit. */
|
||
|
||
static void
|
||
free_buildsym_compunit (void)
|
||
{
|
||
if (buildsym_compunit == NULL)
|
||
return;
|
||
delete buildsym_compunit;
|
||
buildsym_compunit = NULL;
|
||
}
|
||
|
||
struct compunit_symtab *
|
||
end_symtab (CORE_ADDR end_addr, int section)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
struct compunit_symtab *result
|
||
= buildsym_compunit->end_symtab (end_addr, section);
|
||
free_buildsym_compunit ();
|
||
return result;
|
||
}
|
||
|
||
struct context_stack *
|
||
push_context (int desc, CORE_ADDR valu)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->push_context (desc, valu);
|
||
}
|
||
|
||
struct context_stack
|
||
pop_context ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->pop_context ();
|
||
}
|
||
|
||
struct block *
|
||
finish_block (struct symbol *symbol, struct pending_block *old_blocks,
|
||
const struct dynamic_prop *static_link,
|
||
CORE_ADDR start, CORE_ADDR end)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit->finish_block (symbol, old_blocks, static_link,
|
||
start, end);
|
||
}
|
||
|
||
void
|
||
record_block_range (struct block *block, CORE_ADDR start,
|
||
CORE_ADDR end_inclusive)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
buildsym_compunit->record_block_range (block, start, end_inclusive);
|
||
}
|
||
|
||
void
|
||
record_line (struct subfile *subfile, int line, CORE_ADDR pc)
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
buildsym_compunit->record_line (subfile, line, pc);
|
||
}
|
||
|
||
/* Start a new symtab for a new source file in OBJFILE. Called, for example,
|
||
when a stabs symbol of type N_SO is seen, or when a DWARF
|
||
TAG_compile_unit DIE is seen. It indicates the start of data for
|
||
one original source file.
|
||
|
||
NAME is the name of the file (cannot be NULL). COMP_DIR is the
|
||
directory in which the file was compiled (or NULL if not known).
|
||
START_ADDR is the lowest address of objects in the file (or 0 if
|
||
not known). LANGUAGE is the language of the source file, or
|
||
language_unknown if not known, in which case it'll be deduced from
|
||
the filename. */
|
||
|
||
struct compunit_symtab *
|
||
start_symtab (struct objfile *objfile, const char *name, const char *comp_dir,
|
||
CORE_ADDR start_addr, enum language language)
|
||
{
|
||
/* These should have been reset either by successful completion of building
|
||
a symtab, or by the scoped_free_pendings destructor. */
|
||
gdb_assert (buildsym_compunit == nullptr);
|
||
|
||
buildsym_compunit = new struct buildsym_compunit (objfile, name, comp_dir,
|
||
language, start_addr);
|
||
|
||
return buildsym_compunit->get_compunit_symtab ();
|
||
}
|
||
|
||
/* Restart compilation for a symtab.
|
||
CUST is the result of end_expandable_symtab.
|
||
NAME, START_ADDR are the source file we are resuming with.
|
||
|
||
This is used when a symtab is built from multiple sources.
|
||
The symtab is first built with start_symtab/end_expandable_symtab
|
||
and then for each additional piece call restart_symtab/augment_*_symtab.
|
||
Note: At the moment there is only augment_type_symtab. */
|
||
|
||
void
|
||
restart_symtab (struct compunit_symtab *cust,
|
||
const char *name, CORE_ADDR start_addr)
|
||
{
|
||
/* These should have been reset either by successful completion of building
|
||
a symtab, or by the scoped_free_pendings destructor. */
|
||
gdb_assert (buildsym_compunit == nullptr);
|
||
|
||
buildsym_compunit
|
||
= new struct buildsym_compunit (COMPUNIT_OBJFILE (cust),
|
||
name,
|
||
COMPUNIT_DIRNAME (cust),
|
||
compunit_language (cust),
|
||
start_addr,
|
||
cust);
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct compunit_symtab *
|
||
buildsym_compunit_symtab (void)
|
||
{
|
||
gdb_assert (buildsym_compunit != NULL);
|
||
|
||
return buildsym_compunit->get_compunit_symtab ();
|
||
}
|
||
|
||
/* See buildsym.h. */
|
||
|
||
struct macro_table *
|
||
get_macro_table (void)
|
||
{
|
||
gdb_assert (buildsym_compunit != NULL);
|
||
return buildsym_compunit->get_macro_table ();
|
||
}
|
||
|
||
/* At end of reading syms, or in case of quit, ensure everything
|
||
associated with building symtabs is freed.
|
||
|
||
N.B. This is *not* intended to be used when building psymtabs. Some debug
|
||
info readers call this anyway, which is harmless if confusing. */
|
||
|
||
scoped_free_pendings::~scoped_free_pendings ()
|
||
{
|
||
free_buildsym_compunit ();
|
||
}
|
||
|
||
/* See buildsym-legacy.h. */
|
||
|
||
struct buildsym_compunit *
|
||
get_buildsym_compunit ()
|
||
{
|
||
gdb_assert (buildsym_compunit != nullptr);
|
||
return buildsym_compunit;
|
||
}
|