mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +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
1465 lines
42 KiB
Plaintext
1465 lines
42 KiB
Plaintext
/* YACC parser for Ada expressions, for GDB.
|
||
Copyright (C) 1986-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/>. */
|
||
|
||
/* Parse an Ada expression from text in a string,
|
||
and return the result as a struct expression pointer.
|
||
That structure contains arithmetic operations in reverse polish,
|
||
with constants represented by operations that are followed by special data.
|
||
See expression.h for the details of the format.
|
||
What is important here is that it can be built up sequentially
|
||
during the process of parsing; the lower levels of the tree always
|
||
come first in the result.
|
||
|
||
malloc's and realloc's in this file are transformed to
|
||
xmalloc and xrealloc respectively by the same sed command in the
|
||
makefile that remaps any other malloc/realloc inserted by the parser
|
||
generator. Doing this with #defines and trying to control the interaction
|
||
with include files (<malloc.h> and <stdlib.h> for example) just became
|
||
too messy, particularly when such includes can be inserted at random
|
||
times by the parser generator. */
|
||
|
||
%{
|
||
|
||
#include "defs.h"
|
||
#include <ctype.h>
|
||
#include "expression.h"
|
||
#include "value.h"
|
||
#include "parser-defs.h"
|
||
#include "language.h"
|
||
#include "ada-lang.h"
|
||
#include "bfd.h" /* Required by objfiles.h. */
|
||
#include "symfile.h" /* Required by objfiles.h. */
|
||
#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
|
||
#include "frame.h"
|
||
#include "block.h"
|
||
|
||
#define parse_type(ps) builtin_type (ps->gdbarch ())
|
||
|
||
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror,
|
||
etc). */
|
||
#define GDB_YY_REMAP_PREFIX ada_
|
||
#include "yy-remap.h"
|
||
|
||
struct name_info {
|
||
struct symbol *sym;
|
||
struct minimal_symbol *msym;
|
||
const struct block *block;
|
||
struct stoken stoken;
|
||
};
|
||
|
||
/* The state of the parser, used internally when we are parsing the
|
||
expression. */
|
||
|
||
static struct parser_state *pstate = NULL;
|
||
|
||
static struct stoken empty_stoken = { "", 0 };
|
||
|
||
/* If expression is in the context of TYPE'(...), then TYPE, else
|
||
* NULL. */
|
||
static struct type *type_qualifier;
|
||
|
||
int yyparse (void);
|
||
|
||
static int yylex (void);
|
||
|
||
static void yyerror (const char *);
|
||
|
||
static void write_int (struct parser_state *, LONGEST, struct type *);
|
||
|
||
static void write_object_renaming (struct parser_state *,
|
||
const struct block *, const char *, int,
|
||
const char *, int);
|
||
|
||
static struct type* write_var_or_type (struct parser_state *,
|
||
const struct block *, struct stoken);
|
||
|
||
static void write_name_assoc (struct parser_state *, struct stoken);
|
||
|
||
static void write_exp_op_with_string (struct parser_state *, enum exp_opcode,
|
||
struct stoken);
|
||
|
||
static const struct block *block_lookup (const struct block *, const char *);
|
||
|
||
static LONGEST convert_char_literal (struct type *, LONGEST);
|
||
|
||
static void write_ambiguous_var (struct parser_state *,
|
||
const struct block *, char *, int);
|
||
|
||
static struct type *type_int (struct parser_state *);
|
||
|
||
static struct type *type_long (struct parser_state *);
|
||
|
||
static struct type *type_long_long (struct parser_state *);
|
||
|
||
static struct type *type_long_double (struct parser_state *);
|
||
|
||
static struct type *type_char (struct parser_state *);
|
||
|
||
static struct type *type_boolean (struct parser_state *);
|
||
|
||
static struct type *type_system_address (struct parser_state *);
|
||
|
||
%}
|
||
|
||
%union
|
||
{
|
||
LONGEST lval;
|
||
struct {
|
||
LONGEST val;
|
||
struct type *type;
|
||
} typed_val;
|
||
struct {
|
||
gdb_byte val[16];
|
||
struct type *type;
|
||
} typed_val_float;
|
||
struct type *tval;
|
||
struct stoken sval;
|
||
const struct block *bval;
|
||
struct internalvar *ivar;
|
||
}
|
||
|
||
%type <lval> positional_list component_groups component_associations
|
||
%type <lval> aggregate_component_list
|
||
%type <tval> var_or_type
|
||
|
||
%token <typed_val> INT NULL_PTR CHARLIT
|
||
%token <typed_val_float> FLOAT
|
||
%token TRUEKEYWORD FALSEKEYWORD
|
||
%token COLONCOLON
|
||
%token <sval> STRING NAME DOT_ID
|
||
%type <bval> block
|
||
%type <lval> arglist tick_arglist
|
||
|
||
%type <tval> save_qualifier
|
||
|
||
%token DOT_ALL
|
||
|
||
/* Special type cases, put in to allow the parser to distinguish different
|
||
legal basetypes. */
|
||
%token <sval> DOLLAR_VARIABLE
|
||
|
||
%nonassoc ASSIGN
|
||
%left _AND_ OR XOR THEN ELSE
|
||
%left '=' NOTEQUAL '<' '>' LEQ GEQ IN DOTDOT
|
||
%left '@'
|
||
%left '+' '-' '&'
|
||
%left UNARY
|
||
%left '*' '/' MOD REM
|
||
%right STARSTAR ABS NOT
|
||
|
||
/* Artificial token to give NAME => ... and NAME | priority over reducing
|
||
NAME to <primary> and to give <primary>' priority over reducing <primary>
|
||
to <simple_exp>. */
|
||
%nonassoc VAR
|
||
|
||
%nonassoc ARROW '|'
|
||
|
||
%right TICK_ACCESS TICK_ADDRESS TICK_FIRST TICK_LAST TICK_LENGTH
|
||
%right TICK_MAX TICK_MIN TICK_MODULUS
|
||
%right TICK_POS TICK_RANGE TICK_SIZE TICK_TAG TICK_VAL
|
||
/* The following are right-associative only so that reductions at this
|
||
precedence have lower precedence than '.' and '('. The syntax still
|
||
forces a.b.c, e.g., to be LEFT-associated. */
|
||
%right '.' '(' '[' DOT_ID DOT_ALL
|
||
|
||
%token NEW OTHERS
|
||
|
||
|
||
%%
|
||
|
||
start : exp1
|
||
;
|
||
|
||
/* Expressions, including the sequencing operator. */
|
||
exp1 : exp
|
||
| exp1 ';' exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_COMMA); }
|
||
| primary ASSIGN exp /* Extension for convenience */
|
||
{ write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
|
||
;
|
||
|
||
/* Expressions, not including the sequencing operator. */
|
||
primary : primary DOT_ALL
|
||
{ write_exp_elt_opcode (pstate, UNOP_IND); }
|
||
;
|
||
|
||
primary : primary DOT_ID
|
||
{ write_exp_op_with_string (pstate, STRUCTOP_STRUCT,
|
||
$2); }
|
||
;
|
||
|
||
primary : primary '(' arglist ')'
|
||
{
|
||
write_exp_elt_opcode (pstate, OP_FUNCALL);
|
||
write_exp_elt_longcst (pstate, $3);
|
||
write_exp_elt_opcode (pstate, OP_FUNCALL);
|
||
}
|
||
| var_or_type '(' arglist ')'
|
||
{
|
||
if ($1 != NULL)
|
||
{
|
||
if ($3 != 1)
|
||
error (_("Invalid conversion"));
|
||
write_exp_elt_opcode (pstate, UNOP_CAST);
|
||
write_exp_elt_type (pstate, $1);
|
||
write_exp_elt_opcode (pstate, UNOP_CAST);
|
||
}
|
||
else
|
||
{
|
||
write_exp_elt_opcode (pstate, OP_FUNCALL);
|
||
write_exp_elt_longcst (pstate, $3);
|
||
write_exp_elt_opcode (pstate, OP_FUNCALL);
|
||
}
|
||
}
|
||
;
|
||
|
||
primary : var_or_type '\'' save_qualifier { type_qualifier = $1; }
|
||
'(' exp ')'
|
||
{
|
||
if ($1 == NULL)
|
||
error (_("Type required for qualification"));
|
||
write_exp_elt_opcode (pstate, UNOP_QUAL);
|
||
write_exp_elt_type (pstate, $1);
|
||
write_exp_elt_opcode (pstate, UNOP_QUAL);
|
||
type_qualifier = $3;
|
||
}
|
||
;
|
||
|
||
save_qualifier : { $$ = type_qualifier; }
|
||
;
|
||
|
||
primary :
|
||
primary '(' simple_exp DOTDOT simple_exp ')'
|
||
{ write_exp_elt_opcode (pstate, TERNOP_SLICE); }
|
||
| var_or_type '(' simple_exp DOTDOT simple_exp ')'
|
||
{ if ($1 == NULL)
|
||
write_exp_elt_opcode (pstate, TERNOP_SLICE);
|
||
else
|
||
error (_("Cannot slice a type"));
|
||
}
|
||
;
|
||
|
||
primary : '(' exp1 ')' { }
|
||
;
|
||
|
||
/* The following rule causes a conflict with the type conversion
|
||
var_or_type (exp)
|
||
To get around it, we give '(' higher priority and add bridge rules for
|
||
var_or_type (exp, exp, ...)
|
||
var_or_type (exp .. exp)
|
||
We also have the action for var_or_type(exp) generate a function call
|
||
when the first symbol does not denote a type. */
|
||
|
||
primary : var_or_type %prec VAR
|
||
{ if ($1 != NULL)
|
||
{
|
||
write_exp_elt_opcode (pstate, OP_TYPE);
|
||
write_exp_elt_type (pstate, $1);
|
||
write_exp_elt_opcode (pstate, OP_TYPE);
|
||
}
|
||
}
|
||
;
|
||
|
||
primary : DOLLAR_VARIABLE /* Various GDB extensions */
|
||
{ write_dollar_variable (pstate, $1); }
|
||
;
|
||
|
||
primary : aggregate
|
||
;
|
||
|
||
simple_exp : primary
|
||
;
|
||
|
||
simple_exp : '-' simple_exp %prec UNARY
|
||
{ write_exp_elt_opcode (pstate, UNOP_NEG); }
|
||
;
|
||
|
||
simple_exp : '+' simple_exp %prec UNARY
|
||
{ write_exp_elt_opcode (pstate, UNOP_PLUS); }
|
||
;
|
||
|
||
simple_exp : NOT simple_exp %prec UNARY
|
||
{ write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
|
||
;
|
||
|
||
simple_exp : ABS simple_exp %prec UNARY
|
||
{ write_exp_elt_opcode (pstate, UNOP_ABS); }
|
||
;
|
||
|
||
arglist : { $$ = 0; }
|
||
;
|
||
|
||
arglist : exp
|
||
{ $$ = 1; }
|
||
| NAME ARROW exp
|
||
{ $$ = 1; }
|
||
| arglist ',' exp
|
||
{ $$ = $1 + 1; }
|
||
| arglist ',' NAME ARROW exp
|
||
{ $$ = $1 + 1; }
|
||
;
|
||
|
||
primary : '{' var_or_type '}' primary %prec '.'
|
||
/* GDB extension */
|
||
{
|
||
if ($2 == NULL)
|
||
error (_("Type required within braces in coercion"));
|
||
write_exp_elt_opcode (pstate, UNOP_MEMVAL);
|
||
write_exp_elt_type (pstate, $2);
|
||
write_exp_elt_opcode (pstate, UNOP_MEMVAL);
|
||
}
|
||
;
|
||
|
||
/* Binary operators in order of decreasing precedence. */
|
||
|
||
simple_exp : simple_exp STARSTAR simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_EXP); }
|
||
;
|
||
|
||
simple_exp : simple_exp '*' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_MUL); }
|
||
;
|
||
|
||
simple_exp : simple_exp '/' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_DIV); }
|
||
;
|
||
|
||
simple_exp : simple_exp REM simple_exp /* May need to be fixed to give correct Ada REM */
|
||
{ write_exp_elt_opcode (pstate, BINOP_REM); }
|
||
;
|
||
|
||
simple_exp : simple_exp MOD simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_MOD); }
|
||
;
|
||
|
||
simple_exp : simple_exp '@' simple_exp /* GDB extension */
|
||
{ write_exp_elt_opcode (pstate, BINOP_REPEAT); }
|
||
;
|
||
|
||
simple_exp : simple_exp '+' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_ADD); }
|
||
;
|
||
|
||
simple_exp : simple_exp '&' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_CONCAT); }
|
||
;
|
||
|
||
simple_exp : simple_exp '-' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_SUB); }
|
||
;
|
||
|
||
relation : simple_exp
|
||
;
|
||
|
||
relation : simple_exp '=' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_EQUAL); }
|
||
;
|
||
|
||
relation : simple_exp NOTEQUAL simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
|
||
;
|
||
|
||
relation : simple_exp LEQ simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_LEQ); }
|
||
;
|
||
|
||
relation : simple_exp IN simple_exp DOTDOT simple_exp
|
||
{ write_exp_elt_opcode (pstate, TERNOP_IN_RANGE); }
|
||
| simple_exp IN primary TICK_RANGE tick_arglist
|
||
{ write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
|
||
write_exp_elt_longcst (pstate, (LONGEST) $5);
|
||
write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
|
||
}
|
||
| simple_exp IN var_or_type %prec TICK_ACCESS
|
||
{
|
||
if ($3 == NULL)
|
||
error (_("Right operand of 'in' must be type"));
|
||
write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
|
||
write_exp_elt_type (pstate, $3);
|
||
write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
|
||
}
|
||
| simple_exp NOT IN simple_exp DOTDOT simple_exp
|
||
{ write_exp_elt_opcode (pstate, TERNOP_IN_RANGE);
|
||
write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT);
|
||
}
|
||
| simple_exp NOT IN primary TICK_RANGE tick_arglist
|
||
{ write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
|
||
write_exp_elt_longcst (pstate, (LONGEST) $6);
|
||
write_exp_elt_opcode (pstate, BINOP_IN_BOUNDS);
|
||
write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT);
|
||
}
|
||
| simple_exp NOT IN var_or_type %prec TICK_ACCESS
|
||
{
|
||
if ($4 == NULL)
|
||
error (_("Right operand of 'in' must be type"));
|
||
write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
|
||
write_exp_elt_type (pstate, $4);
|
||
write_exp_elt_opcode (pstate, UNOP_IN_RANGE);
|
||
write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT);
|
||
}
|
||
;
|
||
|
||
relation : simple_exp GEQ simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_GEQ); }
|
||
;
|
||
|
||
relation : simple_exp '<' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_LESS); }
|
||
;
|
||
|
||
relation : simple_exp '>' simple_exp
|
||
{ write_exp_elt_opcode (pstate, BINOP_GTR); }
|
||
;
|
||
|
||
exp : relation
|
||
| and_exp
|
||
| and_then_exp
|
||
| or_exp
|
||
| or_else_exp
|
||
| xor_exp
|
||
;
|
||
|
||
and_exp :
|
||
relation _AND_ relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
|
||
| and_exp _AND_ relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
|
||
;
|
||
|
||
and_then_exp :
|
||
relation _AND_ THEN relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
|
||
| and_then_exp _AND_ THEN relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
|
||
;
|
||
|
||
or_exp :
|
||
relation OR relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
|
||
| or_exp OR relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
|
||
;
|
||
|
||
or_else_exp :
|
||
relation OR ELSE relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
|
||
| or_else_exp OR ELSE relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
|
||
;
|
||
|
||
xor_exp : relation XOR relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
|
||
| xor_exp XOR relation
|
||
{ write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
|
||
;
|
||
|
||
/* Primaries can denote types (OP_TYPE). In cases such as
|
||
primary TICK_ADDRESS, where a type would be invalid, it will be
|
||
caught when evaluate_subexp in ada-lang.c tries to evaluate the
|
||
primary, expecting a value. Precedence rules resolve the ambiguity
|
||
in NAME TICK_ACCESS in favor of shifting to form a var_or_type. A
|
||
construct such as aType'access'access will again cause an error when
|
||
aType'access evaluates to a type that evaluate_subexp attempts to
|
||
evaluate. */
|
||
primary : primary TICK_ACCESS
|
||
{ write_exp_elt_opcode (pstate, UNOP_ADDR); }
|
||
| primary TICK_ADDRESS
|
||
{ write_exp_elt_opcode (pstate, UNOP_ADDR);
|
||
write_exp_elt_opcode (pstate, UNOP_CAST);
|
||
write_exp_elt_type (pstate,
|
||
type_system_address (pstate));
|
||
write_exp_elt_opcode (pstate, UNOP_CAST);
|
||
}
|
||
| primary TICK_FIRST tick_arglist
|
||
{ write_int (pstate, $3, type_int (pstate));
|
||
write_exp_elt_opcode (pstate, OP_ATR_FIRST); }
|
||
| primary TICK_LAST tick_arglist
|
||
{ write_int (pstate, $3, type_int (pstate));
|
||
write_exp_elt_opcode (pstate, OP_ATR_LAST); }
|
||
| primary TICK_LENGTH tick_arglist
|
||
{ write_int (pstate, $3, type_int (pstate));
|
||
write_exp_elt_opcode (pstate, OP_ATR_LENGTH); }
|
||
| primary TICK_SIZE
|
||
{ write_exp_elt_opcode (pstate, OP_ATR_SIZE); }
|
||
| primary TICK_TAG
|
||
{ write_exp_elt_opcode (pstate, OP_ATR_TAG); }
|
||
| opt_type_prefix TICK_MIN '(' exp ',' exp ')'
|
||
{ write_exp_elt_opcode (pstate, OP_ATR_MIN); }
|
||
| opt_type_prefix TICK_MAX '(' exp ',' exp ')'
|
||
{ write_exp_elt_opcode (pstate, OP_ATR_MAX); }
|
||
| opt_type_prefix TICK_POS '(' exp ')'
|
||
{ write_exp_elt_opcode (pstate, OP_ATR_POS); }
|
||
| type_prefix TICK_VAL '(' exp ')'
|
||
{ write_exp_elt_opcode (pstate, OP_ATR_VAL); }
|
||
| type_prefix TICK_MODULUS
|
||
{ write_exp_elt_opcode (pstate, OP_ATR_MODULUS); }
|
||
;
|
||
|
||
tick_arglist : %prec '('
|
||
{ $$ = 1; }
|
||
| '(' INT ')'
|
||
{ $$ = $2.val; }
|
||
;
|
||
|
||
type_prefix :
|
||
var_or_type
|
||
{
|
||
if ($1 == NULL)
|
||
error (_("Prefix must be type"));
|
||
write_exp_elt_opcode (pstate, OP_TYPE);
|
||
write_exp_elt_type (pstate, $1);
|
||
write_exp_elt_opcode (pstate, OP_TYPE); }
|
||
;
|
||
|
||
opt_type_prefix :
|
||
type_prefix
|
||
| /* EMPTY */
|
||
{ write_exp_elt_opcode (pstate, OP_TYPE);
|
||
write_exp_elt_type (pstate,
|
||
parse_type (pstate)->builtin_void);
|
||
write_exp_elt_opcode (pstate, OP_TYPE); }
|
||
;
|
||
|
||
|
||
primary : INT
|
||
{ write_int (pstate, (LONGEST) $1.val, $1.type); }
|
||
;
|
||
|
||
primary : CHARLIT
|
||
{ write_int (pstate,
|
||
convert_char_literal (type_qualifier, $1.val),
|
||
(type_qualifier == NULL)
|
||
? $1.type : type_qualifier);
|
||
}
|
||
;
|
||
|
||
primary : FLOAT
|
||
{ write_exp_elt_opcode (pstate, OP_FLOAT);
|
||
write_exp_elt_type (pstate, $1.type);
|
||
write_exp_elt_floatcst (pstate, $1.val);
|
||
write_exp_elt_opcode (pstate, OP_FLOAT);
|
||
}
|
||
;
|
||
|
||
primary : NULL_PTR
|
||
{ write_int (pstate, 0, type_int (pstate)); }
|
||
;
|
||
|
||
primary : STRING
|
||
{
|
||
write_exp_op_with_string (pstate, OP_STRING, $1);
|
||
}
|
||
;
|
||
|
||
primary : TRUEKEYWORD
|
||
{ write_int (pstate, 1, type_boolean (pstate)); }
|
||
| FALSEKEYWORD
|
||
{ write_int (pstate, 0, type_boolean (pstate)); }
|
||
;
|
||
|
||
primary : NEW NAME
|
||
{ error (_("NEW not implemented.")); }
|
||
;
|
||
|
||
var_or_type: NAME %prec VAR
|
||
{ $$ = write_var_or_type (pstate, NULL, $1); }
|
||
| block NAME %prec VAR
|
||
{ $$ = write_var_or_type (pstate, $1, $2); }
|
||
| NAME TICK_ACCESS
|
||
{
|
||
$$ = write_var_or_type (pstate, NULL, $1);
|
||
if ($$ == NULL)
|
||
write_exp_elt_opcode (pstate, UNOP_ADDR);
|
||
else
|
||
$$ = lookup_pointer_type ($$);
|
||
}
|
||
| block NAME TICK_ACCESS
|
||
{
|
||
$$ = write_var_or_type (pstate, $1, $2);
|
||
if ($$ == NULL)
|
||
write_exp_elt_opcode (pstate, UNOP_ADDR);
|
||
else
|
||
$$ = lookup_pointer_type ($$);
|
||
}
|
||
;
|
||
|
||
/* GDB extension */
|
||
block : NAME COLONCOLON
|
||
{ $$ = block_lookup (NULL, $1.ptr); }
|
||
| block NAME COLONCOLON
|
||
{ $$ = block_lookup ($1, $2.ptr); }
|
||
;
|
||
|
||
aggregate :
|
||
'(' aggregate_component_list ')'
|
||
{
|
||
write_exp_elt_opcode (pstate, OP_AGGREGATE);
|
||
write_exp_elt_longcst (pstate, $2);
|
||
write_exp_elt_opcode (pstate, OP_AGGREGATE);
|
||
}
|
||
;
|
||
|
||
aggregate_component_list :
|
||
component_groups { $$ = $1; }
|
||
| positional_list exp
|
||
{ write_exp_elt_opcode (pstate, OP_POSITIONAL);
|
||
write_exp_elt_longcst (pstate, $1);
|
||
write_exp_elt_opcode (pstate, OP_POSITIONAL);
|
||
$$ = $1 + 1;
|
||
}
|
||
| positional_list component_groups
|
||
{ $$ = $1 + $2; }
|
||
;
|
||
|
||
positional_list :
|
||
exp ','
|
||
{ write_exp_elt_opcode (pstate, OP_POSITIONAL);
|
||
write_exp_elt_longcst (pstate, 0);
|
||
write_exp_elt_opcode (pstate, OP_POSITIONAL);
|
||
$$ = 1;
|
||
}
|
||
| positional_list exp ','
|
||
{ write_exp_elt_opcode (pstate, OP_POSITIONAL);
|
||
write_exp_elt_longcst (pstate, $1);
|
||
write_exp_elt_opcode (pstate, OP_POSITIONAL);
|
||
$$ = $1 + 1;
|
||
}
|
||
;
|
||
|
||
component_groups:
|
||
others { $$ = 1; }
|
||
| component_group { $$ = 1; }
|
||
| component_group ',' component_groups
|
||
{ $$ = $3 + 1; }
|
||
;
|
||
|
||
others : OTHERS ARROW exp
|
||
{ write_exp_elt_opcode (pstate, OP_OTHERS); }
|
||
;
|
||
|
||
component_group :
|
||
component_associations
|
||
{
|
||
write_exp_elt_opcode (pstate, OP_CHOICES);
|
||
write_exp_elt_longcst (pstate, $1);
|
||
write_exp_elt_opcode (pstate, OP_CHOICES);
|
||
}
|
||
;
|
||
|
||
/* We use this somewhat obscure definition in order to handle NAME => and
|
||
NAME | differently from exp => and exp |. ARROW and '|' have a precedence
|
||
above that of the reduction of NAME to var_or_type. By delaying
|
||
decisions until after the => or '|', we convert the ambiguity to a
|
||
resolved shift/reduce conflict. */
|
||
component_associations :
|
||
NAME ARROW
|
||
{ write_name_assoc (pstate, $1); }
|
||
exp { $$ = 1; }
|
||
| simple_exp ARROW exp
|
||
{ $$ = 1; }
|
||
| simple_exp DOTDOT simple_exp ARROW
|
||
{ write_exp_elt_opcode (pstate, OP_DISCRETE_RANGE);
|
||
write_exp_op_with_string (pstate, OP_NAME,
|
||
empty_stoken);
|
||
}
|
||
exp { $$ = 1; }
|
||
| NAME '|'
|
||
{ write_name_assoc (pstate, $1); }
|
||
component_associations { $$ = $4 + 1; }
|
||
| simple_exp '|'
|
||
component_associations { $$ = $3 + 1; }
|
||
| simple_exp DOTDOT simple_exp '|'
|
||
{ write_exp_elt_opcode (pstate, OP_DISCRETE_RANGE); }
|
||
component_associations { $$ = $6 + 1; }
|
||
;
|
||
|
||
/* Some extensions borrowed from C, for the benefit of those who find they
|
||
can't get used to Ada notation in GDB. */
|
||
|
||
primary : '*' primary %prec '.'
|
||
{ write_exp_elt_opcode (pstate, UNOP_IND); }
|
||
| '&' primary %prec '.'
|
||
{ write_exp_elt_opcode (pstate, UNOP_ADDR); }
|
||
| primary '[' exp ']'
|
||
{ write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT); }
|
||
;
|
||
|
||
%%
|
||
|
||
/* yylex defined in ada-lex.c: Reads one token, getting characters */
|
||
/* through lexptr. */
|
||
|
||
/* Remap normal flex interface names (yylex) as well as gratuitiously */
|
||
/* global symbol names, so we can have multiple flex-generated parsers */
|
||
/* in gdb. */
|
||
|
||
/* (See note above on previous definitions for YACC.) */
|
||
|
||
#define yy_create_buffer ada_yy_create_buffer
|
||
#define yy_delete_buffer ada_yy_delete_buffer
|
||
#define yy_init_buffer ada_yy_init_buffer
|
||
#define yy_load_buffer_state ada_yy_load_buffer_state
|
||
#define yy_switch_to_buffer ada_yy_switch_to_buffer
|
||
#define yyrestart ada_yyrestart
|
||
#define yytext ada_yytext
|
||
|
||
static struct obstack temp_parse_space;
|
||
|
||
/* The following kludge was found necessary to prevent conflicts between */
|
||
/* defs.h and non-standard stdlib.h files. */
|
||
#define qsort __qsort__dummy
|
||
#include "ada-lex.c"
|
||
|
||
int
|
||
ada_parse (struct parser_state *par_state)
|
||
{
|
||
/* Setting up the parser state. */
|
||
scoped_restore pstate_restore = make_scoped_restore (&pstate);
|
||
gdb_assert (par_state != NULL);
|
||
pstate = par_state;
|
||
|
||
lexer_init (yyin); /* (Re-)initialize lexer. */
|
||
type_qualifier = NULL;
|
||
obstack_free (&temp_parse_space, NULL);
|
||
obstack_init (&temp_parse_space);
|
||
|
||
return yyparse ();
|
||
}
|
||
|
||
static void
|
||
yyerror (const char *msg)
|
||
{
|
||
error (_("Error in expression, near `%s'."), pstate->lexptr);
|
||
}
|
||
|
||
/* Emit expression to access an instance of SYM, in block BLOCK (if
|
||
non-NULL). */
|
||
|
||
static void
|
||
write_var_from_sym (struct parser_state *par_state,
|
||
const struct block *block,
|
||
struct symbol *sym)
|
||
{
|
||
if (symbol_read_needs_frame (sym))
|
||
par_state->block_tracker->update (block, INNERMOST_BLOCK_FOR_SYMBOLS);
|
||
|
||
write_exp_elt_opcode (par_state, OP_VAR_VALUE);
|
||
write_exp_elt_block (par_state, block);
|
||
write_exp_elt_sym (par_state, sym);
|
||
write_exp_elt_opcode (par_state, OP_VAR_VALUE);
|
||
}
|
||
|
||
/* Write integer or boolean constant ARG of type TYPE. */
|
||
|
||
static void
|
||
write_int (struct parser_state *par_state, LONGEST arg, struct type *type)
|
||
{
|
||
write_exp_elt_opcode (par_state, OP_LONG);
|
||
write_exp_elt_type (par_state, type);
|
||
write_exp_elt_longcst (par_state, arg);
|
||
write_exp_elt_opcode (par_state, OP_LONG);
|
||
}
|
||
|
||
/* Write an OPCODE, string, OPCODE sequence to the current expression. */
|
||
static void
|
||
write_exp_op_with_string (struct parser_state *par_state,
|
||
enum exp_opcode opcode, struct stoken token)
|
||
{
|
||
write_exp_elt_opcode (par_state, opcode);
|
||
write_exp_string (par_state, token);
|
||
write_exp_elt_opcode (par_state, opcode);
|
||
}
|
||
|
||
/* Emit expression corresponding to the renamed object named
|
||
* designated by RENAMED_ENTITY[0 .. RENAMED_ENTITY_LEN-1] in the
|
||
* context of ORIG_LEFT_CONTEXT, to which is applied the operations
|
||
* encoded by RENAMING_EXPR. MAX_DEPTH is the maximum number of
|
||
* cascaded renamings to allow. If ORIG_LEFT_CONTEXT is null, it
|
||
* defaults to the currently selected block. ORIG_SYMBOL is the
|
||
* symbol that originally encoded the renaming. It is needed only
|
||
* because its prefix also qualifies any index variables used to index
|
||
* or slice an array. It should not be necessary once we go to the
|
||
* new encoding entirely (FIXME pnh 7/20/2007). */
|
||
|
||
static void
|
||
write_object_renaming (struct parser_state *par_state,
|
||
const struct block *orig_left_context,
|
||
const char *renamed_entity, int renamed_entity_len,
|
||
const char *renaming_expr, int max_depth)
|
||
{
|
||
char *name;
|
||
enum { SIMPLE_INDEX, LOWER_BOUND, UPPER_BOUND } slice_state;
|
||
struct block_symbol sym_info;
|
||
|
||
if (max_depth <= 0)
|
||
error (_("Could not find renamed symbol"));
|
||
|
||
if (orig_left_context == NULL)
|
||
orig_left_context = get_selected_block (NULL);
|
||
|
||
name = obstack_strndup (&temp_parse_space, renamed_entity,
|
||
renamed_entity_len);
|
||
ada_lookup_encoded_symbol (name, orig_left_context, VAR_DOMAIN, &sym_info);
|
||
if (sym_info.symbol == NULL)
|
||
error (_("Could not find renamed variable: %s"), ada_decode (name).c_str ());
|
||
else if (SYMBOL_CLASS (sym_info.symbol) == LOC_TYPEDEF)
|
||
/* We have a renaming of an old-style renaming symbol. Don't
|
||
trust the block information. */
|
||
sym_info.block = orig_left_context;
|
||
|
||
{
|
||
const char *inner_renamed_entity;
|
||
int inner_renamed_entity_len;
|
||
const char *inner_renaming_expr;
|
||
|
||
switch (ada_parse_renaming (sym_info.symbol, &inner_renamed_entity,
|
||
&inner_renamed_entity_len,
|
||
&inner_renaming_expr))
|
||
{
|
||
case ADA_NOT_RENAMING:
|
||
write_var_from_sym (par_state, sym_info.block, sym_info.symbol);
|
||
break;
|
||
case ADA_OBJECT_RENAMING:
|
||
write_object_renaming (par_state, sym_info.block,
|
||
inner_renamed_entity, inner_renamed_entity_len,
|
||
inner_renaming_expr, max_depth - 1);
|
||
break;
|
||
default:
|
||
goto BadEncoding;
|
||
}
|
||
}
|
||
|
||
slice_state = SIMPLE_INDEX;
|
||
while (*renaming_expr == 'X')
|
||
{
|
||
renaming_expr += 1;
|
||
|
||
switch (*renaming_expr) {
|
||
case 'A':
|
||
renaming_expr += 1;
|
||
write_exp_elt_opcode (par_state, UNOP_IND);
|
||
break;
|
||
case 'L':
|
||
slice_state = LOWER_BOUND;
|
||
/* FALLTHROUGH */
|
||
case 'S':
|
||
renaming_expr += 1;
|
||
if (isdigit (*renaming_expr))
|
||
{
|
||
char *next;
|
||
long val = strtol (renaming_expr, &next, 10);
|
||
if (next == renaming_expr)
|
||
goto BadEncoding;
|
||
renaming_expr = next;
|
||
write_exp_elt_opcode (par_state, OP_LONG);
|
||
write_exp_elt_type (par_state, type_int (par_state));
|
||
write_exp_elt_longcst (par_state, (LONGEST) val);
|
||
write_exp_elt_opcode (par_state, OP_LONG);
|
||
}
|
||
else
|
||
{
|
||
const char *end;
|
||
char *index_name;
|
||
struct block_symbol index_sym_info;
|
||
|
||
end = strchr (renaming_expr, 'X');
|
||
if (end == NULL)
|
||
end = renaming_expr + strlen (renaming_expr);
|
||
|
||
index_name = obstack_strndup (&temp_parse_space, renaming_expr,
|
||
end - renaming_expr);
|
||
renaming_expr = end;
|
||
|
||
ada_lookup_encoded_symbol (index_name, orig_left_context,
|
||
VAR_DOMAIN, &index_sym_info);
|
||
if (index_sym_info.symbol == NULL)
|
||
error (_("Could not find %s"), index_name);
|
||
else if (SYMBOL_CLASS (index_sym_info.symbol) == LOC_TYPEDEF)
|
||
/* Index is an old-style renaming symbol. */
|
||
index_sym_info.block = orig_left_context;
|
||
write_var_from_sym (par_state, index_sym_info.block,
|
||
index_sym_info.symbol);
|
||
}
|
||
if (slice_state == SIMPLE_INDEX)
|
||
{
|
||
write_exp_elt_opcode (par_state, OP_FUNCALL);
|
||
write_exp_elt_longcst (par_state, (LONGEST) 1);
|
||
write_exp_elt_opcode (par_state, OP_FUNCALL);
|
||
}
|
||
else if (slice_state == LOWER_BOUND)
|
||
slice_state = UPPER_BOUND;
|
||
else if (slice_state == UPPER_BOUND)
|
||
{
|
||
write_exp_elt_opcode (par_state, TERNOP_SLICE);
|
||
slice_state = SIMPLE_INDEX;
|
||
}
|
||
break;
|
||
|
||
case 'R':
|
||
{
|
||
struct stoken field_name;
|
||
const char *end;
|
||
char *buf;
|
||
|
||
renaming_expr += 1;
|
||
|
||
if (slice_state != SIMPLE_INDEX)
|
||
goto BadEncoding;
|
||
end = strchr (renaming_expr, 'X');
|
||
if (end == NULL)
|
||
end = renaming_expr + strlen (renaming_expr);
|
||
field_name.length = end - renaming_expr;
|
||
buf = (char *) malloc (end - renaming_expr + 1);
|
||
field_name.ptr = buf;
|
||
strncpy (buf, renaming_expr, end - renaming_expr);
|
||
buf[end - renaming_expr] = '\000';
|
||
renaming_expr = end;
|
||
write_exp_op_with_string (par_state, STRUCTOP_STRUCT, field_name);
|
||
break;
|
||
}
|
||
|
||
default:
|
||
goto BadEncoding;
|
||
}
|
||
}
|
||
if (slice_state == SIMPLE_INDEX)
|
||
return;
|
||
|
||
BadEncoding:
|
||
error (_("Internal error in encoding of renaming declaration"));
|
||
}
|
||
|
||
static const struct block*
|
||
block_lookup (const struct block *context, const char *raw_name)
|
||
{
|
||
const char *name;
|
||
std::vector<struct block_symbol> syms;
|
||
int nsyms;
|
||
struct symtab *symtab;
|
||
const struct block *result = NULL;
|
||
|
||
if (raw_name[0] == '\'')
|
||
{
|
||
raw_name += 1;
|
||
name = raw_name;
|
||
}
|
||
else
|
||
name = ada_encode (raw_name);
|
||
|
||
nsyms = ada_lookup_symbol_list (name, context, VAR_DOMAIN, &syms);
|
||
|
||
if (context == NULL
|
||
&& (nsyms == 0 || SYMBOL_CLASS (syms[0].symbol) != LOC_BLOCK))
|
||
symtab = lookup_symtab (name);
|
||
else
|
||
symtab = NULL;
|
||
|
||
if (symtab != NULL)
|
||
result = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), STATIC_BLOCK);
|
||
else if (nsyms == 0 || SYMBOL_CLASS (syms[0].symbol) != LOC_BLOCK)
|
||
{
|
||
if (context == NULL)
|
||
error (_("No file or function \"%s\"."), raw_name);
|
||
else
|
||
error (_("No function \"%s\" in specified context."), raw_name);
|
||
}
|
||
else
|
||
{
|
||
if (nsyms > 1)
|
||
warning (_("Function name \"%s\" ambiguous here"), raw_name);
|
||
result = SYMBOL_BLOCK_VALUE (syms[0].symbol);
|
||
}
|
||
|
||
return result;
|
||
}
|
||
|
||
static struct symbol*
|
||
select_possible_type_sym (const std::vector<struct block_symbol> &syms)
|
||
{
|
||
int i;
|
||
int preferred_index;
|
||
struct type *preferred_type;
|
||
|
||
preferred_index = -1; preferred_type = NULL;
|
||
for (i = 0; i < syms.size (); i += 1)
|
||
switch (SYMBOL_CLASS (syms[i].symbol))
|
||
{
|
||
case LOC_TYPEDEF:
|
||
if (ada_prefer_type (SYMBOL_TYPE (syms[i].symbol), preferred_type))
|
||
{
|
||
preferred_index = i;
|
||
preferred_type = SYMBOL_TYPE (syms[i].symbol);
|
||
}
|
||
break;
|
||
case LOC_REGISTER:
|
||
case LOC_ARG:
|
||
case LOC_REF_ARG:
|
||
case LOC_REGPARM_ADDR:
|
||
case LOC_LOCAL:
|
||
case LOC_COMPUTED:
|
||
return NULL;
|
||
default:
|
||
break;
|
||
}
|
||
if (preferred_type == NULL)
|
||
return NULL;
|
||
return syms[preferred_index].symbol;
|
||
}
|
||
|
||
static struct type*
|
||
find_primitive_type (struct parser_state *par_state, char *name)
|
||
{
|
||
struct type *type;
|
||
type = language_lookup_primitive_type (par_state->language (),
|
||
par_state->gdbarch (),
|
||
name);
|
||
if (type == NULL && strcmp ("system__address", name) == 0)
|
||
type = type_system_address (par_state);
|
||
|
||
if (type != NULL)
|
||
{
|
||
/* Check to see if we have a regular definition of this
|
||
type that just didn't happen to have been read yet. */
|
||
struct symbol *sym;
|
||
char *expanded_name =
|
||
(char *) alloca (strlen (name) + sizeof ("standard__"));
|
||
strcpy (expanded_name, "standard__");
|
||
strcat (expanded_name, name);
|
||
sym = ada_lookup_symbol (expanded_name, NULL, VAR_DOMAIN).symbol;
|
||
if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
|
||
type = SYMBOL_TYPE (sym);
|
||
}
|
||
|
||
return type;
|
||
}
|
||
|
||
static int
|
||
chop_selector (char *name, int end)
|
||
{
|
||
int i;
|
||
for (i = end - 1; i > 0; i -= 1)
|
||
if (name[i] == '.' || (name[i] == '_' && name[i+1] == '_'))
|
||
return i;
|
||
return -1;
|
||
}
|
||
|
||
/* If NAME is a string beginning with a separator (either '__', or
|
||
'.'), chop this separator and return the result; else, return
|
||
NAME. */
|
||
|
||
static char *
|
||
chop_separator (char *name)
|
||
{
|
||
if (*name == '.')
|
||
return name + 1;
|
||
|
||
if (name[0] == '_' && name[1] == '_')
|
||
return name + 2;
|
||
|
||
return name;
|
||
}
|
||
|
||
/* Given that SELS is a string of the form (<sep><identifier>)*, where
|
||
<sep> is '__' or '.', write the indicated sequence of
|
||
STRUCTOP_STRUCT expression operators. */
|
||
static void
|
||
write_selectors (struct parser_state *par_state, char *sels)
|
||
{
|
||
while (*sels != '\0')
|
||
{
|
||
struct stoken field_name;
|
||
char *p = chop_separator (sels);
|
||
sels = p;
|
||
while (*sels != '\0' && *sels != '.'
|
||
&& (sels[0] != '_' || sels[1] != '_'))
|
||
sels += 1;
|
||
field_name.length = sels - p;
|
||
field_name.ptr = p;
|
||
write_exp_op_with_string (par_state, STRUCTOP_STRUCT, field_name);
|
||
}
|
||
}
|
||
|
||
/* Write a variable access (OP_VAR_VALUE) to ambiguous encoded name
|
||
NAME[0..LEN-1], in block context BLOCK, to be resolved later. Writes
|
||
a temporary symbol that is valid until the next call to ada_parse.
|
||
*/
|
||
static void
|
||
write_ambiguous_var (struct parser_state *par_state,
|
||
const struct block *block, char *name, int len)
|
||
{
|
||
struct symbol *sym = new (&temp_parse_space) symbol ();
|
||
|
||
SYMBOL_DOMAIN (sym) = UNDEF_DOMAIN;
|
||
sym->set_linkage_name (obstack_strndup (&temp_parse_space, name, len));
|
||
sym->set_language (language_ada, nullptr);
|
||
|
||
write_exp_elt_opcode (par_state, OP_VAR_VALUE);
|
||
write_exp_elt_block (par_state, block);
|
||
write_exp_elt_sym (par_state, sym);
|
||
write_exp_elt_opcode (par_state, OP_VAR_VALUE);
|
||
}
|
||
|
||
/* A convenient wrapper around ada_get_field_index that takes
|
||
a non NUL-terminated FIELD_NAME0 and a FIELD_NAME_LEN instead
|
||
of a NUL-terminated field name. */
|
||
|
||
static int
|
||
ada_nget_field_index (const struct type *type, const char *field_name0,
|
||
int field_name_len, int maybe_missing)
|
||
{
|
||
char *field_name = (char *) alloca ((field_name_len + 1) * sizeof (char));
|
||
|
||
strncpy (field_name, field_name0, field_name_len);
|
||
field_name[field_name_len] = '\0';
|
||
return ada_get_field_index (type, field_name, maybe_missing);
|
||
}
|
||
|
||
/* If encoded_field_name is the name of a field inside symbol SYM,
|
||
then return the type of that field. Otherwise, return NULL.
|
||
|
||
This function is actually recursive, so if ENCODED_FIELD_NAME
|
||
doesn't match one of the fields of our symbol, then try to see
|
||
if ENCODED_FIELD_NAME could not be a succession of field names
|
||
(in other words, the user entered an expression of the form
|
||
TYPE_NAME.FIELD1.FIELD2.FIELD3), in which case we evaluate
|
||
each field name sequentially to obtain the desired field type.
|
||
In case of failure, we return NULL. */
|
||
|
||
static struct type *
|
||
get_symbol_field_type (struct symbol *sym, char *encoded_field_name)
|
||
{
|
||
char *field_name = encoded_field_name;
|
||
char *subfield_name;
|
||
struct type *type = SYMBOL_TYPE (sym);
|
||
int fieldno;
|
||
|
||
if (type == NULL || field_name == NULL)
|
||
return NULL;
|
||
type = check_typedef (type);
|
||
|
||
while (field_name[0] != '\0')
|
||
{
|
||
field_name = chop_separator (field_name);
|
||
|
||
fieldno = ada_get_field_index (type, field_name, 1);
|
||
if (fieldno >= 0)
|
||
return TYPE_FIELD_TYPE (type, fieldno);
|
||
|
||
subfield_name = field_name;
|
||
while (*subfield_name != '\0' && *subfield_name != '.'
|
||
&& (subfield_name[0] != '_' || subfield_name[1] != '_'))
|
||
subfield_name += 1;
|
||
|
||
if (subfield_name[0] == '\0')
|
||
return NULL;
|
||
|
||
fieldno = ada_nget_field_index (type, field_name,
|
||
subfield_name - field_name, 1);
|
||
if (fieldno < 0)
|
||
return NULL;
|
||
|
||
type = TYPE_FIELD_TYPE (type, fieldno);
|
||
field_name = subfield_name;
|
||
}
|
||
|
||
return NULL;
|
||
}
|
||
|
||
/* Look up NAME0 (an unencoded identifier or dotted name) in BLOCK (or
|
||
expression_block_context if NULL). If it denotes a type, return
|
||
that type. Otherwise, write expression code to evaluate it as an
|
||
object and return NULL. In this second case, NAME0 will, in general,
|
||
have the form <name>(.<selector_name>)*, where <name> is an object
|
||
or renaming encoded in the debugging data. Calls error if no
|
||
prefix <name> matches a name in the debugging data (i.e., matches
|
||
either a complete name or, as a wild-card match, the final
|
||
identifier). */
|
||
|
||
static struct type*
|
||
write_var_or_type (struct parser_state *par_state,
|
||
const struct block *block, struct stoken name0)
|
||
{
|
||
int depth;
|
||
char *encoded_name;
|
||
int name_len;
|
||
|
||
if (block == NULL)
|
||
block = par_state->expression_context_block;
|
||
|
||
encoded_name = ada_encode (name0.ptr);
|
||
name_len = strlen (encoded_name);
|
||
encoded_name = obstack_strndup (&temp_parse_space, encoded_name, name_len);
|
||
for (depth = 0; depth < MAX_RENAMING_CHAIN_LENGTH; depth += 1)
|
||
{
|
||
int tail_index;
|
||
|
||
tail_index = name_len;
|
||
while (tail_index > 0)
|
||
{
|
||
int nsyms;
|
||
std::vector<struct block_symbol> syms;
|
||
struct symbol *type_sym;
|
||
struct symbol *renaming_sym;
|
||
const char* renaming;
|
||
int renaming_len;
|
||
const char* renaming_expr;
|
||
int terminator = encoded_name[tail_index];
|
||
|
||
encoded_name[tail_index] = '\0';
|
||
nsyms = ada_lookup_symbol_list (encoded_name, block,
|
||
VAR_DOMAIN, &syms);
|
||
encoded_name[tail_index] = terminator;
|
||
|
||
type_sym = select_possible_type_sym (syms);
|
||
|
||
if (type_sym != NULL)
|
||
renaming_sym = type_sym;
|
||
else if (nsyms == 1)
|
||
renaming_sym = syms[0].symbol;
|
||
else
|
||
renaming_sym = NULL;
|
||
|
||
switch (ada_parse_renaming (renaming_sym, &renaming,
|
||
&renaming_len, &renaming_expr))
|
||
{
|
||
case ADA_NOT_RENAMING:
|
||
break;
|
||
case ADA_PACKAGE_RENAMING:
|
||
case ADA_EXCEPTION_RENAMING:
|
||
case ADA_SUBPROGRAM_RENAMING:
|
||
{
|
||
int alloc_len = renaming_len + name_len - tail_index + 1;
|
||
char *new_name
|
||
= (char *) obstack_alloc (&temp_parse_space, alloc_len);
|
||
strncpy (new_name, renaming, renaming_len);
|
||
strcpy (new_name + renaming_len, encoded_name + tail_index);
|
||
encoded_name = new_name;
|
||
name_len = renaming_len + name_len - tail_index;
|
||
goto TryAfterRenaming;
|
||
}
|
||
case ADA_OBJECT_RENAMING:
|
||
write_object_renaming (par_state, block, renaming, renaming_len,
|
||
renaming_expr, MAX_RENAMING_CHAIN_LENGTH);
|
||
write_selectors (par_state, encoded_name + tail_index);
|
||
return NULL;
|
||
default:
|
||
internal_error (__FILE__, __LINE__,
|
||
_("impossible value from ada_parse_renaming"));
|
||
}
|
||
|
||
if (type_sym != NULL)
|
||
{
|
||
struct type *field_type;
|
||
|
||
if (tail_index == name_len)
|
||
return SYMBOL_TYPE (type_sym);
|
||
|
||
/* We have some extraneous characters after the type name.
|
||
If this is an expression "TYPE_NAME.FIELD0.[...].FIELDN",
|
||
then try to get the type of FIELDN. */
|
||
field_type
|
||
= get_symbol_field_type (type_sym, encoded_name + tail_index);
|
||
if (field_type != NULL)
|
||
return field_type;
|
||
else
|
||
error (_("Invalid attempt to select from type: \"%s\"."),
|
||
name0.ptr);
|
||
}
|
||
else if (tail_index == name_len && nsyms == 0)
|
||
{
|
||
struct type *type = find_primitive_type (par_state,
|
||
encoded_name);
|
||
|
||
if (type != NULL)
|
||
return type;
|
||
}
|
||
|
||
if (nsyms == 1)
|
||
{
|
||
write_var_from_sym (par_state, syms[0].block, syms[0].symbol);
|
||
write_selectors (par_state, encoded_name + tail_index);
|
||
return NULL;
|
||
}
|
||
else if (nsyms == 0)
|
||
{
|
||
struct bound_minimal_symbol msym
|
||
= ada_lookup_simple_minsym (encoded_name);
|
||
if (msym.minsym != NULL)
|
||
{
|
||
write_exp_msymbol (par_state, msym);
|
||
/* Maybe cause error here rather than later? FIXME? */
|
||
write_selectors (par_state, encoded_name + tail_index);
|
||
return NULL;
|
||
}
|
||
|
||
if (tail_index == name_len
|
||
&& strncmp (encoded_name, "standard__",
|
||
sizeof ("standard__") - 1) == 0)
|
||
error (_("No definition of \"%s\" found."), name0.ptr);
|
||
|
||
tail_index = chop_selector (encoded_name, tail_index);
|
||
}
|
||
else
|
||
{
|
||
write_ambiguous_var (par_state, block, encoded_name,
|
||
tail_index);
|
||
write_selectors (par_state, encoded_name + tail_index);
|
||
return NULL;
|
||
}
|
||
}
|
||
|
||
if (!have_full_symbols () && !have_partial_symbols () && block == NULL)
|
||
error (_("No symbol table is loaded. Use the \"file\" command."));
|
||
if (block == par_state->expression_context_block)
|
||
error (_("No definition of \"%s\" in current context."), name0.ptr);
|
||
else
|
||
error (_("No definition of \"%s\" in specified context."), name0.ptr);
|
||
|
||
TryAfterRenaming: ;
|
||
}
|
||
|
||
error (_("Could not find renamed symbol \"%s\""), name0.ptr);
|
||
|
||
}
|
||
|
||
/* Write a left side of a component association (e.g., NAME in NAME =>
|
||
exp). If NAME has the form of a selected component, write it as an
|
||
ordinary expression. If it is a simple variable that unambiguously
|
||
corresponds to exactly one symbol that does not denote a type or an
|
||
object renaming, also write it normally as an OP_VAR_VALUE.
|
||
Otherwise, write it as an OP_NAME.
|
||
|
||
Unfortunately, we don't know at this point whether NAME is supposed
|
||
to denote a record component name or the value of an array index.
|
||
Therefore, it is not appropriate to disambiguate an ambiguous name
|
||
as we normally would, nor to replace a renaming with its referent.
|
||
As a result, in the (one hopes) rare case that one writes an
|
||
aggregate such as (R => 42) where R renames an object or is an
|
||
ambiguous name, one must write instead ((R) => 42). */
|
||
|
||
static void
|
||
write_name_assoc (struct parser_state *par_state, struct stoken name)
|
||
{
|
||
if (strchr (name.ptr, '.') == NULL)
|
||
{
|
||
std::vector<struct block_symbol> syms;
|
||
int nsyms = ada_lookup_symbol_list (name.ptr,
|
||
par_state->expression_context_block,
|
||
VAR_DOMAIN, &syms);
|
||
|
||
if (nsyms != 1 || SYMBOL_CLASS (syms[0].symbol) == LOC_TYPEDEF)
|
||
write_exp_op_with_string (par_state, OP_NAME, name);
|
||
else
|
||
write_var_from_sym (par_state, syms[0].block, syms[0].symbol);
|
||
}
|
||
else
|
||
if (write_var_or_type (par_state, NULL, name) != NULL)
|
||
error (_("Invalid use of type."));
|
||
}
|
||
|
||
/* Convert the character literal whose ASCII value would be VAL to the
|
||
appropriate value of type TYPE, if there is a translation.
|
||
Otherwise return VAL. Hence, in an enumeration type ('A', 'B'),
|
||
the literal 'A' (VAL == 65), returns 0. */
|
||
|
||
static LONGEST
|
||
convert_char_literal (struct type *type, LONGEST val)
|
||
{
|
||
char name[7];
|
||
int f;
|
||
|
||
if (type == NULL)
|
||
return val;
|
||
type = check_typedef (type);
|
||
if (TYPE_CODE (type) != TYPE_CODE_ENUM)
|
||
return val;
|
||
|
||
if ((val >= 'a' && val <= 'z') || (val >= '0' && val <= '9'))
|
||
xsnprintf (name, sizeof (name), "Q%c", (int) val);
|
||
else
|
||
xsnprintf (name, sizeof (name), "QU%02x", (int) val);
|
||
size_t len = strlen (name);
|
||
for (f = 0; f < TYPE_NFIELDS (type); f += 1)
|
||
{
|
||
/* Check the suffix because an enum constant in a package will
|
||
have a name like "pkg__QUxx". This is safe enough because we
|
||
already have the correct type, and because mangling means
|
||
there can't be clashes. */
|
||
const char *ename = TYPE_FIELD_NAME (type, f);
|
||
size_t elen = strlen (ename);
|
||
|
||
if (elen >= len && strcmp (name, ename + elen - len) == 0)
|
||
return TYPE_FIELD_ENUMVAL (type, f);
|
||
}
|
||
return val;
|
||
}
|
||
|
||
static struct type *
|
||
type_int (struct parser_state *par_state)
|
||
{
|
||
return parse_type (par_state)->builtin_int;
|
||
}
|
||
|
||
static struct type *
|
||
type_long (struct parser_state *par_state)
|
||
{
|
||
return parse_type (par_state)->builtin_long;
|
||
}
|
||
|
||
static struct type *
|
||
type_long_long (struct parser_state *par_state)
|
||
{
|
||
return parse_type (par_state)->builtin_long_long;
|
||
}
|
||
|
||
static struct type *
|
||
type_long_double (struct parser_state *par_state)
|
||
{
|
||
return parse_type (par_state)->builtin_long_double;
|
||
}
|
||
|
||
static struct type *
|
||
type_char (struct parser_state *par_state)
|
||
{
|
||
return language_string_char_type (par_state->language (),
|
||
par_state->gdbarch ());
|
||
}
|
||
|
||
static struct type *
|
||
type_boolean (struct parser_state *par_state)
|
||
{
|
||
return parse_type (par_state)->builtin_bool;
|
||
}
|
||
|
||
static struct type *
|
||
type_system_address (struct parser_state *par_state)
|
||
{
|
||
struct type *type
|
||
= language_lookup_primitive_type (par_state->language (),
|
||
par_state->gdbarch (),
|
||
"system__address");
|
||
return type != NULL ? type : parse_type (par_state)->builtin_data_ptr;
|
||
}
|
||
|
||
void _initialize_ada_exp ();
|
||
void
|
||
_initialize_ada_exp ()
|
||
{
|
||
obstack_init (&temp_parse_space);
|
||
}
|