diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-02 15:11:32 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-04-02 15:11:32 +0200 |
commit | 0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7 (patch) | |
tree | 9896ef4296405bb3436fcfea027eea959fa12a6f /gdbserver | |
parent | fc5ecdb630406b68ce98c112e1fe618b5839c188 (diff) | |
download | gdb-0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7.zip gdb-0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7.tar.gz gdb-0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7.tar.bz2 |
gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target'
All the linux target ops have been moved into linux_process_target
as methods. The 'linux_target_ops' struct and its instantiations
are now obsolete. Delete them.
gdbserver/ChangeLog:
2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* linux-low.h (struct linux_target_ops): Remove.
(the_low_target): Remove.
* linux-x86-low.cc (the_low_target): Remove.
* linux-aarch64-low.cc (the_low_target): Ditto.
* linux-arm-low.cc (the_low_target): Ditto.
* linux-bfin-low.cc (the_low_target): Ditto.
* linux-cris-low.cc (the_low_target): Ditto.
* linux-crisv32-low.cc (the_low_target): Ditto.
* linux-ia64-low.cc (the_low_target): Ditto.
* linux-m32r-low.cc (the_low_target): Ditto.
* linux-m68k-low.cc (the_low_target): Ditto.
* linux-mips-low.cc (the_low_target): Ditto.
* linux-nios2-low.cc (the_low_target): Ditto.
* linux-ppc-low.cc (the_low_target): Ditto.
* linux-riscv-low.cc (the_low_target): Ditto.
* linux-s390-low.cc (the_low_target): Ditto.
* linux-sh-low.cc (the_low_target): Ditto.
* linux-sparc-low.cc (the_low_target): Ditto.
* linux-tic6x-low.cc (the_low_target): Ditto.
* linux-tile-low.cc (the_low_target): Ditto.
* linux-xtensa-low.cc (the_low_target): Ditto.
Diffstat (limited to 'gdbserver')
-rw-r--r-- | gdbserver/ChangeLog | 24 | ||||
-rw-r--r-- | gdbserver/linux-aarch64-low.cc | 4 | ||||
-rw-r--r-- | gdbserver/linux-arm-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-bfin-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-cris-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-crisv32-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-ia64-low.cc | 4 | ||||
-rw-r--r-- | gdbserver/linux-low.h | 6 | ||||
-rw-r--r-- | gdbserver/linux-m32r-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-m68k-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-mips-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-nios2-low.cc | 4 | ||||
-rw-r--r-- | gdbserver/linux-ppc-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-riscv-low.cc | 5 | ||||
-rw-r--r-- | gdbserver/linux-s390-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-sh-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-sparc-low.cc | 3 | ||||
-rw-r--r-- | gdbserver/linux-tic6x-low.cc | 5 | ||||
-rw-r--r-- | gdbserver/linux-tile-low.cc | 4 | ||||
-rw-r--r-- | gdbserver/linux-x86-low.cc | 7 | ||||
-rw-r--r-- | gdbserver/linux-xtensa-low.cc | 3 |
21 files changed, 24 insertions, 75 deletions
diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog index e51d3e0..7ceebf0 100644 --- a/gdbserver/ChangeLog +++ b/gdbserver/ChangeLog @@ -1,5 +1,29 @@ 2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> + * linux-low.h (struct linux_target_ops): Remove. + (the_low_target): Remove. + * linux-x86-low.cc (the_low_target): Remove. + * linux-aarch64-low.cc (the_low_target): Ditto. + * linux-arm-low.cc (the_low_target): Ditto. + * linux-bfin-low.cc (the_low_target): Ditto. + * linux-cris-low.cc (the_low_target): Ditto. + * linux-crisv32-low.cc (the_low_target): Ditto. + * linux-ia64-low.cc (the_low_target): Ditto. + * linux-m32r-low.cc (the_low_target): Ditto. + * linux-m68k-low.cc (the_low_target): Ditto. + * linux-mips-low.cc (the_low_target): Ditto. + * linux-nios2-low.cc (the_low_target): Ditto. + * linux-ppc-low.cc (the_low_target): Ditto. + * linux-riscv-low.cc (the_low_target): Ditto. + * linux-s390-low.cc (the_low_target): Ditto. + * linux-sh-low.cc (the_low_target): Ditto. + * linux-sparc-low.cc (the_low_target): Ditto. + * linux-tic6x-low.cc (the_low_target): Ditto. + * linux-tile-low.cc (the_low_target): Ditto. + * linux-xtensa-low.cc (the_low_target): Ditto. + +2020-04-02 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> + Remove the 'get_ipa_tdesc_idx' linux target op and let a concrete linux target define the op by overriding the declaration in process_stratum_target. diff --git a/gdbserver/linux-aarch64-low.cc b/gdbserver/linux-aarch64-low.cc index f1eae95..08208ae 100644 --- a/gdbserver/linux-aarch64-low.cc +++ b/gdbserver/linux-aarch64-low.cc @@ -3167,10 +3167,6 @@ aarch64_target::breakpoint_kind_from_current_state (CORE_ADDR *pcptr) return arm_breakpoint_kind_from_current_state (pcptr); } -struct linux_target_ops the_low_target = -{ -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_aarch64_target; diff --git a/gdbserver/linux-arm-low.cc b/gdbserver/linux-arm-low.cc index 4577c83..fb5b761 100644 --- a/gdbserver/linux-arm-low.cc +++ b/gdbserver/linux-arm-low.cc @@ -1128,9 +1128,6 @@ arm_target::get_regs_info () return ®s_info_arm; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_arm_target; diff --git a/gdbserver/linux-bfin-low.cc b/gdbserver/linux-bfin-low.cc index b83af96..963ccfe 100644 --- a/gdbserver/linux-bfin-low.cc +++ b/gdbserver/linux-bfin-low.cc @@ -162,9 +162,6 @@ bfin_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_bfin_target; diff --git a/gdbserver/linux-cris-low.cc b/gdbserver/linux-cris-low.cc index 9f3ad23..5559414 100644 --- a/gdbserver/linux-cris-low.cc +++ b/gdbserver/linux-cris-low.cc @@ -158,9 +158,6 @@ cris_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_cris_target; diff --git a/gdbserver/linux-crisv32-low.cc b/gdbserver/linux-crisv32-low.cc index f662510..577039a 100644 --- a/gdbserver/linux-crisv32-low.cc +++ b/gdbserver/linux-crisv32-low.cc @@ -459,9 +459,6 @@ crisv32_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_crisv32_target; diff --git a/gdbserver/linux-ia64-low.cc b/gdbserver/linux-ia64-low.cc index 64b39be..83a1808 100644 --- a/gdbserver/linux-ia64-low.cc +++ b/gdbserver/linux-ia64-low.cc @@ -385,10 +385,6 @@ ia64_target::low_arch_setup () current_process ()->tdesc = tdesc_ia64; } - -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_ia64_target; diff --git a/gdbserver/linux-low.h b/gdbserver/linux-low.h index 8ad56c3..5fed2ee 100644 --- a/gdbserver/linux-low.h +++ b/gdbserver/linux-low.h @@ -129,12 +129,6 @@ struct process_info_private struct lwp_info; -struct linux_target_ops -{ -}; - -extern struct linux_target_ops the_low_target; - /* Target ops definitions for a Linux target. */ class linux_process_target : public process_stratum_target diff --git a/gdbserver/linux-m32r-low.cc b/gdbserver/linux-m32r-low.cc index 6d33157..3f84b17 100644 --- a/gdbserver/linux-m32r-low.cc +++ b/gdbserver/linux-m32r-low.cc @@ -152,9 +152,6 @@ m32r_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_m32r_target; diff --git a/gdbserver/linux-m68k-low.cc b/gdbserver/linux-m68k-low.cc index a5e39ff..838ba35 100644 --- a/gdbserver/linux-m68k-low.cc +++ b/gdbserver/linux-m68k-low.cc @@ -256,9 +256,6 @@ m68k_target::low_arch_setup () current_process ()->tdesc = tdesc_m68k; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_m68k_target; diff --git a/gdbserver/linux-mips-low.cc b/gdbserver/linux-mips-low.cc index 6c3bc1c..d5be60e 100644 --- a/gdbserver/linux-mips-low.cc +++ b/gdbserver/linux-mips-low.cc @@ -997,9 +997,6 @@ mips_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_mips_target; diff --git a/gdbserver/linux-nios2-low.cc b/gdbserver/linux-nios2-low.cc index d4f83d1..838b0e9 100644 --- a/gdbserver/linux-nios2-low.cc +++ b/gdbserver/linux-nios2-low.cc @@ -277,10 +277,6 @@ nios2_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = -{ -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_nios2_target; diff --git a/gdbserver/linux-ppc-low.cc b/gdbserver/linux-ppc-low.cc index 127de5b..337d555 100644 --- a/gdbserver/linux-ppc-low.cc +++ b/gdbserver/linux-ppc-low.cc @@ -3447,9 +3447,6 @@ ppc_target::get_ipa_tdesc_idx () return 0; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_ppc_target; diff --git a/gdbserver/linux-riscv-low.cc b/gdbserver/linux-riscv-low.cc index 1831f1a..1c6e8c4 100644 --- a/gdbserver/linux-riscv-low.cc +++ b/gdbserver/linux-riscv-low.cc @@ -308,11 +308,6 @@ riscv_target::low_breakpoint_at (CORE_ADDR pc) return false; } -/* RISC-V/Linux target operations. */ -struct linux_target_ops the_low_target = -{ -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_riscv_target; diff --git a/gdbserver/linux-s390-low.cc b/gdbserver/linux-s390-low.cc index 1c94be0..f095181 100644 --- a/gdbserver/linux-s390-low.cc +++ b/gdbserver/linux-s390-low.cc @@ -2856,9 +2856,6 @@ s390_target::emit_ops () return &s390_emit_ops_impl; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_s390_target; diff --git a/gdbserver/linux-sh-low.cc b/gdbserver/linux-sh-low.cc index 3d96164..a6d3fc6 100644 --- a/gdbserver/linux-sh-low.cc +++ b/gdbserver/linux-sh-low.cc @@ -183,9 +183,6 @@ sh_target::low_arch_setup () current_process ()->tdesc = tdesc_sh; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_sh_target; diff --git a/gdbserver/linux-sparc-low.cc b/gdbserver/linux-sparc-low.cc index e77ebe5..ae3f8c9 100644 --- a/gdbserver/linux-sparc-low.cc +++ b/gdbserver/linux-sparc-low.cc @@ -340,9 +340,6 @@ sparc_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_sparc_target; diff --git a/gdbserver/linux-tic6x-low.cc b/gdbserver/linux-tic6x-low.cc index adcc410..09f9748 100644 --- a/gdbserver/linux-tic6x-low.cc +++ b/gdbserver/linux-tic6x-low.cc @@ -200,8 +200,6 @@ static int tic6x_regmap_c62x[] = { #endif -extern struct linux_target_ops the_low_target; - static int *tic6x_regmap; static unsigned int tic6x_breakpoint; #define tic6x_breakpoint_len 4 @@ -414,9 +412,6 @@ tic6x_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - #if GDB_SELF_TEST #include "gdbsupport/selftest.h" diff --git a/gdbserver/linux-tile-low.cc b/gdbserver/linux-tile-low.cc index 39c9694..fa24b08 100644 --- a/gdbserver/linux-tile-low.cc +++ b/gdbserver/linux-tile-low.cc @@ -213,10 +213,6 @@ tile_target::low_arch_setup () current_process ()->tdesc = tdesc_tilegx; } -struct linux_target_ops the_low_target = -{ -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_tile_target; diff --git a/gdbserver/linux-x86-low.cc b/gdbserver/linux-x86-low.cc index 6769091..f6a399e 100644 --- a/gdbserver/linux-x86-low.cc +++ b/gdbserver/linux-x86-low.cc @@ -2992,13 +2992,6 @@ x86_target::get_ipa_tdesc_idx () return i386_get_ipa_tdesc_idx (tdesc); } -/* This is initialized assuming an amd64 target. - x86_arch_setup will correct it for i386 or amd64 targets. */ - -struct linux_target_ops the_low_target = -{ -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_x86_target; diff --git a/gdbserver/linux-xtensa-low.cc b/gdbserver/linux-xtensa-low.cc index 9c41c24..a666f52 100644 --- a/gdbserver/linux-xtensa-low.cc +++ b/gdbserver/linux-xtensa-low.cc @@ -320,9 +320,6 @@ xtensa_target::get_regs_info () return &myregs_info; } -struct linux_target_ops the_low_target = { -}; - /* The linux target ops object. */ linux_process_target *the_linux_target = &the_xtensa_target; |