mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
6c2659886f
I'd like to enable the -Wmissing-declarations warning. However, it
warns for every _initialize function, for example:
CXX dcache.o
/home/smarchi/src/binutils-gdb/gdb/dcache.c: In function ‘void _initialize_dcache()’:
/home/smarchi/src/binutils-gdb/gdb/dcache.c:688:1: error: no previous declaration for ‘void _initialize_dcache()’ [-Werror=missing-declarations]
_initialize_dcache (void)
^~~~~~~~~~~~~~~~~~
The only practical way forward I found is to add back the declarations,
which were removed by this commit:
commit 481695ed5f
Author: John Baldwin <jhb@FreeBSD.org>
Date: Sat Sep 9 11:02:37 2017 -0700
Remove unnecessary function prototypes.
I don't think it's a big problem to have the declarations for these
functions, but if anybody has a better solution for this, I'll be happy
to use it.
gdb/ChangeLog:
* aarch64-fbsd-nat.c (_initialize_aarch64_fbsd_nat): Add declaration.
* aarch64-fbsd-tdep.c (_initialize_aarch64_fbsd_tdep): Add declaration.
* aarch64-linux-nat.c (_initialize_aarch64_linux_nat): Add declaration.
* aarch64-linux-tdep.c (_initialize_aarch64_linux_tdep): Add declaration.
* aarch64-newlib-tdep.c (_initialize_aarch64_newlib_tdep): Add declaration.
* aarch64-tdep.c (_initialize_aarch64_tdep): Add declaration.
* ada-exp.y (_initialize_ada_exp): Add declaration.
* ada-lang.c (_initialize_ada_language): Add declaration.
* ada-tasks.c (_initialize_tasks): Add declaration.
* agent.c (_initialize_agent): Add declaration.
* aix-thread.c (_initialize_aix_thread): Add declaration.
* alpha-bsd-nat.c (_initialize_alphabsd_nat): Add declaration.
* alpha-linux-nat.c (_initialize_alpha_linux_nat): Add declaration.
* alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Add declaration.
* alpha-nbsd-tdep.c (_initialize_alphanbsd_tdep): Add declaration.
* alpha-obsd-tdep.c (_initialize_alphaobsd_tdep): Add declaration.
* alpha-tdep.c (_initialize_alpha_tdep): Add declaration.
* amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): Add declaration.
* amd64-dicos-tdep.c (_initialize_amd64_dicos_tdep): Add declaration.
* amd64-fbsd-nat.c (_initialize_amd64fbsd_nat): Add declaration.
* amd64-fbsd-tdep.c (_initialize_amd64fbsd_tdep): Add declaration.
* amd64-linux-nat.c (_initialize_amd64_linux_nat): Add declaration.
* amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Add declaration.
* amd64-nbsd-nat.c (_initialize_amd64nbsd_nat): Add declaration.
* amd64-nbsd-tdep.c (_initialize_amd64nbsd_tdep): Add declaration.
* amd64-obsd-nat.c (_initialize_amd64obsd_nat): Add declaration.
* amd64-obsd-tdep.c (_initialize_amd64obsd_tdep): Add declaration.
* amd64-sol2-tdep.c (_initialize_amd64_sol2_tdep): Add declaration.
* amd64-tdep.c (_initialize_amd64_tdep): Add declaration.
* amd64-windows-nat.c (_initialize_amd64_windows_nat): Add declaration.
* amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Add declaration.
* annotate.c (_initialize_annotate): Add declaration.
* arc-newlib-tdep.c (_initialize_arc_newlib_tdep): Add declaration.
* arc-tdep.c (_initialize_arc_tdep): Add declaration.
* arch-utils.c (_initialize_gdbarch_utils): Add declaration.
* arm-fbsd-nat.c (_initialize_arm_fbsd_nat): Add declaration.
* arm-fbsd-tdep.c (_initialize_arm_fbsd_tdep): Add declaration.
* arm-linux-nat.c (_initialize_arm_linux_nat): Add declaration.
* arm-linux-tdep.c (_initialize_arm_linux_tdep): Add declaration.
* arm-nbsd-nat.c (_initialize_arm_netbsd_nat): Add declaration.
* arm-nbsd-tdep.c (_initialize_arm_netbsd_tdep): Add declaration.
* arm-obsd-tdep.c (_initialize_armobsd_tdep): Add declaration.
* arm-pikeos-tdep.c (_initialize_arm_pikeos_tdep): Add declaration.
* arm-symbian-tdep.c (_initialize_arm_symbian_tdep): Add declaration.
* arm-tdep.c (_initialize_arm_tdep): Add declaration.
* arm-wince-tdep.c (_initialize_arm_wince_tdep): Add declaration.
* auto-load.c (_initialize_auto_load): Add declaration.
* auxv.c (_initialize_auxv): Add declaration.
* avr-tdep.c (_initialize_avr_tdep): Add declaration.
* ax-gdb.c (_initialize_ax_gdb): Add declaration.
* bfin-linux-tdep.c (_initialize_bfin_linux_tdep): Add declaration.
* bfin-tdep.c (_initialize_bfin_tdep): Add declaration.
* break-catch-sig.c (_initialize_break_catch_sig): Add declaration.
* break-catch-syscall.c (_initialize_break_catch_syscall): Add declaration.
* break-catch-throw.c (_initialize_break_catch_throw): Add declaration.
* breakpoint.c (_initialize_breakpoint): Add declaration.
* bsd-uthread.c (_initialize_bsd_uthread): Add declaration.
* btrace.c (_initialize_btrace): Add declaration.
* charset.c (_initialize_charset): Add declaration.
* cli/cli-cmds.c (_initialize_cli_cmds): Add declaration.
* cli/cli-dump.c (_initialize_cli_dump): Add declaration.
* cli/cli-interp.c (_initialize_cli_interp): Add declaration.
* cli/cli-logging.c (_initialize_cli_logging): Add declaration.
* cli/cli-script.c (_initialize_cli_script): Add declaration.
* cli/cli-style.c (_initialize_cli_style): Add declaration.
* coff-pe-read.c (_initialize_coff_pe_read): Add declaration.
* coffread.c (_initialize_coffread): Add declaration.
* compile/compile-cplus-types.c (_initialize_compile_cplus_types): Add declaration.
* compile/compile.c (_initialize_compile): Add declaration.
* complaints.c (_initialize_complaints): Add declaration.
* completer.c (_initialize_completer): Add declaration.
* copying.c (_initialize_copying): Add declaration.
* corefile.c (_initialize_core): Add declaration.
* corelow.c (_initialize_corelow): Add declaration.
* cp-abi.c (_initialize_cp_abi): Add declaration.
* cp-namespace.c (_initialize_cp_namespace): Add declaration.
* cp-support.c (_initialize_cp_support): Add declaration.
* cp-valprint.c (_initialize_cp_valprint): Add declaration.
* cris-linux-tdep.c (_initialize_cris_linux_tdep): Add declaration.
* cris-tdep.c (_initialize_cris_tdep): Add declaration.
* csky-linux-tdep.c (_initialize_csky_linux_tdep): Add declaration.
* csky-tdep.c (_initialize_csky_tdep): Add declaration.
* ctfread.c (_initialize_ctfread): Add declaration.
* d-lang.c (_initialize_d_language): Add declaration.
* darwin-nat-info.c (_initialize_darwin_info_commands): Add declaration.
* darwin-nat.c (_initialize_darwin_nat): Add declaration.
* dbxread.c (_initialize_dbxread): Add declaration.
* dcache.c (_initialize_dcache): Add declaration.
* disasm-selftests.c (_initialize_disasm_selftests): Add declaration.
* disasm.c (_initialize_disasm): Add declaration.
* dtrace-probe.c (_initialize_dtrace_probe): Add declaration.
* dummy-frame.c (_initialize_dummy_frame): Add declaration.
* dwarf-index-cache.c (_initialize_index_cache): Add declaration.
* dwarf-index-write.c (_initialize_dwarf_index_write): Add declaration.
* dwarf2-frame-tailcall.c (_initialize_tailcall_frame): Add declaration.
* dwarf2-frame.c (_initialize_dwarf2_frame): Add declaration.
* dwarf2expr.c (_initialize_dwarf2expr): Add declaration.
* dwarf2loc.c (_initialize_dwarf2loc): Add declaration.
* dwarf2read.c (_initialize_dwarf2_read): Add declaration.
* elfread.c (_initialize_elfread): Add declaration.
* exec.c (_initialize_exec): Add declaration.
* extension.c (_initialize_extension): Add declaration.
* f-lang.c (_initialize_f_language): Add declaration.
* f-valprint.c (_initialize_f_valprint): Add declaration.
* fbsd-nat.c (_initialize_fbsd_nat): Add declaration.
* fbsd-tdep.c (_initialize_fbsd_tdep): Add declaration.
* filesystem.c (_initialize_filesystem): Add declaration.
* findcmd.c (_initialize_mem_search): Add declaration.
* findvar.c (_initialize_findvar): Add declaration.
* fork-child.c (_initialize_fork_child): Add declaration.
* frame-base.c (_initialize_frame_base): Add declaration.
* frame-unwind.c (_initialize_frame_unwind): Add declaration.
* frame.c (_initialize_frame): Add declaration.
* frv-linux-tdep.c (_initialize_frv_linux_tdep): Add declaration.
* frv-tdep.c (_initialize_frv_tdep): Add declaration.
* ft32-tdep.c (_initialize_ft32_tdep): Add declaration.
* gcore.c (_initialize_gcore): Add declaration.
* gdb-demangle.c (_initialize_gdb_demangle): Add declaration.
* gdb_bfd.c (_initialize_gdb_bfd): Add declaration.
* gdbarch-selftests.c (_initialize_gdbarch_selftests): Add declaration.
* gdbarch.c (_initialize_gdbarch): Add declaration.
* gdbtypes.c (_initialize_gdbtypes): Add declaration.
* gnu-nat.c (_initialize_gnu_nat): Add declaration.
* gnu-v2-abi.c (_initialize_gnu_v2_abi): Add declaration.
* gnu-v3-abi.c (_initialize_gnu_v3_abi): Add declaration.
* go-lang.c (_initialize_go_language): Add declaration.
* go32-nat.c (_initialize_go32_nat): Add declaration.
* guile/guile.c (_initialize_guile): Add declaration.
* h8300-tdep.c (_initialize_h8300_tdep): Add declaration.
* hppa-linux-nat.c (_initialize_hppa_linux_nat): Add declaration.
* hppa-linux-tdep.c (_initialize_hppa_linux_tdep): Add declaration.
* hppa-nbsd-nat.c (_initialize_hppanbsd_nat): Add declaration.
* hppa-nbsd-tdep.c (_initialize_hppanbsd_tdep): Add declaration.
* hppa-obsd-nat.c (_initialize_hppaobsd_nat): Add declaration.
* hppa-obsd-tdep.c (_initialize_hppabsd_tdep): Add declaration.
* hppa-tdep.c (_initialize_hppa_tdep): Add declaration.
* i386-bsd-nat.c (_initialize_i386bsd_nat): Add declaration.
* i386-cygwin-tdep.c (_initialize_i386_cygwin_tdep): Add declaration.
* i386-darwin-nat.c (_initialize_i386_darwin_nat): Add declaration.
* i386-darwin-tdep.c (_initialize_i386_darwin_tdep): Add declaration.
* i386-dicos-tdep.c (_initialize_i386_dicos_tdep): Add declaration.
* i386-fbsd-nat.c (_initialize_i386fbsd_nat): Add declaration.
* i386-fbsd-tdep.c (_initialize_i386fbsd_tdep): Add declaration.
* i386-gnu-nat.c (_initialize_i386gnu_nat): Add declaration.
* i386-gnu-tdep.c (_initialize_i386gnu_tdep): Add declaration.
* i386-go32-tdep.c (_initialize_i386_go32_tdep): Add declaration.
* i386-linux-nat.c (_initialize_i386_linux_nat): Add declaration.
* i386-linux-tdep.c (_initialize_i386_linux_tdep): Add declaration.
* i386-nbsd-nat.c (_initialize_i386nbsd_nat): Add declaration.
* i386-nbsd-tdep.c (_initialize_i386nbsd_tdep): Add declaration.
* i386-nto-tdep.c (_initialize_i386nto_tdep): Add declaration.
* i386-obsd-nat.c (_initialize_i386obsd_nat): Add declaration.
* i386-obsd-tdep.c (_initialize_i386obsd_tdep): Add declaration.
* i386-sol2-nat.c (_initialize_amd64_sol2_nat): Add declaration.
* i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Add declaration.
* i386-tdep.c (_initialize_i386_tdep): Add declaration.
* i386-windows-nat.c (_initialize_i386_windows_nat): Add declaration.
* ia64-libunwind-tdep.c (_initialize_libunwind_frame): Add declaration.
* ia64-linux-nat.c (_initialize_ia64_linux_nat): Add declaration.
* ia64-linux-tdep.c (_initialize_ia64_linux_tdep): Add declaration.
* ia64-tdep.c (_initialize_ia64_tdep): Add declaration.
* ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Add declaration.
* infcall.c (_initialize_infcall): Add declaration.
* infcmd.c (_initialize_infcmd): Add declaration.
* inflow.c (_initialize_inflow): Add declaration.
* infrun.c (_initialize_infrun): Add declaration.
* interps.c (_initialize_interpreter): Add declaration.
* iq2000-tdep.c (_initialize_iq2000_tdep): Add declaration.
* jit.c (_initialize_jit): Add declaration.
* language.c (_initialize_language): Add declaration.
* linux-fork.c (_initialize_linux_fork): Add declaration.
* linux-nat.c (_initialize_linux_nat): Add declaration.
* linux-tdep.c (_initialize_linux_tdep): Add declaration.
* linux-thread-db.c (_initialize_thread_db): Add declaration.
* lm32-tdep.c (_initialize_lm32_tdep): Add declaration.
* m2-lang.c (_initialize_m2_language): Add declaration.
* m32c-tdep.c (_initialize_m32c_tdep): Add declaration.
* m32r-linux-nat.c (_initialize_m32r_linux_nat): Add declaration.
* m32r-linux-tdep.c (_initialize_m32r_linux_tdep): Add declaration.
* m32r-tdep.c (_initialize_m32r_tdep): Add declaration.
* m68hc11-tdep.c (_initialize_m68hc11_tdep): Add declaration.
* m68k-bsd-nat.c (_initialize_m68kbsd_nat): Add declaration.
* m68k-bsd-tdep.c (_initialize_m68kbsd_tdep): Add declaration.
* m68k-linux-nat.c (_initialize_m68k_linux_nat): Add declaration.
* m68k-linux-tdep.c (_initialize_m68k_linux_tdep): Add declaration.
* m68k-tdep.c (_initialize_m68k_tdep): Add declaration.
* machoread.c (_initialize_machoread): Add declaration.
* macrocmd.c (_initialize_macrocmd): Add declaration.
* macroscope.c (_initialize_macroscope): Add declaration.
* maint-test-options.c (_initialize_maint_test_options): Add declaration.
* maint-test-settings.c (_initialize_maint_test_settings): Add declaration.
* maint.c (_initialize_maint_cmds): Add declaration.
* mdebugread.c (_initialize_mdebugread): Add declaration.
* memattr.c (_initialize_mem): Add declaration.
* mep-tdep.c (_initialize_mep_tdep): Add declaration.
* mi/mi-cmd-env.c (_initialize_mi_cmd_env): Add declaration.
* mi/mi-cmds.c (_initialize_mi_cmds): Add declaration.
* mi/mi-interp.c (_initialize_mi_interp): Add declaration.
* mi/mi-main.c (_initialize_mi_main): Add declaration.
* microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): Add declaration.
* microblaze-tdep.c (_initialize_microblaze_tdep): Add declaration.
* mips-fbsd-nat.c (_initialize_mips_fbsd_nat): Add declaration.
* mips-fbsd-tdep.c (_initialize_mips_fbsd_tdep): Add declaration.
* mips-linux-nat.c (_initialize_mips_linux_nat): Add declaration.
* mips-linux-tdep.c (_initialize_mips_linux_tdep): Add declaration.
* mips-nbsd-nat.c (_initialize_mipsnbsd_nat): Add declaration.
* mips-nbsd-tdep.c (_initialize_mipsnbsd_tdep): Add declaration.
* mips-sde-tdep.c (_initialize_mips_sde_tdep): Add declaration.
* mips-tdep.c (_initialize_mips_tdep): Add declaration.
* mips64-obsd-nat.c (_initialize_mips64obsd_nat): Add declaration.
* mips64-obsd-tdep.c (_initialize_mips64obsd_tdep): Add declaration.
* mipsread.c (_initialize_mipsread): Add declaration.
* mn10300-linux-tdep.c (_initialize_mn10300_linux_tdep): Add declaration.
* mn10300-tdep.c (_initialize_mn10300_tdep): Add declaration.
* moxie-tdep.c (_initialize_moxie_tdep): Add declaration.
* msp430-tdep.c (_initialize_msp430_tdep): Add declaration.
* nds32-tdep.c (_initialize_nds32_tdep): Add declaration.
* nios2-linux-tdep.c (_initialize_nios2_linux_tdep): Add declaration.
* nios2-tdep.c (_initialize_nios2_tdep): Add declaration.
* nto-procfs.c (_initialize_procfs): Add declaration.
* objc-lang.c (_initialize_objc_language): Add declaration.
* observable.c (_initialize_observer): Add declaration.
* opencl-lang.c (_initialize_opencl_language): Add declaration.
* or1k-linux-tdep.c (_initialize_or1k_linux_tdep): Add declaration.
* or1k-tdep.c (_initialize_or1k_tdep): Add declaration.
* osabi.c (_initialize_gdb_osabi): Add declaration.
* osdata.c (_initialize_osdata): Add declaration.
* p-valprint.c (_initialize_pascal_valprint): Add declaration.
* parse.c (_initialize_parse): Add declaration.
* ppc-fbsd-nat.c (_initialize_ppcfbsd_nat): Add declaration.
* ppc-fbsd-tdep.c (_initialize_ppcfbsd_tdep): Add declaration.
* ppc-linux-nat.c (_initialize_ppc_linux_nat): Add declaration.
* ppc-linux-tdep.c (_initialize_ppc_linux_tdep): Add declaration.
* ppc-nbsd-nat.c (_initialize_ppcnbsd_nat): Add declaration.
* ppc-nbsd-tdep.c (_initialize_ppcnbsd_tdep): Add declaration.
* ppc-obsd-nat.c (_initialize_ppcobsd_nat): Add declaration.
* ppc-obsd-tdep.c (_initialize_ppcobsd_tdep): Add declaration.
* printcmd.c (_initialize_printcmd): Add declaration.
* probe.c (_initialize_probe): Add declaration.
* proc-api.c (_initialize_proc_api): Add declaration.
* proc-events.c (_initialize_proc_events): Add declaration.
* proc-service.c (_initialize_proc_service): Add declaration.
* procfs.c (_initialize_procfs): Add declaration.
* producer.c (_initialize_producer): Add declaration.
* psymtab.c (_initialize_psymtab): Add declaration.
* python/python.c (_initialize_python): Add declaration.
* ravenscar-thread.c (_initialize_ravenscar): Add declaration.
* record-btrace.c (_initialize_record_btrace): Add declaration.
* record-full.c (_initialize_record_full): Add declaration.
* record.c (_initialize_record): Add declaration.
* regcache-dump.c (_initialize_regcache_dump): Add declaration.
* regcache.c (_initialize_regcache): Add declaration.
* reggroups.c (_initialize_reggroup): Add declaration.
* remote-notif.c (_initialize_notif): Add declaration.
* remote-sim.c (_initialize_remote_sim): Add declaration.
* remote.c (_initialize_remote): Add declaration.
* reverse.c (_initialize_reverse): Add declaration.
* riscv-fbsd-nat.c (_initialize_riscv_fbsd_nat): Add declaration.
* riscv-fbsd-tdep.c (_initialize_riscv_fbsd_tdep): Add declaration.
* riscv-linux-nat.c (_initialize_riscv_linux_nat): Add declaration.
* riscv-linux-tdep.c (_initialize_riscv_linux_tdep): Add declaration.
* riscv-tdep.c (_initialize_riscv_tdep): Add declaration.
* rl78-tdep.c (_initialize_rl78_tdep): Add declaration.
* rs6000-aix-tdep.c (_initialize_rs6000_aix_tdep): Add declaration.
* rs6000-lynx178-tdep.c (_initialize_rs6000_lynx178_tdep):
Add declaration.
* rs6000-nat.c (_initialize_rs6000_nat): Add declaration.
* rs6000-tdep.c (_initialize_rs6000_tdep): Add declaration.
* run-on-main-thread.c (_initialize_run_on_main_thread): Add declaration.
* rust-exp.y (_initialize_rust_exp): Add declaration.
* rx-tdep.c (_initialize_rx_tdep): Add declaration.
* s12z-tdep.c (_initialize_s12z_tdep): Add declaration.
* s390-linux-nat.c (_initialize_s390_nat): Add declaration.
* s390-linux-tdep.c (_initialize_s390_linux_tdep): Add declaration.
* s390-tdep.c (_initialize_s390_tdep): Add declaration.
* score-tdep.c (_initialize_score_tdep): Add declaration.
* ser-go32.c (_initialize_ser_dos): Add declaration.
* ser-mingw.c (_initialize_ser_windows): Add declaration.
* ser-pipe.c (_initialize_ser_pipe): Add declaration.
* ser-tcp.c (_initialize_ser_tcp): Add declaration.
* ser-uds.c (_initialize_ser_socket): Add declaration.
* ser-unix.c (_initialize_ser_hardwire): Add declaration.
* serial.c (_initialize_serial): Add declaration.
* sh-linux-tdep.c (_initialize_sh_linux_tdep): Add declaration.
* sh-nbsd-nat.c (_initialize_shnbsd_nat): Add declaration.
* sh-nbsd-tdep.c (_initialize_shnbsd_tdep): Add declaration.
* sh-tdep.c (_initialize_sh_tdep): Add declaration.
* skip.c (_initialize_step_skip): Add declaration.
* sol-thread.c (_initialize_sol_thread): Add declaration.
* solib-aix.c (_initialize_solib_aix): Add declaration.
* solib-darwin.c (_initialize_darwin_solib): Add declaration.
* solib-dsbt.c (_initialize_dsbt_solib): Add declaration.
* solib-frv.c (_initialize_frv_solib): Add declaration.
* solib-svr4.c (_initialize_svr4_solib): Add declaration.
* solib-target.c (_initialize_solib_target): Add declaration.
* solib.c (_initialize_solib): Add declaration.
* source-cache.c (_initialize_source_cache): Add declaration.
* source.c (_initialize_source): Add declaration.
* sparc-linux-nat.c (_initialize_sparc_linux_nat): Add declaration.
* sparc-linux-tdep.c (_initialize_sparc_linux_tdep): Add declaration.
* sparc-nat.c (_initialize_sparc_nat): Add declaration.
* sparc-nbsd-nat.c (_initialize_sparcnbsd_nat): Add declaration.
* sparc-nbsd-tdep.c (_initialize_sparcnbsd_tdep): Add declaration.
* sparc-obsd-tdep.c (_initialize_sparc32obsd_tdep): Add declaration.
* sparc-sol2-tdep.c (_initialize_sparc_sol2_tdep): Add declaration.
* sparc-tdep.c (_initialize_sparc_tdep): Add declaration.
* sparc64-fbsd-nat.c (_initialize_sparc64fbsd_nat): Add declaration.
* sparc64-fbsd-tdep.c (_initialize_sparc64fbsd_tdep): Add declaration.
* sparc64-linux-nat.c (_initialize_sparc64_linux_nat): Add declaration.
* sparc64-linux-tdep.c (_initialize_sparc64_linux_tdep): Add declaration.
* sparc64-nat.c (_initialize_sparc64_nat): Add declaration.
* sparc64-nbsd-nat.c (_initialize_sparc64nbsd_nat): Add declaration.
* sparc64-nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Add declaration.
* sparc64-obsd-nat.c (_initialize_sparc64obsd_nat): Add declaration.
* sparc64-obsd-tdep.c (_initialize_sparc64obsd_tdep): Add declaration.
* sparc64-sol2-tdep.c (_initialize_sparc64_sol2_tdep): Add declaration.
* sparc64-tdep.c (_initialize_sparc64_adi_tdep): Add declaration.
* stabsread.c (_initialize_stabsread): Add declaration.
* stack.c (_initialize_stack): Add declaration.
* stap-probe.c (_initialize_stap_probe): Add declaration.
* std-regs.c (_initialize_frame_reg): Add declaration.
* symfile-debug.c (_initialize_symfile_debug): Add declaration.
* symfile-mem.c (_initialize_symfile_mem): Add declaration.
* symfile.c (_initialize_symfile): Add declaration.
* symmisc.c (_initialize_symmisc): Add declaration.
* symtab.c (_initialize_symtab): Add declaration.
* target.c (_initialize_target): Add declaration.
* target-connection.c (_initialize_target_connection): Add
declaration.
* target-dcache.c (_initialize_target_dcache): Add declaration.
* target-descriptions.c (_initialize_target_descriptions): Add declaration.
* thread.c (_initialize_thread): Add declaration.
* tic6x-linux-tdep.c (_initialize_tic6x_linux_tdep): Add declaration.
* tic6x-tdep.c (_initialize_tic6x_tdep): Add declaration.
* tilegx-linux-nat.c (_initialize_tile_linux_nat): Add declaration.
* tilegx-linux-tdep.c (_initialize_tilegx_linux_tdep): Add declaration.
* tilegx-tdep.c (_initialize_tilegx_tdep): Add declaration.
* tracectf.c (_initialize_ctf): Add declaration.
* tracefile-tfile.c (_initialize_tracefile_tfile): Add declaration.
* tracefile.c (_initialize_tracefile): Add declaration.
* tracepoint.c (_initialize_tracepoint): Add declaration.
* tui/tui-hooks.c (_initialize_tui_hooks): Add declaration.
* tui/tui-interp.c (_initialize_tui_interp): Add declaration.
* tui/tui-layout.c (_initialize_tui_layout): Add declaration.
* tui/tui-regs.c (_initialize_tui_regs): Add declaration.
* tui/tui-stack.c (_initialize_tui_stack): Add declaration.
* tui/tui-win.c (_initialize_tui_win): Add declaration.
* tui/tui.c (_initialize_tui): Add declaration.
* typeprint.c (_initialize_typeprint): Add declaration.
* ui-style.c (_initialize_ui_style): Add declaration.
* unittests/array-view-selftests.c (_initialize_array_view_selftests): Add declaration.
* unittests/child-path-selftests.c (_initialize_child_path_selftests): Add declaration.
* unittests/cli-utils-selftests.c (_initialize_cli_utils_selftests): Add declaration.
* unittests/common-utils-selftests.c (_initialize_common_utils_selftests): Add declaration.
* unittests/copy_bitwise-selftests.c (_initialize_copy_bitwise_utils_selftests): Add declaration.
* unittests/environ-selftests.c (_initialize_environ_selftests): Add declaration.
* unittests/filtered_iterator-selftests.c
(_initialize_filtered_iterator_selftests): Add declaration.
* unittests/format_pieces-selftests.c (_initialize_format_pieces_selftests): Add declaration.
* unittests/function-view-selftests.c (_initialize_function_view_selftests): Add declaration.
* unittests/help-doc-selftests.c (_initialize_help_doc_selftests): Add declaration.
* unittests/lookup_name_info-selftests.c (_initialize_lookup_name_info_selftests): Add declaration.
* unittests/main-thread-selftests.c
(_initialize_main_thread_selftests): Add declaration.
* unittests/memory-map-selftests.c (_initialize_memory_map_selftests): Add declaration.
* unittests/memrange-selftests.c (_initialize_memrange_selftests): Add declaration.
* unittests/mkdir-recursive-selftests.c (_initialize_mkdir_recursive_selftests): Add declaration.
* unittests/observable-selftests.c (_initialize_observer_selftest): Add declaration.
* unittests/offset-type-selftests.c (_initialize_offset_type_selftests): Add declaration.
* unittests/optional-selftests.c (_initialize_optional_selftests): Add declaration.
* unittests/parse-connection-spec-selftests.c (_initialize_parse_connection_spec_selftests): Add declaration.
* unittests/rsp-low-selftests.c (_initialize_rsp_low_selftests): Add declaration.
* unittests/scoped_fd-selftests.c (_initialize_scoped_fd_selftests): Add declaration.
* unittests/scoped_mmap-selftests.c (_initialize_scoped_mmap_selftests): Add declaration.
* unittests/scoped_restore-selftests.c (_initialize_scoped_restore_selftests): Add declaration.
* unittests/string_view-selftests.c (_initialize_string_view_selftests): Add declaration.
* unittests/style-selftests.c (_initialize_style_selftest): Add declaration.
* unittests/tracepoint-selftests.c (_initialize_tracepoint_selftests): Add declaration.
* unittests/tui-selftests.c (_initialize_tui_selftest): Add
declaration.
* unittests/unpack-selftests.c (_initialize_unpack_selftests): Add declaration.
* unittests/utils-selftests.c (_initialize_utils_selftests): Add declaration.
* unittests/vec-utils-selftests.c (_initialize_vec_utils_selftests): Add declaration.
* unittests/xml-utils-selftests.c (_initialize_xml_utils): Add declaration.
* user-regs.c (_initialize_user_regs): Add declaration.
* utils.c (_initialize_utils): Add declaration.
* v850-tdep.c (_initialize_v850_tdep): Add declaration.
* valops.c (_initialize_valops): Add declaration.
* valprint.c (_initialize_valprint): Add declaration.
* value.c (_initialize_values): Add declaration.
* varobj.c (_initialize_varobj): Add declaration.
* vax-bsd-nat.c (_initialize_vaxbsd_nat): Add declaration.
* vax-nbsd-tdep.c (_initialize_vaxnbsd_tdep): Add declaration.
* vax-tdep.c (_initialize_vax_tdep): Add declaration.
* windows-nat.c (_initialize_windows_nat): Add declaration.
(_initialize_check_for_gdb_ini): Add declaration.
(_initialize_loadable): Add declaration.
* windows-tdep.c (_initialize_windows_tdep): Add declaration.
* x86-bsd-nat.c (_initialize_x86_bsd_nat): Add declaration.
* x86-linux-nat.c (_initialize_x86_linux_nat): Add declaration.
* xcoffread.c (_initialize_xcoffread): Add declaration.
* xml-support.c (_initialize_xml_support): Add declaration.
* xstormy16-tdep.c (_initialize_xstormy16_tdep): Add declaration.
* xtensa-linux-nat.c (_initialize_xtensa_linux_nat): Add declaration.
* xtensa-linux-tdep.c (_initialize_xtensa_linux_tdep): Add declaration.
* xtensa-tdep.c (_initialize_xtensa_tdep): Add declaration.
Change-Id: I13eec7e0ed2b3c427377a7bdb055cf46da64def9
1041 lines
33 KiB
C
1041 lines
33 KiB
C
/* Target-dependent code for the Tilera TILE-Gx processor.
|
|
|
|
Copyright (C) 2012-2020 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 "frame.h"
|
|
#include "frame-base.h"
|
|
#include "frame-unwind.h"
|
|
#include "dwarf2-frame.h"
|
|
#include "trad-frame.h"
|
|
#include "symtab.h"
|
|
#include "gdbtypes.h"
|
|
#include "gdbcmd.h"
|
|
#include "gdbcore.h"
|
|
#include "value.h"
|
|
#include "dis-asm.h"
|
|
#include "inferior.h"
|
|
#include "arch-utils.h"
|
|
#include "regcache.h"
|
|
#include "regset.h"
|
|
#include "osabi.h"
|
|
#include "linux-tdep.h"
|
|
#include "objfiles.h"
|
|
#include "solib-svr4.h"
|
|
#include "tilegx-tdep.h"
|
|
#include "opcode/tilegx.h"
|
|
#include <algorithm>
|
|
#include "gdbsupport/byte-vector.h"
|
|
|
|
struct tilegx_frame_cache
|
|
{
|
|
/* Base address. */
|
|
CORE_ADDR base;
|
|
/* Function start. */
|
|
CORE_ADDR start_pc;
|
|
|
|
/* Table of saved registers. */
|
|
struct trad_frame_saved_reg *saved_regs;
|
|
};
|
|
|
|
/* Register state values used by analyze_prologue. */
|
|
enum reverse_state
|
|
{
|
|
REVERSE_STATE_REGISTER,
|
|
REVERSE_STATE_VALUE,
|
|
REVERSE_STATE_UNKNOWN
|
|
};
|
|
|
|
/* Register state used by analyze_prologue(). */
|
|
struct tilegx_reverse_regs
|
|
{
|
|
LONGEST value;
|
|
enum reverse_state state;
|
|
};
|
|
|
|
static const struct tilegx_reverse_regs
|
|
template_reverse_regs[TILEGX_NUM_PHYS_REGS] =
|
|
{
|
|
{ TILEGX_R0_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R1_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R2_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R3_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R4_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R5_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R6_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R7_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R8_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R9_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R10_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R11_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R12_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R13_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R14_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R15_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R16_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R17_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R18_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R19_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R20_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R21_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R22_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R23_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R24_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R25_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R26_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R27_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R28_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R29_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R30_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R31_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R32_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R33_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R34_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R35_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R36_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R37_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R38_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R39_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R40_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R41_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R42_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R43_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R44_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R45_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R46_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R47_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R48_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R49_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R50_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R51_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_R52_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_TP_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_SP_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ TILEGX_LR_REGNUM, REVERSE_STATE_REGISTER },
|
|
{ 0, REVERSE_STATE_UNKNOWN },
|
|
{ 0, REVERSE_STATE_UNKNOWN },
|
|
{ 0, REVERSE_STATE_UNKNOWN },
|
|
{ 0, REVERSE_STATE_UNKNOWN },
|
|
{ 0, REVERSE_STATE_UNKNOWN },
|
|
{ 0, REVERSE_STATE_UNKNOWN },
|
|
{ 0, REVERSE_STATE_UNKNOWN },
|
|
{ TILEGX_ZERO_REGNUM, REVERSE_STATE_VALUE }
|
|
};
|
|
|
|
/* Implement the "register_name" gdbarch method. */
|
|
|
|
static const char *
|
|
tilegx_register_name (struct gdbarch *gdbarch, int regnum)
|
|
{
|
|
static const char *const register_names[TILEGX_NUM_REGS] =
|
|
{
|
|
"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
|
|
"r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
|
|
"r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
|
|
"r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
|
|
"r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39",
|
|
"r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47",
|
|
"r48", "r49", "r50", "r51", "r52", "tp", "sp", "lr",
|
|
"sn", "idn0", "idn1", "udn0", "udn1", "udn2", "udn3", "zero",
|
|
"pc", "faultnum",
|
|
};
|
|
|
|
if (regnum < 0 || regnum >= TILEGX_NUM_REGS)
|
|
internal_error (__FILE__, __LINE__,
|
|
"tilegx_register_name: invalid register number %d",
|
|
regnum);
|
|
|
|
return register_names[regnum];
|
|
}
|
|
|
|
/* This is the implementation of gdbarch method register_type. */
|
|
|
|
static struct type *
|
|
tilegx_register_type (struct gdbarch *gdbarch, int regnum)
|
|
{
|
|
if (regnum == TILEGX_PC_REGNUM)
|
|
return builtin_type (gdbarch)->builtin_func_ptr;
|
|
else
|
|
return builtin_type (gdbarch)->builtin_uint64;
|
|
}
|
|
|
|
/* This is the implementation of gdbarch method dwarf2_reg_to_regnum. */
|
|
|
|
static int
|
|
tilegx_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int num)
|
|
{
|
|
return num;
|
|
}
|
|
|
|
/* Makes the decision of whether a given type is a scalar type.
|
|
Scalar types are returned in the registers r2-r11 as they fit. */
|
|
|
|
static int
|
|
tilegx_type_is_scalar (struct type *t)
|
|
{
|
|
return (TYPE_CODE(t) != TYPE_CODE_STRUCT
|
|
&& TYPE_CODE(t) != TYPE_CODE_UNION
|
|
&& TYPE_CODE(t) != TYPE_CODE_ARRAY);
|
|
}
|
|
|
|
/* Returns non-zero if the given struct type will be returned using
|
|
a special convention, rather than the normal function return method.
|
|
Used in the context of the "return" command, and target function
|
|
calls from the debugger. */
|
|
|
|
static int
|
|
tilegx_use_struct_convention (struct type *type)
|
|
{
|
|
/* Only scalars which fit in R0 - R9 can be returned in registers.
|
|
Otherwise, they are returned via a pointer passed in R0. */
|
|
return (!tilegx_type_is_scalar (type)
|
|
&& (TYPE_LENGTH (type) > (1 + TILEGX_R9_REGNUM - TILEGX_R0_REGNUM)
|
|
* tilegx_reg_size));
|
|
}
|
|
|
|
/* Find a function's return value in the appropriate registers (in
|
|
REGCACHE), and copy it into VALBUF. */
|
|
|
|
static void
|
|
tilegx_extract_return_value (struct type *type, struct regcache *regcache,
|
|
gdb_byte *valbuf)
|
|
{
|
|
int len = TYPE_LENGTH (type);
|
|
int i, regnum = TILEGX_R0_REGNUM;
|
|
|
|
for (i = 0; i < len; i += tilegx_reg_size)
|
|
regcache->raw_read (regnum++, valbuf + i);
|
|
}
|
|
|
|
/* Copy the function return value from VALBUF into the proper
|
|
location for a function return.
|
|
Called only in the context of the "return" command. */
|
|
|
|
static void
|
|
tilegx_store_return_value (struct type *type, struct regcache *regcache,
|
|
const void *valbuf)
|
|
{
|
|
if (TYPE_LENGTH (type) < tilegx_reg_size)
|
|
{
|
|
/* Add leading zeros to the (little-endian) value. */
|
|
gdb_byte buf[tilegx_reg_size] = { 0 };
|
|
|
|
memcpy (buf, valbuf, TYPE_LENGTH (type));
|
|
regcache->raw_write (TILEGX_R0_REGNUM, buf);
|
|
}
|
|
else
|
|
{
|
|
int len = TYPE_LENGTH (type);
|
|
int i, regnum = TILEGX_R0_REGNUM;
|
|
|
|
for (i = 0; i < len; i += tilegx_reg_size)
|
|
regcache->raw_write (regnum++, (gdb_byte *) valbuf + i);
|
|
}
|
|
}
|
|
|
|
/* This is the implementation of gdbarch method return_value. */
|
|
|
|
static enum return_value_convention
|
|
tilegx_return_value (struct gdbarch *gdbarch, struct value *function,
|
|
struct type *type, struct regcache *regcache,
|
|
gdb_byte *readbuf, const gdb_byte *writebuf)
|
|
{
|
|
if (tilegx_use_struct_convention (type))
|
|
return RETURN_VALUE_STRUCT_CONVENTION;
|
|
if (writebuf)
|
|
tilegx_store_return_value (type, regcache, writebuf);
|
|
else if (readbuf)
|
|
tilegx_extract_return_value (type, regcache, readbuf);
|
|
return RETURN_VALUE_REGISTER_CONVENTION;
|
|
}
|
|
|
|
/* This is the implementation of gdbarch method frame_align. */
|
|
|
|
static CORE_ADDR
|
|
tilegx_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
|
|
{
|
|
return addr & -8;
|
|
}
|
|
|
|
|
|
/* Implement the "push_dummy_call" gdbarch method. */
|
|
|
|
static CORE_ADDR
|
|
tilegx_push_dummy_call (struct gdbarch *gdbarch,
|
|
struct value *function,
|
|
struct regcache *regcache,
|
|
CORE_ADDR bp_addr, int nargs,
|
|
struct value **args,
|
|
CORE_ADDR sp, function_call_return_method return_method,
|
|
CORE_ADDR struct_addr)
|
|
{
|
|
enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
|
|
CORE_ADDR stack_dest = sp;
|
|
int argreg = TILEGX_R0_REGNUM;
|
|
int i, j;
|
|
int typelen, slacklen;
|
|
static const gdb_byte four_zero_words[16] = { 0 };
|
|
|
|
/* If struct_return is 1, then the struct return address will
|
|
consume one argument-passing register. */
|
|
if (return_method == return_method_struct)
|
|
regcache_cooked_write_unsigned (regcache, argreg++, struct_addr);
|
|
|
|
/* Arguments are passed in R0 - R9, and as soon as an argument
|
|
will not fit completely in the remaining registers, then it,
|
|
and all remaining arguments, are put on the stack. */
|
|
for (i = 0; i < nargs && argreg <= TILEGX_R9_REGNUM; i++)
|
|
{
|
|
const gdb_byte *val;
|
|
typelen = TYPE_LENGTH (value_enclosing_type (args[i]));
|
|
|
|
if (typelen > (TILEGX_R9_REGNUM - argreg + 1) * tilegx_reg_size)
|
|
break;
|
|
|
|
/* Put argument into registers wordwise. */
|
|
val = value_contents (args[i]);
|
|
for (j = 0; j < typelen; j += tilegx_reg_size)
|
|
{
|
|
/* ISSUE: Why special handling for "typelen = 4x + 1"?
|
|
I don't ever see "typelen" values except 4 and 8. */
|
|
int n = (typelen - j == 1) ? 1 : tilegx_reg_size;
|
|
ULONGEST w = extract_unsigned_integer (val + j, n, byte_order);
|
|
|
|
regcache_cooked_write_unsigned (regcache, argreg++, w);
|
|
}
|
|
}
|
|
|
|
/* Align SP. */
|
|
stack_dest = tilegx_frame_align (gdbarch, stack_dest);
|
|
|
|
/* Loop backwards through remaining arguments and push them on
|
|
the stack, word aligned. */
|
|
for (j = nargs - 1; j >= i; j--)
|
|
{
|
|
const gdb_byte *contents = value_contents (args[j]);
|
|
|
|
typelen = TYPE_LENGTH (value_enclosing_type (args[j]));
|
|
slacklen = align_up (typelen, 8) - typelen;
|
|
gdb::byte_vector val (typelen + slacklen);
|
|
memcpy (val.data (), contents, typelen);
|
|
memset (val.data () + typelen, 0, slacklen);
|
|
|
|
/* Now write data to the stack. The stack grows downwards. */
|
|
stack_dest -= typelen + slacklen;
|
|
write_memory (stack_dest, val.data (), typelen + slacklen);
|
|
}
|
|
|
|
/* Add 16 bytes for linkage space to the stack. */
|
|
stack_dest = stack_dest - 16;
|
|
write_memory (stack_dest, four_zero_words, 16);
|
|
|
|
/* Update stack pointer. */
|
|
regcache_cooked_write_unsigned (regcache, TILEGX_SP_REGNUM, stack_dest);
|
|
|
|
/* Set the return address register to point to the entry point of
|
|
the program, where a breakpoint lies in wait. */
|
|
regcache_cooked_write_unsigned (regcache, TILEGX_LR_REGNUM, bp_addr);
|
|
|
|
return stack_dest;
|
|
}
|
|
|
|
|
|
/* Decode the instructions within the given address range.
|
|
Decide when we must have reached the end of the function prologue.
|
|
If a frame_info pointer is provided, fill in its saved_regs etc.
|
|
Returns the address of the first instruction after the prologue.
|
|
NOTE: This is often called with start_addr being the start of some
|
|
function, and end_addr being the current PC. */
|
|
|
|
static CORE_ADDR
|
|
tilegx_analyze_prologue (struct gdbarch* gdbarch,
|
|
CORE_ADDR start_addr, CORE_ADDR end_addr,
|
|
struct tilegx_frame_cache *cache,
|
|
struct frame_info *next_frame)
|
|
{
|
|
enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
|
|
CORE_ADDR next_addr;
|
|
CORE_ADDR prolog_end = end_addr;
|
|
gdb_byte instbuf[32 * TILEGX_BUNDLE_SIZE_IN_BYTES];
|
|
CORE_ADDR instbuf_start;
|
|
unsigned int instbuf_size;
|
|
int status;
|
|
bfd_uint64_t bundle;
|
|
struct tilegx_decoded_instruction
|
|
decoded[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE];
|
|
int num_insns;
|
|
struct tilegx_reverse_regs reverse_frame[TILEGX_NUM_PHYS_REGS];
|
|
struct tilegx_reverse_regs
|
|
new_reverse_frame[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE];
|
|
int dest_regs[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE];
|
|
int reverse_frame_valid, prolog_done, branch_seen, lr_saved_on_stack_p;
|
|
LONGEST prev_sp_value;
|
|
int i, j;
|
|
|
|
if (start_addr >= end_addr
|
|
|| (start_addr % TILEGX_BUNDLE_ALIGNMENT_IN_BYTES) != 0)
|
|
return end_addr;
|
|
|
|
/* Initialize the reverse frame. This maps the CURRENT frame's
|
|
registers to the outer frame's registers (the frame on the
|
|
stack goes the other way). */
|
|
memcpy (&reverse_frame, &template_reverse_regs, sizeof (reverse_frame));
|
|
|
|
prolog_done = 0;
|
|
branch_seen = 0;
|
|
prev_sp_value = 0;
|
|
lr_saved_on_stack_p = 0;
|
|
|
|
/* To cut down on round-trip overhead, we fetch multiple bundles
|
|
at once. These variables describe the range of memory we have
|
|
prefetched. */
|
|
instbuf_start = 0;
|
|
instbuf_size = 0;
|
|
|
|
for (next_addr = start_addr;
|
|
next_addr < end_addr;
|
|
next_addr += TILEGX_BUNDLE_SIZE_IN_BYTES)
|
|
{
|
|
/* Retrieve the next instruction. */
|
|
if (next_addr - instbuf_start >= instbuf_size)
|
|
{
|
|
/* Figure out how many bytes to fetch. Don't span a page
|
|
boundary since that might cause an unnecessary memory
|
|
error. */
|
|
unsigned int size_on_same_page = 4096 - (next_addr & 4095);
|
|
|
|
instbuf_size = sizeof instbuf;
|
|
|
|
if (instbuf_size > size_on_same_page)
|
|
instbuf_size = size_on_same_page;
|
|
|
|
instbuf_size = std::min ((CORE_ADDR) instbuf_size,
|
|
(end_addr - next_addr));
|
|
instbuf_start = next_addr;
|
|
|
|
status = safe_frame_unwind_memory (next_frame, instbuf_start,
|
|
instbuf, instbuf_size);
|
|
if (status == 0)
|
|
memory_error (TARGET_XFER_E_IO, next_addr);
|
|
}
|
|
|
|
reverse_frame_valid = 0;
|
|
|
|
bundle = extract_unsigned_integer (&instbuf[next_addr - instbuf_start],
|
|
8, byte_order);
|
|
|
|
num_insns = parse_insn_tilegx (bundle, next_addr, decoded);
|
|
|
|
for (i = 0; i < num_insns; i++)
|
|
{
|
|
struct tilegx_decoded_instruction *this_insn = &decoded[i];
|
|
long long *operands = this_insn->operand_values;
|
|
const struct tilegx_opcode *opcode = this_insn->opcode;
|
|
|
|
switch (opcode->mnemonic)
|
|
{
|
|
case TILEGX_OPC_ST:
|
|
if (cache
|
|
&& reverse_frame[operands[0]].state == REVERSE_STATE_VALUE
|
|
&& reverse_frame[operands[1]].state
|
|
== REVERSE_STATE_REGISTER)
|
|
{
|
|
LONGEST saved_address = reverse_frame[operands[0]].value;
|
|
unsigned saved_register
|
|
= (unsigned) reverse_frame[operands[1]].value;
|
|
|
|
/* realreg >= 0 and addr != -1 indicates that the
|
|
value of saved_register is in memory location
|
|
saved_address. The value of realreg is not
|
|
meaningful in this case but it must be >= 0.
|
|
See trad-frame.h. */
|
|
cache->saved_regs[saved_register].realreg = saved_register;
|
|
cache->saved_regs[saved_register].addr = saved_address;
|
|
}
|
|
else if (cache
|
|
&& (operands[0] == TILEGX_SP_REGNUM)
|
|
&& (operands[1] == TILEGX_LR_REGNUM))
|
|
lr_saved_on_stack_p = 1;
|
|
break;
|
|
case TILEGX_OPC_ADDI:
|
|
case TILEGX_OPC_ADDLI:
|
|
if (cache
|
|
&& operands[0] == TILEGX_SP_REGNUM
|
|
&& operands[1] == TILEGX_SP_REGNUM
|
|
&& reverse_frame[operands[1]].state == REVERSE_STATE_REGISTER)
|
|
{
|
|
/* Special case. We're fixing up the stack frame. */
|
|
uint64_t hopefully_sp
|
|
= (unsigned) reverse_frame[operands[1]].value;
|
|
short op2_as_short = (short) operands[2];
|
|
signed char op2_as_char = (signed char) operands[2];
|
|
|
|
/* Fix up the sign-extension. */
|
|
if (opcode->mnemonic == TILEGX_OPC_ADDI)
|
|
op2_as_short = op2_as_char;
|
|
prev_sp_value = (cache->saved_regs[hopefully_sp].addr
|
|
- op2_as_short);
|
|
|
|
new_reverse_frame[i].state = REVERSE_STATE_VALUE;
|
|
new_reverse_frame[i].value
|
|
= cache->saved_regs[hopefully_sp].addr;
|
|
trad_frame_set_value (cache->saved_regs,
|
|
hopefully_sp, prev_sp_value);
|
|
}
|
|
else
|
|
{
|
|
short op2_as_short = (short) operands[2];
|
|
signed char op2_as_char = (signed char) operands[2];
|
|
|
|
/* Fix up the sign-extension. */
|
|
if (opcode->mnemonic == TILEGX_OPC_ADDI)
|
|
op2_as_short = op2_as_char;
|
|
|
|
new_reverse_frame[i] = reverse_frame[operands[1]];
|
|
if (new_reverse_frame[i].state == REVERSE_STATE_VALUE)
|
|
new_reverse_frame[i].value += op2_as_short;
|
|
else
|
|
new_reverse_frame[i].state = REVERSE_STATE_UNKNOWN;
|
|
}
|
|
reverse_frame_valid |= 1 << i;
|
|
dest_regs[i] = operands[0];
|
|
break;
|
|
case TILEGX_OPC_ADD:
|
|
if (reverse_frame[operands[1]].state == REVERSE_STATE_VALUE
|
|
&& reverse_frame[operands[2]].state == REVERSE_STATE_VALUE)
|
|
{
|
|
/* We have values -- we can do this. */
|
|
new_reverse_frame[i] = reverse_frame[operands[2]];
|
|
new_reverse_frame[i].value
|
|
+= reverse_frame[operands[i]].value;
|
|
}
|
|
else
|
|
{
|
|
/* We don't know anything about the values. Punt. */
|
|
new_reverse_frame[i].state = REVERSE_STATE_UNKNOWN;
|
|
}
|
|
reverse_frame_valid |= 1 << i;
|
|
dest_regs[i] = operands[0];
|
|
break;
|
|
case TILEGX_OPC_MOVE:
|
|
new_reverse_frame[i] = reverse_frame[operands[1]];
|
|
reverse_frame_valid |= 1 << i;
|
|
dest_regs[i] = operands[0];
|
|
break;
|
|
case TILEGX_OPC_MOVEI:
|
|
case TILEGX_OPC_MOVELI:
|
|
new_reverse_frame[i].state = REVERSE_STATE_VALUE;
|
|
new_reverse_frame[i].value = operands[1];
|
|
reverse_frame_valid |= 1 << i;
|
|
dest_regs[i] = operands[0];
|
|
break;
|
|
case TILEGX_OPC_ORI:
|
|
if (reverse_frame[operands[1]].state == REVERSE_STATE_VALUE)
|
|
{
|
|
/* We have a value in A -- we can do this. */
|
|
new_reverse_frame[i] = reverse_frame[operands[1]];
|
|
new_reverse_frame[i].value
|
|
= reverse_frame[operands[1]].value | operands[2];
|
|
}
|
|
else if (operands[2] == 0)
|
|
{
|
|
/* This is a move. */
|
|
new_reverse_frame[i] = reverse_frame[operands[1]];
|
|
}
|
|
else
|
|
{
|
|
/* We don't know anything about the values. Punt. */
|
|
new_reverse_frame[i].state = REVERSE_STATE_UNKNOWN;
|
|
}
|
|
reverse_frame_valid |= 1 << i;
|
|
dest_regs[i] = operands[0];
|
|
break;
|
|
case TILEGX_OPC_OR:
|
|
if (reverse_frame[operands[1]].state == REVERSE_STATE_VALUE
|
|
&& reverse_frame[operands[1]].value == 0)
|
|
{
|
|
/* This is a move. */
|
|
new_reverse_frame[i] = reverse_frame[operands[2]];
|
|
}
|
|
else if (reverse_frame[operands[2]].state == REVERSE_STATE_VALUE
|
|
&& reverse_frame[operands[2]].value == 0)
|
|
{
|
|
/* This is a move. */
|
|
new_reverse_frame[i] = reverse_frame[operands[1]];
|
|
}
|
|
else
|
|
{
|
|
/* We don't know anything about the values. Punt. */
|
|
new_reverse_frame[i].state = REVERSE_STATE_UNKNOWN;
|
|
}
|
|
reverse_frame_valid |= 1 << i;
|
|
dest_regs[i] = operands[0];
|
|
break;
|
|
case TILEGX_OPC_SUB:
|
|
if (reverse_frame[operands[1]].state == REVERSE_STATE_VALUE
|
|
&& reverse_frame[operands[2]].state == REVERSE_STATE_VALUE)
|
|
{
|
|
/* We have values -- we can do this. */
|
|
new_reverse_frame[i] = reverse_frame[operands[1]];
|
|
new_reverse_frame[i].value
|
|
-= reverse_frame[operands[2]].value;
|
|
}
|
|
else
|
|
{
|
|
/* We don't know anything about the values. Punt. */
|
|
new_reverse_frame[i].state = REVERSE_STATE_UNKNOWN;
|
|
}
|
|
reverse_frame_valid |= 1 << i;
|
|
dest_regs[i] = operands[0];
|
|
break;
|
|
|
|
case TILEGX_OPC_FNOP:
|
|
case TILEGX_OPC_INFO:
|
|
case TILEGX_OPC_INFOL:
|
|
/* Nothing to see here, move on.
|
|
Note that real NOP is treated as a 'real' instruction
|
|
because someone must have intended that it be there.
|
|
It therefore terminates the prolog. */
|
|
break;
|
|
|
|
case TILEGX_OPC_J:
|
|
case TILEGX_OPC_JAL:
|
|
|
|
case TILEGX_OPC_BEQZ:
|
|
case TILEGX_OPC_BEQZT:
|
|
case TILEGX_OPC_BGEZ:
|
|
case TILEGX_OPC_BGEZT:
|
|
case TILEGX_OPC_BGTZ:
|
|
case TILEGX_OPC_BGTZT:
|
|
case TILEGX_OPC_BLBC:
|
|
case TILEGX_OPC_BLBCT:
|
|
case TILEGX_OPC_BLBS:
|
|
case TILEGX_OPC_BLBST:
|
|
case TILEGX_OPC_BLEZ:
|
|
case TILEGX_OPC_BLEZT:
|
|
case TILEGX_OPC_BLTZ:
|
|
case TILEGX_OPC_BLTZT:
|
|
case TILEGX_OPC_BNEZ:
|
|
case TILEGX_OPC_BNEZT:
|
|
|
|
case TILEGX_OPC_IRET:
|
|
case TILEGX_OPC_JALR:
|
|
case TILEGX_OPC_JALRP:
|
|
case TILEGX_OPC_JR:
|
|
case TILEGX_OPC_JRP:
|
|
case TILEGX_OPC_SWINT0:
|
|
case TILEGX_OPC_SWINT1:
|
|
case TILEGX_OPC_SWINT2:
|
|
case TILEGX_OPC_SWINT3:
|
|
/* We're really done -- this is a branch. */
|
|
branch_seen = 1;
|
|
prolog_done = 1;
|
|
break;
|
|
default:
|
|
/* We don't know or care what this instruction is.
|
|
All we know is that it isn't part of a prolog, and if
|
|
there's a destination register, we're trashing it. */
|
|
prolog_done = 1;
|
|
for (j = 0; j < opcode->num_operands; j++)
|
|
{
|
|
if (this_insn->operands[j]->is_dest_reg)
|
|
{
|
|
dest_regs[i] = operands[j];
|
|
new_reverse_frame[i].state = REVERSE_STATE_UNKNOWN;
|
|
reverse_frame_valid |= 1 << i;
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Now update the reverse frames. */
|
|
for (i = 0; i < num_insns; i++)
|
|
{
|
|
/* ISSUE: Does this properly handle "network" registers? */
|
|
if ((reverse_frame_valid & (1 << i))
|
|
&& dest_regs[i] != TILEGX_ZERO_REGNUM)
|
|
reverse_frame[dest_regs[i]] = new_reverse_frame[i];
|
|
}
|
|
|
|
if (prev_sp_value != 0)
|
|
{
|
|
/* GCC uses R52 as a frame pointer. Have we seen "move r52, sp"? */
|
|
if (reverse_frame[TILEGX_R52_REGNUM].state == REVERSE_STATE_REGISTER
|
|
&& reverse_frame[TILEGX_R52_REGNUM].value == TILEGX_SP_REGNUM)
|
|
{
|
|
reverse_frame[TILEGX_R52_REGNUM].state = REVERSE_STATE_VALUE;
|
|
reverse_frame[TILEGX_R52_REGNUM].value = prev_sp_value;
|
|
}
|
|
|
|
prev_sp_value = 0;
|
|
}
|
|
|
|
if (prolog_done && prolog_end == end_addr)
|
|
{
|
|
/* We found non-prolog code. As such, _this_ instruction
|
|
is the one after the prolog. We keep processing, because
|
|
there may be more prolog code in there, but this is what
|
|
we'll return. */
|
|
/* ISSUE: There may not have actually been a prologue, and
|
|
we may have simply skipped some random instructions. */
|
|
prolog_end = next_addr;
|
|
}
|
|
if (branch_seen)
|
|
{
|
|
/* We saw a branch. The prolog absolutely must be over. */
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (prolog_end == end_addr && cache)
|
|
{
|
|
/* We may have terminated the prolog early, and we're certainly
|
|
at THIS point right now. It's possible that the values of
|
|
registers we need are currently actually in other registers
|
|
(and haven't been written to memory yet). Go find them. */
|
|
for (i = 0; i < TILEGX_NUM_PHYS_REGS; i++)
|
|
{
|
|
if (reverse_frame[i].state == REVERSE_STATE_REGISTER
|
|
&& reverse_frame[i].value != i)
|
|
{
|
|
unsigned saved_register = (unsigned) reverse_frame[i].value;
|
|
|
|
cache->saved_regs[saved_register].realreg = i;
|
|
cache->saved_regs[saved_register].addr = (LONGEST) -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (lr_saved_on_stack_p)
|
|
{
|
|
cache->saved_regs[TILEGX_LR_REGNUM].realreg = TILEGX_LR_REGNUM;
|
|
cache->saved_regs[TILEGX_LR_REGNUM].addr =
|
|
cache->saved_regs[TILEGX_SP_REGNUM].addr;
|
|
}
|
|
|
|
return prolog_end;
|
|
}
|
|
|
|
/* This is the implementation of gdbarch method skip_prologue. */
|
|
|
|
static CORE_ADDR
|
|
tilegx_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR start_pc)
|
|
{
|
|
CORE_ADDR func_start, end_pc;
|
|
struct obj_section *s;
|
|
|
|
/* This is the preferred method, find the end of the prologue by
|
|
using the debugging information. */
|
|
if (find_pc_partial_function (start_pc, NULL, &func_start, NULL))
|
|
{
|
|
CORE_ADDR post_prologue_pc
|
|
= skip_prologue_using_sal (gdbarch, func_start);
|
|
|
|
if (post_prologue_pc != 0)
|
|
return std::max (start_pc, post_prologue_pc);
|
|
}
|
|
|
|
/* Don't straddle a section boundary. */
|
|
s = find_pc_section (start_pc);
|
|
end_pc = start_pc + 8 * TILEGX_BUNDLE_SIZE_IN_BYTES;
|
|
if (s != NULL)
|
|
end_pc = std::min (end_pc, obj_section_endaddr (s));
|
|
|
|
/* Otherwise, try to skip prologue the hard way. */
|
|
return tilegx_analyze_prologue (gdbarch,
|
|
start_pc,
|
|
end_pc,
|
|
NULL, NULL);
|
|
}
|
|
|
|
/* This is the implementation of gdbarch method stack_frame_destroyed_p. */
|
|
|
|
static int
|
|
tilegx_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
|
|
{
|
|
CORE_ADDR func_addr = 0, func_end = 0;
|
|
|
|
if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
|
|
{
|
|
CORE_ADDR addr = func_end - TILEGX_BUNDLE_SIZE_IN_BYTES;
|
|
|
|
/* FIXME: Find the actual epilogue. */
|
|
/* HACK: Just assume the final bundle is the "ret" instruction". */
|
|
if (pc > addr)
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/* This is the implementation of gdbarch method get_longjmp_target. */
|
|
|
|
static int
|
|
tilegx_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc)
|
|
{
|
|
struct gdbarch *gdbarch = get_frame_arch (frame);
|
|
enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
|
|
CORE_ADDR jb_addr;
|
|
gdb_byte buf[8];
|
|
|
|
jb_addr = get_frame_register_unsigned (frame, TILEGX_R0_REGNUM);
|
|
|
|
/* TileGX jmp_buf contains 32 elements of type __uint_reg_t which
|
|
has a size of 8 bytes. The return address is stored in the 25th
|
|
slot. */
|
|
if (target_read_memory (jb_addr + 25 * 8, buf, 8))
|
|
return 0;
|
|
|
|
*pc = extract_unsigned_integer (buf, 8, byte_order);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/* by assigning the 'faultnum' reg in kernel pt_regs with this value,
|
|
kernel do_signal will not check r0. see tilegx kernel/signal.c
|
|
for details. */
|
|
#define INT_SWINT_1_SIGRETURN (~0)
|
|
|
|
/* Implement the "write_pc" gdbarch method. */
|
|
|
|
static void
|
|
tilegx_write_pc (struct regcache *regcache, CORE_ADDR pc)
|
|
{
|
|
regcache_cooked_write_unsigned (regcache, TILEGX_PC_REGNUM, pc);
|
|
|
|
/* We must be careful with modifying the program counter. If we
|
|
just interrupted a system call, the kernel might try to restart
|
|
it when we resume the inferior. On restarting the system call,
|
|
the kernel will try backing up the program counter even though it
|
|
no longer points at the system call. This typically results in a
|
|
SIGSEGV or SIGILL. We can prevent this by writing INT_SWINT_1_SIGRETURN
|
|
in the "faultnum" pseudo-register.
|
|
|
|
Note that "faultnum" is saved when setting up a dummy call frame.
|
|
This means that it is properly restored when that frame is
|
|
popped, and that the interrupted system call will be restarted
|
|
when we resume the inferior on return from a function call from
|
|
within GDB. In all other cases the system call will not be
|
|
restarted. */
|
|
regcache_cooked_write_unsigned (regcache, TILEGX_FAULTNUM_REGNUM,
|
|
INT_SWINT_1_SIGRETURN);
|
|
}
|
|
|
|
/* 64-bit pattern for a { bpt ; nop } bundle. */
|
|
constexpr gdb_byte tilegx_break_insn[] =
|
|
{ 0x00, 0x50, 0x48, 0x51, 0xae, 0x44, 0x6a, 0x28 };
|
|
|
|
typedef BP_MANIPULATION (tilegx_break_insn) tilegx_breakpoint;
|
|
|
|
/* Normal frames. */
|
|
|
|
static struct tilegx_frame_cache *
|
|
tilegx_frame_cache (struct frame_info *this_frame, void **this_cache)
|
|
{
|
|
struct gdbarch *gdbarch = get_frame_arch (this_frame);
|
|
struct tilegx_frame_cache *cache;
|
|
CORE_ADDR current_pc;
|
|
|
|
if (*this_cache)
|
|
return (struct tilegx_frame_cache *) *this_cache;
|
|
|
|
cache = FRAME_OBSTACK_ZALLOC (struct tilegx_frame_cache);
|
|
*this_cache = cache;
|
|
cache->saved_regs = trad_frame_alloc_saved_regs (this_frame);
|
|
cache->base = 0;
|
|
cache->start_pc = get_frame_func (this_frame);
|
|
current_pc = get_frame_pc (this_frame);
|
|
|
|
cache->base = get_frame_register_unsigned (this_frame, TILEGX_SP_REGNUM);
|
|
trad_frame_set_value (cache->saved_regs, TILEGX_SP_REGNUM, cache->base);
|
|
|
|
if (cache->start_pc)
|
|
tilegx_analyze_prologue (gdbarch, cache->start_pc, current_pc,
|
|
cache, this_frame);
|
|
|
|
cache->saved_regs[TILEGX_PC_REGNUM] = cache->saved_regs[TILEGX_LR_REGNUM];
|
|
|
|
return cache;
|
|
}
|
|
|
|
/* Retrieve the value of REGNUM in FRAME. */
|
|
|
|
static struct value*
|
|
tilegx_frame_prev_register (struct frame_info *this_frame,
|
|
void **this_cache,
|
|
int regnum)
|
|
{
|
|
struct tilegx_frame_cache *info =
|
|
tilegx_frame_cache (this_frame, this_cache);
|
|
|
|
return trad_frame_get_prev_register (this_frame, info->saved_regs,
|
|
regnum);
|
|
}
|
|
|
|
/* Build frame id. */
|
|
|
|
static void
|
|
tilegx_frame_this_id (struct frame_info *this_frame, void **this_cache,
|
|
struct frame_id *this_id)
|
|
{
|
|
struct tilegx_frame_cache *info =
|
|
tilegx_frame_cache (this_frame, this_cache);
|
|
|
|
/* This marks the outermost frame. */
|
|
if (info->base == 0)
|
|
return;
|
|
|
|
(*this_id) = frame_id_build (info->base, info->start_pc);
|
|
}
|
|
|
|
static CORE_ADDR
|
|
tilegx_frame_base_address (struct frame_info *this_frame, void **this_cache)
|
|
{
|
|
struct tilegx_frame_cache *cache =
|
|
tilegx_frame_cache (this_frame, this_cache);
|
|
|
|
return cache->base;
|
|
}
|
|
|
|
static const struct frame_unwind tilegx_frame_unwind = {
|
|
NORMAL_FRAME,
|
|
default_frame_unwind_stop_reason,
|
|
tilegx_frame_this_id,
|
|
tilegx_frame_prev_register,
|
|
NULL, /* const struct frame_data *unwind_data */
|
|
default_frame_sniffer, /* frame_sniffer_ftype *sniffer */
|
|
NULL /* frame_prev_pc_ftype *prev_pc */
|
|
};
|
|
|
|
static const struct frame_base tilegx_frame_base = {
|
|
&tilegx_frame_unwind,
|
|
tilegx_frame_base_address,
|
|
tilegx_frame_base_address,
|
|
tilegx_frame_base_address
|
|
};
|
|
|
|
/* We cannot read/write the "special" registers. */
|
|
|
|
static int
|
|
tilegx_cannot_reference_register (struct gdbarch *gdbarch, int regno)
|
|
{
|
|
if (regno >= 0 && regno < TILEGX_NUM_EASY_REGS)
|
|
return 0;
|
|
else if (regno == TILEGX_PC_REGNUM
|
|
|| regno == TILEGX_FAULTNUM_REGNUM)
|
|
return 0;
|
|
else
|
|
return 1;
|
|
}
|
|
|
|
static struct gdbarch *
|
|
tilegx_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
|
{
|
|
struct gdbarch *gdbarch;
|
|
int arch_size = 64;
|
|
|
|
/* Handle arch_size == 32 or 64. Default to 64. */
|
|
if (info.abfd)
|
|
arch_size = bfd_get_arch_size (info.abfd);
|
|
|
|
/* Try to find a pre-existing architecture. */
|
|
for (arches = gdbarch_list_lookup_by_info (arches, &info);
|
|
arches != NULL;
|
|
arches = gdbarch_list_lookup_by_info (arches->next, &info))
|
|
{
|
|
/* We only have two flavors -- just make sure arch_size matches. */
|
|
if (gdbarch_ptr_bit (arches->gdbarch) == arch_size)
|
|
return (arches->gdbarch);
|
|
}
|
|
|
|
gdbarch = gdbarch_alloc (&info, NULL);
|
|
|
|
/* Basic register fields and methods, datatype sizes and stuff. */
|
|
|
|
/* There are 64 physical registers which can be referenced by
|
|
instructions (although only 56 of them can actually be
|
|
debugged) and 1 magic register (the PC). The other three
|
|
magic registers (ex1, syscall, orig_r0) which are known to
|
|
"ptrace" are ignored by "gdb". Note that we simply pretend
|
|
that there are 65 registers, and no "pseudo registers". */
|
|
set_gdbarch_num_regs (gdbarch, TILEGX_NUM_REGS);
|
|
set_gdbarch_num_pseudo_regs (gdbarch, 0);
|
|
|
|
set_gdbarch_sp_regnum (gdbarch, TILEGX_SP_REGNUM);
|
|
set_gdbarch_pc_regnum (gdbarch, TILEGX_PC_REGNUM);
|
|
|
|
set_gdbarch_register_name (gdbarch, tilegx_register_name);
|
|
set_gdbarch_register_type (gdbarch, tilegx_register_type);
|
|
|
|
set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT);
|
|
set_gdbarch_int_bit (gdbarch, 4 * TARGET_CHAR_BIT);
|
|
set_gdbarch_long_bit (gdbarch, arch_size);
|
|
set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
|
|
|
|
set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT);
|
|
set_gdbarch_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
|
|
set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
|
|
|
|
set_gdbarch_ptr_bit (gdbarch, arch_size);
|
|
set_gdbarch_addr_bit (gdbarch, arch_size);
|
|
|
|
set_gdbarch_cannot_fetch_register (gdbarch,
|
|
tilegx_cannot_reference_register);
|
|
set_gdbarch_cannot_store_register (gdbarch,
|
|
tilegx_cannot_reference_register);
|
|
|
|
/* Stack grows down. */
|
|
set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
|
|
|
|
/* Frame Info. */
|
|
set_gdbarch_frame_align (gdbarch, tilegx_frame_align);
|
|
frame_base_set_default (gdbarch, &tilegx_frame_base);
|
|
|
|
set_gdbarch_skip_prologue (gdbarch, tilegx_skip_prologue);
|
|
|
|
set_gdbarch_stack_frame_destroyed_p (gdbarch, tilegx_stack_frame_destroyed_p);
|
|
|
|
/* Map debug registers into internal register numbers. */
|
|
set_gdbarch_dwarf2_reg_to_regnum (gdbarch, tilegx_dwarf2_reg_to_regnum);
|
|
|
|
/* These values and methods are used when gdb calls a target function. */
|
|
set_gdbarch_push_dummy_call (gdbarch, tilegx_push_dummy_call);
|
|
set_gdbarch_get_longjmp_target (gdbarch, tilegx_get_longjmp_target);
|
|
set_gdbarch_write_pc (gdbarch, tilegx_write_pc);
|
|
set_gdbarch_breakpoint_kind_from_pc (gdbarch,
|
|
tilegx_breakpoint::kind_from_pc);
|
|
set_gdbarch_sw_breakpoint_from_kind (gdbarch,
|
|
tilegx_breakpoint::bp_from_kind);
|
|
set_gdbarch_return_value (gdbarch, tilegx_return_value);
|
|
|
|
gdbarch_init_osabi (info, gdbarch);
|
|
|
|
dwarf2_append_unwinders (gdbarch);
|
|
frame_unwind_append_unwinder (gdbarch, &tilegx_frame_unwind);
|
|
|
|
return gdbarch;
|
|
}
|
|
|
|
void _initialize_tilegx_tdep ();
|
|
void
|
|
_initialize_tilegx_tdep ()
|
|
{
|
|
register_gdbarch_init (bfd_arch_tilegx, tilegx_gdbarch_init);
|
|
}
|