2002-06-04 15:28:49 +00:00
|
|
|
|
/* Ada language support routines for GDB, the GNU debugger. Copyright
|
2005-01-28 19:56:01 +00:00
|
|
|
|
|
|
|
|
|
1992, 1993, 1994, 1997, 1998, 1999, 2000, 2003, 2004, 2005 Free
|
|
|
|
|
Software Foundation, Inc.
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
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 2 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, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#include "defs.h"
|
2002-06-04 15:28:49 +00:00
|
|
|
|
#include <stdio.h>
|
2002-08-18 18:24:29 +00:00
|
|
|
|
#include "gdb_string.h"
|
2002-06-04 15:28:49 +00:00
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
#include "demangle.h"
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#include "gdb_regex.h"
|
|
|
|
|
#include "frame.h"
|
2002-06-04 15:28:49 +00:00
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "gdbtypes.h"
|
|
|
|
|
#include "gdbcmd.h"
|
|
|
|
|
#include "expression.h"
|
|
|
|
|
#include "parser-defs.h"
|
|
|
|
|
#include "language.h"
|
|
|
|
|
#include "c-lang.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
#include "symfile.h"
|
|
|
|
|
#include "objfiles.h"
|
|
|
|
|
#include "breakpoint.h"
|
|
|
|
|
#include "gdbcore.h"
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#include "hashtab.h"
|
|
|
|
|
#include "gdb_obstack.h"
|
2002-06-04 15:28:49 +00:00
|
|
|
|
#include "ada-lang.h"
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#include "completer.h"
|
|
|
|
|
#include "gdb_stat.h"
|
|
|
|
|
#ifdef UI_OUT
|
2002-06-04 15:28:49 +00:00
|
|
|
|
#include "ui-out.h"
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#endif
|
2003-02-19 David Carlton <carlton@math.stanford.edu>
* Makefile.in (SFILES): Add block.c.
(block_h): New.
(COMMON_OBS): Add block.o.
(block.o): New.
(x86-64-tdep.o): Add $(block_h).
(values.o, valops.o, tracepoint.o, symtab.o, symmisc.o, symfile.o)
(stack.o, printcmd.o, p-exp.tab.o, parse.o, objfiles.o)
(objc-exp.tab.o, objc-lang.o, nlmread.o, mips-tdep.o, mdebugread.o)
(m2-exp.tab.o, linespec.o, jv-lang.o, jv-exp.tab.o, infcmd.o)
(f-valprint.o, findvar.o, f-exp.tab.o, expprint.o, coffread.o)
(c-exp.tab.o, buildsym.o, breakpoint.o, blockframe.o, ax-gdb.o)
(alpha-tdep.o, ada-lang.o, ada-exp.tab.o, mi-cmd-stack.o): Ditto.
* value.h: Add opaque declaration for struct block.
* parser-defs.h, objc-lang.h, buildsym.h, breakpoint.h: Ditto.
* ada-lang.h: Ditto.
* x86-64-tdep.c: #include "block.h"
* values.c, valops.c, tracepoint.c, symtab.c, symmisc.c: Ditto.
* symfile.c, stack.c, printcmd.c, p-exp.y, parse.c: Ditto.
* objfiles.c, objc-exp.y, objc-lang.c, nlmread.c: Ditto.
* mips-tdep.c, mdebugread.c, m2-exp.y, linespec.c: Ditto.
* jv-lang.c, jv-exp.y, infcmd.c, f-valprint.c: Ditto.
* findvar.c, f-exp.y, expprint.c, coffread.c, c-exp.y: Ditto.
* buildsym.c, breakpoint.c, blockframe.c, ax-gdb.c: Ditto.
* alpha-tdep.c, ada-lang.c, ada-exp.y: Ditto.
* blockframe.c (blockvector_for_pc_sect): Move to "block.c".
(blockvector_for_pc, block_for_pc_sect, block_for_pc): Ditto.
* symtab.c (block_function): Ditto.
(contained_in): Ditto.
* frame.h: Move block_for_pc and block_for_pc_sect declarations to
block.h. Add opaque declaration for struct block.
* symtab.h: Move block_function and contained_in declarations to
block.h. Add opaque declarations for struct block, struct
blockvector.
(struct block): Move to block.h.
(struct blockvector): Ditto.
(BLOCK_START, BLOCK_END, BLOCK_FUNCTION, BLOCK_SUPERBLOCK)
(BLOCK_GCC_COMPILED, BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM)
(BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE)
(ALL_BLOCK_SYMBOLS, BLOCK_SHOULD_SORT, BLOCKVECTOR_NBLOCKS)
(BLOCKVECTOR_BLOCK, GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOCK):
Ditto.
* block.c: New file.
* block.h: New file.
2003-02-19 David Carlton <carlton@math.stanford.edu>
* mi-cmd-stack.c: #include "block.h"
2003-02-20 00:01:07 +00:00
|
|
|
|
#include "block.h"
|
2003-04-21 Andrew Cagney <cagney@redhat.com>
* infcall.c: New file.
* infcall.h: New file.
* valarith.c: Include "infcall.h".
* scm-lang.c, objc-lang.cm, hppa-tdep.c, gcore.c: Ditto.
* eval.c, ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (valarith.o, scm-lang.o): Update dependencies.
(objc-lang.o, hppa-tdep.o, gcore.o): Update dependencies.
(eval.o, ada-valprint.o, ada-lang.o): Update dependencies.
(SFILES): Add "infcall.c"
(COMMON_OBS): Add "infcall.o".
(infcall.o): Specify dependencies.
* value.h (call_function_by_hand): Delete declaration.
* inferior.h (run_stack_dummy): Delete declaration.
* infcmd.c (breakpoint_auto_delete_contents): Move to "infcall.c".
(run_stack_dummy): Move to "infcall.c", merged into
call_function_by_hand.
* valops.c (call_function_by_hand): Moved to "infcall.c".
(find_function_addr, value_arg_coerce): Ditto.
(unwindonsignal_p, coerce_float_to_double): Ditto.
(_initialize_valops): Move "set/show coerce-float-to-double", and
"set/show unwindonsignal" commands to "infcall.c".
* v850-tdep.c, target.h: Update comments.
* sparc-tdep.c (sparc_fix_call_dummy): Update comments.
* sh-tdep.c (sh_init_extra_frame_info): Update comments.
(sh64_init_extra_frame_info): Update comments.
* mn10300-tdep.c: Update comments.
* mcore-tdep.c (mcore_init_extra_frame_info): Update comments.
* config/sparc/tm-sparc.h: Update comments.
* breakpoint.h: Update comments.
* avr-tdep.c (avr_init_extra_frame_info): Update comments.
* arm-tdep.c: Update comment.
2003-04-21 16:48:41 +00:00
|
|
|
|
#include "infcall.h"
|
2003-06-11 David Carlton <carlton@bactrian.org>
* dictionary.h: New.
* dictionary.c: New.
* block.h: Add opaque declaration for struct dictionary.
(struct block): Add 'dict' member; delete 'hashtable', 'nsyms',
'sym' members.
(BLOCK_DICT): New macro.
Delete macros BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM,
BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE,
BLOCK_SHOULD_SORT.
(ALL_BLOCK_SYMBOLS): Update definition.
* Makefile.in (SFILES): Add dictionary.c.
(dictionary_h): New.
(COMMON_OBS): Add dictionary.o.
(dictionary.o): New.
(ada-lang.o): Depend on dictionary_h.
(buildsym.o, coffread.o, jv-lang.o, mdebugread.o, objfiles.o)
(stack.o, symmisc.o, symtab.o, tracepoint.o, valops.o)
(mi-cmd-stack.o): Ditto.
(gdbtk-cmds.o): Update dependencies.
(gdbtk-stack.o): Ditto.
* ada-lang.c: Include dictionary.h.
(symtab_for_sym): Update uses of ALL_BLOCK_SYMBOLS.
(fill_in_ada_prototype, debug_print_block): Ditto.
(ada_add_block_symbols): Update uses of ALL_BLOCK_SYMBOLS; replace
explicit iteration by use of ALL_BLOCK_SYMBOLS. Delete variable
'is_sorted'.
* mdebugread.c: Include dictionary.h.
(struct parse_stack): Delete 'maxsyms' member.
(parse_symbol): Update calls to new_block. Delete calls to
shrink_block. Use dictionary methods.
(psymtab_to_symtab_1): Delete calls to sort_symtab_syms.
Update calls to new_symtab. Don't maintain maxsyms data.
(mylookup_symbol): Update use of ALL_BLOCK_SYMBOLS.
(add_symbol): Just call dict_add_symbol.
(new_symtab): Delete 'maxsyms' argument.
(new_symtab): Update calls to new_block.
(new_block): Delete 'maxsyms' argument; add 'function' argument.
(shrink_block): Delete function.
(fixup_sigtramp): Update call to new_block. Add symbol via
dict_add_symbol.
* jv-lang.c: Include dictionary.h.
(get_java_class_symtab): Set the BLOCK_DICT of the blocks
appropriately. Set class_symtab->free_func. Make sure the
blockvector is big enough to hold two blocks.
(add_class_symtab_symbol): Use dictionary methods.
(free_class_block): New function.
(type_from_class): Replace explicit iteration by
ALL_BLOCK_SYMBOLS.
* symtab.h (struct symtab): Replace 'free_ptr' method by
'free_func'.
* dwarf2read.c (psymtab_to_symtab_1): Delete call to
sort_symtab_syms.
* dwarfread.c (psymtab_to_symtab_1): Delete call to
sort_symtab_syms.
* coffread.c (coff_symfile_read): Delete call to sort_symtab_syms.
Include dictionary.h.
(patch_opaque_types): Update use of ALL_BLOCK_SYMBOLS.
* dbxread.c (dbx_psymtab_to_symtab_1): Delete call to
sort_symtab_syms.
* objfiles.c: Include dictionary.h.
(objfile_relocate): Update use of ALL_BLOCK_SYMBOLS.
* buildsym.c: Include dictionary.h.
(finish_block): Use dictionary methods.
(end_symtab): Set free_func to NULL, not free_ptr.
* tracepoint.c: Include dictionary.h.
(add_local_symbols): Update use of ALL_BLOCK_SYMBOLS.
(scope_info): Ditto.
* stack.c: Include dictionary.h.
(print_block_frame_locals): Update use of ALL_BLOCK_SYMBOLS.
(print_block_frame_labels, print_frame_arg_vars)
(print_frame_args): Ditto.
* symmisc.c (free_symtab_block): Use dictionary methods.
(dump_symtab): Ditto.
(free_symtab): Replace use of 'free_ptr' by 'free_func'.
Include dictionary.h.
* symfile.h: Delete declarations of sort_block_syms,
sort_symtab_syms.
* symfile.c (sort_block_syms): Delete.
(sort_symtab_syms): Delete.
* symtab.c: Include dictionary.h.
(lookup_block_symbol): Use dictionary iterators.
(find_pc_sect_symtab): Update use of ALL_BLOCK_SYMBOLS.
(search_symbols, make_symbol_completion_list): Ditto.
(make_symbol_overload_list): Ditto.
* valops.c (value_of_local): Use dict_empty.
Include dictionary.h.
2003-06-11 David Carlton <carlton@bactrian.org>
* generic/gdbtk-stack.c: Include dictionary.h.
(gdb_block_vars): Update use of ALL_BLOCK_SYMBOLS.
(gdb_get_blocks, gdb_get_vars_command): Ditto.
* generic/gdbtk-cmds.c: Include dictionary.h.
(gdb_listfuncs): Update use of ALL_BLOCK_SYMBOLS.
2003-06-11 David Carlton <carlton@bactrian.org>
* mi-cmd-stack.c: Include dictionary.h.
(list_args_or_locals): Update use of ALL_BLOCK_SYMBOLS.
2003-06-11 23:29:49 +00:00
|
|
|
|
#include "dictionary.h"
|
2005-01-12 Andrew Cagney <cagney@gnu.org>
* exceptions.h (enum return_reason, RETURN_MASK)
(RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL)
(return_mask, throw_exception, catch_exceptions_ftype)
(catch_exceptions_with_msg, catch_errors_ftype, catch_errors)
(catch_command_errors_ftype, catch_command_errors): Move to
exceptions.h.
* exceptions.c, exceptions.h: New files.
* top.c: Do not include <setjmp.h>.
(SIGJMP_BUF, SIGSETJMP, SIGLONGJMP, catch_return)
(throw_exception, catcher, catch_exceptions)
(catch_exceptions_with_msg, struct catch_errors_args)
(do_catch_errors, catch_errors, struct captured_command_args)
(do_captured_command, catch_command_errors): Move to exceptions.c.
* wrapper.c, wince.c, win32-nat.c, utils.c: Include "exceptions.h".
* tui/tui-interp.c, top.c, thread.c, symmisc.c: Ditto.
* symfile-mem.c, stack.c, solib.c, rs6000-nat.c: Ditto.
* remote-sds.c, remote-mips.c, remote-fileio.c: Ditto.
* remote-e7000.c, objc-lang.c, ocd.c: Ditto.
* remote.c, nto-procfs.c, monitor.c, mi/mi-main.c: Ditto.
* main.c, m32r-rom.c, infrun.c, inf-loop.c: Ditto.
* hppa-hpux-tdep.c, frame.c, event-top.c, event-loop.c: Ditto.
* corelow.c, corefile.c, cli/cli-interp.c, breakpoint.c: Ditto.
* ada-valprint.c, ada-lang.c: Ditto.
* Makefile.in (HFILES_NO_SRCDIR, COMMON_OBS): Add exceptions.h and
exceptions.o. Update all dependencies.
2005-01-12 18:31:35 +00:00
|
|
|
|
#include "exceptions.h"
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#ifndef ADA_RETAIN_DOTS
|
|
|
|
|
#define ADA_RETAIN_DOTS 0
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Define whether or not the C operator '/' truncates towards zero for
|
|
|
|
|
differently signed operands (truncation direction is undefined in C).
|
|
|
|
|
Copied from valarith.c. */
|
|
|
|
|
|
|
|
|
|
#ifndef TRUNCATION_TOWARDS_ZERO
|
|
|
|
|
#define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void extract_string (CORE_ADDR addr, char *buf);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *ada_create_fundamental_type (struct objfile *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static void modify_general_field (char *, LONGEST, int, int);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *desc_base_type (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *desc_bounds_type (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *desc_bounds (struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int fat_pntr_bounds_bitpos (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int fat_pntr_bounds_bitsize (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *desc_data_type (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *desc_data (struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int fat_pntr_data_bitpos (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int fat_pntr_data_bitsize (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *desc_one_bound (struct value *, int, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int desc_bound_bitpos (struct type *, int, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int desc_bound_bitsize (struct type *, int, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *desc_index_type (struct type *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int desc_arity (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int ada_type_match (struct type *, struct type *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int ada_args_match (struct symbol *, struct value **, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *ensure_lval (struct value *, CORE_ADDR *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *convert_actual (struct value *, struct type *,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *make_array_descriptor (struct type *, struct value *,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static void ada_add_block_symbols (struct obstack *,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct block *, const char *,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
domain_enum, struct objfile *,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct symtab *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static int is_nonfunction (struct ada_symbol_info *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static void add_defn_to_vec (struct obstack *, struct symbol *,
|
|
|
|
|
struct block *, struct symtab *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static int num_defns_collected (struct obstack *);
|
|
|
|
|
|
|
|
|
|
static struct ada_symbol_info *defns_collected (struct obstack *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct partial_symbol *ada_lookup_partial_symbol (struct partial_symtab
|
2004-06-27 19:06:23 +00:00
|
|
|
|
*, const char *, int,
|
|
|
|
|
domain_enum, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct symtab *symtab_for_sym (struct symbol *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *resolve_subexp (struct expression **, int *, int,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static void replace_operator_with_call (struct expression **, int, int, int,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct symbol *, struct block *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int possible_user_operator_p (enum exp_opcode, struct value **);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static char *ada_op_name (enum exp_opcode);
|
|
|
|
|
|
|
|
|
|
static const char *ada_decoded_op_name (enum exp_opcode);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int numeric_type_p (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int integer_type_p (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int scalar_type_p (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int discrete_type_p (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct type *ada_lookup_struct_elt_type (struct type *, char *,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
int, int, int *);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *evaluate_subexp (struct type *, struct expression *,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int *, enum noside);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *evaluate_subexp_type (struct expression *, int *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int is_dynamic_field (struct type *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2005-01-28 19:56:01 +00:00
|
|
|
|
static struct type *to_fixed_variant_branch_type (struct type *,
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
const gdb_byte *,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR, struct value *);
|
|
|
|
|
|
|
|
|
|
static struct type *to_fixed_array_type (struct type *, struct value *, int);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *to_fixed_range_type (char *, struct value *,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct objfile *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *to_static_fixed_type (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *unwrap_value (struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *packed_array_type (struct type *, long *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *decode_packed_array_type (struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *decode_packed_array (struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *value_subscript_packed (struct value *, int,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value **);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *coerce_unspec_val_to_type (struct value *,
|
|
|
|
|
struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *get_var_value (char *, char *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int lesseq_defined_than (struct symbol *, struct symbol *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int equiv_types (struct type *, struct type *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int is_name_suffix (const char *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int wild_match (const char *, int, const char *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *ada_coerce_ref (struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static LONGEST pos_atr (struct value *);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *value_pos_atr (struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *value_val_atr (struct type *, struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct symbol *standard_lookup (const char *, const struct block *,
|
|
|
|
|
domain_enum);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *ada_search_struct_field (char *, struct value *, int,
|
|
|
|
|
struct type *);
|
|
|
|
|
|
|
|
|
|
static struct value *ada_value_primitive_field (struct value *, int, int,
|
|
|
|
|
struct type *);
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static int find_struct_field (char *, struct type *, int,
|
|
|
|
|
struct type **, int *, int *, int *);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
static struct value *ada_to_fixed_value_create (struct type *, CORE_ADDR,
|
|
|
|
|
struct value *);
|
|
|
|
|
|
|
|
|
|
static struct value *ada_to_fixed_value (struct value *);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static int ada_resolve_function (struct ada_symbol_info *, int,
|
|
|
|
|
struct value **, int, const char *,
|
|
|
|
|
struct type *);
|
|
|
|
|
|
|
|
|
|
static struct value *ada_coerce_to_simple_array (struct value *);
|
|
|
|
|
|
|
|
|
|
static int ada_is_direct_array_type (struct type *);
|
|
|
|
|
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
static void ada_language_arch_info (struct gdbarch *,
|
|
|
|
|
struct language_arch_info *);
|
2004-10-15 09:12:24 +00:00
|
|
|
|
|
|
|
|
|
static void check_size (const struct type *);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Maximum-sized dynamic type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static unsigned int varsize_limit;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* FIXME: brobecker/2003-09-17: No longer a const because it is
|
|
|
|
|
returned by a function that does not return a const char *. */
|
|
|
|
|
static char *ada_completer_word_break_characters =
|
|
|
|
|
#ifdef VMS
|
|
|
|
|
" \t\n!@#%^&*()+=|~`}{[]\";:?/,-";
|
|
|
|
|
#else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
" \t\n!@#$%^&*()+=|~`}{[]\";:?/,-";
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#endif
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The name of the symbol to use to get the name of the main subprogram. */
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static const char ADA_MAIN_PROGRAM_SYMBOL_NAME[]
|
2004-06-02 09:55:36 +00:00
|
|
|
|
= "__gnat_ada_main_program_name";
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The name of the runtime function called when an exception is raised. */
|
|
|
|
|
static const char raise_sym_name[] = "__gnat_raise_nodefer_with_msg";
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The name of the runtime function called when an unhandled exception
|
|
|
|
|
is raised. */
|
|
|
|
|
static const char raise_unhandled_sym_name[] = "__gnat_unhandled_exception";
|
|
|
|
|
|
|
|
|
|
/* The name of the runtime function called when an assert failure is
|
|
|
|
|
raised. */
|
|
|
|
|
static const char raise_assert_sym_name[] =
|
|
|
|
|
"system__assertions__raise_assert_failure";
|
|
|
|
|
|
|
|
|
|
/* When GDB stops on an unhandled exception, GDB will go up the stack until
|
|
|
|
|
if finds a frame corresponding to this function, in order to extract the
|
|
|
|
|
name of the exception that has been raised from one of the parameters. */
|
|
|
|
|
static const char process_raise_exception_name[] =
|
|
|
|
|
"ada__exceptions__process_raise_exception";
|
|
|
|
|
|
|
|
|
|
/* A string that reflects the longest exception expression rewrite,
|
|
|
|
|
aside from the exception name. */
|
|
|
|
|
static const char longest_exception_template[] =
|
|
|
|
|
"'__gnat_raise_nodefer_with_msg' if long_integer(e) = long_integer(&)";
|
|
|
|
|
|
|
|
|
|
/* Limit on the number of warnings to raise per expression evaluation. */
|
|
|
|
|
static int warning_limit = 2;
|
|
|
|
|
|
|
|
|
|
/* Number of warning messages issued; reset to 0 by cleanups after
|
|
|
|
|
expression evaluation. */
|
|
|
|
|
static int warnings_issued = 0;
|
|
|
|
|
|
|
|
|
|
static const char *known_runtime_file_name_patterns[] = {
|
|
|
|
|
ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const char *known_auxiliary_function_name_patterns[] = {
|
|
|
|
|
ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Space for allocating results of ada_lookup_symbol_list. */
|
|
|
|
|
static struct obstack symbol_list_obstack;
|
|
|
|
|
|
|
|
|
|
/* Utilities */
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static char *
|
|
|
|
|
ada_get_gdb_completer_word_break_characters (void)
|
|
|
|
|
{
|
|
|
|
|
return ada_completer_word_break_characters;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read the string located at ADDR from the inferior and store the
|
|
|
|
|
result into BUF. */
|
|
|
|
|
|
|
|
|
|
static void
|
2002-06-04 15:28:49 +00:00
|
|
|
|
extract_string (CORE_ADDR addr, char *buf)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
int char_index = 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Loop, reading one byte at a time, until we reach the '\000'
|
|
|
|
|
end-of-string marker. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
target_read_memory (addr + char_index * sizeof (char),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
buf + char_index * sizeof (char), sizeof (char));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char_index++;
|
|
|
|
|
}
|
|
|
|
|
while (buf[char_index - 1] != '\000');
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-23 19:13:26 +00:00
|
|
|
|
/* Assuming VECT points to an array of *SIZE objects of size
|
2002-06-04 15:28:49 +00:00
|
|
|
|
ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
|
2004-10-23 19:13:26 +00:00
|
|
|
|
updating *SIZE as necessary and returning the (new) array. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-10-23 19:13:26 +00:00
|
|
|
|
void *
|
|
|
|
|
grow_vect (void *vect, size_t *size, size_t min_size, int element_size)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (*size < min_size)
|
|
|
|
|
{
|
|
|
|
|
*size *= 2;
|
|
|
|
|
if (*size < min_size)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*size = min_size;
|
2004-10-23 19:13:26 +00:00
|
|
|
|
vect = xrealloc (vect, *size * element_size);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2004-10-23 19:13:26 +00:00
|
|
|
|
return vect;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* True (non-zero) iff TARGET matches FIELD_NAME up to any trailing
|
2004-06-02 09:55:36 +00:00
|
|
|
|
suffix of FIELD_NAME beginning "___". */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
field_name_match (const char *field_name, const char *target)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int len = strlen (target);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(strncmp (field_name, target, len) == 0
|
|
|
|
|
&& (field_name[len] == '\0'
|
|
|
|
|
|| (strncmp (field_name + len, "___", 3) == 0
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& strcmp (field_name + strlen (field_name) - 6,
|
|
|
|
|
"___XVN") != 0)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Assuming TYPE is a TYPE_CODE_STRUCT, find the field whose name matches
|
|
|
|
|
FIELD_NAME, and return its index. This function also handles fields
|
|
|
|
|
whose name have ___ suffixes because the compiler sometimes alters
|
|
|
|
|
their name by adding such a suffix to represent fields with certain
|
|
|
|
|
constraints. If the field could not be found, return a negative
|
|
|
|
|
number if MAYBE_MISSING is set. Otherwise raise an error. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ada_get_field_index (const struct type *type, const char *field_name,
|
|
|
|
|
int maybe_missing)
|
|
|
|
|
{
|
|
|
|
|
int fieldno;
|
|
|
|
|
for (fieldno = 0; fieldno < TYPE_NFIELDS (type); fieldno++)
|
|
|
|
|
if (field_name_match (TYPE_FIELD_NAME (type, fieldno), field_name))
|
|
|
|
|
return fieldno;
|
|
|
|
|
|
|
|
|
|
if (!maybe_missing)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Unable to find field %s in struct %s. Aborting"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
field_name, TYPE_NAME (type));
|
|
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The length of the prefix of NAME prior to any "___" suffix. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_name_prefix_len (const char *name)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *p = strstr (name, "___");
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (p == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return strlen (name);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return p - name;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return non-zero if SUFFIX is a suffix of STR.
|
|
|
|
|
Return zero if STR is null. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
is_suffix (const char *str, const char *suffix)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int len1, len2;
|
|
|
|
|
if (str == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
len1 = strlen (str);
|
|
|
|
|
len2 = strlen (suffix);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return (len1 >= len2 && strcmp (str + len1 - len2, suffix) == 0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a value of type TYPE whose contents come from VALADDR, if it
|
2004-06-02 09:55:36 +00:00
|
|
|
|
is non-null, and whose memory address (in the inferior) is
|
|
|
|
|
ADDRESS. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
2005-01-28 19:56:01 +00:00
|
|
|
|
value_from_contents_and_address (struct type *type,
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
const gdb_byte *valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR address)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *v = allocate_value (type);
|
|
|
|
|
if (valaddr == NULL)
|
2005-02-07 15:04:43 +00:00
|
|
|
|
set_value_lazy (v, 1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2005-02-02 00:20:07 +00:00
|
|
|
|
memcpy (value_contents_raw (v), valaddr, TYPE_LENGTH (type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
VALUE_ADDRESS (v) = address;
|
|
|
|
|
if (address != 0)
|
|
|
|
|
VALUE_LVAL (v) = lval_memory;
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The contents of value VAL, treated as a value of type TYPE. The
|
|
|
|
|
result is an lval in memory if VAL is. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
coerce_unspec_val_to_type (struct value *val, struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (value_type (val) == type)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return val;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value *result;
|
|
|
|
|
|
|
|
|
|
/* Make sure that the object size is not unreasonable before
|
|
|
|
|
trying to allocate some memory for it. */
|
2004-10-15 09:12:24 +00:00
|
|
|
|
check_size (type);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
result = allocate_value (type);
|
|
|
|
|
VALUE_LVAL (result) = VALUE_LVAL (val);
|
2005-02-08 04:57:03 +00:00
|
|
|
|
set_value_bitsize (result, value_bitsize (val));
|
|
|
|
|
set_value_bitpos (result, value_bitpos (val));
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
VALUE_ADDRESS (result) = VALUE_ADDRESS (val) + value_offset (val);
|
2005-02-02 22:34:36 +00:00
|
|
|
|
if (value_lazy (val)
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
|| TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val)))
|
2005-02-07 15:04:43 +00:00
|
|
|
|
set_value_lazy (result, 1);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
memcpy (value_contents_raw (result), value_contents (val),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_LENGTH (type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
static const gdb_byte *
|
|
|
|
|
cond_offset_host (const gdb_byte *valaddr, long offset)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (valaddr == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
else
|
|
|
|
|
return valaddr + offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static CORE_ADDR
|
2002-07-25 01:14:26 +00:00
|
|
|
|
cond_offset_target (CORE_ADDR address, long offset)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (address == 0)
|
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return address + offset;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Issue a warning (as for the definition of warning in utils.c, but
|
|
|
|
|
with exactly one argument rather than ...), unless the limit on the
|
|
|
|
|
number of warnings has passed during the evaluation of the current
|
|
|
|
|
expression. */
|
2004-10-10 16:03:23 +00:00
|
|
|
|
|
2004-10-11 05:26:25 +00:00
|
|
|
|
/* FIXME: cagney/2004-10-10: This function is mimicking the behavior
|
|
|
|
|
provided by "complaint". */
|
|
|
|
|
static void lim_warning (const char *format, ...) ATTR_FORMAT (printf, 1, 2);
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static void
|
2004-10-10 16:03:23 +00:00
|
|
|
|
lim_warning (const char *format, ...)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-10 16:03:23 +00:00
|
|
|
|
va_list args;
|
|
|
|
|
va_start (args, format);
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
warnings_issued += 1;
|
|
|
|
|
if (warnings_issued <= warning_limit)
|
2004-10-10 16:03:23 +00:00
|
|
|
|
vwarning (format, args);
|
|
|
|
|
|
|
|
|
|
va_end (args);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-15 09:12:24 +00:00
|
|
|
|
/* Issue an error if the size of an object of type T is unreasonable,
|
|
|
|
|
i.e. if it would be a bad idea to allocate a value of this type in
|
|
|
|
|
GDB. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
check_size (const struct type *type)
|
|
|
|
|
{
|
|
|
|
|
if (TYPE_LENGTH (type) > varsize_limit)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("object size is larger than varsize-limit"));
|
2004-10-15 09:12:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-07-09 19:29:56 +00:00
|
|
|
|
/* Note: would have used MAX_OF_TYPE and MIN_OF_TYPE macros from
|
|
|
|
|
gdbtypes.h, but some of the necessary definitions in that file
|
|
|
|
|
seem to have gone missing. */
|
|
|
|
|
|
|
|
|
|
/* Maximum value of a SIZE-byte signed integer type. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static LONGEST
|
2004-07-09 19:29:56 +00:00
|
|
|
|
max_of_size (int size)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
LONGEST top_bit = (LONGEST) 1 << (size * 8 - 2);
|
|
|
|
|
return top_bit | (top_bit - 1);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-07-09 19:29:56 +00:00
|
|
|
|
/* Minimum value of a SIZE-byte signed integer type. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static LONGEST
|
2004-07-09 19:29:56 +00:00
|
|
|
|
min_of_size (int size)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-07-09 19:29:56 +00:00
|
|
|
|
return -max_of_size (size) - 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-07-09 19:29:56 +00:00
|
|
|
|
/* Maximum value of a SIZE-byte unsigned integer type. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static ULONGEST
|
2004-07-09 19:29:56 +00:00
|
|
|
|
umax_of_size (int size)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ULONGEST top_bit = (ULONGEST) 1 << (size * 8 - 1);
|
|
|
|
|
return top_bit | (top_bit - 1);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-07-09 19:29:56 +00:00
|
|
|
|
/* Maximum value of integral type T, as a signed quantity. */
|
|
|
|
|
static LONGEST
|
|
|
|
|
max_of_type (struct type *t)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-07-09 19:29:56 +00:00
|
|
|
|
if (TYPE_UNSIGNED (t))
|
|
|
|
|
return (LONGEST) umax_of_size (TYPE_LENGTH (t));
|
|
|
|
|
else
|
|
|
|
|
return max_of_size (TYPE_LENGTH (t));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Minimum value of integral type T, as a signed quantity. */
|
|
|
|
|
static LONGEST
|
|
|
|
|
min_of_type (struct type *t)
|
|
|
|
|
{
|
|
|
|
|
if (TYPE_UNSIGNED (t))
|
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
return min_of_size (TYPE_LENGTH (t));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The largest value in the domain of TYPE, a discrete type, as an integer. */
|
|
|
|
|
static struct value *
|
|
|
|
|
discrete_type_high_bound (struct type *type)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
switch (TYPE_CODE (type))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
return value_from_longest (TYPE_TARGET_TYPE (type),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
TYPE_HIGH_BOUND (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case TYPE_CODE_ENUM:
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return
|
|
|
|
|
value_from_longest (type,
|
|
|
|
|
TYPE_FIELD_BITPOS (type,
|
|
|
|
|
TYPE_NFIELDS (type) - 1));
|
|
|
|
|
case TYPE_CODE_INT:
|
2004-07-09 19:29:56 +00:00
|
|
|
|
return value_from_longest (type, max_of_type (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Unexpected type in discrete_type_high_bound."));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The largest value in the domain of TYPE, a discrete type, as an integer. */
|
|
|
|
|
static struct value *
|
|
|
|
|
discrete_type_low_bound (struct type *type)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
switch (TYPE_CODE (type))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
return value_from_longest (TYPE_TARGET_TYPE (type),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
TYPE_LOW_BOUND (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case TYPE_CODE_ENUM:
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return value_from_longest (type, TYPE_FIELD_BITPOS (type, 0));
|
|
|
|
|
case TYPE_CODE_INT:
|
2004-07-09 19:29:56 +00:00
|
|
|
|
return value_from_longest (type, min_of_type (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Unexpected type in discrete_type_low_bound."));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The identity on non-range types. For range types, the underlying
|
2004-06-27 19:06:23 +00:00
|
|
|
|
non-range scalar type. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
static struct type *
|
|
|
|
|
base_type (struct type *type)
|
|
|
|
|
{
|
|
|
|
|
while (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (type == TYPE_TARGET_TYPE (type) || TYPE_TARGET_TYPE (type) == NULL)
|
|
|
|
|
return type;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type = TYPE_TARGET_TYPE (type);
|
|
|
|
|
}
|
|
|
|
|
return type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Language Selection */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* If the main program is in Ada, return language_ada, otherwise return LANG
|
|
|
|
|
(the main program is in Ada iif the adainit symbol is found).
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
MAIN_PST is not used. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
enum language
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_update_initial_language (enum language lang,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct partial_symtab *main_pst)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (lookup_minimal_symbol ("adainit", (const char *) NULL,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(struct objfile *) NULL) != NULL)
|
|
|
|
|
return language_ada;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return lang;
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
|
|
|
|
/* If the main procedure is written in Ada, then return its name.
|
|
|
|
|
The result is good until the next call. Return NULL if the main
|
|
|
|
|
procedure doesn't appear to be in Ada. */
|
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
ada_main_name (void)
|
|
|
|
|
{
|
|
|
|
|
struct minimal_symbol *msym;
|
|
|
|
|
CORE_ADDR main_program_name_addr;
|
|
|
|
|
static char main_program_name[1024];
|
2004-09-18 10:11:06 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* For Ada, the name of the main procedure is stored in a specific
|
|
|
|
|
string constant, generated by the binder. Look for that symbol,
|
|
|
|
|
extract its address, and then read that string. If we didn't find
|
|
|
|
|
that string, then most probably the main procedure is not written
|
|
|
|
|
in Ada. */
|
|
|
|
|
msym = lookup_minimal_symbol (ADA_MAIN_PROGRAM_SYMBOL_NAME, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
if (msym != NULL)
|
|
|
|
|
{
|
|
|
|
|
main_program_name_addr = SYMBOL_VALUE_ADDRESS (msym);
|
|
|
|
|
if (main_program_name_addr == 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Invalid address for Ada main program name."));
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
|
|
|
|
extract_string (main_program_name_addr, main_program_name);
|
|
|
|
|
return main_program_name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The main procedure doesn't seem to be in Ada. */
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Symbols */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Table of Ada operators and their GNAT-encoded names. Last entry is pair
|
|
|
|
|
of NULLs. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const struct ada_opname_map ada_opname_table[] = {
|
|
|
|
|
{"Oadd", "\"+\"", BINOP_ADD},
|
|
|
|
|
{"Osubtract", "\"-\"", BINOP_SUB},
|
|
|
|
|
{"Omultiply", "\"*\"", BINOP_MUL},
|
|
|
|
|
{"Odivide", "\"/\"", BINOP_DIV},
|
|
|
|
|
{"Omod", "\"mod\"", BINOP_MOD},
|
|
|
|
|
{"Orem", "\"rem\"", BINOP_REM},
|
|
|
|
|
{"Oexpon", "\"**\"", BINOP_EXP},
|
|
|
|
|
{"Olt", "\"<\"", BINOP_LESS},
|
|
|
|
|
{"Ole", "\"<=\"", BINOP_LEQ},
|
|
|
|
|
{"Ogt", "\">\"", BINOP_GTR},
|
|
|
|
|
{"Oge", "\">=\"", BINOP_GEQ},
|
|
|
|
|
{"Oeq", "\"=\"", BINOP_EQUAL},
|
|
|
|
|
{"One", "\"/=\"", BINOP_NOTEQUAL},
|
|
|
|
|
{"Oand", "\"and\"", BINOP_BITWISE_AND},
|
|
|
|
|
{"Oor", "\"or\"", BINOP_BITWISE_IOR},
|
|
|
|
|
{"Oxor", "\"xor\"", BINOP_BITWISE_XOR},
|
|
|
|
|
{"Oconcat", "\"&\"", BINOP_CONCAT},
|
|
|
|
|
{"Oabs", "\"abs\"", UNOP_ABS},
|
|
|
|
|
{"Onot", "\"not\"", UNOP_LOGICAL_NOT},
|
|
|
|
|
{"Oadd", "\"+\"", UNOP_PLUS},
|
|
|
|
|
{"Osubtract", "\"-\"", UNOP_NEG},
|
|
|
|
|
{NULL, NULL}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return non-zero if STR should be suppressed in info listings. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
is_suppressed_name (const char *str)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (strncmp (str, "_ada_", 5) == 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
str += 5;
|
|
|
|
|
if (str[0] == '_' || str[0] == '\000')
|
|
|
|
|
return 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *p;
|
|
|
|
|
const char *suffix = strstr (str, "___");
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (suffix != NULL && suffix[3] != 'X')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (suffix == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
suffix = str + strlen (str);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (p = suffix - 1; p != str; p -= 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (isupper (*p))
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
if (p[0] == 'X' && p[-1] != '_')
|
|
|
|
|
goto OK;
|
|
|
|
|
if (*p != 'O')
|
|
|
|
|
return 1;
|
|
|
|
|
for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
|
|
|
|
|
if (strncmp (ada_opname_table[i].encoded, p,
|
|
|
|
|
strlen (ada_opname_table[i].encoded)) == 0)
|
|
|
|
|
goto OK;
|
|
|
|
|
return 1;
|
|
|
|
|
OK:;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The "encoded" form of DECODED, according to GNAT conventions.
|
|
|
|
|
The result is valid until the next call to ada_encode. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
char *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_encode (const char *decoded)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static char *encoding_buffer = NULL;
|
|
|
|
|
static size_t encoding_buffer_size = 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *p;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int k;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (decoded == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
GROW_VECT (encoding_buffer, encoding_buffer_size,
|
|
|
|
|
2 * strlen (decoded) + 10);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
k = 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (p = decoded; *p != '\0'; p += 1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (!ADA_RETAIN_DOTS && *p == '.')
|
|
|
|
|
{
|
|
|
|
|
encoding_buffer[k] = encoding_buffer[k + 1] = '_';
|
|
|
|
|
k += 2;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (*p == '"')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
const struct ada_opname_map *mapping;
|
|
|
|
|
|
|
|
|
|
for (mapping = ada_opname_table;
|
2004-06-27 19:28:20 +00:00
|
|
|
|
mapping->encoded != NULL
|
|
|
|
|
&& strncmp (mapping->decoded, p,
|
|
|
|
|
strlen (mapping->decoded)) != 0; mapping += 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
;
|
|
|
|
|
if (mapping->encoded == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("invalid Ada operator name: %s"), p);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
strcpy (encoding_buffer + k, mapping->encoded);
|
|
|
|
|
k += strlen (mapping->encoded);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
encoding_buffer[k] = *p;
|
|
|
|
|
k += 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
encoding_buffer[k] = '\0';
|
|
|
|
|
return encoding_buffer;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return NAME folded to lower case, or, if surrounded by single
|
2004-06-02 09:55:36 +00:00
|
|
|
|
quotes, unfolded, but with the quotes stripped away. Result good
|
|
|
|
|
to next call. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *
|
|
|
|
|
ada_fold_name (const char *name)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static char *fold_buffer = NULL;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static size_t fold_buffer_size = 0;
|
|
|
|
|
|
|
|
|
|
int len = strlen (name);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
GROW_VECT (fold_buffer, fold_buffer_size, len + 1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (name[0] == '\'')
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
strncpy (fold_buffer, name + 1, len - 2);
|
|
|
|
|
fold_buffer[len - 2] = '\000';
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i <= len; i += 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
fold_buffer[i] = tolower (name[i]);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fold_buffer;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* decode:
|
|
|
|
|
0. Discard trailing .{DIGIT}+ or trailing ___{DIGIT}+
|
|
|
|
|
These are suffixes introduced by GNAT5 to nested subprogram
|
|
|
|
|
names, and do not serve any purpose for the debugger.
|
|
|
|
|
1. Discard final __{DIGIT}+ or $({DIGIT}+(__{DIGIT}+)*)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
2. Convert other instances of embedded "__" to `.'.
|
|
|
|
|
3. Discard leading _ada_.
|
|
|
|
|
4. Convert operator names to the appropriate quoted symbols.
|
2004-06-02 09:55:36 +00:00
|
|
|
|
5. Remove everything after first ___ if it is followed by
|
2002-06-04 15:28:49 +00:00
|
|
|
|
'X'.
|
|
|
|
|
6. Replace TK__ with __, and a trailing B or TKB with nothing.
|
|
|
|
|
7. Put symbols that should be suppressed in <...> brackets.
|
|
|
|
|
8. Remove trailing X[bn]* suffix (indicating names in package bodies).
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
The resulting string is valid until the next call of ada_decode.
|
|
|
|
|
If the string is unchanged by demangling, the original string pointer
|
|
|
|
|
is returned. */
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
|
ada_decode (const char *encoded)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i, j;
|
|
|
|
|
int len0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *p;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
char *decoded;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int at_start_name;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static char *decoding_buffer = NULL;
|
|
|
|
|
static size_t decoding_buffer_size = 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (strncmp (encoded, "_ada_", 5) == 0)
|
|
|
|
|
encoded += 5;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (encoded[0] == '_' || encoded[0] == '<')
|
2002-06-04 15:28:49 +00:00
|
|
|
|
goto Suppress;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Remove trailing .{DIGIT}+ or ___{DIGIT}+. */
|
|
|
|
|
len0 = strlen (encoded);
|
|
|
|
|
if (len0 > 1 && isdigit (encoded[len0 - 1]))
|
|
|
|
|
{
|
|
|
|
|
i = len0 - 2;
|
|
|
|
|
while (i > 0 && isdigit (encoded[i]))
|
|
|
|
|
i--;
|
|
|
|
|
if (i >= 0 && encoded[i] == '.')
|
|
|
|
|
len0 = i;
|
|
|
|
|
else if (i >= 2 && strncmp (encoded + i - 2, "___", 3) == 0)
|
|
|
|
|
len0 = i - 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Remove the ___X.* suffix if present. Do not forget to verify that
|
|
|
|
|
the suffix is located before the current "end" of ENCODED. We want
|
|
|
|
|
to avoid re-matching parts of ENCODED that have previously been
|
|
|
|
|
marked as discarded (by decrementing LEN0). */
|
|
|
|
|
p = strstr (encoded, "___");
|
|
|
|
|
if (p != NULL && p - encoded < len0 - 3)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (p[3] == 'X')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
len0 = p - encoded;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto Suppress;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
if (len0 > 3 && strncmp (encoded + len0 - 3, "TKB", 3) == 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
len0 -= 3;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (len0 > 1 && strncmp (encoded + len0 - 1, "B", 1) == 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
len0 -= 1;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Make decoded big enough for possible expansion by operator name. */
|
|
|
|
|
GROW_VECT (decoding_buffer, decoding_buffer_size, 2 * len0 + 1);
|
|
|
|
|
decoded = decoding_buffer;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (len0 > 1 && isdigit (encoded[len0 - 1]))
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
i = len0 - 2;
|
|
|
|
|
while ((i >= 0 && isdigit (encoded[i]))
|
|
|
|
|
|| (i >= 1 && encoded[i] == '_' && isdigit (encoded[i - 1])))
|
|
|
|
|
i -= 1;
|
|
|
|
|
if (i > 1 && encoded[i] == '_' && encoded[i - 1] == '_')
|
|
|
|
|
len0 = i - 1;
|
|
|
|
|
else if (encoded[i] == '$')
|
|
|
|
|
len0 = i;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (i = 0, j = 0; i < len0 && !isalpha (encoded[i]); i += 1, j += 1)
|
|
|
|
|
decoded[j] = encoded[i];
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
at_start_name = 1;
|
|
|
|
|
while (i < len0)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (at_start_name && encoded[i] == 'O')
|
|
|
|
|
{
|
|
|
|
|
int k;
|
|
|
|
|
for (k = 0; ada_opname_table[k].encoded != NULL; k += 1)
|
|
|
|
|
{
|
|
|
|
|
int op_len = strlen (ada_opname_table[k].encoded);
|
2004-06-28 18:59:14 +00:00
|
|
|
|
if ((strncmp (ada_opname_table[k].encoded + 1, encoded + i + 1,
|
|
|
|
|
op_len - 1) == 0)
|
|
|
|
|
&& !isalnum (encoded[i + op_len]))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
strcpy (decoded + j, ada_opname_table[k].decoded);
|
|
|
|
|
at_start_name = 0;
|
|
|
|
|
i += op_len;
|
|
|
|
|
j += strlen (ada_opname_table[k].decoded);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (ada_opname_table[k].encoded != NULL)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
at_start_name = 0;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (i < len0 - 4 && strncmp (encoded + i, "TK__", 4) == 0)
|
|
|
|
|
i += 2;
|
|
|
|
|
if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
|
|
|
|
|
{
|
|
|
|
|
do
|
|
|
|
|
i += 1;
|
|
|
|
|
while (i < len0 && (encoded[i] == 'b' || encoded[i] == 'n'));
|
|
|
|
|
if (i < len0)
|
|
|
|
|
goto Suppress;
|
|
|
|
|
}
|
|
|
|
|
else if (!ADA_RETAIN_DOTS
|
|
|
|
|
&& i < len0 - 2 && encoded[i] == '_' && encoded[i + 1] == '_')
|
|
|
|
|
{
|
|
|
|
|
decoded[j] = '.';
|
|
|
|
|
at_start_name = 1;
|
|
|
|
|
i += 2;
|
|
|
|
|
j += 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
decoded[j] = encoded[i];
|
|
|
|
|
i += 1;
|
|
|
|
|
j += 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
decoded[j] = '\000';
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (i = 0; decoded[i] != '\0'; i += 1)
|
|
|
|
|
if (isupper (decoded[i]) || decoded[i] == ' ')
|
2002-06-04 15:28:49 +00:00
|
|
|
|
goto Suppress;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (strcmp (decoded, encoded) == 0)
|
|
|
|
|
return encoded;
|
|
|
|
|
else
|
|
|
|
|
return decoded;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
Suppress:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
GROW_VECT (decoding_buffer, decoding_buffer_size, strlen (encoded) + 3);
|
|
|
|
|
decoded = decoding_buffer;
|
|
|
|
|
if (encoded[0] == '<')
|
|
|
|
|
strcpy (decoded, encoded);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sprintf (decoded, "<%s>", encoded);
|
|
|
|
|
return decoded;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Table for keeping permanent unique copies of decoded names. Once
|
|
|
|
|
allocated, names in this table are never released. While this is a
|
|
|
|
|
storage leak, it should not be significant unless there are massive
|
|
|
|
|
changes in the set of decoded names in successive versions of a
|
|
|
|
|
symbol table loaded during a single session. */
|
|
|
|
|
static struct htab *decoded_names_store;
|
|
|
|
|
|
|
|
|
|
/* Returns the decoded name of GSYMBOL, as for ada_decode, caching it
|
|
|
|
|
in the language-specific part of GSYMBOL, if it has not been
|
|
|
|
|
previously computed. Tries to save the decoded name in the same
|
|
|
|
|
obstack as GSYMBOL, if possible, and otherwise on the heap (so that,
|
|
|
|
|
in any case, the decoded symbol has a lifetime at least that of
|
|
|
|
|
GSYMBOL).
|
|
|
|
|
The GSYMBOL parameter is "mutable" in the C++ sense: logically
|
|
|
|
|
const, but nevertheless modified to a semantically equivalent form
|
|
|
|
|
when a decoded name is cached in it.
|
2004-06-27 19:06:23 +00:00
|
|
|
|
*/
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
char *
|
|
|
|
|
ada_decode_symbol (const struct general_symbol_info *gsymbol)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
char **resultp =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(char **) &gsymbol->language_specific.cplus_specific.demangled_name;
|
|
|
|
|
if (*resultp == NULL)
|
|
|
|
|
{
|
|
|
|
|
const char *decoded = ada_decode (gsymbol->name);
|
|
|
|
|
if (gsymbol->bfd_section != NULL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
bfd *obfd = gsymbol->bfd_section->owner;
|
|
|
|
|
if (obfd != NULL)
|
|
|
|
|
{
|
|
|
|
|
struct objfile *objf;
|
|
|
|
|
ALL_OBJFILES (objf)
|
|
|
|
|
{
|
|
|
|
|
if (obfd == objf->obfd)
|
|
|
|
|
{
|
|
|
|
|
*resultp = obsavestring (decoded, strlen (decoded),
|
|
|
|
|
&objf->objfile_obstack);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Sometimes, we can't find a corresponding objfile, in which
|
2004-06-27 19:06:23 +00:00
|
|
|
|
case, we put the result on the heap. Since we only decode
|
|
|
|
|
when needed, we hope this usually does not cause a
|
|
|
|
|
significant memory leak (FIXME). */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (*resultp == NULL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
char **slot = (char **) htab_find_slot (decoded_names_store,
|
|
|
|
|
decoded, INSERT);
|
|
|
|
|
if (*slot == NULL)
|
|
|
|
|
*slot = xstrdup (decoded);
|
|
|
|
|
*resultp = *slot;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return *resultp;
|
|
|
|
|
}
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
|
|
|
|
char *
|
|
|
|
|
ada_la_decode (const char *encoded, int options)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
return xstrdup (ada_decode (encoded));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns non-zero iff SYM_NAME matches NAME, ignoring any trailing
|
2004-06-02 09:55:36 +00:00
|
|
|
|
suffixes that encode debugging information or leading _ada_ on
|
|
|
|
|
SYM_NAME (see is_name_suffix commentary for the debugging
|
|
|
|
|
information that is ignored). If WILD, then NAME need only match a
|
|
|
|
|
suffix of SYM_NAME minus the same suffixes. Also returns 0 if
|
|
|
|
|
either argument is NULL. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_match_name (const char *sym_name, const char *name, int wild)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (sym_name == NULL || name == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
else if (wild)
|
|
|
|
|
return wild_match (name, strlen (name), sym_name);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int len_name = strlen (name);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return (strncmp (sym_name, name, len_name) == 0
|
|
|
|
|
&& is_name_suffix (sym_name + len_name))
|
|
|
|
|
|| (strncmp (sym_name, "_ada_", 5) == 0
|
|
|
|
|
&& strncmp (sym_name + 5, name, len_name) == 0
|
|
|
|
|
&& is_name_suffix (sym_name + len_name + 5));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True (non-zero) iff, in Ada mode, the symbol SYM should be
|
|
|
|
|
suppressed in info listings. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_suppress_symbol_printing (struct symbol *sym)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2003-05-14 Elena Zannoni <ezannoni@redhat.com>
* symtab.h (enum domain_enum): Rename from namespace_enum.
(UNDEF_DOMAIN, VAR_DOMAIN, STRUCT_DOMAIN, LABEL_DOMAIN,
VARIABLES_DOMAIN, FUNCTIONS_DOMAIN, TYPES_DOMAIN, METHODS_DOMAIN):
Rename from UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE,
LABEL_NAMESPACE, VARIABLES_NAMESPACE, FUNCTIONS_NAMESPACE,
TYPES_NAMESPACE, METHODS_NAMESPACE.
(SYMBOL_NAMESPACE): Rename to SYMBOL_DOMAIN.
(struct symbol, struct partial_symbol): Rename field
'namespace_enum namespace' to 'domain_enum domain'.
(PSYMBOL_NAMESPACE): Rename to PSYMBOL_DOMAIN.
Delete old define kludge for namespace.
* ada-exp.y, ada-lang.c, ada-lang.h, alpha-tdep.c, arm-tdep.c,
blockframe.c, c-exp.y, c-valprint.c, coffread.c, dbxread.c,
dwarf2read.c, dwarfread.c, f-exp.y, gdbtypes.c, gdbtypes.h,
gnu-v3-abi.c, hppa-tdep.c, hpread.c, jv-exp.y, jv-lang.c,
language.c, linespec.c, m2-exp.y, m3-nat.c, mdebugread.c,
mips-tdep.c, nlmread.c, objc-exp.y, objc-lang.c, objfiles.c,
p-exp.y, p-valprint.c, parse.c, printcmd.c, scm-lang.c, source.c,
stabsread.c, stack.c, symfile.c, symfile.h, symmisc.c, symtab.c,
valops.c, values.c, xcoffread.c, xstormy16-tdep.c: Replace all
occurrences of the above.
2003-05-12 Elena Zannoni <ezannoni@redhat.com>
* mi-mi-cmd-stack.c (list_args_or_locals): Rename VAR_NAMESPACE to
VAR_DOMAIN.
2003-05-14 17:43:20 +00:00
|
|
|
|
if (SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return is_suppressed_name (SYMBOL_LINKAGE_NAME (sym));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Arrays */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Names of MAX_ADA_DIMENS bounds in P_BOUNDS fields of array descriptors. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static char *bound_name[] = {
|
|
|
|
|
"LB0", "UB0", "LB1", "UB1", "LB2", "UB2", "LB3", "UB3",
|
2002-06-04 15:28:49 +00:00
|
|
|
|
"LB4", "UB4", "LB5", "UB5", "LB6", "UB6", "LB7", "UB7"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Maximum number of array dimensions we are prepared to handle. */
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
#define MAX_ADA_DIMENS (sizeof(bound_name) / (2*sizeof(char *)))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Like modify_field, but allows bitpos > wordlength. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2002-07-25 01:14:26 +00:00
|
|
|
|
modify_general_field (char *addr, LONGEST fieldval, int bitpos, int bitsize)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
modify_field (addr + bitpos / 8, fieldval, bitpos % 8, bitsize);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The desc_* routines return primitive portions of array descriptors
|
|
|
|
|
(fat pointers). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* The descriptor or array type, if any, indicated by TYPE; removes
|
2004-06-02 09:55:36 +00:00
|
|
|
|
level of indirection, if needed. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
desc_base_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return NULL;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (type != NULL
|
|
|
|
|
&& (TYPE_CODE (type) == TYPE_CODE_PTR
|
|
|
|
|
|| TYPE_CODE (type) == TYPE_CODE_REF))
|
2004-10-08 09:40:12 +00:00
|
|
|
|
return ada_check_typedef (TYPE_TARGET_TYPE (type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff TYPE indicates a "thin" array pointer type. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
is_thin_pntr (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2002-06-04 15:28:49 +00:00
|
|
|
|
is_suffix (ada_type_name (desc_base_type (type)), "___XUT")
|
|
|
|
|
|| is_suffix (ada_type_name (desc_base_type (type)), "___XUT___XVE");
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The descriptor type for thin pointer type TYPE. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
thin_descriptor_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *base_type = desc_base_type (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (base_type == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
if (is_suffix (ada_type_name (base_type), "___XVE"))
|
|
|
|
|
return base_type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *alt_type = ada_find_parallel_type (base_type, "___XVE");
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (alt_type == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return base_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return alt_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* A pointer to the array data for thin-pointer value VAL. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
thin_data_pntr (struct value *val)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type = value_type (val);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_PTR)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return value_cast (desc_data_type (thin_descriptor_type (type)),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_copy (val));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return value_from_longest (desc_data_type (thin_descriptor_type (type)),
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
VALUE_ADDRESS (val) + value_offset (val));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff TYPE indicates a "thick" array pointer type. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
is_thick_pntr (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
return (type != NULL && TYPE_CODE (type) == TYPE_CODE_STRUCT
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* If TYPE is the type of an array descriptor (fat or thin pointer) or a
|
|
|
|
|
pointer to one, the type of its bounds data; otherwise, NULL. */
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
desc_bounds_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *r;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
else if (is_thin_pntr (type))
|
|
|
|
|
{
|
|
|
|
|
type = thin_descriptor_type (type);
|
|
|
|
|
if (type == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return NULL;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
r = lookup_struct_elt_type (type, "BOUNDS", 1);
|
|
|
|
|
if (r != NULL)
|
2004-10-08 09:40:12 +00:00
|
|
|
|
return ada_check_typedef (r);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
|
|
|
|
|
{
|
|
|
|
|
r = lookup_struct_elt_type (type, "P_BOUNDS", 1);
|
|
|
|
|
if (r != NULL)
|
2004-10-08 09:40:12 +00:00
|
|
|
|
return ada_check_typedef (TYPE_TARGET_TYPE (ada_check_typedef (r)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If ARR is an array descriptor (fat or thin pointer), or pointer to
|
2004-06-02 09:55:36 +00:00
|
|
|
|
one, a pointer to its bounds data. Otherwise NULL. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
desc_bounds (struct value *arr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type = ada_check_typedef (value_type (arr));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (is_thin_pntr (type))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *bounds_type =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
desc_bounds_type (thin_descriptor_type (type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
LONGEST addr;
|
|
|
|
|
|
|
|
|
|
if (desc_bounds_type == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Bad GNAT array descriptor"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* NOTE: The following calculation is not really kosher, but
|
2002-08-18 18:11:12 +00:00
|
|
|
|
since desc_type is an XVE-encoded type (and shouldn't be),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
the correct calculation is a real pain. FIXME (and fix GCC). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_PTR)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
addr = value_as_long (arr);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
addr = VALUE_ADDRESS (arr) + value_offset (arr);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_from_longest (lookup_pointer_type (bounds_type),
|
|
|
|
|
addr - TYPE_LENGTH (bounds_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (is_thick_pntr (type))
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return value_struct_elt (&arr, NULL, "P_BOUNDS", NULL,
|
2004-12-12 17:06:26 +00:00
|
|
|
|
_("Bad GNAT array descriptor"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* If TYPE is the type of an array-descriptor (fat pointer), the bit
|
|
|
|
|
position of the field containing the address of the bounds data. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
fat_pntr_bounds_bitpos (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
return TYPE_FIELD_BITPOS (desc_base_type (type), 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If TYPE is the type of an array-descriptor (fat pointer), the bit
|
2004-06-02 09:55:36 +00:00
|
|
|
|
size of the field containing the address of the bounds data. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
fat_pntr_bounds_bitsize (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_FIELD_BITSIZE (type, 1) > 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return TYPE_FIELD_BITSIZE (type, 1);
|
|
|
|
|
else
|
2004-10-08 09:40:12 +00:00
|
|
|
|
return 8 * TYPE_LENGTH (ada_check_typedef (TYPE_FIELD_TYPE (type, 1)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* If TYPE is the type of an array descriptor (fat or thin pointer) or a
|
2002-06-04 15:28:49 +00:00
|
|
|
|
pointer to one, the type of its array data (a
|
2004-06-02 09:55:36 +00:00
|
|
|
|
pointer-to-array-with-no-bounds type); otherwise, NULL. Use
|
|
|
|
|
ada_type_of_array to get an array type with bounds data. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
desc_data_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* NOTE: The following is bogus; see comment in desc_bounds. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (is_thin_pntr (type))
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return lookup_pointer_type
|
|
|
|
|
(desc_base_type (TYPE_FIELD_TYPE (thin_descriptor_type (type), 1)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (is_thick_pntr (type))
|
|
|
|
|
return lookup_struct_elt_type (type, "P_ARRAY", 1);
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If ARR is an array descriptor (fat or thin pointer), a pointer to
|
|
|
|
|
its array data. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
desc_data (struct value *arr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type = value_type (arr);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (is_thin_pntr (type))
|
|
|
|
|
return thin_data_pntr (arr);
|
|
|
|
|
else if (is_thick_pntr (type))
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return value_struct_elt (&arr, NULL, "P_ARRAY", NULL,
|
2004-12-12 17:06:26 +00:00
|
|
|
|
_("Bad GNAT array descriptor"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* If TYPE is the type of an array-descriptor (fat pointer), the bit
|
2004-06-02 09:55:36 +00:00
|
|
|
|
position of the field containing the address of the data. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
fat_pntr_data_bitpos (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
return TYPE_FIELD_BITPOS (desc_base_type (type), 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If TYPE is the type of an array-descriptor (fat pointer), the bit
|
2004-06-02 09:55:36 +00:00
|
|
|
|
size of the field containing the address of the data. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
fat_pntr_data_bitsize (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
|
|
|
|
if (TYPE_FIELD_BITSIZE (type, 0) > 0)
|
|
|
|
|
return TYPE_FIELD_BITSIZE (type, 0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return TARGET_CHAR_BIT * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* If BOUNDS is an array-bounds structure (or pointer to one), return
|
2002-06-04 15:28:49 +00:00
|
|
|
|
the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bound, if WHICH is 1. The first bound is I=1. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
desc_one_bound (struct value *bounds, int i, int which)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return value_struct_elt (&bounds, NULL, bound_name[2 * i + which - 2], NULL,
|
2004-12-12 17:06:26 +00:00
|
|
|
|
_("Bad GNAT array descriptor bounds"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If BOUNDS is an array-bounds structure type, return the bit position
|
|
|
|
|
of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bound, if WHICH is 1. The first bound is I=1. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
desc_bound_bitpos (struct type *type, int i, int which)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return TYPE_FIELD_BITPOS (desc_base_type (type), 2 * i + which - 2);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If BOUNDS is an array-bounds structure type, return the bit field size
|
|
|
|
|
of the Ith lower bound stored in it, if WHICH is 0, and the Ith upper
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bound, if WHICH is 1. The first bound is I=1. */
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
desc_bound_bitsize (struct type *type, int i, int which)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_FIELD_BITSIZE (type, 2 * i + which - 2) > 0)
|
|
|
|
|
return TYPE_FIELD_BITSIZE (type, 2 * i + which - 2);
|
|
|
|
|
else
|
|
|
|
|
return 8 * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 2 * i + which - 2));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If TYPE is the type of an array-bounds structure, the type of its
|
2004-06-02 09:55:36 +00:00
|
|
|
|
Ith bound (numbering from 1). Otherwise, NULL. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
desc_index_type (struct type *type, int i)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return lookup_struct_elt_type (type, bound_name[2 * i - 2], 1);
|
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The number of index positions in the array-bounds type TYPE.
|
|
|
|
|
Return 0 if TYPE is NULL. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
desc_arity (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
|
|
|
|
if (type != NULL)
|
|
|
|
|
return TYPE_NFIELDS (type) / 2;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Non-zero iff TYPE is a simple array type (not a pointer to one) or
|
|
|
|
|
an array descriptor type (representing an unconstrained array
|
|
|
|
|
type). */
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static int
|
|
|
|
|
ada_is_direct_array_type (struct type *type)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return (TYPE_CODE (type) == TYPE_CODE_ARRAY
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|| ada_is_array_descriptor_type (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Non-zero iff TYPE is a simple array type or pointer to one. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_is_simple_array_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (TYPE_CODE (type) == TYPE_CODE_ARRAY
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| (TYPE_CODE (type) == TYPE_CODE_PTR
|
|
|
|
|
&& TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_ARRAY));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Non-zero iff TYPE belongs to a GNAT array descriptor. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_is_array_descriptor_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *data_type = desc_data_type (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2002-06-04 15:28:49 +00:00
|
|
|
|
data_type != NULL
|
|
|
|
|
&& ((TYPE_CODE (data_type) == TYPE_CODE_PTR
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& TYPE_TARGET_TYPE (data_type) != NULL
|
|
|
|
|
&& TYPE_CODE (TYPE_TARGET_TYPE (data_type)) == TYPE_CODE_ARRAY)
|
2004-06-27 19:28:20 +00:00
|
|
|
|
|| TYPE_CODE (data_type) == TYPE_CODE_ARRAY)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& desc_arity (desc_bounds_type (type)) > 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Non-zero iff type is a partially mal-formed GNAT array
|
2004-06-02 09:55:36 +00:00
|
|
|
|
descriptor. FIXME: This is to compensate for some problems with
|
2002-06-04 15:28:49 +00:00
|
|
|
|
debugging output from GNAT. Re-examine periodically to see if it
|
2004-06-02 09:55:36 +00:00
|
|
|
|
is still needed. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_bogus_array_descriptor (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2002-06-04 15:28:49 +00:00
|
|
|
|
type != NULL
|
|
|
|
|
&& TYPE_CODE (type) == TYPE_CODE_STRUCT
|
|
|
|
|
&& (lookup_struct_elt_type (type, "P_BOUNDS", 1) != NULL
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| lookup_struct_elt_type (type, "P_ARRAY", 1) != NULL)
|
|
|
|
|
&& !ada_is_array_descriptor_type (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* If ARR has a record type in the form of a standard GNAT array descriptor,
|
2002-06-04 15:28:49 +00:00
|
|
|
|
(fat pointer) returns the type of the array data described---specifically,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
a pointer-to-array type. If BOUNDS is non-zero, the bounds data are filled
|
2002-06-04 15:28:49 +00:00
|
|
|
|
in from the descriptor; otherwise, they are left unspecified. If
|
2004-06-02 09:55:36 +00:00
|
|
|
|
the ARR denotes a null array descriptor and BOUNDS is non-zero,
|
|
|
|
|
returns NULL. The result is simply the type of ARR if ARR is not
|
2002-06-04 15:28:49 +00:00
|
|
|
|
a descriptor. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
|
|
|
|
ada_type_of_array (struct value *arr, int bounds)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_packed_array_type (value_type (arr)))
|
|
|
|
|
return decode_packed_array_type (value_type (arr));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (!ada_is_array_descriptor_type (value_type (arr)))
|
|
|
|
|
return value_type (arr);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
|
|
|
|
if (!bounds)
|
|
|
|
|
return
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
ada_check_typedef (TYPE_TARGET_TYPE (desc_data_type (value_type (arr))));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *elt_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int arity;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *descriptor;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct objfile *objf = TYPE_OBJFILE (value_type (arr));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
elt_type = ada_array_element_type (value_type (arr), -1);
|
|
|
|
|
arity = ada_array_arity (value_type (arr));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (elt_type == NULL || arity == 0)
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return ada_check_typedef (value_type (arr));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
descriptor = desc_bounds (arr);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (value_as_long (descriptor) == 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return NULL;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (arity > 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
struct type *range_type = alloc_type (objf);
|
|
|
|
|
struct type *array_type = alloc_type (objf);
|
|
|
|
|
struct value *low = desc_one_bound (descriptor, arity, 0);
|
|
|
|
|
struct value *high = desc_one_bound (descriptor, arity, 1);
|
|
|
|
|
arity -= 1;
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
create_range_type (range_type, value_type (low),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(int) value_as_long (low),
|
|
|
|
|
(int) value_as_long (high));
|
|
|
|
|
elt_type = create_array_type (array_type, elt_type, range_type);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return lookup_pointer_type (elt_type);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If ARR does not represent an array, returns ARR unchanged.
|
2004-06-02 09:55:36 +00:00
|
|
|
|
Otherwise, returns either a standard GDB array with bounds set
|
|
|
|
|
appropriately or, if ARR is a non-null fat pointer, a pointer to a standard
|
|
|
|
|
GDB array. Returns NULL if ARR is a null fat pointer. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_coerce_to_simple_array_ptr (struct value *arr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_array_descriptor_type (value_type (arr)))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *arrType = ada_type_of_array (arr, 1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (arrType == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return NULL;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return value_cast (arrType, value_copy (desc_data (arr)));
|
|
|
|
|
}
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
else if (ada_is_packed_array_type (value_type (arr)))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return decode_packed_array (arr);
|
|
|
|
|
else
|
|
|
|
|
return arr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If ARR does not represent an array, returns ARR unchanged.
|
|
|
|
|
Otherwise, returns a standard GDB array describing ARR (which may
|
2004-06-02 09:55:36 +00:00
|
|
|
|
be ARR itself if it already is in the proper form). */
|
|
|
|
|
|
|
|
|
|
static struct value *
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_coerce_to_simple_array (struct value *arr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_array_descriptor_type (value_type (arr)))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *arrVal = ada_coerce_to_simple_array_ptr (arr);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (arrVal == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Bounds unavailable for null array pointer."));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return value_ind (arrVal);
|
|
|
|
|
}
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
else if (ada_is_packed_array_type (value_type (arr)))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return decode_packed_array (arr);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return arr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If TYPE represents a GNAT array type, return it translated to an
|
|
|
|
|
ordinary GDB array type (possibly with BITSIZE fields indicating
|
2004-06-02 09:55:36 +00:00
|
|
|
|
packing). For other types, is the identity. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
|
|
|
|
ada_coerce_to_simple_array_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *mark = value_mark ();
|
|
|
|
|
struct value *dummy = value_from_longest (builtin_type_long, 0);
|
|
|
|
|
struct type *result;
|
2005-02-07 Andrew Cagney <cagney@gnu.org>
* value.h (deprecated_set_value_type): Declare.
* value.c (deprecated_set_value_type): Define.
* hpacc-abi.c, gnu-v2-abi.c, cp-valprint.c: Update.
* c-valprint.c, jv-lang.c, objc-lang.c, ada-lang.c: Update.
* infcall.c, printcmd.c, valops.c, eval.c, p-exp.y: Update.
* ax-gdb.c, tracepoint.c: Update.
2005-02-07 23:51:03 +00:00
|
|
|
|
deprecated_set_value_type (dummy, type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
result = ada_type_of_array (dummy, 0);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_free_to_mark (mark);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Non-zero iff TYPE represents a standard GNAT packed-array type. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_is_packed_array_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type = desc_base_type (type);
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2002-06-04 15:28:49 +00:00
|
|
|
|
ada_type_name (type) != NULL
|
|
|
|
|
&& strstr (ada_type_name (type), "___XP") != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given that TYPE is a standard GDB array type with all bounds filled
|
|
|
|
|
in, and that the element size of its ultimate scalar constituents
|
|
|
|
|
(that is, either its elements, or, if it is an array of arrays, its
|
|
|
|
|
elements' elements, etc.) is *ELT_BITS, return an identical type,
|
|
|
|
|
but with the bit sizes of its elements (and those of any
|
|
|
|
|
constituent arrays) recorded in the BITSIZE components of its
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FIELD_BITSIZE values, and with *ELT_BITS set to its total size
|
|
|
|
|
in bits. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
packed_array_type (struct type *type, long *elt_bits)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *new_elt_type;
|
|
|
|
|
struct type *new_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
LONGEST low_bound, high_bound;
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (TYPE_CODE (type) != TYPE_CODE_ARRAY)
|
|
|
|
|
return type;
|
|
|
|
|
|
|
|
|
|
new_type = alloc_type (TYPE_OBJFILE (type));
|
2004-10-08 09:40:12 +00:00
|
|
|
|
new_elt_type = packed_array_type (ada_check_typedef (TYPE_TARGET_TYPE (type)),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
elt_bits);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
create_array_type (new_type, new_elt_type, TYPE_FIELD_TYPE (type, 0));
|
|
|
|
|
TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits;
|
|
|
|
|
TYPE_NAME (new_type) = ada_type_name (type);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (get_discrete_bounds (TYPE_FIELD_TYPE (type, 0),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&low_bound, &high_bound) < 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
low_bound = high_bound = 0;
|
|
|
|
|
if (high_bound < low_bound)
|
|
|
|
|
*elt_bits = TYPE_LENGTH (new_type) = 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
*elt_bits *= (high_bound - low_bound + 1);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
TYPE_LENGTH (new_type) =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(*elt_bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FLAGS (new_type) |= TYPE_FLAG_FIXED_INSTANCE;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return new_type;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The array type encoded by TYPE, where ada_is_packed_array_type (TYPE). */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
decode_packed_array_type (struct type *type)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct symbol *sym;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct block **blocks;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
const char *raw_name = ada_type_name (ada_check_typedef (type));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *name = (char *) alloca (strlen (raw_name) + 1);
|
|
|
|
|
char *tail = strstr (raw_name, "___XP");
|
|
|
|
|
struct type *shadow_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
long bits;
|
|
|
|
|
int i, n;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
memcpy (name, raw_name, tail - raw_name);
|
|
|
|
|
name[tail - raw_name] = '\000';
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sym = standard_lookup (name, get_selected_block (0), VAR_DOMAIN);
|
|
|
|
|
if (sym == NULL || SYMBOL_TYPE (sym) == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
lim_warning (_("could not find bounds information on packed array"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
shadow_type = SYMBOL_TYPE (sym);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (shadow_type) != TYPE_CODE_ARRAY)
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
lim_warning (_("could not understand bounds information on packed array"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (sscanf (tail + sizeof ("___XP") - 1, "%ld", &bits) != 1)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
lim_warning
|
2004-12-12 17:06:26 +00:00
|
|
|
|
(_("could not understand bit size information on packed array"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return packed_array_type (shadow_type, &bits);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Given that ARR is a struct value *indicating a GNAT packed array,
|
2002-06-04 15:28:49 +00:00
|
|
|
|
returns a simple array that denotes that array. Its type is a
|
|
|
|
|
standard GDB array type except that the BITSIZEs of the array
|
|
|
|
|
target types are set to the number of bits in each element, and the
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type length is set appropriately. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
decode_packed_array (struct value *arr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arr = ada_coerce_ref (arr);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_CODE (value_type (arr)) == TYPE_CODE_PTR)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arr = ada_value_ind (arr);
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
type = decode_packed_array_type (value_type (arr));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (type == NULL)
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("can't unpack array"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2004-10-08 09:40:12 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (BITS_BIG_ENDIAN && ada_is_modular_type (value_type (arr)))
|
2004-10-08 09:40:12 +00:00
|
|
|
|
{
|
|
|
|
|
/* This is a (right-justified) modular type representing a packed
|
|
|
|
|
array with no wrapper. In order to interpret the value through
|
|
|
|
|
the (left-justified) packed array type we just built, we must
|
|
|
|
|
first left-justify it. */
|
|
|
|
|
int bit_size, bit_pos;
|
|
|
|
|
ULONGEST mod;
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
mod = ada_modulus (value_type (arr)) - 1;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
bit_size = 0;
|
|
|
|
|
while (mod > 0)
|
|
|
|
|
{
|
|
|
|
|
bit_size += 1;
|
|
|
|
|
mod >>= 1;
|
|
|
|
|
}
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
bit_pos = HOST_CHAR_BIT * TYPE_LENGTH (value_type (arr)) - bit_size;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
arr = ada_value_primitive_packed_val (arr, NULL,
|
|
|
|
|
bit_pos / HOST_CHAR_BIT,
|
|
|
|
|
bit_pos % HOST_CHAR_BIT,
|
|
|
|
|
bit_size,
|
|
|
|
|
type);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return coerce_unspec_val_to_type (arr, type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The value of the element of packed array ARR at the ARITY indices
|
2004-06-02 09:55:36 +00:00
|
|
|
|
given in IND. ARR must be a simple array. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
value_subscript_packed (struct value *arr, int arity, struct value **ind)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int bits, elt_off, bit_off;
|
|
|
|
|
long elt_total_bit_offset;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *elt_type;
|
|
|
|
|
struct value *v;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
bits = 0;
|
|
|
|
|
elt_total_bit_offset = 0;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
elt_type = ada_check_typedef (value_type (arr));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (i = 0; i < arity; i += 1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| TYPE_FIELD_BITSIZE (elt_type, 0) == 0)
|
|
|
|
|
error
|
2004-12-12 17:06:26 +00:00
|
|
|
|
(_("attempt to do packed indexing of something other than a packed array"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
struct type *range_type = TYPE_INDEX_TYPE (elt_type);
|
|
|
|
|
LONGEST lowerbound, upperbound;
|
|
|
|
|
LONGEST idx;
|
|
|
|
|
|
|
|
|
|
if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
lim_warning (_("don't know bounds of array"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
lowerbound = upperbound = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
idx = value_as_long (value_pos_atr (ind[i]));
|
|
|
|
|
if (idx < lowerbound || idx > upperbound)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
lim_warning (_("packed array index %ld out of bounds"), (long) idx);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bits = TYPE_FIELD_BITSIZE (elt_type, 0);
|
|
|
|
|
elt_total_bit_offset += (idx - lowerbound) * bits;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
elt_type = ada_check_typedef (TYPE_TARGET_TYPE (elt_type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
elt_off = elt_total_bit_offset / HOST_CHAR_BIT;
|
|
|
|
|
bit_off = elt_total_bit_offset % HOST_CHAR_BIT;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
|
|
|
|
v = ada_value_primitive_packed_val (arr, NULL, elt_off, bit_off,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bits, elt_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (VALUE_LVAL (arr) == lval_internalvar)
|
|
|
|
|
VALUE_LVAL (v) = lval_internalvar_component;
|
|
|
|
|
else
|
|
|
|
|
VALUE_LVAL (v) = VALUE_LVAL (arr);
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Non-zero iff TYPE includes negative integer values. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
has_negatives (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
switch (TYPE_CODE (type))
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
case TYPE_CODE_INT:
|
|
|
|
|
return !TYPE_UNSIGNED (type);
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
return TYPE_LOW_BOUND (type) < 0;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Create a new value of type TYPE from the contents of OBJ starting
|
|
|
|
|
at byte OFFSET, and bit offset BIT_OFFSET within that byte,
|
|
|
|
|
proceeding for BIT_SIZE bits. If OBJ is an lval in memory, then
|
2004-06-02 09:55:36 +00:00
|
|
|
|
assigning through the result will set the field fetched from.
|
|
|
|
|
VALADDR is ignored unless OBJ is NULL, in which case,
|
|
|
|
|
VALADDR+OFFSET must address the start of storage containing the
|
|
|
|
|
packed value. The value returned in this case is never an lval.
|
|
|
|
|
Assumes 0 <= BIT_OFFSET < HOST_CHAR_BIT. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
ada_value_primitive_packed_val (struct value *obj, const gdb_byte *valaddr,
|
2005-01-28 Andrew Cagney <cagney@gnu.org>
* language.h (struct language_defn): Make la_val_print's buffer
parameter a const bfd_byte.
* cp-valprint.c (cp_print_value_fields, cp_print_value): Update.
* ada-lang.c (ada_aligned_value_addr)
(ada_value_primitive_packed_val, ada_which_variant_applies): Update.
* valprint.c (val_print_array_elements): Update.
* valprint.h (val_print_array_elements): Update.
* ada-lang.h (ada_val_print, ada_aligned_value_addr)
(ada_value_primitive_packed_val, ada_which_variant_applies): Update.
* ada-valprint.c (ada_val_print, struct ada_val_print_args)
(ada_val_print_1, ada_print_floating, printable_val_type)
(print_record, val_print_packed_array_elements)
(print_field_values, print_variant_part): Update.
* c-lang.h (c_val_print, cp_print_value_fields): Update.
* c-valprint.c (c_val_print): Update.
* f-lang.h (f_val_print): Update.
* f-valprint.c (f_val_print, f77_print_array_1)
(f77_print_array): Update.
* jv-lang.h (java_val_print): Update.
* jv-valprint.c (java_print_value_fields, java_val_print): Update.
* language.c (unk_lang_val_print): Update.
* m2-lang.h (m2_val_print): Update.
* m2-valprint.c (m2_val_print): Update.
* p-lang.h (pascal_val_print): Update.
(pascal_object_print_value_fields): Update.
* p-valprint.c (pascal_val_print)
(pascal_object_print_value_fields, pascal_object_print_value)
(pascal_object_print_value): Update.
* scm-lang.h (scm_val_print): Update.
* scm-valprint.c (scm_val_print): Update.
* value.h (val_print): Update.
2005-01-29 01:59:31 +00:00
|
|
|
|
long offset, int bit_offset, int bit_size,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *v;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int src, /* Index into the source area */
|
|
|
|
|
targ, /* Index into the target area */
|
|
|
|
|
srcBitsLeft, /* Number of source bits left to move */
|
|
|
|
|
nsrc, ntarg, /* Number of source and target bytes */
|
|
|
|
|
unusedLS, /* Number of bits in next significant
|
|
|
|
|
byte of source that are unused */
|
|
|
|
|
accumSize; /* Number of meaningful bits in accum */
|
|
|
|
|
unsigned char *bytes; /* First byte containing data to unpack */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
unsigned char *unpacked;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
unsigned long accum; /* Staging area for bits being transferred */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
unsigned char sign;
|
|
|
|
|
int len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Transmit bytes from least to most significant; delta is the direction
|
|
|
|
|
the indices move. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int delta = BITS_BIG_ENDIAN ? -1 : 1;
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (obj == NULL)
|
|
|
|
|
{
|
|
|
|
|
v = allocate_value (type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
bytes = (unsigned char *) (valaddr + offset);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2005-02-02 22:34:36 +00:00
|
|
|
|
else if (value_lazy (obj))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
v = value_at (type,
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
VALUE_ADDRESS (obj) + value_offset (obj) + offset);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
bytes = (unsigned char *) alloca (len);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
read_memory (VALUE_ADDRESS (v), bytes, len);
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
v = allocate_value (type);
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
bytes = (unsigned char *) value_contents (obj) + offset;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
|
|
|
|
if (obj != NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
VALUE_LVAL (v) = VALUE_LVAL (obj);
|
|
|
|
|
if (VALUE_LVAL (obj) == lval_internalvar)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
VALUE_LVAL (v) = lval_internalvar_component;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
VALUE_ADDRESS (v) = VALUE_ADDRESS (obj) + value_offset (obj) + offset;
|
2005-02-08 04:57:03 +00:00
|
|
|
|
set_value_bitpos (v, bit_offset + value_bitpos (obj));
|
|
|
|
|
set_value_bitsize (v, bit_size);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (value_bitpos (v) >= HOST_CHAR_BIT)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
VALUE_ADDRESS (v) += 1;
|
2005-02-08 04:57:03 +00:00
|
|
|
|
set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2005-02-08 04:57:03 +00:00
|
|
|
|
set_value_bitsize (v, bit_size);
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
unpacked = (unsigned char *) value_contents (v);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
srcBitsLeft = bit_size;
|
|
|
|
|
nsrc = len;
|
|
|
|
|
ntarg = TYPE_LENGTH (type);
|
|
|
|
|
sign = 0;
|
|
|
|
|
if (bit_size == 0)
|
|
|
|
|
{
|
|
|
|
|
memset (unpacked, 0, TYPE_LENGTH (type));
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
else if (BITS_BIG_ENDIAN)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
src = len - 1;
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (has_negatives (type)
|
|
|
|
|
&& ((bytes[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sign = ~0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
|
|
|
|
unusedLS =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
|
|
|
|
|
% HOST_CHAR_BIT;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
switch (TYPE_CODE (type))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_ARRAY:
|
|
|
|
|
case TYPE_CODE_UNION:
|
|
|
|
|
case TYPE_CODE_STRUCT:
|
|
|
|
|
/* Non-scalar values must be aligned at a byte boundary... */
|
|
|
|
|
accumSize =
|
|
|
|
|
(HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT;
|
|
|
|
|
/* ... And are placed at the beginning (most-significant) bytes
|
|
|
|
|
of the target. */
|
|
|
|
|
targ = src;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
accumSize = 0;
|
|
|
|
|
targ = TYPE_LENGTH (type) - 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
|
|
|
|
|
|
|
|
|
|
src = targ = 0;
|
|
|
|
|
unusedLS = bit_offset;
|
|
|
|
|
accumSize = 0;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (has_negatives (type) && (bytes[len - 1] & (1 << sign_bit_offset)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sign = ~0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
accum = 0;
|
|
|
|
|
while (nsrc > 0)
|
|
|
|
|
{
|
|
|
|
|
/* Mask for removing bits of the next source byte that are not
|
2004-06-02 09:55:36 +00:00
|
|
|
|
part of the value. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
unsigned int unusedMSMask =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(1 << (srcBitsLeft >= HOST_CHAR_BIT ? HOST_CHAR_BIT : srcBitsLeft)) -
|
|
|
|
|
1;
|
|
|
|
|
/* Sign-extend bits for this byte. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
unsigned int signMask = sign & ~unusedMSMask;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
accum |=
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(((bytes[src] >> unusedLS) & unusedMSMask) | signMask) << accumSize;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
accumSize += HOST_CHAR_BIT - unusedLS;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (accumSize >= HOST_CHAR_BIT)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT);
|
|
|
|
|
accumSize -= HOST_CHAR_BIT;
|
|
|
|
|
accum >>= HOST_CHAR_BIT;
|
|
|
|
|
ntarg -= 1;
|
|
|
|
|
targ += delta;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
srcBitsLeft -= HOST_CHAR_BIT - unusedLS;
|
|
|
|
|
unusedLS = 0;
|
|
|
|
|
nsrc -= 1;
|
|
|
|
|
src += delta;
|
|
|
|
|
}
|
|
|
|
|
while (ntarg > 0)
|
|
|
|
|
{
|
|
|
|
|
accum |= sign << accumSize;
|
|
|
|
|
unpacked[targ] = accum & ~(~0L << HOST_CHAR_BIT);
|
|
|
|
|
accumSize -= HOST_CHAR_BIT;
|
|
|
|
|
accum >>= HOST_CHAR_BIT;
|
|
|
|
|
ntarg -= 1;
|
|
|
|
|
targ += delta;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return v;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* Move N bits from SOURCE, starting at bit offset SRC_OFFSET to
|
|
|
|
|
TARGET, starting at bit offset TARG_OFFSET. SOURCE and TARGET must
|
2004-06-02 09:55:36 +00:00
|
|
|
|
not overlap. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static void
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
move_bits (gdb_byte *target, int targ_offset, const gdb_byte *source,
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
int src_offset, int n)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int accum, mask;
|
|
|
|
|
int accum_bits, chunk_size;
|
|
|
|
|
|
|
|
|
|
target += targ_offset / HOST_CHAR_BIT;
|
|
|
|
|
targ_offset %= HOST_CHAR_BIT;
|
|
|
|
|
source += src_offset / HOST_CHAR_BIT;
|
|
|
|
|
src_offset %= HOST_CHAR_BIT;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (BITS_BIG_ENDIAN)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
accum = (unsigned char) *source;
|
|
|
|
|
source += 1;
|
|
|
|
|
accum_bits = HOST_CHAR_BIT - src_offset;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (n > 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int unused_right;
|
|
|
|
|
accum = (accum << HOST_CHAR_BIT) + (unsigned char) *source;
|
|
|
|
|
accum_bits += HOST_CHAR_BIT;
|
|
|
|
|
source += 1;
|
|
|
|
|
chunk_size = HOST_CHAR_BIT - targ_offset;
|
|
|
|
|
if (chunk_size > n)
|
|
|
|
|
chunk_size = n;
|
|
|
|
|
unused_right = HOST_CHAR_BIT - (chunk_size + targ_offset);
|
|
|
|
|
mask = ((1 << chunk_size) - 1) << unused_right;
|
|
|
|
|
*target =
|
|
|
|
|
(*target & ~mask)
|
|
|
|
|
| ((accum >> (accum_bits - chunk_size - unused_right)) & mask);
|
|
|
|
|
n -= chunk_size;
|
|
|
|
|
accum_bits -= chunk_size;
|
|
|
|
|
target += 1;
|
|
|
|
|
targ_offset = 0;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
accum = (unsigned char) *source >> src_offset;
|
|
|
|
|
source += 1;
|
|
|
|
|
accum_bits = HOST_CHAR_BIT - src_offset;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (n > 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
accum = accum + ((unsigned char) *source << accum_bits);
|
|
|
|
|
accum_bits += HOST_CHAR_BIT;
|
|
|
|
|
source += 1;
|
|
|
|
|
chunk_size = HOST_CHAR_BIT - targ_offset;
|
|
|
|
|
if (chunk_size > n)
|
|
|
|
|
chunk_size = n;
|
|
|
|
|
mask = ((1 << chunk_size) - 1) << targ_offset;
|
|
|
|
|
*target = (*target & ~mask) | ((accum << targ_offset) & mask);
|
|
|
|
|
n -= chunk_size;
|
|
|
|
|
accum_bits -= chunk_size;
|
|
|
|
|
accum >>= chunk_size;
|
|
|
|
|
target += 1;
|
|
|
|
|
targ_offset = 0;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Store the contents of FROMVAL into the location of TOVAL.
|
|
|
|
|
Return a new value with the location of TOVAL and contents of
|
|
|
|
|
FROMVAL. Handles assignment into packed fields that have
|
2004-06-02 09:55:36 +00:00
|
|
|
|
floating-point or non-scalar types. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
ada_value_assign (struct value *toval, struct value *fromval)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type = value_type (toval);
|
|
|
|
|
int bits = value_bitsize (toval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2005-02-08 00:25:31 +00:00
|
|
|
|
if (!deprecated_value_modifiable (toval))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Left operand of assignment is not a modifiable lvalue."));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-11-10 Andrew Cagney <cagney@gnu.org>
* value.h (COERCE_REF, COERCE_ARRAY, COERCE_NUMBER, COERCE_ENUM)
(coerce_ref, coerce_array, coerce_number, coerce_enum): Replace
macros with function declarations.
* value.c (coerce_ref, coerce_array, coerce_number)
(coerce_enum): New functions.
(value_as_long, value_as_address): Update.
* ada-lang.c (ada_coerce_ref, ada_value_binop)
(ada_evaluate_subexp, ada_value_assign, ada_value_struct_elt): Update.
* jv-lang.c (evaluate_subexp_java): Update.
* valarith.c (value_less, value_neg, value_complement)
(value_binop, value_add, value_subscript, value_x_binop)
(value_logical_not, value_sub): Update.
* valops.c (check_field, value_struct_elt, value_ind)
(value_find_oload_method_list, value_cast, value_assign): Update.
* eval.c (evaluate_subexp_standard): Update.
2004-11-10 18:52:25 +00:00
|
|
|
|
toval = coerce_ref (toval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (VALUE_LVAL (toval) == lval_memory
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& bits > 0
|
2002-08-18 18:11:12 +00:00
|
|
|
|
&& (TYPE_CODE (type) == TYPE_CODE_FLT
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| TYPE_CODE (type) == TYPE_CODE_STRUCT))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
int len = (value_bitpos (toval)
|
|
|
|
|
+ bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *buffer = (char *) alloca (len);
|
|
|
|
|
struct value *val;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_FLT)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
fromval = value_cast (type, fromval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
read_memory (VALUE_ADDRESS (toval) + value_offset (toval), buffer, len);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (BITS_BIG_ENDIAN)
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
move_bits (buffer, value_bitpos (toval),
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
value_contents (fromval),
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
TYPE_LENGTH (value_type (fromval)) * TARGET_CHAR_BIT -
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bits, bits);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
move_bits (buffer, value_bitpos (toval), value_contents (fromval),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
0, bits);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
write_memory (VALUE_ADDRESS (toval) + value_offset (toval), buffer,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
len);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
val = value_copy (toval);
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
memcpy (value_contents_raw (val), value_contents (fromval),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_LENGTH (type));
|
2005-02-07 Andrew Cagney <cagney@gnu.org>
* value.h (deprecated_set_value_type): Declare.
* value.c (deprecated_set_value_type): Define.
* hpacc-abi.c, gnu-v2-abi.c, cp-valprint.c: Update.
* c-valprint.c, jv-lang.c, objc-lang.c, ada-lang.c: Update.
* infcall.c, printcmd.c, valops.c, eval.c, p-exp.y: Update.
* ax-gdb.c, tracepoint.c: Update.
2005-02-07 23:51:03 +00:00
|
|
|
|
deprecated_set_value_type (val, type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return value_assign (toval, fromval);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The value of the element of array ARR at the ARITY indices given in IND.
|
|
|
|
|
ARR may be either a simple array, GNAT array descriptor, or pointer
|
2002-06-04 15:28:49 +00:00
|
|
|
|
thereto. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_value_subscript (struct value *arr, int arity, struct value **ind)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int k;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *elt;
|
|
|
|
|
struct type *elt_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
elt = ada_coerce_to_simple_array (arr);
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
elt_type = ada_check_typedef (value_type (elt));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_CODE (elt_type) == TYPE_CODE_ARRAY
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& TYPE_FIELD_BITSIZE (elt_type, 0) > 0)
|
|
|
|
|
return value_subscript_packed (elt, arity, ind);
|
|
|
|
|
|
|
|
|
|
for (k = 0; k < arity; k += 1)
|
|
|
|
|
{
|
|
|
|
|
if (TYPE_CODE (elt_type) != TYPE_CODE_ARRAY)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("too many subscripts (%d expected)"), k);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
elt = value_subscript (elt, value_pos_atr (ind[k]));
|
|
|
|
|
}
|
|
|
|
|
return elt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming ARR is a pointer to a standard GDB array of type TYPE, the
|
|
|
|
|
value of the element of *ARR at the ARITY indices given in
|
2004-06-02 09:55:36 +00:00
|
|
|
|
IND. Does not read the entire array into memory. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_value_ptr_subscript (struct value *arr, struct type *type, int arity,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value **ind)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int k;
|
|
|
|
|
|
|
|
|
|
for (k = 0; k < arity; k += 1)
|
|
|
|
|
{
|
|
|
|
|
LONGEST lwb, upb;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *idx;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (type) != TYPE_CODE_ARRAY)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("too many subscripts (%d expected)"), k);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
arr = value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_copy (arr));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
get_discrete_bounds (TYPE_INDEX_TYPE (type), &lwb, &upb);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
idx = value_pos_atr (ind[k]);
|
|
|
|
|
if (lwb != 0)
|
|
|
|
|
idx = value_sub (idx, value_from_longest (builtin_type_int, lwb));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
arr = value_add (arr, idx);
|
|
|
|
|
type = TYPE_TARGET_TYPE (type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return value_ind (arr);
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-01 10:30:57 +00:00
|
|
|
|
/* Given that ARRAY_PTR is a pointer or reference to an array of type TYPE (the
|
|
|
|
|
actual type of ARRAY_PTR is ignored), returns a reference to
|
|
|
|
|
the Ada slice of HIGH-LOW+1 elements starting at index LOW. The lower
|
|
|
|
|
bound of this array is LOW, as per Ada rules. */
|
|
|
|
|
static struct value *
|
2004-09-18 10:11:06 +00:00
|
|
|
|
ada_value_slice_ptr (struct value *array_ptr, struct type *type,
|
2004-07-01 10:30:57 +00:00
|
|
|
|
int low, int high)
|
|
|
|
|
{
|
2004-09-18 10:11:06 +00:00
|
|
|
|
CORE_ADDR base = value_as_address (array_ptr)
|
2004-07-01 10:30:57 +00:00
|
|
|
|
+ ((low - TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type)))
|
|
|
|
|
* TYPE_LENGTH (TYPE_TARGET_TYPE (type)));
|
2004-09-18 10:11:06 +00:00
|
|
|
|
struct type *index_type =
|
|
|
|
|
create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (type)),
|
2004-07-01 10:30:57 +00:00
|
|
|
|
low, high);
|
2004-09-18 10:11:06 +00:00
|
|
|
|
struct type *slice_type =
|
2004-07-01 10:30:57 +00:00
|
|
|
|
create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type);
|
|
|
|
|
return value_from_pointer (lookup_reference_type (slice_type), base);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct value *
|
|
|
|
|
ada_value_slice (struct value *array, int low, int high)
|
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type = value_type (array);
|
2004-09-18 10:11:06 +00:00
|
|
|
|
struct type *index_type =
|
2004-07-01 10:30:57 +00:00
|
|
|
|
create_range_type (NULL, TYPE_INDEX_TYPE (type), low, high);
|
2004-09-18 10:11:06 +00:00
|
|
|
|
struct type *slice_type =
|
2004-07-01 10:30:57 +00:00
|
|
|
|
create_array_type (NULL, TYPE_TARGET_TYPE (type), index_type);
|
2004-09-18 10:11:06 +00:00
|
|
|
|
return value_cast (slice_type, value_slice (array, low, high - low + 1));
|
2004-07-01 10:30:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* If type is a record type in the form of a standard GNAT array
|
|
|
|
|
descriptor, returns the number of dimensions for type. If arr is a
|
|
|
|
|
simple array, returns the number of "array of"s that prefix its
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type designation. Otherwise, returns 0. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_array_arity (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int arity;
|
|
|
|
|
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
|
|
|
|
arity = 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return desc_arity (desc_bounds_type (type));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
|
|
|
|
while (TYPE_CODE (type) == TYPE_CODE_ARRAY)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arity += 1;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (TYPE_TARGET_TYPE (type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return arity;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If TYPE is a record type in the form of a standard GNAT array
|
|
|
|
|
descriptor or a simple array type, returns the element type for
|
|
|
|
|
TYPE after indexing by NINDICES indices, or by all indices if
|
2004-06-02 09:55:36 +00:00
|
|
|
|
NINDICES is -1. Otherwise, returns NULL. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
|
|
|
|
ada_array_element_type (struct type *type, int nindices)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int k;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *p_array_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
p_array_type = desc_data_type (type);
|
|
|
|
|
|
|
|
|
|
k = ada_array_arity (type);
|
|
|
|
|
if (k == 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return NULL;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Initially p_array_type = elt_type(*)[]...(k times)...[]. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (nindices >= 0 && k > nindices)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
k = nindices;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
p_array_type = TYPE_TARGET_TYPE (p_array_type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (k > 0 && p_array_type != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
p_array_type = ada_check_typedef (TYPE_TARGET_TYPE (p_array_type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
k -= 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return p_array_type;
|
|
|
|
|
}
|
|
|
|
|
else if (TYPE_CODE (type) == TYPE_CODE_ARRAY)
|
|
|
|
|
{
|
|
|
|
|
while (nindices != 0 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
type = TYPE_TARGET_TYPE (type);
|
|
|
|
|
nindices -= 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The type of nth index in arrays of given type (n numbering from 1).
|
|
|
|
|
Does not examine memory. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
|
|
|
|
ada_index_type (struct type *type, int n)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *result_type;
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
type = desc_base_type (type);
|
|
|
|
|
|
|
|
|
|
if (n > ada_array_arity (type))
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ada_is_simple_array_type (type))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 1; i < n; i += 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type = TYPE_TARGET_TYPE (type);
|
|
|
|
|
result_type = TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, 0));
|
|
|
|
|
/* FIXME: The stabs type r(0,0);bound;bound in an array type
|
|
|
|
|
has a target type of TYPE_CODE_UNDEF. We compensate here, but
|
2004-06-27 19:06:23 +00:00
|
|
|
|
perhaps stabsread.c would make more sense. */
|
|
|
|
|
if (result_type == NULL || TYPE_CODE (result_type) == TYPE_CODE_UNDEF)
|
|
|
|
|
result_type = builtin_type_int;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return result_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return desc_index_type (desc_bounds_type (type), n);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given that arr is an array type, returns the lower bound of the
|
|
|
|
|
Nth index (numbering from 1) if WHICH is 0, and the upper bound if
|
2004-06-02 09:55:36 +00:00
|
|
|
|
WHICH is 1. This returns bounds 0 .. -1 if ARR_TYPE is an
|
|
|
|
|
array-descriptor type. If TYPEP is non-null, *TYPEP is set to the
|
|
|
|
|
bounds type. It works for other arrays with bounds supplied by
|
|
|
|
|
run-time quantities other than discriminants. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
LONGEST
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_array_bound_from_type (struct type * arr_type, int n, int which,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type ** typep)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type;
|
|
|
|
|
struct type *index_type_desc;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (ada_is_packed_array_type (arr_type))
|
|
|
|
|
arr_type = decode_packed_array_type (arr_type);
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (arr_type == NULL || !ada_is_simple_array_type (arr_type))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (typep != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*typep = builtin_type_int;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return (LONGEST) - which;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (arr_type) == TYPE_CODE_PTR)
|
|
|
|
|
type = TYPE_TARGET_TYPE (arr_type);
|
|
|
|
|
else
|
|
|
|
|
type = arr_type;
|
|
|
|
|
|
|
|
|
|
index_type_desc = ada_find_parallel_type (type, "___XA");
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (index_type_desc == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *range_type;
|
|
|
|
|
struct type *index_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (n > 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
type = TYPE_TARGET_TYPE (type);
|
|
|
|
|
n -= 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
range_type = TYPE_INDEX_TYPE (type);
|
|
|
|
|
index_type = TYPE_TARGET_TYPE (range_type);
|
|
|
|
|
if (TYPE_CODE (index_type) == TYPE_CODE_UNDEF)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
index_type = builtin_type_long;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (typep != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*typep = index_type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(LONGEST) (which == 0
|
|
|
|
|
? TYPE_LOW_BOUND (range_type)
|
|
|
|
|
: TYPE_HIGH_BOUND (range_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *index_type =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, n - 1),
|
|
|
|
|
NULL, TYPE_OBJFILE (arr_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (typep != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*typep = TYPE_TARGET_TYPE (index_type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(LONGEST) (which == 0
|
|
|
|
|
? TYPE_LOW_BOUND (index_type)
|
|
|
|
|
: TYPE_HIGH_BOUND (index_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given that arr is an array value, returns the lower bound of the
|
|
|
|
|
nth index (numbering from 1) if which is 0, and the upper bound if
|
2004-06-02 09:55:36 +00:00
|
|
|
|
which is 1. This routine will also work for arrays with bounds
|
|
|
|
|
supplied by run-time quantities other than discriminants. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
2002-09-08 17:44:22 +00:00
|
|
|
|
ada_array_bound (struct value *arr, int n, int which)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *arr_type = value_type (arr);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (ada_is_packed_array_type (arr_type))
|
|
|
|
|
return ada_array_bound (decode_packed_array (arr), n, which);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (ada_is_simple_array_type (arr_type))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
LONGEST v = ada_array_bound_from_type (arr_type, n, which, &type);
|
|
|
|
|
return value_from_longest (type, v);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return desc_one_bound (desc_bounds (arr), n, which);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given that arr is an array value, returns the length of the
|
|
|
|
|
nth index. This routine will also work for arrays with bounds
|
2004-06-02 09:55:36 +00:00
|
|
|
|
supplied by run-time quantities other than discriminants.
|
|
|
|
|
Does not work for arrays indexed by enumeration types with representation
|
|
|
|
|
clauses at the moment. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_array_length (struct value *arr, int n)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *arr_type = ada_check_typedef (value_type (arr));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (ada_is_packed_array_type (arr_type))
|
|
|
|
|
return ada_array_length (decode_packed_array (arr), n);
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ada_is_simple_array_type (arr_type))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
LONGEST v =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_array_bound_from_type (arr_type, n, 1, &type) -
|
|
|
|
|
ada_array_bound_from_type (arr_type, n, 0, NULL) + 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return value_from_longest (type, v);
|
|
|
|
|
}
|
|
|
|
|
else
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
value_from_longest (builtin_type_int,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_as_long (desc_one_bound (desc_bounds (arr),
|
|
|
|
|
n, 1))
|
|
|
|
|
- value_as_long (desc_one_bound (desc_bounds (arr),
|
|
|
|
|
n, 0)) + 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* An empty array whose type is that of ARR_TYPE (an array type),
|
|
|
|
|
with bounds LOW to LOW-1. */
|
|
|
|
|
|
|
|
|
|
static struct value *
|
|
|
|
|
empty_array (struct type *arr_type, int low)
|
|
|
|
|
{
|
2004-09-18 10:11:06 +00:00
|
|
|
|
struct type *index_type =
|
2004-07-01 10:30:57 +00:00
|
|
|
|
create_range_type (NULL, TYPE_TARGET_TYPE (TYPE_INDEX_TYPE (arr_type)),
|
|
|
|
|
low, low - 1);
|
|
|
|
|
struct type *elt_type = ada_array_element_type (arr_type, 1);
|
|
|
|
|
return allocate_value (create_array_type (NULL, elt_type, index_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Name resolution */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The "decoded" name for the user-definable Ada operator corresponding
|
|
|
|
|
to OP. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static const char *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_decoded_op_name (enum exp_opcode op)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (ada_opname_table[i].op == op)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_opname_table[i].decoded;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Could not find operator name for opcode"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Same as evaluate_type (*EXP), but resolves ambiguous symbol
|
|
|
|
|
references (marked by OP_VAR_VALUE nodes in which the symbol has an
|
|
|
|
|
undefined namespace) and converts operators that are
|
|
|
|
|
user-defined into appropriate function calls. If CONTEXT_TYPE is
|
2002-06-04 15:28:49 +00:00
|
|
|
|
non-null, it provides a preferred result type [at the moment, only
|
|
|
|
|
type void has any effect---causing procedures to be preferred over
|
|
|
|
|
functions in calls]. A null CONTEXT_TYPE indicates that a non-void
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return type is preferred. May change (expand) *EXP. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static void
|
|
|
|
|
resolve (struct expression **expp, int void_context_p)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int pc;
|
|
|
|
|
pc = 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
resolve_subexp (expp, &pc, 1, void_context_p ? builtin_type_void : NULL);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Resolve the operator of the subexpression beginning at
|
|
|
|
|
position *POS of *EXPP. "Resolving" consists of replacing
|
|
|
|
|
the symbols that have undefined namespaces in OP_VAR_VALUE nodes
|
|
|
|
|
with their resolutions, replacing built-in operators with
|
|
|
|
|
function calls to user-defined operators, where appropriate, and,
|
|
|
|
|
when DEPROCEDURE_P is non-zero, converting function-valued variables
|
|
|
|
|
into parameterless calls. May expand *EXPP. The CONTEXT_TYPE functions
|
|
|
|
|
are as in ada_resolve, above. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
resolve_subexp (struct expression **expp, int *pos, int deprocedure_p,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct type *context_type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int pc = *pos;
|
|
|
|
|
int i;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct expression *exp; /* Convenience: == *expp. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
enum exp_opcode op = (*expp)->elts[pc].opcode;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value **argvec; /* Vector of operand types (alloca'ed). */
|
|
|
|
|
int nargs; /* Number of operands. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
argvec = NULL;
|
|
|
|
|
nargs = 0;
|
|
|
|
|
exp = *expp;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Pass one: resolve operands, saving their types and updating *pos. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
switch (op)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case OP_FUNCALL:
|
|
|
|
|
if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
|
|
|
|
|
*pos += 7;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*pos += 3;
|
|
|
|
|
resolve_subexp (expp, pos, 0, NULL);
|
|
|
|
|
}
|
|
|
|
|
nargs = longest_to_int (exp->elts[pc + 1].longconst);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_QUAL:
|
|
|
|
|
*pos += 3;
|
|
|
|
|
resolve_subexp (expp, pos, 1, exp->elts[pc + 1].type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case UNOP_ADDR:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*pos += 1;
|
|
|
|
|
resolve_subexp (expp, pos, 0, NULL);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_ATR_MODULUS:
|
|
|
|
|
*pos += 4;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_ATR_SIZE:
|
|
|
|
|
case OP_ATR_TAG:
|
|
|
|
|
*pos += 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
nargs = 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_ATR_FIRST:
|
|
|
|
|
case OP_ATR_LAST:
|
|
|
|
|
case OP_ATR_LENGTH:
|
|
|
|
|
case OP_ATR_POS:
|
|
|
|
|
case OP_ATR_VAL:
|
2002-06-04 15:28:49 +00:00
|
|
|
|
*pos += 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
nargs = 2;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_ATR_MIN:
|
|
|
|
|
case OP_ATR_MAX:
|
|
|
|
|
*pos += 1;
|
|
|
|
|
nargs = 3;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BINOP_ASSIGN:
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value *arg1;
|
|
|
|
|
|
|
|
|
|
*pos += 1;
|
|
|
|
|
arg1 = resolve_subexp (expp, pos, 0, NULL);
|
|
|
|
|
if (arg1 == NULL)
|
|
|
|
|
resolve_subexp (expp, pos, 1, NULL);
|
|
|
|
|
else
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
resolve_subexp (expp, pos, 1, value_type (arg1));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_CAST:
|
|
|
|
|
case UNOP_IN_RANGE:
|
|
|
|
|
*pos += 3;
|
|
|
|
|
nargs = 1;
|
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case BINOP_ADD:
|
|
|
|
|
case BINOP_SUB:
|
|
|
|
|
case BINOP_MUL:
|
|
|
|
|
case BINOP_DIV:
|
|
|
|
|
case BINOP_REM:
|
|
|
|
|
case BINOP_MOD:
|
|
|
|
|
case BINOP_EXP:
|
|
|
|
|
case BINOP_CONCAT:
|
|
|
|
|
case BINOP_LOGICAL_AND:
|
|
|
|
|
case BINOP_LOGICAL_OR:
|
|
|
|
|
case BINOP_BITWISE_AND:
|
|
|
|
|
case BINOP_BITWISE_IOR:
|
|
|
|
|
case BINOP_BITWISE_XOR:
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case BINOP_EQUAL:
|
|
|
|
|
case BINOP_NOTEQUAL:
|
|
|
|
|
case BINOP_LESS:
|
|
|
|
|
case BINOP_GTR:
|
|
|
|
|
case BINOP_LEQ:
|
|
|
|
|
case BINOP_GEQ:
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case BINOP_REPEAT:
|
|
|
|
|
case BINOP_SUBSCRIPT:
|
|
|
|
|
case BINOP_COMMA:
|
|
|
|
|
*pos += 1;
|
|
|
|
|
nargs = 2;
|
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_NEG:
|
|
|
|
|
case UNOP_PLUS:
|
|
|
|
|
case UNOP_LOGICAL_NOT:
|
|
|
|
|
case UNOP_ABS:
|
|
|
|
|
case UNOP_IND:
|
|
|
|
|
*pos += 1;
|
|
|
|
|
nargs = 1;
|
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case OP_LONG:
|
|
|
|
|
case OP_DOUBLE:
|
|
|
|
|
case OP_VAR_VALUE:
|
|
|
|
|
*pos += 4;
|
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case OP_TYPE:
|
|
|
|
|
case OP_BOOL:
|
|
|
|
|
case OP_LAST:
|
|
|
|
|
case OP_REGISTER:
|
|
|
|
|
case OP_INTERNALVAR:
|
|
|
|
|
*pos += 3;
|
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_MEMVAL:
|
|
|
|
|
*pos += 3;
|
|
|
|
|
nargs = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case STRUCTOP_STRUCT:
|
|
|
|
|
*pos += 4 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
|
|
|
|
|
nargs = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_STRING:
|
2004-07-01 10:11:11 +00:00
|
|
|
|
(*pos) += 3
|
|
|
|
|
+ BYTES_TO_EXP_ELEM (longest_to_int (exp->elts[pc + 1].longconst)
|
|
|
|
|
+ 1);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TERNOP_SLICE:
|
|
|
|
|
case TERNOP_IN_RANGE:
|
|
|
|
|
*pos += 1;
|
|
|
|
|
nargs = 3;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case BINOP_IN_BOUNDS:
|
|
|
|
|
*pos += 3;
|
|
|
|
|
nargs = 2;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
break;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Unexpected operator during name resolution"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
argvec = (struct value * *) alloca (sizeof (struct value *) * (nargs + 1));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (i = 0; i < nargs; i += 1)
|
|
|
|
|
argvec[i] = resolve_subexp (expp, pos, 1, NULL);
|
|
|
|
|
argvec[i] = NULL;
|
|
|
|
|
exp = *expp;
|
|
|
|
|
|
|
|
|
|
/* Pass two: perform any resolution on principal operator. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
switch (op)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_VAR_VALUE:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
struct ada_symbol_info *candidates;
|
|
|
|
|
int n_candidates;
|
|
|
|
|
|
|
|
|
|
n_candidates =
|
|
|
|
|
ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME
|
|
|
|
|
(exp->elts[pc + 2].symbol),
|
|
|
|
|
exp->elts[pc + 1].block, VAR_DOMAIN,
|
|
|
|
|
&candidates);
|
|
|
|
|
|
|
|
|
|
if (n_candidates > 1)
|
|
|
|
|
{
|
|
|
|
|
/* Types tend to get re-introduced locally, so if there
|
|
|
|
|
are any local symbols that are not types, first filter
|
|
|
|
|
out all types. */
|
|
|
|
|
int j;
|
|
|
|
|
for (j = 0; j < n_candidates; j += 1)
|
|
|
|
|
switch (SYMBOL_CLASS (candidates[j].sym))
|
|
|
|
|
{
|
|
|
|
|
case LOC_REGISTER:
|
|
|
|
|
case LOC_ARG:
|
|
|
|
|
case LOC_REF_ARG:
|
|
|
|
|
case LOC_REGPARM:
|
|
|
|
|
case LOC_REGPARM_ADDR:
|
|
|
|
|
case LOC_LOCAL:
|
|
|
|
|
case LOC_LOCAL_ARG:
|
|
|
|
|
case LOC_BASEREG:
|
|
|
|
|
case LOC_BASEREG_ARG:
|
|
|
|
|
case LOC_COMPUTED:
|
|
|
|
|
case LOC_COMPUTED_ARG:
|
|
|
|
|
goto FoundNonType;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
FoundNonType:
|
|
|
|
|
if (j < n_candidates)
|
|
|
|
|
{
|
|
|
|
|
j = 0;
|
|
|
|
|
while (j < n_candidates)
|
|
|
|
|
{
|
|
|
|
|
if (SYMBOL_CLASS (candidates[j].sym) == LOC_TYPEDEF)
|
|
|
|
|
{
|
|
|
|
|
candidates[j] = candidates[n_candidates - 1];
|
|
|
|
|
n_candidates -= 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
j += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (n_candidates == 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("No definition found for %s"),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
|
|
|
|
|
else if (n_candidates == 1)
|
|
|
|
|
i = 0;
|
|
|
|
|
else if (deprocedure_p
|
|
|
|
|
&& !is_nonfunction (candidates, n_candidates))
|
|
|
|
|
{
|
2004-06-28 18:59:14 +00:00
|
|
|
|
i = ada_resolve_function
|
|
|
|
|
(candidates, n_candidates, NULL, 0,
|
|
|
|
|
SYMBOL_LINKAGE_NAME (exp->elts[pc + 2].symbol),
|
|
|
|
|
context_type);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (i < 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Could not find a match for %s"),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
printf_filtered (_("Multiple matches for %s\n"),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
|
|
|
|
|
user_select_syms (candidates, n_candidates, 1);
|
|
|
|
|
i = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exp->elts[pc + 1].block = candidates[i].block;
|
|
|
|
|
exp->elts[pc + 2].symbol = candidates[i].sym;
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (innermost_block == NULL
|
|
|
|
|
|| contained_in (candidates[i].block, innermost_block))
|
2004-06-27 19:06:23 +00:00
|
|
|
|
innermost_block = candidates[i].block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (deprocedure_p
|
|
|
|
|
&& (TYPE_CODE (SYMBOL_TYPE (exp->elts[pc + 2].symbol))
|
|
|
|
|
== TYPE_CODE_FUNC))
|
|
|
|
|
{
|
|
|
|
|
replace_operator_with_call (expp, pc, 0, 0,
|
|
|
|
|
exp->elts[pc + 2].symbol,
|
|
|
|
|
exp->elts[pc + 1].block);
|
|
|
|
|
exp = *expp;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_FUNCALL:
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (exp->elts[pc + 3].opcode == OP_VAR_VALUE
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
struct ada_symbol_info *candidates;
|
|
|
|
|
int n_candidates;
|
|
|
|
|
|
|
|
|
|
n_candidates =
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_lookup_symbol_list (SYMBOL_LINKAGE_NAME
|
|
|
|
|
(exp->elts[pc + 5].symbol),
|
|
|
|
|
exp->elts[pc + 4].block, VAR_DOMAIN,
|
|
|
|
|
&candidates);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (n_candidates == 1)
|
|
|
|
|
i = 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
2004-06-28 18:59:14 +00:00
|
|
|
|
i = ada_resolve_function
|
|
|
|
|
(candidates, n_candidates,
|
|
|
|
|
argvec, nargs,
|
|
|
|
|
SYMBOL_LINKAGE_NAME (exp->elts[pc + 5].symbol),
|
|
|
|
|
context_type);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (i < 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Could not find a match for %s"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exp->elts[pc + 4].block = candidates[i].block;
|
|
|
|
|
exp->elts[pc + 5].symbol = candidates[i].sym;
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (innermost_block == NULL
|
|
|
|
|
|| contained_in (candidates[i].block, innermost_block))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
innermost_block = candidates[i].block;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case BINOP_ADD:
|
|
|
|
|
case BINOP_SUB:
|
|
|
|
|
case BINOP_MUL:
|
|
|
|
|
case BINOP_DIV:
|
|
|
|
|
case BINOP_REM:
|
|
|
|
|
case BINOP_MOD:
|
|
|
|
|
case BINOP_CONCAT:
|
|
|
|
|
case BINOP_BITWISE_AND:
|
|
|
|
|
case BINOP_BITWISE_IOR:
|
|
|
|
|
case BINOP_BITWISE_XOR:
|
|
|
|
|
case BINOP_EQUAL:
|
|
|
|
|
case BINOP_NOTEQUAL:
|
|
|
|
|
case BINOP_LESS:
|
|
|
|
|
case BINOP_GTR:
|
|
|
|
|
case BINOP_LEQ:
|
|
|
|
|
case BINOP_GEQ:
|
|
|
|
|
case BINOP_EXP:
|
|
|
|
|
case UNOP_NEG:
|
|
|
|
|
case UNOP_PLUS:
|
|
|
|
|
case UNOP_LOGICAL_NOT:
|
|
|
|
|
case UNOP_ABS:
|
|
|
|
|
if (possible_user_operator_p (op, argvec))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
struct ada_symbol_info *candidates;
|
|
|
|
|
int n_candidates;
|
|
|
|
|
|
|
|
|
|
n_candidates =
|
|
|
|
|
ada_lookup_symbol_list (ada_encode (ada_decoded_op_name (op)),
|
|
|
|
|
(struct block *) NULL, VAR_DOMAIN,
|
|
|
|
|
&candidates);
|
|
|
|
|
i = ada_resolve_function (candidates, n_candidates, argvec, nargs,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_decoded_op_name (op), NULL);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (i < 0)
|
|
|
|
|
break;
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
replace_operator_with_call (expp, pc, nargs, 1,
|
|
|
|
|
candidates[i].sym, candidates[i].block);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
exp = *expp;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
break;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
case OP_TYPE:
|
|
|
|
|
return NULL;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*pos = pc;
|
|
|
|
|
return evaluate_subexp_type (exp, pos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return non-zero if formal type FTYPE matches actual type ATYPE. If
|
2004-06-02 09:55:36 +00:00
|
|
|
|
MAY_DEREF is non-zero, the formal may be a pointer and the actual
|
|
|
|
|
a non-pointer. A type of 'void' (which is never a valid expression type)
|
|
|
|
|
by convention matches anything. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* The term "match" here is rather loose. The match is heuristic and
|
2004-06-02 09:55:36 +00:00
|
|
|
|
liberal. FIXME: TOO liberal, in fact. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-09-08 17:44:22 +00:00
|
|
|
|
ada_type_match (struct type *ftype, struct type *atype, int may_deref)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
ftype = ada_check_typedef (ftype);
|
|
|
|
|
atype = ada_check_typedef (atype);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (ftype) == TYPE_CODE_REF)
|
|
|
|
|
ftype = TYPE_TARGET_TYPE (ftype);
|
|
|
|
|
if (TYPE_CODE (atype) == TYPE_CODE_REF)
|
|
|
|
|
atype = TYPE_TARGET_TYPE (atype);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_CODE (ftype) == TYPE_CODE_VOID
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|| TYPE_CODE (atype) == TYPE_CODE_VOID)
|
|
|
|
|
return 1;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
switch (TYPE_CODE (ftype))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return 1;
|
|
|
|
|
case TYPE_CODE_PTR:
|
|
|
|
|
if (TYPE_CODE (atype) == TYPE_CODE_PTR)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_type_match (TYPE_TARGET_TYPE (ftype),
|
|
|
|
|
TYPE_TARGET_TYPE (atype), 0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-27 19:28:20 +00:00
|
|
|
|
return (may_deref
|
|
|
|
|
&& ada_type_match (TYPE_TARGET_TYPE (ftype), atype, 0));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
case TYPE_CODE_INT:
|
|
|
|
|
case TYPE_CODE_ENUM:
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
switch (TYPE_CODE (atype))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_INT:
|
|
|
|
|
case TYPE_CODE_ENUM:
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
return 1;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case TYPE_CODE_ARRAY:
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return (TYPE_CODE (atype) == TYPE_CODE_ARRAY
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| ada_is_array_descriptor_type (atype));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case TYPE_CODE_STRUCT:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ada_is_array_descriptor_type (ftype))
|
|
|
|
|
return (TYPE_CODE (atype) == TYPE_CODE_ARRAY
|
|
|
|
|
|| ada_is_array_descriptor_type (atype));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return (TYPE_CODE (atype) == TYPE_CODE_STRUCT
|
|
|
|
|
&& !ada_is_array_descriptor_type (atype));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case TYPE_CODE_UNION:
|
|
|
|
|
case TYPE_CODE_FLT:
|
|
|
|
|
return (TYPE_CODE (atype) == TYPE_CODE (ftype));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return non-zero if the formals of FUNC "sufficiently match" the
|
|
|
|
|
vector of actual argument types ACTUALS of size N_ACTUALS. FUNC
|
|
|
|
|
may also be an enumeral, in which case it is treated as a 0-
|
2004-06-02 09:55:36 +00:00
|
|
|
|
argument function. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_args_match (struct symbol *func, struct value **actuals, int n_actuals)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *func_type = SYMBOL_TYPE (func);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (SYMBOL_CLASS (func) == LOC_CONST
|
|
|
|
|
&& TYPE_CODE (func_type) == TYPE_CODE_ENUM)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (n_actuals == 0);
|
|
|
|
|
else if (func_type == NULL || TYPE_CODE (func_type) != TYPE_CODE_FUNC)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (TYPE_NFIELDS (func_type) != n_actuals)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < n_actuals; i += 1)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (actuals[i] == NULL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *ftype = ada_check_typedef (TYPE_FIELD_TYPE (func_type, i));
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *atype = ada_check_typedef (value_type (actuals[i]));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (!ada_type_match (ftype, atype, 1))
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* False iff function type FUNC_TYPE definitely does not produce a value
|
|
|
|
|
compatible with type CONTEXT_TYPE. Conservatively returns 1 if
|
|
|
|
|
FUNC_TYPE is not a valid function type with a non-null return type
|
|
|
|
|
or an enumerated type. A null CONTEXT_TYPE indicates any non-void type. */
|
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return_match (struct type *func_type, struct type *context_type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *return_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (func_type == NULL)
|
|
|
|
|
return 1;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_CODE (func_type) == TYPE_CODE_FUNC)
|
|
|
|
|
return_type = base_type (TYPE_TARGET_TYPE (func_type));
|
|
|
|
|
else
|
|
|
|
|
return_type = base_type (func_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (return_type == NULL)
|
|
|
|
|
return 1;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
context_type = base_type (context_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (return_type) == TYPE_CODE_ENUM)
|
|
|
|
|
return context_type == NULL || return_type == context_type;
|
|
|
|
|
else if (context_type == NULL)
|
|
|
|
|
return TYPE_CODE (return_type) != TYPE_CODE_VOID;
|
|
|
|
|
else
|
|
|
|
|
return TYPE_CODE (return_type) == TYPE_CODE (context_type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Returns the index in SYMS[0..NSYMS-1] that contains the symbol for the
|
2002-06-04 15:28:49 +00:00
|
|
|
|
function (if any) that matches the types of the NARGS arguments in
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ARGS. If CONTEXT_TYPE is non-null and there is at least one match
|
|
|
|
|
that returns that type, then eliminate matches that don't. If
|
|
|
|
|
CONTEXT_TYPE is void and there is at least one match that does not
|
|
|
|
|
return void, eliminate all matches that do.
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
Asks the user if there is more than one match remaining. Returns -1
|
|
|
|
|
if there is no such symbol or none is selected. NAME is used
|
2004-06-02 09:55:36 +00:00
|
|
|
|
solely for messages. May re-arrange and modify SYMS in
|
|
|
|
|
the process; the index returned is for the modified vector. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static int
|
|
|
|
|
ada_resolve_function (struct ada_symbol_info syms[],
|
|
|
|
|
int nsyms, struct value **args, int nargs,
|
|
|
|
|
const char *name, struct type *context_type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int k;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int m; /* Number of hits */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *fallback;
|
|
|
|
|
struct type *return_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return_type = context_type;
|
|
|
|
|
if (context_type == NULL)
|
|
|
|
|
fallback = builtin_type_void;
|
|
|
|
|
else
|
|
|
|
|
fallback = NULL;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
m = 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
for (k = 0; k < nsyms; k += 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *type = ada_check_typedef (SYMBOL_TYPE (syms[k].sym));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
if (ada_args_match (syms[k].sym, args, nargs)
|
|
|
|
|
&& return_match (type, return_type))
|
|
|
|
|
{
|
|
|
|
|
syms[m] = syms[k];
|
|
|
|
|
m += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (m > 0 || return_type == fallback)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return_type = fallback;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
else if (m > 1)
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
printf_filtered (_("Multiple matches for %s\n"), name);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
user_select_syms (syms, m, 1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Returns true (non-zero) iff decoded name N0 should appear before N1
|
|
|
|
|
in a listing of choices during disambiguation (see sort_choices, below).
|
|
|
|
|
The idea is that overloadings of a subprogram name from the
|
|
|
|
|
same package should sort in their source order. We settle for ordering
|
|
|
|
|
such symbols by their trailing number (__N or $N). */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2004-06-02 09:55:36 +00:00
|
|
|
|
encoded_ordered_before (char *N0, char *N1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (N1 == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
else if (N0 == NULL)
|
|
|
|
|
return 1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int k0, k1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (k0 = strlen (N0) - 1; k0 > 0 && isdigit (N0[k0]); k0 -= 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (k1 = strlen (N1) - 1; k1 > 0 && isdigit (N1[k1]); k1 -= 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if ((N0[k0] == '_' || N0[k0] == '$') && N0[k0 + 1] != '\000'
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& (N1[k1] == '_' || N1[k1] == '$') && N1[k1 + 1] != '\000')
|
|
|
|
|
{
|
|
|
|
|
int n0, n1;
|
|
|
|
|
n0 = k0;
|
|
|
|
|
while (N0[n0] == '_' && n0 > 0 && N0[n0 - 1] == '_')
|
|
|
|
|
n0 -= 1;
|
|
|
|
|
n1 = k1;
|
|
|
|
|
while (N1[n1] == '_' && n1 > 0 && N1[n1 - 1] == '_')
|
|
|
|
|
n1 -= 1;
|
|
|
|
|
if (n0 == n1 && strncmp (N0, N1, n0) == 0)
|
|
|
|
|
return (atoi (N0 + k0 + 1) < atoi (N1 + k1 + 1));
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (strcmp (N0, N1) < 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Sort SYMS[0..NSYMS-1] to put the choices in a canonical order by the
|
|
|
|
|
encoded names. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static void
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sort_choices (struct ada_symbol_info syms[], int nsyms)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int i;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (i = 1; i < nsyms; i += 1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct ada_symbol_info sym = syms[i];
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int j;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (j = i - 1; j >= 0; j -= 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (encoded_ordered_before (SYMBOL_LINKAGE_NAME (syms[j].sym),
|
|
|
|
|
SYMBOL_LINKAGE_NAME (sym.sym)))
|
|
|
|
|
break;
|
|
|
|
|
syms[j + 1] = syms[j];
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
syms[j + 1] = sym;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Given a list of NSYMS symbols in SYMS, select up to MAX_RESULTS>0
|
|
|
|
|
by asking the user (if necessary), returning the number selected,
|
|
|
|
|
and setting the first elements of SYMS items. Error if no symbols
|
|
|
|
|
selected. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* NOTE: Adapted from decode_line_2 in symtab.c, with which it ought
|
2004-06-02 09:55:36 +00:00
|
|
|
|
to be re-integrated one of these days. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2004-06-02 09:55:36 +00:00
|
|
|
|
user_select_syms (struct ada_symbol_info *syms, int nsyms, int max_results)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
int *chosen = (int *) alloca (sizeof (int) * nsyms);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int n_chosen;
|
|
|
|
|
int first_choice = (max_results == 1) ? 1 : 2;
|
|
|
|
|
|
|
|
|
|
if (max_results < 1)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Request to select 0 symbols!"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (nsyms <= 1)
|
|
|
|
|
return nsyms;
|
|
|
|
|
|
2004-12-12 17:06:26 +00:00
|
|
|
|
printf_unfiltered (_("[0] cancel\n"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (max_results > 1)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
printf_unfiltered (_("[1] all\n"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sort_choices (syms, nsyms);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < nsyms; i += 1)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (syms[i].sym == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (SYMBOL_CLASS (syms[i].sym) == LOC_BLOCK)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct symtab_and_line sal =
|
|
|
|
|
find_function_start_sal (syms[i].sym, 1);
|
2004-12-12 17:06:26 +00:00
|
|
|
|
if (sal.symtab == NULL)
|
|
|
|
|
printf_unfiltered (_("[%d] %s at <no source file available>:%d\n"),
|
|
|
|
|
i + first_choice,
|
|
|
|
|
SYMBOL_PRINT_NAME (syms[i].sym),
|
|
|
|
|
sal.line);
|
|
|
|
|
else
|
|
|
|
|
printf_unfiltered (_("[%d] %s at %s:%d\n"), i + first_choice,
|
|
|
|
|
SYMBOL_PRINT_NAME (syms[i].sym),
|
|
|
|
|
sal.symtab->filename, sal.line);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int is_enumeral =
|
|
|
|
|
(SYMBOL_CLASS (syms[i].sym) == LOC_CONST
|
|
|
|
|
&& SYMBOL_TYPE (syms[i].sym) != NULL
|
|
|
|
|
&& TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) == TYPE_CODE_ENUM);
|
|
|
|
|
struct symtab *symtab = symtab_for_sym (syms[i].sym);
|
|
|
|
|
|
|
|
|
|
if (SYMBOL_LINE (syms[i].sym) != 0 && symtab != NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
printf_unfiltered (_("[%d] %s at %s:%d\n"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
i + first_choice,
|
|
|
|
|
SYMBOL_PRINT_NAME (syms[i].sym),
|
|
|
|
|
symtab->filename, SYMBOL_LINE (syms[i].sym));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
else if (is_enumeral
|
|
|
|
|
&& TYPE_NAME (SYMBOL_TYPE (syms[i].sym)) != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 00:39:24 +00:00
|
|
|
|
printf_unfiltered (("[%d] "), i + first_choice);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_print_type (SYMBOL_TYPE (syms[i].sym), NULL,
|
|
|
|
|
gdb_stdout, -1, 0);
|
2004-12-12 17:06:26 +00:00
|
|
|
|
printf_unfiltered (_("'(%s) (enumeral)\n"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
SYMBOL_PRINT_NAME (syms[i].sym));
|
|
|
|
|
}
|
|
|
|
|
else if (symtab != NULL)
|
|
|
|
|
printf_unfiltered (is_enumeral
|
2004-12-12 17:06:26 +00:00
|
|
|
|
? _("[%d] %s in %s (enumeral)\n")
|
|
|
|
|
: _("[%d] %s at %s:?\n"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
i + first_choice,
|
|
|
|
|
SYMBOL_PRINT_NAME (syms[i].sym),
|
|
|
|
|
symtab->filename);
|
|
|
|
|
else
|
|
|
|
|
printf_unfiltered (is_enumeral
|
2004-12-12 17:06:26 +00:00
|
|
|
|
? _("[%d] %s (enumeral)\n")
|
|
|
|
|
: _("[%d] %s at ?\n"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
i + first_choice,
|
|
|
|
|
SYMBOL_PRINT_NAME (syms[i].sym));
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
n_chosen = get_selections (chosen, nsyms, max_results, max_results > 1,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
"overload-choice");
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < n_chosen; i += 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
syms[i] = syms[chosen[i]];
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return n_chosen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read and validate a set of numeric choices from the user in the
|
2004-06-02 09:55:36 +00:00
|
|
|
|
range 0 .. N_CHOICES-1. Place the results in increasing
|
2002-06-04 15:28:49 +00:00
|
|
|
|
order in CHOICES[0 .. N-1], and return N.
|
|
|
|
|
|
|
|
|
|
The user types choices as a sequence of numbers on one line
|
|
|
|
|
separated by blanks, encoding them as follows:
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
+ A choice of 0 means to cancel the selection, throwing an error.
|
2002-06-04 15:28:49 +00:00
|
|
|
|
+ If IS_ALL_CHOICE, a choice of 1 selects the entire set 0 .. N_CHOICES-1.
|
|
|
|
|
+ The user chooses k by typing k+IS_ALL_CHOICE+1.
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
The user is not allowed to choose more than MAX_RESULTS values.
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
ANNOTATION_SUFFIX, if present, is used to annotate the input
|
2004-06-02 09:55:36 +00:00
|
|
|
|
prompts (for use with the -f switch). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
get_selections (int *choices, int n_choices, int max_results,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int is_all_choice, char *annotation_suffix)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *args;
|
|
|
|
|
const char *prompt;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int n_chosen;
|
|
|
|
|
int first_choice = is_all_choice ? 2 : 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
prompt = getenv ("PS2");
|
|
|
|
|
if (prompt == NULL)
|
|
|
|
|
prompt = ">";
|
|
|
|
|
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up some of printf_filtered and printf_unfiltered.
* ada-lang.c, annotate.c, arch-utils.c, breakpoint.c: Update.
* corelow.c, cp-namespace.c, cp-support.c, dcache.c: Update.
* demangle.c, dsrec.c, dwarf2read.c, dwarfread.c: Update.
* event-loop.c, event-top.c, exec.c, f-valprint.c: Update.
* gdbtypes.c, inf-loop.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcmd.c, inflow.c, infrun.c, inftarg.c, language.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, maint.c: Update.
* mdebugread.c, memattr.c, monitor.c, objc-lang.c: Update.
* ocd.c, osabi.c, printcmd.c, procfs.c, regcache.c: Update.
* remote.c, solib-som.c, solib.c, somsolib.c, source.c: Update.
* stack.c, symfile.c, symmisc.c, target.c, thread.c: Update.
* top.c, utils.c, valprint.c, value.c, cli/cli-cmds.c: Update.
* cli/cli-dump.c, cli/cli-logging.c, tui/tui-hooks.c: Update.
* tui/tui-regs.c, tui/tui-win.c: Update.
2005-02-12 00:39:24 +00:00
|
|
|
|
printf_unfiltered (("%s "), prompt);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
gdb_flush (gdb_stdout);
|
|
|
|
|
|
|
|
|
|
args = command_line_input ((char *) NULL, 0, annotation_suffix);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (args == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error_no_arg (_("one or more choice numbers"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
n_chosen = 0;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Set choices[0 .. n_chosen-1] to the users' choices in ascending
|
|
|
|
|
order, as given in args. Choices are validated. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *args2;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int choice, j;
|
|
|
|
|
|
|
|
|
|
while (isspace (*args))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
args += 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (*args == '\0' && n_chosen == 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error_no_arg (_("one or more choice numbers"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (*args == '\0')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
choice = strtol (args, &args2, 10);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (args == args2 || choice < 0
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| choice > n_choices + first_choice - 1)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Argument must be choice number"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
args = args2;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (choice == 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("cancelled"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (choice < first_choice)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
n_chosen = n_choices;
|
|
|
|
|
for (j = 0; j < n_choices; j += 1)
|
|
|
|
|
choices[j] = j;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
choice -= first_choice;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (j = n_chosen - 1; j >= 0 && choice < choices[j]; j -= 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (j < 0 || choice != choices[j])
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int k;
|
|
|
|
|
for (k = n_chosen - 1; k > j; k -= 1)
|
|
|
|
|
choices[k + 1] = choices[k];
|
|
|
|
|
choices[j + 1] = choice;
|
|
|
|
|
n_chosen += 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (n_chosen > max_results)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Select no more than %d of the above"), max_results);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return n_chosen;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Replace the operator of length OPLEN at position PC in *EXPP with a call
|
|
|
|
|
on the function identified by SYM and BLOCK, and taking NARGS
|
|
|
|
|
arguments. Update *EXPP as needed to hold more space. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2002-08-18 18:11:12 +00:00
|
|
|
|
replace_operator_with_call (struct expression **expp, int pc, int nargs,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int oplen, struct symbol *sym,
|
|
|
|
|
struct block *block)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
/* A new expression, with 6 more elements (3 for funcall, 4 for function
|
2004-06-02 09:55:36 +00:00
|
|
|
|
symbol, -oplen for operator being replaced). */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct expression *newexp = (struct expression *)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
xmalloc (sizeof (struct expression)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
+ EXP_ELEM_TO_BYTES ((*expp)->nelts + 7 - oplen));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct expression *exp = *expp;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
newexp->nelts = exp->nelts + 7 - oplen;
|
|
|
|
|
newexp->language_defn = exp->language_defn;
|
|
|
|
|
memcpy (newexp->elts, exp->elts, EXP_ELEM_TO_BYTES (pc));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
memcpy (newexp->elts + pc + 7, exp->elts + pc + oplen,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
EXP_ELEM_TO_BYTES (exp->nelts - pc - oplen));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
newexp->elts[pc].opcode = newexp->elts[pc + 2].opcode = OP_FUNCALL;
|
|
|
|
|
newexp->elts[pc + 1].longconst = (LONGEST) nargs;
|
|
|
|
|
|
|
|
|
|
newexp->elts[pc + 3].opcode = newexp->elts[pc + 6].opcode = OP_VAR_VALUE;
|
|
|
|
|
newexp->elts[pc + 4].block = block;
|
|
|
|
|
newexp->elts[pc + 5].symbol = sym;
|
|
|
|
|
|
|
|
|
|
*expp = newexp;
|
2002-07-13 12:25:16 +00:00
|
|
|
|
xfree (exp);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Type-class predicates */
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff TYPE is numeric (i.e., an INT, RANGE (of numeric type),
|
|
|
|
|
or FLOAT). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
numeric_type_p (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
switch (TYPE_CODE (type))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_INT:
|
|
|
|
|
case TYPE_CODE_FLT:
|
|
|
|
|
return 1;
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
return (type == TYPE_TARGET_TYPE (type)
|
|
|
|
|
|| numeric_type_p (TYPE_TARGET_TYPE (type)));
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff TYPE is integral (an INT or RANGE of INTs). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
integer_type_p (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
switch (TYPE_CODE (type))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_INT:
|
|
|
|
|
return 1;
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
return (type == TYPE_TARGET_TYPE (type)
|
|
|
|
|
|| integer_type_p (TYPE_TARGET_TYPE (type)));
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff TYPE is scalar (INT, RANGE, FLOAT, ENUM). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
scalar_type_p (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
switch (TYPE_CODE (type))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_INT:
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
case TYPE_CODE_ENUM:
|
|
|
|
|
case TYPE_CODE_FLT:
|
|
|
|
|
return 1;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff TYPE is discrete (INT, RANGE, ENUM). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
discrete_type_p (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
switch (TYPE_CODE (type))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_INT:
|
|
|
|
|
case TYPE_CODE_RANGE:
|
|
|
|
|
case TYPE_CODE_ENUM:
|
|
|
|
|
return 1;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Returns non-zero if OP with operands in the vector ARGS could be
|
|
|
|
|
a user-defined function. Errs on the side of pre-defined operators
|
|
|
|
|
(i.e., result 0). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
possible_user_operator_p (enum exp_opcode op, struct value *args[])
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct type *type0 =
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
(args[0] == NULL) ? NULL : ada_check_typedef (value_type (args[0]));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type1 =
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
(args[1] == NULL) ? NULL : ada_check_typedef (value_type (args[1]));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (type0 == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
switch (op)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case BINOP_ADD:
|
|
|
|
|
case BINOP_SUB:
|
|
|
|
|
case BINOP_MUL:
|
|
|
|
|
case BINOP_DIV:
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return (!(numeric_type_p (type0) && numeric_type_p (type1)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_REM:
|
|
|
|
|
case BINOP_MOD:
|
|
|
|
|
case BINOP_BITWISE_AND:
|
|
|
|
|
case BINOP_BITWISE_IOR:
|
|
|
|
|
case BINOP_BITWISE_XOR:
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return (!(integer_type_p (type0) && integer_type_p (type1)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_EQUAL:
|
|
|
|
|
case BINOP_NOTEQUAL:
|
|
|
|
|
case BINOP_LESS:
|
|
|
|
|
case BINOP_GTR:
|
|
|
|
|
case BINOP_LEQ:
|
|
|
|
|
case BINOP_GEQ:
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return (!(scalar_type_p (type0) && scalar_type_p (type1)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_CONCAT:
|
2004-06-27 19:28:20 +00:00
|
|
|
|
return
|
|
|
|
|
((TYPE_CODE (type0) != TYPE_CODE_ARRAY
|
|
|
|
|
&& (TYPE_CODE (type0) != TYPE_CODE_PTR
|
|
|
|
|
|| TYPE_CODE (TYPE_TARGET_TYPE (type0)) != TYPE_CODE_ARRAY))
|
|
|
|
|
|| (TYPE_CODE (type1) != TYPE_CODE_ARRAY
|
|
|
|
|
&& (TYPE_CODE (type1) != TYPE_CODE_PTR
|
2004-07-09 19:29:56 +00:00
|
|
|
|
|| (TYPE_CODE (TYPE_TARGET_TYPE (type1))
|
|
|
|
|
!= TYPE_CODE_ARRAY))));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_EXP:
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return (!(numeric_type_p (type0) && integer_type_p (type1)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case UNOP_NEG:
|
|
|
|
|
case UNOP_PLUS:
|
|
|
|
|
case UNOP_LOGICAL_NOT:
|
2002-08-18 18:11:12 +00:00
|
|
|
|
case UNOP_ABS:
|
|
|
|
|
return (!numeric_type_p (type0));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Renaming */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* NOTE: In the following, we assume that a renaming type's name may
|
|
|
|
|
have an ___XD suffix. It would be nice if this went away at some
|
|
|
|
|
point. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* If TYPE encodes a renaming, returns the renaming suffix, which
|
2004-06-02 09:55:36 +00:00
|
|
|
|
is XR for an object renaming, XRP for a procedure renaming, XRE for
|
|
|
|
|
an exception renaming, and XRS for a subprogram renaming. Returns
|
|
|
|
|
NULL if NAME encodes none of these. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *
|
|
|
|
|
ada_renaming_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type != NULL && TYPE_CODE (type) == TYPE_CODE_ENUM)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *name = type_name_no_tag (type);
|
|
|
|
|
const char *suffix = (name == NULL) ? NULL : strstr (name, "___XR");
|
|
|
|
|
if (suffix == NULL
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| (suffix[5] != '\000' && strchr ("PES_", suffix[5]) == NULL))
|
|
|
|
|
return NULL;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return suffix + 3;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return non-zero iff SYM encodes an object renaming. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_is_object_renaming (struct symbol *sym)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *renaming_type = ada_renaming_type (SYMBOL_TYPE (sym));
|
|
|
|
|
return renaming_type != NULL
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& (renaming_type[2] == '\0' || renaming_type[2] == '_');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming that SYM encodes a non-object renaming, returns the original
|
2004-06-02 09:55:36 +00:00
|
|
|
|
name of the renamed entity. The name is good until the end of
|
|
|
|
|
parsing. */
|
|
|
|
|
|
|
|
|
|
char *
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_simple_renamed_entity (struct symbol *sym)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type;
|
|
|
|
|
const char *raw_name;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int len;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *result;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
type = SYMBOL_TYPE (sym);
|
|
|
|
|
if (type == NULL || TYPE_NFIELDS (type) < 1)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Improperly encoded renaming."));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
raw_name = TYPE_FIELD_NAME (type, 0);
|
|
|
|
|
len = (raw_name == NULL ? 0 : strlen (raw_name)) - 5;
|
|
|
|
|
if (len <= 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Improperly encoded renaming."));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
result = xmalloc (len + 1);
|
|
|
|
|
strncpy (result, raw_name, len);
|
|
|
|
|
result[len] = '\000';
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Evaluation: Function Calls */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return an lvalue containing the value VAL. This is the identity on
|
|
|
|
|
lvalues, and otherwise has the side-effect of pushing a copy of VAL
|
|
|
|
|
on the stack, using and updating *SP as the stack pointer, and
|
|
|
|
|
returning an lvalue whose VALUE_ADDRESS points to the copy. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ensure_lval (struct value *val, CORE_ADDR *sp)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-07-09 19:29:56 +00:00
|
|
|
|
if (! VALUE_LVAL (val))
|
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
int len = TYPE_LENGTH (ada_check_typedef (value_type (val)));
|
2004-07-09 19:29:56 +00:00
|
|
|
|
|
|
|
|
|
/* The following is taken from the structure-return code in
|
|
|
|
|
call_function_by_hand. FIXME: Therefore, some refactoring seems
|
|
|
|
|
indicated. */
|
|
|
|
|
if (INNER_THAN (1, 2))
|
|
|
|
|
{
|
|
|
|
|
/* Stack grows downward. Align SP and VALUE_ADDRESS (val) after
|
|
|
|
|
reserving sufficient space. */
|
|
|
|
|
*sp -= len;
|
|
|
|
|
if (gdbarch_frame_align_p (current_gdbarch))
|
|
|
|
|
*sp = gdbarch_frame_align (current_gdbarch, *sp);
|
|
|
|
|
VALUE_ADDRESS (val) = *sp;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Stack grows upward. Align the frame, allocate space, and
|
|
|
|
|
then again, re-align the frame. */
|
|
|
|
|
if (gdbarch_frame_align_p (current_gdbarch))
|
|
|
|
|
*sp = gdbarch_frame_align (current_gdbarch, *sp);
|
|
|
|
|
VALUE_ADDRESS (val) = *sp;
|
|
|
|
|
*sp += len;
|
|
|
|
|
if (gdbarch_frame_align_p (current_gdbarch))
|
|
|
|
|
*sp = gdbarch_frame_align (current_gdbarch, *sp);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2005-02-02 00:20:07 +00:00
|
|
|
|
write_memory (VALUE_ADDRESS (val), value_contents_raw (val), len);
|
2004-07-09 19:29:56 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the value ACTUAL, converted to be an appropriate value for a
|
|
|
|
|
formal of type FORMAL_TYPE. Use *SP as a stack pointer for
|
|
|
|
|
allocating any necessary descriptors (fat pointers), or copies of
|
2004-06-02 09:55:36 +00:00
|
|
|
|
values not residing in memory, updating it as needed. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
convert_actual (struct value *actual, struct type *formal_type0,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR *sp)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *actual_type = ada_check_typedef (value_type (actual));
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *formal_type = ada_check_typedef (formal_type0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *formal_target =
|
|
|
|
|
TYPE_CODE (formal_type) == TYPE_CODE_PTR
|
2004-10-08 09:40:12 +00:00
|
|
|
|
? ada_check_typedef (TYPE_TARGET_TYPE (formal_type)) : formal_type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *actual_target =
|
|
|
|
|
TYPE_CODE (actual_type) == TYPE_CODE_PTR
|
2004-10-08 09:40:12 +00:00
|
|
|
|
? ada_check_typedef (TYPE_TARGET_TYPE (actual_type)) : actual_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ada_is_array_descriptor_type (formal_target)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& TYPE_CODE (actual_target) == TYPE_CODE_ARRAY)
|
|
|
|
|
return make_array_descriptor (formal_type, actual, sp);
|
|
|
|
|
else if (TYPE_CODE (formal_type) == TYPE_CODE_PTR)
|
|
|
|
|
{
|
|
|
|
|
if (TYPE_CODE (formal_target) == TYPE_CODE_ARRAY
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& ada_is_array_descriptor_type (actual_target))
|
|
|
|
|
return desc_data (actual);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (TYPE_CODE (actual_type) != TYPE_CODE_PTR)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (VALUE_LVAL (actual) != lval_memory)
|
|
|
|
|
{
|
|
|
|
|
struct value *val;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
actual_type = ada_check_typedef (value_type (actual));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
val = allocate_value (actual_type);
|
2005-02-02 00:20:07 +00:00
|
|
|
|
memcpy ((char *) value_contents_raw (val),
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
(char *) value_contents (actual),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_LENGTH (actual_type));
|
|
|
|
|
actual = ensure_lval (val, sp);
|
|
|
|
|
}
|
|
|
|
|
return value_addr (actual);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else if (TYPE_CODE (actual_type) == TYPE_CODE_PTR)
|
|
|
|
|
return ada_value_ind (actual);
|
|
|
|
|
|
|
|
|
|
return actual;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Push a descriptor of type TYPE for array value ARR on the stack at
|
|
|
|
|
*SP, updating *SP to reflect the new descriptor. Return either
|
2002-06-04 15:28:49 +00:00
|
|
|
|
an lvalue representing the new descriptor, or (if TYPE is a pointer-
|
2004-06-02 09:55:36 +00:00
|
|
|
|
to-descriptor type rather than a descriptor type), a struct value *
|
|
|
|
|
representing a pointer to this descriptor. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
make_array_descriptor (struct type *type, struct value *arr, CORE_ADDR *sp)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *bounds_type = desc_bounds_type (type);
|
|
|
|
|
struct type *desc_type = desc_base_type (type);
|
|
|
|
|
struct value *descriptor = allocate_value (desc_type);
|
|
|
|
|
struct value *bounds = allocate_value (bounds_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int i;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
for (i = ada_array_arity (ada_check_typedef (value_type (arr))); i > 0; i -= 1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
modify_general_field (value_contents_writeable (bounds),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_as_long (ada_array_bound (arr, i, 0)),
|
|
|
|
|
desc_bound_bitpos (bounds_type, i, 0),
|
|
|
|
|
desc_bound_bitsize (bounds_type, i, 0));
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
modify_general_field (value_contents_writeable (bounds),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_as_long (ada_array_bound (arr, i, 1)),
|
|
|
|
|
desc_bound_bitpos (bounds_type, i, 1),
|
|
|
|
|
desc_bound_bitsize (bounds_type, i, 1));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bounds = ensure_lval (bounds, sp);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
modify_general_field (value_contents_writeable (descriptor),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
VALUE_ADDRESS (ensure_lval (arr, sp)),
|
|
|
|
|
fat_pntr_data_bitpos (desc_type),
|
|
|
|
|
fat_pntr_data_bitsize (desc_type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
modify_general_field (value_contents_writeable (descriptor),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
VALUE_ADDRESS (bounds),
|
|
|
|
|
fat_pntr_bounds_bitpos (desc_type),
|
|
|
|
|
fat_pntr_bounds_bitsize (desc_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
descriptor = ensure_lval (descriptor, sp);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_PTR)
|
|
|
|
|
return value_addr (descriptor);
|
|
|
|
|
else
|
|
|
|
|
return descriptor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Assuming a dummy frame has been established on the target, perform any
|
2002-06-04 15:28:49 +00:00
|
|
|
|
conversions needed for calling function FUNC on the NARGS actual
|
2004-06-02 09:55:36 +00:00
|
|
|
|
parameters in ARGS, other than standard C conversions. Does
|
2002-06-04 15:28:49 +00:00
|
|
|
|
nothing if FUNC does not have Ada-style prototype data, or if NARGS
|
2004-06-02 09:55:36 +00:00
|
|
|
|
does not match the number of arguments expected. Use *SP as a
|
2002-06-04 15:28:49 +00:00
|
|
|
|
stack pointer for additional data that must be pushed, updating its
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value as needed. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
void
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_convert_actuals (struct value *func, int nargs, struct value *args[],
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR *sp)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_NFIELDS (value_type (func)) == 0
|
|
|
|
|
|| nargs != TYPE_NFIELDS (value_type (func)))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < nargs; i += 1)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
args[i] =
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
convert_actual (args[i], TYPE_FIELD_TYPE (value_type (func), i), sp);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* Dummy definitions for an experimental caching module that is not
|
|
|
|
|
* used in the public sources. */
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
lookup_cached_symbol (const char *name, domain_enum namespace,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct symbol **sym, struct block **block,
|
|
|
|
|
struct symtab **symtab)
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
cache_symbol (const char *name, domain_enum namespace, struct symbol *sym,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct block *block, struct symtab *symtab)
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
/* Symbol Lookup */
|
|
|
|
|
|
|
|
|
|
/* Return the result of a standard (literal, C-like) lookup of NAME in
|
|
|
|
|
given DOMAIN, visible from lexical block BLOCK. */
|
|
|
|
|
|
|
|
|
|
static struct symbol *
|
|
|
|
|
standard_lookup (const char *name, const struct block *block,
|
|
|
|
|
domain_enum domain)
|
|
|
|
|
{
|
|
|
|
|
struct symbol *sym;
|
|
|
|
|
struct symtab *symtab;
|
|
|
|
|
|
|
|
|
|
if (lookup_cached_symbol (name, domain, &sym, NULL, NULL))
|
|
|
|
|
return sym;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
sym =
|
|
|
|
|
lookup_symbol_in_language (name, block, domain, language_c, 0, &symtab);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
cache_symbol (name, domain, sym, block_found, symtab);
|
|
|
|
|
return sym;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Non-zero iff there is at least one non-function/non-enumeral symbol
|
|
|
|
|
in the symbol fields of SYMS[0..N-1]. We treat enumerals as functions,
|
|
|
|
|
since they contend in overloading in the same way. */
|
|
|
|
|
static int
|
|
|
|
|
is_nonfunction (struct ada_symbol_info syms[], int n)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < n; i += 1)
|
|
|
|
|
if (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_FUNC
|
|
|
|
|
&& (TYPE_CODE (SYMBOL_TYPE (syms[i].sym)) != TYPE_CODE_ENUM
|
|
|
|
|
|| SYMBOL_CLASS (syms[i].sym) != LOC_CONST))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If true (non-zero), then TYPE0 and TYPE1 represent equivalent
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct types. Otherwise, they may not. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
equiv_types (struct type *type0, struct type *type1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (type0 == type1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (type0 == NULL || type1 == NULL
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|| TYPE_CODE (type0) != TYPE_CODE (type1))
|
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if ((TYPE_CODE (type0) == TYPE_CODE_STRUCT
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|| TYPE_CODE (type0) == TYPE_CODE_ENUM)
|
|
|
|
|
&& ada_type_name (type0) != NULL && ada_type_name (type1) != NULL
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& strcmp (ada_type_name (type0), ada_type_name (type1)) == 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* True iff SYM0 represents the same entity as SYM1, or one that is
|
2004-06-02 09:55:36 +00:00
|
|
|
|
no more defined than that of SYM1. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
lesseq_defined_than (struct symbol *sym0, struct symbol *sym1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (sym0 == sym1)
|
|
|
|
|
return 1;
|
2003-05-14 Elena Zannoni <ezannoni@redhat.com>
* symtab.h (enum domain_enum): Rename from namespace_enum.
(UNDEF_DOMAIN, VAR_DOMAIN, STRUCT_DOMAIN, LABEL_DOMAIN,
VARIABLES_DOMAIN, FUNCTIONS_DOMAIN, TYPES_DOMAIN, METHODS_DOMAIN):
Rename from UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE,
LABEL_NAMESPACE, VARIABLES_NAMESPACE, FUNCTIONS_NAMESPACE,
TYPES_NAMESPACE, METHODS_NAMESPACE.
(SYMBOL_NAMESPACE): Rename to SYMBOL_DOMAIN.
(struct symbol, struct partial_symbol): Rename field
'namespace_enum namespace' to 'domain_enum domain'.
(PSYMBOL_NAMESPACE): Rename to PSYMBOL_DOMAIN.
Delete old define kludge for namespace.
* ada-exp.y, ada-lang.c, ada-lang.h, alpha-tdep.c, arm-tdep.c,
blockframe.c, c-exp.y, c-valprint.c, coffread.c, dbxread.c,
dwarf2read.c, dwarfread.c, f-exp.y, gdbtypes.c, gdbtypes.h,
gnu-v3-abi.c, hppa-tdep.c, hpread.c, jv-exp.y, jv-lang.c,
language.c, linespec.c, m2-exp.y, m3-nat.c, mdebugread.c,
mips-tdep.c, nlmread.c, objc-exp.y, objc-lang.c, objfiles.c,
p-exp.y, p-valprint.c, parse.c, printcmd.c, scm-lang.c, source.c,
stabsread.c, stack.c, symfile.c, symfile.h, symmisc.c, symtab.c,
valops.c, values.c, xcoffread.c, xstormy16-tdep.c: Replace all
occurrences of the above.
2003-05-12 Elena Zannoni <ezannoni@redhat.com>
* mi-mi-cmd-stack.c (list_args_or_locals): Rename VAR_NAMESPACE to
VAR_DOMAIN.
2003-05-14 17:43:20 +00:00
|
|
|
|
if (SYMBOL_DOMAIN (sym0) != SYMBOL_DOMAIN (sym1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|| SYMBOL_CLASS (sym0) != SYMBOL_CLASS (sym1))
|
|
|
|
|
return 0;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
switch (SYMBOL_CLASS (sym0))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
case LOC_UNDEF:
|
|
|
|
|
return 1;
|
|
|
|
|
case LOC_TYPEDEF:
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *type0 = SYMBOL_TYPE (sym0);
|
|
|
|
|
struct type *type1 = SYMBOL_TYPE (sym1);
|
|
|
|
|
char *name0 = SYMBOL_LINKAGE_NAME (sym0);
|
|
|
|
|
char *name1 = SYMBOL_LINKAGE_NAME (sym1);
|
|
|
|
|
int len0 = strlen (name0);
|
|
|
|
|
return
|
|
|
|
|
TYPE_CODE (type0) == TYPE_CODE (type1)
|
|
|
|
|
&& (equiv_types (type0, type1)
|
|
|
|
|
|| (len0 < strlen (name1) && strncmp (name0, name1, len0) == 0
|
|
|
|
|
&& strncmp (name1 + len0, "___XV", 5) == 0));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
case LOC_CONST:
|
|
|
|
|
return SYMBOL_VALUE (sym0) == SYMBOL_VALUE (sym1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& equiv_types (SYMBOL_TYPE (sym0), SYMBOL_TYPE (sym1));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
default:
|
|
|
|
|
return 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Append (SYM,BLOCK,SYMTAB) to the end of the array of struct ada_symbol_info
|
|
|
|
|
records in OBSTACKP. Do nothing if SYM is a duplicate. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2004-06-27 19:06:23 +00:00
|
|
|
|
add_defn_to_vec (struct obstack *obstackp,
|
|
|
|
|
struct symbol *sym,
|
|
|
|
|
struct block *block, struct symtab *symtab)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
size_t tmp;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct ada_symbol_info *prevDefns = defns_collected (obstackp, 0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (SYMBOL_TYPE (sym) != NULL)
|
2004-10-08 09:40:12 +00:00
|
|
|
|
SYMBOL_TYPE (sym) = ada_check_typedef (SYMBOL_TYPE (sym));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (i = num_defns_collected (obstackp) - 1; i >= 0; i -= 1)
|
|
|
|
|
{
|
|
|
|
|
if (lesseq_defined_than (sym, prevDefns[i].sym))
|
|
|
|
|
return;
|
|
|
|
|
else if (lesseq_defined_than (prevDefns[i].sym, sym))
|
|
|
|
|
{
|
|
|
|
|
prevDefns[i].sym = sym;
|
|
|
|
|
prevDefns[i].block = block;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
prevDefns[i].symtab = symtab;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
struct ada_symbol_info info;
|
|
|
|
|
|
|
|
|
|
info.sym = sym;
|
|
|
|
|
info.block = block;
|
|
|
|
|
info.symtab = symtab;
|
|
|
|
|
obstack_grow (obstackp, &info, sizeof (struct ada_symbol_info));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Number of ada_symbol_info structures currently collected in
|
|
|
|
|
current vector in *OBSTACKP. */
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static int
|
|
|
|
|
num_defns_collected (struct obstack *obstackp)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
return obstack_object_size (obstackp) / sizeof (struct ada_symbol_info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Vector of ada_symbol_info structures currently collected in current
|
|
|
|
|
vector in *OBSTACKP. If FINISH, close off the vector and return
|
|
|
|
|
its final address. */
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static struct ada_symbol_info *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
defns_collected (struct obstack *obstackp, int finish)
|
|
|
|
|
{
|
|
|
|
|
if (finish)
|
|
|
|
|
return obstack_finish (obstackp);
|
|
|
|
|
else
|
|
|
|
|
return (struct ada_symbol_info *) obstack_base (obstackp);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Look, in partial_symtab PST, for symbol NAME in given namespace.
|
|
|
|
|
Check the global symbols if GLOBAL, the static symbols if not.
|
|
|
|
|
Do wild-card match if WILD. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static struct partial_symbol *
|
|
|
|
|
ada_lookup_partial_symbol (struct partial_symtab *pst, const char *name,
|
|
|
|
|
int global, domain_enum namespace, int wild)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
struct partial_symbol **start;
|
|
|
|
|
int name_len = strlen (name);
|
|
|
|
|
int length = (global ? pst->n_global_syms : pst->n_static_syms);
|
|
|
|
|
int i;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (length == 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return (NULL);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
start = (global ?
|
|
|
|
|
pst->objfile->global_psymbols.list + pst->globals_offset :
|
|
|
|
|
pst->objfile->static_psymbols.list + pst->statics_offset);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (wild)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
for (i = 0; i < length; i += 1)
|
|
|
|
|
{
|
|
|
|
|
struct partial_symbol *psym = start[i];
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (SYMBOL_DOMAIN (psym) == namespace
|
|
|
|
|
&& wild_match (name, name_len, SYMBOL_LINKAGE_NAME (psym)))
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return psym;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (global)
|
|
|
|
|
{
|
|
|
|
|
int U;
|
|
|
|
|
i = 0;
|
|
|
|
|
U = length - 1;
|
|
|
|
|
while (U - i > 4)
|
|
|
|
|
{
|
|
|
|
|
int M = (U + i) >> 1;
|
|
|
|
|
struct partial_symbol *psym = start[M];
|
|
|
|
|
if (SYMBOL_LINKAGE_NAME (psym)[0] < name[0])
|
|
|
|
|
i = M + 1;
|
|
|
|
|
else if (SYMBOL_LINKAGE_NAME (psym)[0] > name[0])
|
|
|
|
|
U = M - 1;
|
|
|
|
|
else if (strcmp (SYMBOL_LINKAGE_NAME (psym), name) < 0)
|
|
|
|
|
i = M + 1;
|
|
|
|
|
else
|
|
|
|
|
U = M;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
i = 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
while (i < length)
|
|
|
|
|
{
|
|
|
|
|
struct partial_symbol *psym = start[i];
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (SYMBOL_DOMAIN (psym) == namespace)
|
|
|
|
|
{
|
|
|
|
|
int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym), name_len);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (cmp < 0)
|
|
|
|
|
{
|
|
|
|
|
if (global)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else if (cmp == 0
|
|
|
|
|
&& is_name_suffix (SYMBOL_LINKAGE_NAME (psym)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
+ name_len))
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return psym;
|
|
|
|
|
}
|
|
|
|
|
i += 1;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (global)
|
|
|
|
|
{
|
|
|
|
|
int U;
|
|
|
|
|
i = 0;
|
|
|
|
|
U = length - 1;
|
|
|
|
|
while (U - i > 4)
|
|
|
|
|
{
|
|
|
|
|
int M = (U + i) >> 1;
|
|
|
|
|
struct partial_symbol *psym = start[M];
|
|
|
|
|
if (SYMBOL_LINKAGE_NAME (psym)[0] < '_')
|
|
|
|
|
i = M + 1;
|
|
|
|
|
else if (SYMBOL_LINKAGE_NAME (psym)[0] > '_')
|
|
|
|
|
U = M - 1;
|
|
|
|
|
else if (strcmp (SYMBOL_LINKAGE_NAME (psym), "_ada_") < 0)
|
|
|
|
|
i = M + 1;
|
|
|
|
|
else
|
|
|
|
|
U = M;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
i = 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
while (i < length)
|
|
|
|
|
{
|
|
|
|
|
struct partial_symbol *psym = start[i];
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (SYMBOL_DOMAIN (psym) == namespace)
|
|
|
|
|
{
|
|
|
|
|
int cmp;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (psym)[0];
|
|
|
|
|
if (cmp == 0)
|
|
|
|
|
{
|
|
|
|
|
cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (psym), 5);
|
|
|
|
|
if (cmp == 0)
|
|
|
|
|
cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym) + 5,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
name_len);
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (cmp < 0)
|
|
|
|
|
{
|
|
|
|
|
if (global)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else if (cmp == 0
|
|
|
|
|
&& is_name_suffix (SYMBOL_LINKAGE_NAME (psym)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
+ name_len + 5))
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return psym;
|
|
|
|
|
}
|
|
|
|
|
i += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Find a symbol table containing symbol SYM or NULL if none. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static struct symtab *
|
|
|
|
|
symtab_for_sym (struct symbol *sym)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
struct symtab *s;
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
struct block *b;
|
|
|
|
|
struct symbol *tmp_sym;
|
|
|
|
|
struct dict_iterator iter;
|
|
|
|
|
int j;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
ALL_SYMTABS (objfile, s)
|
|
|
|
|
{
|
|
|
|
|
switch (SYMBOL_CLASS (sym))
|
|
|
|
|
{
|
|
|
|
|
case LOC_CONST:
|
|
|
|
|
case LOC_STATIC:
|
|
|
|
|
case LOC_TYPEDEF:
|
|
|
|
|
case LOC_REGISTER:
|
|
|
|
|
case LOC_LABEL:
|
|
|
|
|
case LOC_BLOCK:
|
|
|
|
|
case LOC_CONST_BYTES:
|
2004-06-27 19:06:23 +00:00
|
|
|
|
b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
|
|
|
|
|
ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym)
|
|
|
|
|
return s;
|
|
|
|
|
b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
|
|
|
|
|
ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym)
|
|
|
|
|
return s;
|
2004-06-16 08:18:06 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
switch (SYMBOL_CLASS (sym))
|
|
|
|
|
{
|
|
|
|
|
case LOC_REGISTER:
|
|
|
|
|
case LOC_ARG:
|
|
|
|
|
case LOC_REF_ARG:
|
|
|
|
|
case LOC_REGPARM:
|
|
|
|
|
case LOC_REGPARM_ADDR:
|
|
|
|
|
case LOC_LOCAL:
|
|
|
|
|
case LOC_TYPEDEF:
|
|
|
|
|
case LOC_LOCAL_ARG:
|
|
|
|
|
case LOC_BASEREG:
|
|
|
|
|
case LOC_BASEREG_ARG:
|
|
|
|
|
case LOC_COMPUTED:
|
|
|
|
|
case LOC_COMPUTED_ARG:
|
2004-06-27 19:06:23 +00:00
|
|
|
|
for (j = FIRST_LOCAL_BLOCK;
|
|
|
|
|
j < BLOCKVECTOR_NBLOCKS (BLOCKVECTOR (s)); j += 1)
|
|
|
|
|
{
|
|
|
|
|
b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), j);
|
|
|
|
|
ALL_BLOCK_SYMBOLS (b, iter, tmp_sym) if (sym == tmp_sym)
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2004-06-16 08:18:06 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Return a minimal symbol matching NAME according to Ada decoding
|
|
|
|
|
rules. Returns NULL if there is no such minimal symbol. Names
|
|
|
|
|
prefixed with "standard__" are handled specially: "standard__" is
|
|
|
|
|
first stripped off, and only static and global symbols are searched. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
struct minimal_symbol *
|
|
|
|
|
ada_lookup_simple_minsym (const char *name)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
struct objfile *objfile;
|
2004-06-16 08:18:06 +00:00
|
|
|
|
struct minimal_symbol *msymbol;
|
|
|
|
|
int wild_match;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
if (strncmp (name, "standard__", sizeof ("standard__") - 1) == 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
name += sizeof ("standard__") - 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
wild_match = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
2004-06-16 08:18:06 +00:00
|
|
|
|
wild_match = (strstr (name, "__") == NULL);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
ALL_MSYMBOLS (objfile, msymbol)
|
|
|
|
|
{
|
|
|
|
|
if (ada_match_name (SYMBOL_LINKAGE_NAME (msymbol), name, wild_match)
|
|
|
|
|
&& MSYMBOL_TYPE (msymbol) != mst_solib_trampoline)
|
|
|
|
|
return msymbol;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* For all subprograms that statically enclose the subprogram of the
|
|
|
|
|
selected frame, add symbols matching identifier NAME in DOMAIN
|
|
|
|
|
and their blocks to the list of data in OBSTACKP, as for
|
|
|
|
|
ada_add_block_symbols (q.v.). If WILD, treat as NAME with a
|
|
|
|
|
wildcard prefix. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static void
|
|
|
|
|
add_symbols_from_enclosing_procs (struct obstack *obstackp,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
const char *name, domain_enum namespace,
|
2004-06-16 08:18:06 +00:00
|
|
|
|
int wild_match)
|
|
|
|
|
{
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* FIXME: The next two routines belong in symtab.c */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static void
|
|
|
|
|
restore_language (void *lang)
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
|
|
|
|
set_language ((enum language) lang);
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* As for lookup_symbol, but performed as if the current language
|
|
|
|
|
were LANG. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
struct symbol *
|
|
|
|
|
lookup_symbol_in_language (const char *name, const struct block *block,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
domain_enum domain, enum language lang,
|
|
|
|
|
int *is_a_field_of_this, struct symtab **symtab)
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct cleanup *old_chain
|
|
|
|
|
= make_cleanup (restore_language, (void *) current_language->la_language);
|
2004-06-16 08:18:06 +00:00
|
|
|
|
struct symbol *result;
|
|
|
|
|
set_language (lang);
|
|
|
|
|
result = lookup_symbol (name, block, domain, is_a_field_of_this, symtab);
|
|
|
|
|
do_cleanups (old_chain);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* True if TYPE is definitely an artificial type supplied to a symbol
|
|
|
|
|
for which no debugging information was given in the symbol file. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static int
|
|
|
|
|
is_nondebugging_type (struct type *type)
|
|
|
|
|
{
|
|
|
|
|
char *name = ada_type_name (type);
|
|
|
|
|
return (name != NULL && strcmp (name, "<variable, no debug info>") == 0);
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Remove any non-debugging symbols in SYMS[0 .. NSYMS-1] that definitely
|
|
|
|
|
duplicate other symbols in the list (The only case I know of where
|
|
|
|
|
this happens is when object files containing stabs-in-ecoff are
|
|
|
|
|
linked with files containing ordinary ecoff debugging symbols (or no
|
|
|
|
|
debugging symbols)). Modifies SYMS to squeeze out deleted entries.
|
|
|
|
|
Returns the number of items in the modified list. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static int
|
|
|
|
|
remove_extra_symbols (struct ada_symbol_info *syms, int nsyms)
|
|
|
|
|
{
|
|
|
|
|
int i, j;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
i = 0;
|
|
|
|
|
while (i < nsyms)
|
|
|
|
|
{
|
|
|
|
|
if (SYMBOL_LINKAGE_NAME (syms[i].sym) != NULL
|
|
|
|
|
&& SYMBOL_CLASS (syms[i].sym) == LOC_STATIC
|
|
|
|
|
&& is_nondebugging_type (SYMBOL_TYPE (syms[i].sym)))
|
|
|
|
|
{
|
|
|
|
|
for (j = 0; j < nsyms; j += 1)
|
|
|
|
|
{
|
|
|
|
|
if (i != j
|
|
|
|
|
&& SYMBOL_LINKAGE_NAME (syms[j].sym) != NULL
|
|
|
|
|
&& strcmp (SYMBOL_LINKAGE_NAME (syms[i].sym),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
SYMBOL_LINKAGE_NAME (syms[j].sym)) == 0
|
2004-06-16 08:18:06 +00:00
|
|
|
|
&& SYMBOL_CLASS (syms[i].sym) == SYMBOL_CLASS (syms[j].sym)
|
|
|
|
|
&& SYMBOL_VALUE_ADDRESS (syms[i].sym)
|
|
|
|
|
== SYMBOL_VALUE_ADDRESS (syms[j].sym))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
int k;
|
|
|
|
|
for (k = i + 1; k < nsyms; k += 1)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
syms[k - 1] = syms[k];
|
2004-06-16 08:18:06 +00:00
|
|
|
|
nsyms -= 1;
|
|
|
|
|
goto NextSymbol;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
i += 1;
|
|
|
|
|
NextSymbol:
|
|
|
|
|
;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return nsyms;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Given a type that corresponds to a renaming entity, use the type name
|
|
|
|
|
to extract the scope (package name or function name, fully qualified,
|
|
|
|
|
and following the GNAT encoding convention) where this renaming has been
|
|
|
|
|
defined. The string returned needs to be deallocated after use. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static char *
|
|
|
|
|
xget_renaming_scope (struct type *renaming_type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* The renaming types adhere to the following convention:
|
|
|
|
|
<scope>__<rename>___<XR extension>.
|
|
|
|
|
So, to extract the scope, we search for the "___XR" extension,
|
|
|
|
|
and then backtrack until we find the first "__". */
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
const char *name = type_name_no_tag (renaming_type);
|
|
|
|
|
char *suffix = strstr (name, "___XR");
|
|
|
|
|
char *last;
|
|
|
|
|
int scope_len;
|
|
|
|
|
char *scope;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Now, backtrack a bit until we find the first "__". Start looking
|
|
|
|
|
at suffix - 3, as the <rename> part is at least one character long. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
for (last = suffix - 3; last > name; last--)
|
|
|
|
|
if (last[0] == '_' && last[1] == '_')
|
|
|
|
|
break;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Make a copy of scope and return it. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
scope_len = last - name;
|
|
|
|
|
scope = (char *) xmalloc ((scope_len + 1) * sizeof (char));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
strncpy (scope, name, scope_len);
|
|
|
|
|
scope[scope_len] = '\0';
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return scope;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Return nonzero if NAME corresponds to a package name. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static int
|
|
|
|
|
is_package_name (const char *name)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Here, We take advantage of the fact that no symbols are generated
|
|
|
|
|
for packages, while symbols are generated for each function.
|
|
|
|
|
So the condition for NAME represent a package becomes equivalent
|
|
|
|
|
to NAME not existing in our list of symbols. There is only one
|
|
|
|
|
small complication with library-level functions (see below). */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
char *fun_name;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* If it is a function that has not been defined at library level,
|
|
|
|
|
then we should be able to look it up in the symbols. */
|
|
|
|
|
if (standard_lookup (name, NULL, VAR_DOMAIN) != NULL)
|
|
|
|
|
return 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Library-level function names start with "_ada_". See if function
|
|
|
|
|
"_ada_" followed by NAME can be found. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Do a quick check that NAME does not contain "__", since library-level
|
|
|
|
|
functions names can not contain "__" in them. */
|
|
|
|
|
if (strstr (name, "__") != NULL)
|
|
|
|
|
return 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-28 23:59:29 +00:00
|
|
|
|
fun_name = xstrprintf ("_ada_%s", name);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return (standard_lookup (fun_name, NULL, VAR_DOMAIN) == NULL);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Return nonzero if SYM corresponds to a renaming entity that is
|
|
|
|
|
visible from FUNCTION_NAME. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
static int
|
|
|
|
|
renaming_is_visible (const struct symbol *sym, char *function_name)
|
|
|
|
|
{
|
|
|
|
|
char *scope = xget_renaming_scope (SYMBOL_TYPE (sym));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
make_cleanup (xfree, scope);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* If the rename has been defined in a package, then it is visible. */
|
|
|
|
|
if (is_package_name (scope))
|
|
|
|
|
return 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Check that the rename is in the current function scope by checking
|
|
|
|
|
that its name starts with SCOPE. */
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* If the function name starts with "_ada_", it means that it is
|
|
|
|
|
a library-level function. Strip this prefix before doing the
|
|
|
|
|
comparison, as the encoding for the renaming does not contain
|
|
|
|
|
this prefix. */
|
|
|
|
|
if (strncmp (function_name, "_ada_", 5) == 0)
|
|
|
|
|
function_name += 5;
|
2004-06-08 08:42:04 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
return (strncmp (function_name, scope, strlen (scope)) == 0);
|
2004-06-08 08:42:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
/* Iterates over the SYMS list and remove any entry that corresponds to
|
|
|
|
|
a renaming entity that is not visible from the function associated
|
|
|
|
|
with CURRENT_BLOCK.
|
|
|
|
|
|
|
|
|
|
Rationale:
|
|
|
|
|
GNAT emits a type following a specified encoding for each renaming
|
|
|
|
|
entity. Unfortunately, STABS currently does not support the definition
|
|
|
|
|
of types that are local to a given lexical block, so all renamings types
|
|
|
|
|
are emitted at library level. As a consequence, if an application
|
|
|
|
|
contains two renaming entities using the same name, and a user tries to
|
|
|
|
|
print the value of one of these entities, the result of the ada symbol
|
|
|
|
|
lookup will also contain the wrong renaming type.
|
2004-06-08 08:42:04 +00:00
|
|
|
|
|
2004-06-16 08:18:06 +00:00
|
|
|
|
This function partially covers for this limitation by attempting to
|
|
|
|
|
remove from the SYMS list renaming symbols that should be visible
|
|
|
|
|
from CURRENT_BLOCK. However, there does not seem be a 100% reliable
|
|
|
|
|
method with the current information available. The implementation
|
|
|
|
|
below has a couple of limitations (FIXME: brobecker-2003-05-12):
|
|
|
|
|
|
|
|
|
|
- When the user tries to print a rename in a function while there
|
|
|
|
|
is another rename entity defined in a package: Normally, the
|
|
|
|
|
rename in the function has precedence over the rename in the
|
|
|
|
|
package, so the latter should be removed from the list. This is
|
|
|
|
|
currently not the case.
|
|
|
|
|
|
|
|
|
|
- This function will incorrectly remove valid renames if
|
|
|
|
|
the CURRENT_BLOCK corresponds to a function which symbol name
|
|
|
|
|
has been changed by an "Export" pragma. As a consequence,
|
|
|
|
|
the user will be unable to print such rename entities. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2004-06-16 08:18:06 +00:00
|
|
|
|
remove_out_of_scope_renamings (struct ada_symbol_info *syms,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
int nsyms, struct block *current_block)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
struct symbol *current_function;
|
|
|
|
|
char *current_function_name;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
/* Extract the function name associated to CURRENT_BLOCK.
|
|
|
|
|
Abort if unable to do so. */
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (current_block == NULL)
|
|
|
|
|
return nsyms;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
current_function = block_function (current_block);
|
|
|
|
|
if (current_function == NULL)
|
|
|
|
|
return nsyms;
|
|
|
|
|
|
|
|
|
|
current_function_name = SYMBOL_LINKAGE_NAME (current_function);
|
|
|
|
|
if (current_function_name == NULL)
|
|
|
|
|
return nsyms;
|
|
|
|
|
|
|
|
|
|
/* Check each of the symbols, and remove it from the list if it is
|
|
|
|
|
a type corresponding to a renaming that is out of the scope of
|
|
|
|
|
the current block. */
|
|
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
while (i < nsyms)
|
|
|
|
|
{
|
|
|
|
|
if (ada_is_object_renaming (syms[i].sym)
|
|
|
|
|
&& !renaming_is_visible (syms[i].sym, current_function_name))
|
|
|
|
|
{
|
|
|
|
|
int j;
|
|
|
|
|
for (j = i + 1; j < nsyms; j++)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
syms[j - 1] = syms[j];
|
2004-06-02 09:55:36 +00:00
|
|
|
|
nsyms -= 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
i += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nsyms;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Find symbols in DOMAIN matching NAME0, in BLOCK0 and enclosing
|
|
|
|
|
scope and in global scopes, returning the number of matches. Sets
|
|
|
|
|
*RESULTS to point to a vector of (SYM,BLOCK,SYMTAB) triples,
|
|
|
|
|
indicating the symbols found and the blocks and symbol tables (if
|
|
|
|
|
any) in which they were found. This vector are transient---good only to
|
|
|
|
|
the next call of ada_lookup_symbol_list. Any non-function/non-enumeral
|
|
|
|
|
symbol match within the nest of blocks whose innermost member is BLOCK0,
|
|
|
|
|
is the one match returned (no other matches in that or
|
|
|
|
|
enclosing blocks is returned). If there are any matches in or
|
|
|
|
|
surrounding BLOCK0, then these alone are returned. Otherwise, the
|
|
|
|
|
search extends to global and file-scope (static) symbol tables.
|
|
|
|
|
Names prefixed with "standard__" are handled specially: "standard__"
|
|
|
|
|
is first stripped off, and only static and global symbols are searched. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_lookup_symbol_list (const char *name0, const struct block *block0,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
domain_enum namespace,
|
|
|
|
|
struct ada_symbol_info **results)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
struct symbol *sym;
|
|
|
|
|
struct symtab *s;
|
|
|
|
|
struct partial_symtab *ps;
|
|
|
|
|
struct blockvector *bv;
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
struct block *block;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
const char *name;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
struct minimal_symbol *msymbol;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int wild_match;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int cacheIfUnique;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int block_depth;
|
|
|
|
|
int ndefns;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
obstack_free (&symbol_list_obstack, NULL);
|
|
|
|
|
obstack_init (&symbol_list_obstack);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
cacheIfUnique = 0;
|
|
|
|
|
|
|
|
|
|
/* Search specified block and its superiors. */
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
wild_match = (strstr (name0, "__") == NULL);
|
|
|
|
|
name = name0;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
block = (struct block *) block0; /* FIXME: No cast ought to be
|
|
|
|
|
needed, but adding const will
|
|
|
|
|
have a cascade effect. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (strncmp (name0, "standard__", sizeof ("standard__") - 1) == 0)
|
|
|
|
|
{
|
|
|
|
|
wild_match = 0;
|
|
|
|
|
block = NULL;
|
|
|
|
|
name = name0 + sizeof ("standard__") - 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
block_depth = 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
while (block != NULL)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
block_depth += 1;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_add_block_symbols (&symbol_list_obstack, block, name,
|
|
|
|
|
namespace, NULL, NULL, wild_match);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* If we found a non-function match, assume that's the one. */
|
|
|
|
|
if (is_nonfunction (defns_collected (&symbol_list_obstack, 0),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
num_defns_collected (&symbol_list_obstack)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto done;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
block = BLOCK_SUPERBLOCK (block);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* If no luck so far, try to find NAME as a local symbol in some lexically
|
|
|
|
|
enclosing subprogram. */
|
|
|
|
|
if (num_defns_collected (&symbol_list_obstack) == 0 && block_depth > 2)
|
|
|
|
|
add_symbols_from_enclosing_procs (&symbol_list_obstack,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
name, namespace, wild_match);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
/* If we found ANY matches among non-global symbols, we're done. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (num_defns_collected (&symbol_list_obstack) > 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
goto done;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
cacheIfUnique = 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (lookup_cached_symbol (name0, namespace, &sym, &block, &s))
|
|
|
|
|
{
|
|
|
|
|
if (sym != NULL)
|
|
|
|
|
add_defn_to_vec (&symbol_list_obstack, sym, block, s);
|
|
|
|
|
goto done;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Now add symbols from all global blocks: symbol tables, minimal symbol
|
2004-06-02 09:55:36 +00:00
|
|
|
|
tables, and psymtab's. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
ALL_SYMTABS (objfile, s)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
|
|
|
|
QUIT;
|
|
|
|
|
if (!s->primary)
|
|
|
|
|
continue;
|
|
|
|
|
bv = BLOCKVECTOR (s);
|
|
|
|
|
block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_add_block_symbols (&symbol_list_obstack, block, name, namespace,
|
|
|
|
|
objfile, s, wild_match);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (namespace == VAR_DOMAIN)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
ALL_MSYMBOLS (objfile, msymbol)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ada_match_name (SYMBOL_LINKAGE_NAME (msymbol), name, wild_match))
|
|
|
|
|
{
|
|
|
|
|
switch (MSYMBOL_TYPE (msymbol))
|
|
|
|
|
{
|
|
|
|
|
case mst_solib_trampoline:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol));
|
|
|
|
|
if (s != NULL)
|
|
|
|
|
{
|
|
|
|
|
int ndefns0 = num_defns_collected (&symbol_list_obstack);
|
|
|
|
|
QUIT;
|
|
|
|
|
bv = BLOCKVECTOR (s);
|
|
|
|
|
block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
|
|
|
|
|
ada_add_block_symbols (&symbol_list_obstack, block,
|
|
|
|
|
SYMBOL_LINKAGE_NAME (msymbol),
|
|
|
|
|
namespace, objfile, s, wild_match);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (num_defns_collected (&symbol_list_obstack) == ndefns0)
|
|
|
|
|
{
|
|
|
|
|
block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
|
|
|
|
|
ada_add_block_symbols (&symbol_list_obstack, block,
|
|
|
|
|
SYMBOL_LINKAGE_NAME (msymbol),
|
|
|
|
|
namespace, objfile, s,
|
|
|
|
|
wild_match);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
ALL_PSYMTABS (objfile, ps)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
|
|
|
|
QUIT;
|
|
|
|
|
if (!ps->readin
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& ada_lookup_partial_symbol (ps, name, 1, namespace, wild_match))
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
s = PSYMTAB_TO_SYMTAB (ps);
|
|
|
|
|
if (!s->primary)
|
|
|
|
|
continue;
|
|
|
|
|
bv = BLOCKVECTOR (s);
|
|
|
|
|
block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
|
|
|
|
|
ada_add_block_symbols (&symbol_list_obstack, block, name,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
namespace, objfile, s, wild_match);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Now add symbols from all per-file blocks if we've gotten no hits
|
2002-06-04 15:28:49 +00:00
|
|
|
|
(Not strictly correct, but perhaps better than an error).
|
2004-06-02 09:55:36 +00:00
|
|
|
|
Do the symtabs first, then check the psymtabs. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (num_defns_collected (&symbol_list_obstack) == 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ALL_SYMTABS (objfile, s)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
QUIT;
|
|
|
|
|
if (!s->primary)
|
|
|
|
|
continue;
|
|
|
|
|
bv = BLOCKVECTOR (s);
|
|
|
|
|
block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_add_block_symbols (&symbol_list_obstack, block, name, namespace,
|
|
|
|
|
objfile, s, wild_match);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
ALL_PSYMTABS (objfile, ps)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
QUIT;
|
|
|
|
|
if (!ps->readin
|
|
|
|
|
&& ada_lookup_partial_symbol (ps, name, 0, namespace, wild_match))
|
|
|
|
|
{
|
|
|
|
|
s = PSYMTAB_TO_SYMTAB (ps);
|
|
|
|
|
bv = BLOCKVECTOR (s);
|
|
|
|
|
if (!s->primary)
|
|
|
|
|
continue;
|
|
|
|
|
block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_add_block_symbols (&symbol_list_obstack, block, name,
|
|
|
|
|
namespace, objfile, s, wild_match);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
done:
|
|
|
|
|
ndefns = num_defns_collected (&symbol_list_obstack);
|
|
|
|
|
*results = defns_collected (&symbol_list_obstack, 1);
|
|
|
|
|
|
|
|
|
|
ndefns = remove_extra_symbols (*results, ndefns);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (ndefns == 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
cache_symbol (name0, namespace, NULL, NULL, NULL);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ndefns == 1 && cacheIfUnique)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
cache_symbol (name0, namespace, (*results)[0].sym, (*results)[0].block,
|
|
|
|
|
(*results)[0].symtab);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ndefns = remove_out_of_scope_renamings (*results, ndefns,
|
|
|
|
|
(struct block *) block0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return ndefns;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return a symbol in DOMAIN matching NAME, in BLOCK0 and enclosing
|
|
|
|
|
scope and in global scopes, or NULL if none. NAME is folded and
|
|
|
|
|
encoded first. Otherwise, the result is as for ada_lookup_symbol_list,
|
2004-10-15 09:12:24 +00:00
|
|
|
|
choosing the first symbol if there are multiple choices.
|
|
|
|
|
*IS_A_FIELD_OF_THIS is set to 0 and *SYMTAB is set to the symbol
|
|
|
|
|
table in which the symbol was found (in both cases, these
|
|
|
|
|
assignments occur only if the pointers are non-null). */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct symbol *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_lookup_symbol (const char *name, const struct block *block0,
|
|
|
|
|
domain_enum namespace, int *is_a_field_of_this,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct symtab **symtab)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct ada_symbol_info *candidates;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int n_candidates;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
n_candidates = ada_lookup_symbol_list (ada_encode (ada_fold_name (name)),
|
|
|
|
|
block0, namespace, &candidates);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (n_candidates == 0)
|
|
|
|
|
return NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
if (is_a_field_of_this != NULL)
|
|
|
|
|
*is_a_field_of_this = 0;
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (symtab != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
*symtab = candidates[0].symtab;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (*symtab == NULL && candidates[0].block != NULL)
|
|
|
|
|
{
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
struct symtab *s;
|
|
|
|
|
struct block *b;
|
|
|
|
|
struct blockvector *bv;
|
|
|
|
|
|
|
|
|
|
/* Search the list of symtabs for one which contains the
|
|
|
|
|
address of the start of this block. */
|
|
|
|
|
ALL_SYMTABS (objfile, s)
|
|
|
|
|
{
|
|
|
|
|
bv = BLOCKVECTOR (s);
|
|
|
|
|
b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
|
|
|
|
|
if (BLOCK_START (b) <= BLOCK_START (candidates[0].block)
|
|
|
|
|
&& BLOCK_END (b) > BLOCK_START (candidates[0].block))
|
|
|
|
|
{
|
|
|
|
|
*symtab = s;
|
|
|
|
|
return fixup_symbol_section (candidates[0].sym, objfile);
|
|
|
|
|
}
|
|
|
|
|
return fixup_symbol_section (candidates[0].sym, NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return candidates[0].sym;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct symbol *
|
|
|
|
|
ada_lookup_symbol_nonlocal (const char *name,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
const char *linkage_name,
|
|
|
|
|
const struct block *block,
|
|
|
|
|
const domain_enum domain, struct symtab **symtab)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (linkage_name == NULL)
|
|
|
|
|
linkage_name = name;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return ada_lookup_symbol (linkage_name, block_static_block (block), domain,
|
|
|
|
|
NULL, symtab);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff STR is a possible encoded suffix of a normal Ada name
|
|
|
|
|
that is to be ignored for matching purposes. Suffixes of parallel
|
|
|
|
|
names (e.g., XVE) are not included here. Currently, the possible suffixes
|
|
|
|
|
are given by either of the regular expression:
|
|
|
|
|
|
2004-07-01 10:11:11 +00:00
|
|
|
|
(__[0-9]+)?\.[0-9]+ [nested subprogram suffix, on platforms such
|
|
|
|
|
as GNU/Linux]
|
2004-06-02 09:55:36 +00:00
|
|
|
|
___[0-9]+ [nested subprogram suffix, on platforms such as HP/UX]
|
2004-10-08 09:40:12 +00:00
|
|
|
|
(X[nb]*)?((\$|__)[0-9](_?[0-9]+)|___(JM|LJM|X([FDBUP].*|R[^T]?)))?$
|
2002-06-04 15:28:49 +00:00
|
|
|
|
*/
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
is_name_suffix (const char *str)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int k;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
const char *matching;
|
|
|
|
|
const int len = strlen (str);
|
|
|
|
|
|
|
|
|
|
/* (__[0-9]+)?\.[0-9]+ */
|
|
|
|
|
matching = str;
|
|
|
|
|
if (len > 3 && str[0] == '_' && str[1] == '_' && isdigit (str[2]))
|
|
|
|
|
{
|
|
|
|
|
matching += 3;
|
|
|
|
|
while (isdigit (matching[0]))
|
|
|
|
|
matching += 1;
|
|
|
|
|
if (matching[0] == '\0')
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (matching[0] == '.')
|
|
|
|
|
{
|
|
|
|
|
matching += 1;
|
|
|
|
|
while (isdigit (matching[0]))
|
|
|
|
|
matching += 1;
|
|
|
|
|
if (matching[0] == '\0')
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ___[0-9]+ */
|
|
|
|
|
if (len > 3 && str[0] == '_' && str[1] == '_' && str[2] == '_')
|
|
|
|
|
{
|
|
|
|
|
matching = str + 3;
|
|
|
|
|
while (isdigit (matching[0]))
|
|
|
|
|
matching += 1;
|
|
|
|
|
if (matching[0] == '\0')
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ??? We should not modify STR directly, as we are doing below. This
|
|
|
|
|
is fine in this case, but may become problematic later if we find
|
|
|
|
|
that this alternative did not work, and want to try matching
|
|
|
|
|
another one from the begining of STR. Since we modified it, we
|
|
|
|
|
won't be able to find the begining of the string anymore! */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (str[0] == 'X')
|
|
|
|
|
{
|
|
|
|
|
str += 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (str[0] != '_' && str[0] != '\0')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (str[0] != 'n' && str[0] != 'b')
|
|
|
|
|
return 0;
|
|
|
|
|
str += 1;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
if (str[0] == '\000')
|
|
|
|
|
return 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (str[0] == '_')
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (str[1] != '_' || str[2] == '\000')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (str[2] == '_')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
if (strcmp (str + 3, "JM") == 0)
|
|
|
|
|
return 1;
|
|
|
|
|
/* FIXME: brobecker/2004-09-30: GNAT will soon stop using
|
|
|
|
|
the LJM suffix in favor of the JM one. But we will
|
|
|
|
|
still accept LJM as a valid suffix for a reasonable
|
|
|
|
|
amount of time, just to allow ourselves to debug programs
|
|
|
|
|
compiled using an older version of GNAT. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (strcmp (str + 3, "LJM") == 0)
|
|
|
|
|
return 1;
|
|
|
|
|
if (str[3] != 'X')
|
|
|
|
|
return 0;
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (str[4] == 'F' || str[4] == 'D' || str[4] == 'B'
|
|
|
|
|
|| str[4] == 'U' || str[4] == 'P')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return 1;
|
|
|
|
|
if (str[4] == 'R' && str[5] != 'T')
|
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (!isdigit (str[2]))
|
|
|
|
|
return 0;
|
|
|
|
|
for (k = 3; str[k] != '\0'; k += 1)
|
|
|
|
|
if (!isdigit (str[k]) && str[k] != '_')
|
|
|
|
|
return 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (str[0] == '$' && isdigit (str[1]))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (k = 2; str[k] != '\0'; k += 1)
|
|
|
|
|
if (!isdigit (str[k]) && str[k] != '_')
|
|
|
|
|
return 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return nonzero if the given string starts with a dot ('.')
|
|
|
|
|
followed by zero or more digits.
|
|
|
|
|
|
|
|
|
|
Note: brobecker/2003-11-10: A forward declaration has not been
|
|
|
|
|
added at the begining of this file yet, because this function
|
|
|
|
|
is only used to work around a problem found during wild matching
|
|
|
|
|
when trying to match minimal symbol names against symbol names
|
|
|
|
|
obtained from dwarf-2 data. This function is therefore currently
|
|
|
|
|
only used in wild_match() and is likely to be deleted when the
|
|
|
|
|
problem in dwarf-2 is fixed. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
is_dot_digits_suffix (const char *str)
|
|
|
|
|
{
|
|
|
|
|
if (str[0] != '.')
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
str++;
|
|
|
|
|
while (isdigit (str[0]))
|
|
|
|
|
str++;
|
|
|
|
|
return (str[0] == '\0');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* True if NAME represents a name of the form A1.A2....An, n>=1 and
|
|
|
|
|
PATN[0..PATN_LEN-1] = Ak.Ak+1.....An for some k >= 1. Ignores
|
|
|
|
|
informational suffixes of NAME (i.e., for which is_name_suffix is
|
|
|
|
|
true). */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static int
|
2004-06-02 09:55:36 +00:00
|
|
|
|
wild_match (const char *patn0, int patn_len, const char *name0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int name_len;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
char *name;
|
|
|
|
|
char *patn;
|
|
|
|
|
|
|
|
|
|
/* FIXME: brobecker/2003-11-10: For some reason, the symbol name
|
|
|
|
|
stored in the symbol table for nested function names is sometimes
|
|
|
|
|
different from the name of the associated entity stored in
|
|
|
|
|
the dwarf-2 data: This is the case for nested subprograms, where
|
|
|
|
|
the minimal symbol name contains a trailing ".[:digit:]+" suffix,
|
|
|
|
|
while the symbol name from the dwarf-2 data does not.
|
|
|
|
|
|
|
|
|
|
Although the DWARF-2 standard documents that entity names stored
|
|
|
|
|
in the dwarf-2 data should be identical to the name as seen in
|
|
|
|
|
the source code, GNAT takes a different approach as we already use
|
|
|
|
|
a special encoding mechanism to convey the information so that
|
|
|
|
|
a C debugger can still use the information generated to debug
|
|
|
|
|
Ada programs. A corollary is that the symbol names in the dwarf-2
|
|
|
|
|
data should match the names found in the symbol table. I therefore
|
|
|
|
|
consider this issue as a compiler defect.
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
Until the compiler is properly fixed, we work-around the problem
|
|
|
|
|
by ignoring such suffixes during the match. We do so by making
|
|
|
|
|
a copy of PATN0 and NAME0, and then by stripping such a suffix
|
|
|
|
|
if present. We then perform the match on the resulting strings. */
|
|
|
|
|
{
|
|
|
|
|
char *dot;
|
|
|
|
|
name_len = strlen (name0);
|
|
|
|
|
|
|
|
|
|
name = (char *) alloca ((name_len + 1) * sizeof (char));
|
|
|
|
|
strcpy (name, name0);
|
|
|
|
|
dot = strrchr (name, '.');
|
|
|
|
|
if (dot != NULL && is_dot_digits_suffix (dot))
|
|
|
|
|
*dot = '\0';
|
|
|
|
|
|
|
|
|
|
patn = (char *) alloca ((patn_len + 1) * sizeof (char));
|
|
|
|
|
strncpy (patn, patn0, patn_len);
|
|
|
|
|
patn[patn_len] = '\0';
|
|
|
|
|
dot = strrchr (patn, '.');
|
|
|
|
|
if (dot != NULL && is_dot_digits_suffix (dot))
|
|
|
|
|
{
|
|
|
|
|
*dot = '\0';
|
|
|
|
|
patn_len = dot - patn;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now perform the wild match. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
name_len = strlen (name);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (name_len >= patn_len + 5 && strncmp (name, "_ada_", 5) == 0
|
|
|
|
|
&& strncmp (patn, name + 5, patn_len) == 0
|
2002-08-18 18:11:12 +00:00
|
|
|
|
&& is_name_suffix (name + patn_len + 5))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (name_len >= patn_len)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (strncmp (patn, name, patn_len) == 0
|
|
|
|
|
&& is_name_suffix (name + patn_len))
|
|
|
|
|
return 1;
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
name += 1;
|
|
|
|
|
name_len -= 1;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
while (name_len > 0
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& name[0] != '.' && (name[0] != '_' || name[1] != '_'));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (name_len <= 0)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (name[0] == '_')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (!islower (name[2]))
|
|
|
|
|
return 0;
|
|
|
|
|
name += 2;
|
|
|
|
|
name_len -= 2;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (!islower (name[1]))
|
|
|
|
|
return 0;
|
|
|
|
|
name += 1;
|
|
|
|
|
name_len -= 1;
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Add symbols from BLOCK matching identifier NAME in DOMAIN to
|
|
|
|
|
vector *defn_symbols, updating the list of symbols in OBSTACKP
|
|
|
|
|
(if necessary). If WILD, treat as NAME with a wildcard prefix.
|
|
|
|
|
OBJFILE is the section containing BLOCK.
|
|
|
|
|
SYMTAB is recorded with each symbol added. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ada_add_block_symbols (struct obstack *obstackp,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct block *block, const char *name,
|
2004-06-16 08:18:06 +00:00
|
|
|
|
domain_enum domain, struct objfile *objfile,
|
|
|
|
|
struct symtab *symtab, int wild)
|
|
|
|
|
{
|
|
|
|
|
struct dict_iterator iter;
|
|
|
|
|
int name_len = strlen (name);
|
|
|
|
|
/* A matching argument symbol, if any. */
|
|
|
|
|
struct symbol *arg_sym;
|
|
|
|
|
/* Set true when we find a matching non-argument symbol. */
|
|
|
|
|
int found_sym;
|
|
|
|
|
struct symbol *sym;
|
|
|
|
|
|
|
|
|
|
arg_sym = NULL;
|
|
|
|
|
found_sym = 0;
|
|
|
|
|
if (wild)
|
|
|
|
|
{
|
|
|
|
|
struct symbol *sym;
|
|
|
|
|
ALL_BLOCK_SYMBOLS (block, iter, sym)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (SYMBOL_DOMAIN (sym) == domain
|
|
|
|
|
&& wild_match (name, name_len, SYMBOL_LINKAGE_NAME (sym)))
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
switch (SYMBOL_CLASS (sym))
|
|
|
|
|
{
|
|
|
|
|
case LOC_ARG:
|
|
|
|
|
case LOC_LOCAL_ARG:
|
|
|
|
|
case LOC_REF_ARG:
|
|
|
|
|
case LOC_REGPARM:
|
|
|
|
|
case LOC_REGPARM_ADDR:
|
|
|
|
|
case LOC_BASEREG_ARG:
|
|
|
|
|
case LOC_COMPUTED_ARG:
|
|
|
|
|
arg_sym = sym;
|
|
|
|
|
break;
|
|
|
|
|
case LOC_UNRESOLVED:
|
|
|
|
|
continue;
|
|
|
|
|
default:
|
|
|
|
|
found_sym = 1;
|
|
|
|
|
add_defn_to_vec (obstackp,
|
|
|
|
|
fixup_symbol_section (sym, objfile),
|
|
|
|
|
block, symtab);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ALL_BLOCK_SYMBOLS (block, iter, sym)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (SYMBOL_DOMAIN (sym) == domain)
|
|
|
|
|
{
|
|
|
|
|
int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym), name_len);
|
|
|
|
|
if (cmp == 0
|
|
|
|
|
&& is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len))
|
|
|
|
|
{
|
|
|
|
|
switch (SYMBOL_CLASS (sym))
|
|
|
|
|
{
|
|
|
|
|
case LOC_ARG:
|
|
|
|
|
case LOC_LOCAL_ARG:
|
|
|
|
|
case LOC_REF_ARG:
|
|
|
|
|
case LOC_REGPARM:
|
|
|
|
|
case LOC_REGPARM_ADDR:
|
|
|
|
|
case LOC_BASEREG_ARG:
|
|
|
|
|
case LOC_COMPUTED_ARG:
|
|
|
|
|
arg_sym = sym;
|
|
|
|
|
break;
|
|
|
|
|
case LOC_UNRESOLVED:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
found_sym = 1;
|
|
|
|
|
add_defn_to_vec (obstackp,
|
|
|
|
|
fixup_symbol_section (sym, objfile),
|
|
|
|
|
block, symtab);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!found_sym && arg_sym != NULL)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
add_defn_to_vec (obstackp,
|
|
|
|
|
fixup_symbol_section (arg_sym, objfile),
|
|
|
|
|
block, symtab);
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!wild)
|
|
|
|
|
{
|
|
|
|
|
arg_sym = NULL;
|
|
|
|
|
found_sym = 0;
|
|
|
|
|
|
|
|
|
|
ALL_BLOCK_SYMBOLS (block, iter, sym)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (SYMBOL_DOMAIN (sym) == domain)
|
|
|
|
|
{
|
|
|
|
|
int cmp;
|
|
|
|
|
|
|
|
|
|
cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (sym)[0];
|
|
|
|
|
if (cmp == 0)
|
|
|
|
|
{
|
|
|
|
|
cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (sym), 5);
|
|
|
|
|
if (cmp == 0)
|
|
|
|
|
cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym) + 5,
|
|
|
|
|
name_len);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (cmp == 0
|
|
|
|
|
&& is_name_suffix (SYMBOL_LINKAGE_NAME (sym) + name_len + 5))
|
|
|
|
|
{
|
|
|
|
|
switch (SYMBOL_CLASS (sym))
|
|
|
|
|
{
|
|
|
|
|
case LOC_ARG:
|
|
|
|
|
case LOC_LOCAL_ARG:
|
|
|
|
|
case LOC_REF_ARG:
|
|
|
|
|
case LOC_REGPARM:
|
|
|
|
|
case LOC_REGPARM_ADDR:
|
|
|
|
|
case LOC_BASEREG_ARG:
|
|
|
|
|
case LOC_COMPUTED_ARG:
|
|
|
|
|
arg_sym = sym;
|
|
|
|
|
break;
|
|
|
|
|
case LOC_UNRESOLVED:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
found_sym = 1;
|
|
|
|
|
add_defn_to_vec (obstackp,
|
|
|
|
|
fixup_symbol_section (sym, objfile),
|
|
|
|
|
block, symtab);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
|
|
|
|
/* NOTE: This really shouldn't be needed for _ada_ symbols.
|
|
|
|
|
They aren't parameters, right? */
|
|
|
|
|
if (!found_sym && arg_sym != NULL)
|
|
|
|
|
{
|
|
|
|
|
add_defn_to_vec (obstackp,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
fixup_symbol_section (arg_sym, objfile),
|
|
|
|
|
block, symtab);
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* Field Access */
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* True if field number FIELD_NUM in struct or union type TYPE is supposed
|
|
|
|
|
to be invisible to users. */
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
int
|
|
|
|
|
ada_is_ignored_field (struct type *type, int field_num)
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
2004-10-01 10:23:09 +00:00
|
|
|
|
if (field_num < 0 || field_num > TYPE_NFIELDS (type))
|
|
|
|
|
return 1;
|
|
|
|
|
else
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
2004-10-01 10:23:09 +00:00
|
|
|
|
const char *name = TYPE_FIELD_NAME (type, field_num);
|
|
|
|
|
return (name == NULL
|
|
|
|
|
|| (name[0] == '_' && strncmp (name, "_parent", 7) != 0));
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
2004-10-01 10:23:09 +00:00
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* True iff TYPE has a tag field. If REFOK, then TYPE may also be a
|
|
|
|
|
pointer or reference type whose ultimate target has a tag field. */
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
int
|
|
|
|
|
ada_is_tagged_type (struct type *type, int refok)
|
|
|
|
|
{
|
|
|
|
|
return (ada_lookup_struct_elt_type (type, "_tag", refok, 1, NULL) != NULL);
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* True iff TYPE represents the type of X'Tag */
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
int
|
|
|
|
|
ada_is_tag_type (struct type *type)
|
|
|
|
|
{
|
|
|
|
|
if (type == NULL || TYPE_CODE (type) != TYPE_CODE_PTR)
|
|
|
|
|
return 0;
|
|
|
|
|
else
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
2004-10-01 10:23:09 +00:00
|
|
|
|
const char *name = ada_type_name (TYPE_TARGET_TYPE (type));
|
|
|
|
|
return (name != NULL
|
|
|
|
|
&& strcmp (name, "ada__tags__dispatch_table") == 0);
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* The type of the tag on VAL. */
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
struct type *
|
|
|
|
|
ada_tag_type (struct value *val)
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return ada_lookup_struct_elt_type (value_type (val), "_tag", 1, 0, NULL);
|
2004-10-01 10:23:09 +00:00
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* The value of the tag on VAL. */
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_value_tag (struct value *val)
|
|
|
|
|
{
|
|
|
|
|
return ada_value_struct_elt (val, "_tag", "record");
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
/* The value of the tag on the object of type TYPE whose contents are
|
|
|
|
|
saved at VALADDR, if it is non-null, or is at memory address
|
|
|
|
|
ADDRESS. */
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
static struct value *
|
2005-01-28 19:56:01 +00:00
|
|
|
|
value_tag_from_contents_and_address (struct type *type,
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
const gdb_byte *valaddr,
|
2004-10-01 10:23:09 +00:00
|
|
|
|
CORE_ADDR address)
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
2004-10-01 10:23:09 +00:00
|
|
|
|
int tag_byte_offset, dummy1, dummy2;
|
|
|
|
|
struct type *tag_type;
|
|
|
|
|
if (find_struct_field ("_tag", type, 0, &tag_type, &tag_byte_offset,
|
|
|
|
|
&dummy1, &dummy2))
|
2004-06-16 08:18:06 +00:00
|
|
|
|
{
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
const gdb_byte *valaddr1 = ((valaddr == NULL)
|
2005-01-28 19:56:01 +00:00
|
|
|
|
? NULL
|
|
|
|
|
: valaddr + tag_byte_offset);
|
2004-10-01 10:23:09 +00:00
|
|
|
|
CORE_ADDR address1 = (address == 0) ? 0 : address + tag_byte_offset;
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
return value_from_contents_and_address (tag_type, valaddr1, address1);
|
2004-06-16 08:18:06 +00:00
|
|
|
|
}
|
2004-10-01 10:23:09 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
type_from_tag (struct value *tag)
|
|
|
|
|
{
|
|
|
|
|
const char *type_name = ada_tag_name (tag);
|
|
|
|
|
if (type_name != NULL)
|
|
|
|
|
return ada_find_any_type (ada_encode (type_name));
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2004-06-16 08:18:06 +00:00
|
|
|
|
|
2004-10-01 10:23:09 +00:00
|
|
|
|
struct tag_args
|
|
|
|
|
{
|
|
|
|
|
struct value *tag;
|
|
|
|
|
char *name;
|
|
|
|
|
};
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
/* Wrapper function used by ada_tag_name. Given a struct tag_args*
|
|
|
|
|
value ARGS, sets ARGS->name to the tag name of ARGS->tag.
|
|
|
|
|
The value stored in ARGS->name is valid until the next call to
|
|
|
|
|
ada_tag_name_1. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ada_tag_name_1 (void *args0)
|
|
|
|
|
{
|
|
|
|
|
struct tag_args *args = (struct tag_args *) args0;
|
|
|
|
|
static char name[1024];
|
2004-06-27 19:06:23 +00:00
|
|
|
|
char *p;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value *val;
|
|
|
|
|
args->name = NULL;
|
|
|
|
|
val = ada_value_struct_elt (args->tag, "tsd", NULL);
|
|
|
|
|
if (val == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
val = ada_value_struct_elt (val, "expanded_name", NULL);
|
|
|
|
|
if (val == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
read_memory_string (value_as_address (val), name, sizeof (name) - 1);
|
|
|
|
|
for (p = name; *p != '\0'; p += 1)
|
|
|
|
|
if (isalpha (*p))
|
|
|
|
|
*p = tolower (*p);
|
|
|
|
|
args->name = name;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The type name of the dynamic type denoted by the 'tag value TAG, as
|
|
|
|
|
* a C string. */
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
|
ada_tag_name (struct value *tag)
|
|
|
|
|
{
|
|
|
|
|
struct tag_args args;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (!ada_is_tag_type (value_type (tag)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return NULL;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
args.tag = tag;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
args.name = NULL;
|
|
|
|
|
catch_errors (ada_tag_name_1, &args, NULL, RETURN_MASK_ALL);
|
|
|
|
|
return args.name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The parent type of TYPE, or NULL if none. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_parent_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < TYPE_NFIELDS (type); i += 1)
|
|
|
|
|
if (ada_is_parent_field (type, i))
|
2004-10-08 09:40:12 +00:00
|
|
|
|
return ada_check_typedef (TYPE_FIELD_TYPE (type, i));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff field number FIELD_NUM of structure type TYPE contains the
|
|
|
|
|
parent-type (inherited) fields of a derived type. Assumes TYPE is
|
|
|
|
|
a structure type with at least FIELD_NUM+1 fields. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_parent_field (struct type *type, int field_num)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
const char *name = TYPE_FIELD_NAME (ada_check_typedef (type), field_num);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return (name != NULL
|
|
|
|
|
&& (strncmp (name, "PARENT", 6) == 0
|
|
|
|
|
|| strncmp (name, "_parent", 7) == 0));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff field number FIELD_NUM of structure type TYPE is a
|
2002-06-04 15:28:49 +00:00
|
|
|
|
transparent wrapper field (which should be silently traversed when doing
|
2004-06-02 09:55:36 +00:00
|
|
|
|
field selection and flattened when printing). Assumes TYPE is a
|
2002-06-04 15:28:49 +00:00
|
|
|
|
structure type with at least FIELD_NUM+1 fields. Such fields are always
|
2004-06-02 09:55:36 +00:00
|
|
|
|
structures. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_wrapper_field (struct type *type, int field_num)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *name = TYPE_FIELD_NAME (type, field_num);
|
|
|
|
|
return (name != NULL
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& (strncmp (name, "PARENT", 6) == 0
|
|
|
|
|
|| strcmp (name, "REP") == 0
|
|
|
|
|
|| strncmp (name, "_parent", 7) == 0
|
|
|
|
|
|| name[0] == 'S' || name[0] == 'R' || name[0] == 'O'));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff field number FIELD_NUM of structure or union type TYPE
|
|
|
|
|
is a variant wrapper. Assumes TYPE is a structure type with at least
|
|
|
|
|
FIELD_NUM+1 fields. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_variant_part (struct type *type, int field_num)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *field_type = TYPE_FIELD_TYPE (type, field_num);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (TYPE_CODE (field_type) == TYPE_CODE_UNION
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| (is_dynamic_field (type, field_num)
|
2004-07-09 19:29:56 +00:00
|
|
|
|
&& (TYPE_CODE (TYPE_TARGET_TYPE (field_type))
|
|
|
|
|
== TYPE_CODE_UNION)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming that VAR_TYPE is a variant wrapper (type of the variant part)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
whose discriminants are contained in the record type OUTER_TYPE,
|
2002-06-04 15:28:49 +00:00
|
|
|
|
returns the type of the controlling discriminant for the variant. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_variant_discrim_type (struct type *var_type, struct type *outer_type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *name = ada_variant_discrim_name (var_type);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct type *type =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_lookup_struct_elt_type (outer_type, name, 1, 1, NULL);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (type == NULL)
|
|
|
|
|
return builtin_type_int;
|
|
|
|
|
else
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Assuming that TYPE is the type of a variant wrapper, and FIELD_NUM is a
|
2002-06-04 15:28:49 +00:00
|
|
|
|
valid field number within it, returns 1 iff field FIELD_NUM of TYPE
|
2004-06-02 09:55:36 +00:00
|
|
|
|
represents a 'when others' clause; otherwise 0. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_others_clause (struct type *type, int field_num)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *name = TYPE_FIELD_NAME (type, field_num);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (name != NULL && name[0] == 'O');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming that TYPE0 is the type of the variant part of a record,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
returns the name of the discriminant controlling the variant.
|
|
|
|
|
The value is valid until the next call to ada_variant_discrim_name. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_variant_discrim_name (struct type *type0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static char *result = NULL;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static size_t result_len = 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type;
|
|
|
|
|
const char *name;
|
|
|
|
|
const char *discrim_end;
|
|
|
|
|
const char *discrim_start;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (type0) == TYPE_CODE_PTR)
|
|
|
|
|
type = TYPE_TARGET_TYPE (type0);
|
|
|
|
|
else
|
|
|
|
|
type = type0;
|
|
|
|
|
|
|
|
|
|
name = ada_type_name (type);
|
|
|
|
|
|
|
|
|
|
if (name == NULL || name[0] == '\000')
|
|
|
|
|
return "";
|
|
|
|
|
|
|
|
|
|
for (discrim_end = name + strlen (name) - 6; discrim_end != name;
|
|
|
|
|
discrim_end -= 1)
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (strncmp (discrim_end, "___XVN", 6) == 0)
|
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
if (discrim_end == name)
|
|
|
|
|
return "";
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (discrim_start = discrim_end; discrim_start != name + 3;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
discrim_start -= 1)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (discrim_start == name + 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return "";
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if ((discrim_start > name + 3
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& strncmp (discrim_start - 3, "___", 3) == 0)
|
|
|
|
|
|| discrim_start[-1] == '.')
|
|
|
|
|
break;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GROW_VECT (result, result_len, discrim_end - discrim_start + 1);
|
|
|
|
|
strncpy (result, discrim_start, discrim_end - discrim_start);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
result[discrim_end - discrim_start] = '\0';
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Scan STR for a subtype-encoded number, beginning at position K.
|
|
|
|
|
Put the position of the character just past the number scanned in
|
|
|
|
|
*NEW_K, if NEW_K!=NULL. Put the scanned number in *R, if R!=NULL.
|
|
|
|
|
Return 1 if there was a valid number at the given position, and 0
|
|
|
|
|
otherwise. A "subtype-encoded" number consists of the absolute value
|
|
|
|
|
in decimal, followed by the letter 'm' to indicate a negative number.
|
|
|
|
|
Assumes 0m does not occur. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_scan_number (const char str[], int k, LONGEST * R, int *new_k)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
ULONGEST RU;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (!isdigit (str[k]))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Do it the hard way so as not to make any assumption about
|
2002-06-04 15:28:49 +00:00
|
|
|
|
the relationship of unsigned long (%lu scan format code) and
|
2004-06-02 09:55:36 +00:00
|
|
|
|
LONGEST. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
RU = 0;
|
|
|
|
|
while (isdigit (str[k]))
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
RU = RU * 10 + (str[k] - '0');
|
2002-06-04 15:28:49 +00:00
|
|
|
|
k += 1;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (str[k] == 'm')
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (R != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*R = (-(LONGEST) (RU - 1)) - 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
k += 1;
|
|
|
|
|
}
|
|
|
|
|
else if (R != NULL)
|
|
|
|
|
*R = (LONGEST) RU;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* NOTE on the above: Technically, C does not say what the results of
|
2002-06-04 15:28:49 +00:00
|
|
|
|
- (LONGEST) RU or (LONGEST) -RU are for RU == largest positive
|
|
|
|
|
number representable as a LONGEST (although either would probably work
|
|
|
|
|
in most implementations). When RU>0, the locution in the then branch
|
2004-06-02 09:55:36 +00:00
|
|
|
|
above is always equivalent to the negative of RU. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (new_k != NULL)
|
|
|
|
|
*new_k = k;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Assuming that TYPE is a variant part wrapper type (a VARIANTS field),
|
|
|
|
|
and FIELD_NUM is a valid field number within it, returns 1 iff VAL is
|
|
|
|
|
in the range encoded by field FIELD_NUM of TYPE; otherwise 0. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_in_variant (LONGEST val, struct type *type, int field_num)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *name = TYPE_FIELD_NAME (type, field_num);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int p;
|
|
|
|
|
|
|
|
|
|
p = 0;
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
switch (name[p])
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case '\0':
|
|
|
|
|
return 0;
|
|
|
|
|
case 'S':
|
|
|
|
|
{
|
|
|
|
|
LONGEST W;
|
|
|
|
|
if (!ada_scan_number (name, p + 1, &W, &p))
|
|
|
|
|
return 0;
|
|
|
|
|
if (val == W)
|
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'R':
|
|
|
|
|
{
|
|
|
|
|
LONGEST L, U;
|
|
|
|
|
if (!ada_scan_number (name, p + 1, &L, &p)
|
|
|
|
|
|| name[p] != 'T' || !ada_scan_number (name, p + 1, &U, &p))
|
|
|
|
|
return 0;
|
|
|
|
|
if (val >= L && val <= U)
|
|
|
|
|
return 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case 'O':
|
|
|
|
|
return 1;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* FIXME: Lots of redundancy below. Try to consolidate. */
|
|
|
|
|
|
|
|
|
|
/* Given a value ARG1 (offset by OFFSET bytes) of a struct or union type
|
|
|
|
|
ARG_TYPE, extract and return the value of one of its (non-static)
|
|
|
|
|
fields. FIELDNO says which field. Differs from value_primitive_field
|
|
|
|
|
only in that it can handle packed values of arbitrary type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_value_primitive_field (struct value *arg1, int offset, int fieldno,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *arg_type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
struct type *type;
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
arg_type = ada_check_typedef (arg_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
type = TYPE_FIELD_TYPE (arg_type, fieldno);
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Handle packed fields. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0)
|
|
|
|
|
{
|
|
|
|
|
int bit_pos = TYPE_FIELD_BITPOS (arg_type, fieldno);
|
|
|
|
|
int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
return ada_value_primitive_packed_val (arg1, value_contents (arg1),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
offset + bit_pos / 8,
|
|
|
|
|
bit_pos % 8, bit_size, type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return value_primitive_field (arg1, offset, fieldno, arg_type);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Find field with name NAME in object of type TYPE. If found, return 1
|
|
|
|
|
after setting *FIELD_TYPE_P to the field's type, *BYTE_OFFSET_P to
|
|
|
|
|
OFFSET + the byte offset of the field within an object of that type,
|
|
|
|
|
*BIT_OFFSET_P to the bit offset modulo byte size of the field, and
|
|
|
|
|
*BIT_SIZE_P to its size in bits if the field is packed, and 0 otherwise.
|
|
|
|
|
Looks inside wrappers for the field. Returns 0 if field not
|
|
|
|
|
found. */
|
|
|
|
|
static int
|
2004-06-27 19:06:23 +00:00
|
|
|
|
find_struct_field (char *name, struct type *type, int offset,
|
|
|
|
|
struct type **field_type_p,
|
|
|
|
|
int *byte_offset_p, int *bit_offset_p, int *bit_size_p)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*field_type_p = NULL;
|
|
|
|
|
*byte_offset_p = *bit_offset_p = *bit_size_p = 0;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
for (i = TYPE_NFIELDS (type) - 1; i >= 0; i -= 1)
|
|
|
|
|
{
|
|
|
|
|
int bit_pos = TYPE_FIELD_BITPOS (type, i);
|
|
|
|
|
int fld_offset = offset + bit_pos / 8;
|
|
|
|
|
char *t_field_name = TYPE_FIELD_NAME (type, i);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (t_field_name == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
else if (field_name_match (t_field_name, name))
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
int bit_size = TYPE_FIELD_BITSIZE (type, i);
|
|
|
|
|
*field_type_p = TYPE_FIELD_TYPE (type, i);
|
|
|
|
|
*byte_offset_p = fld_offset;
|
|
|
|
|
*bit_offset_p = bit_pos % 8;
|
|
|
|
|
*bit_size_p = bit_size;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (ada_is_wrapper_field (type, i))
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (find_struct_field (name, TYPE_FIELD_TYPE (type, i), fld_offset,
|
|
|
|
|
field_type_p, byte_offset_p, bit_offset_p,
|
|
|
|
|
bit_size_p))
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (ada_is_variant_part (type, i))
|
|
|
|
|
{
|
|
|
|
|
int j;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
for (j = TYPE_NFIELDS (field_type) - 1; j >= 0; j -= 1)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (find_struct_field (name, TYPE_FIELD_TYPE (field_type, j),
|
|
|
|
|
fld_offset
|
|
|
|
|
+ TYPE_FIELD_BITPOS (field_type, j) / 8,
|
|
|
|
|
field_type_p, byte_offset_p,
|
|
|
|
|
bit_offset_p, bit_size_p))
|
|
|
|
|
return 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Look for a field NAME in ARG. Adjust the address of ARG by OFFSET bytes,
|
2002-06-04 15:28:49 +00:00
|
|
|
|
and search in it assuming it has (class) type TYPE.
|
|
|
|
|
If found, return value, else return NULL.
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
Searches recursively through wrapper fields (e.g., '_parent'). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_search_struct_field (char *name, struct value *arg, int offset,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (i = TYPE_NFIELDS (type) - 1; i >= 0; i -= 1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
char *t_field_name = TYPE_FIELD_NAME (type, i);
|
|
|
|
|
|
|
|
|
|
if (t_field_name == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
continue;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
else if (field_name_match (t_field_name, name))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_value_primitive_field (arg, offset, i, type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
else if (ada_is_wrapper_field (type, i))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-28 18:59:14 +00:00
|
|
|
|
struct value *v = /* Do not let indent join lines here. */
|
|
|
|
|
ada_search_struct_field (name, arg,
|
|
|
|
|
offset + TYPE_FIELD_BITPOS (type, i) / 8,
|
|
|
|
|
TYPE_FIELD_TYPE (type, i));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (v != NULL)
|
|
|
|
|
return v;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
else if (ada_is_variant_part (type, i))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int j;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int var_offset = offset + TYPE_FIELD_BITPOS (type, i) / 8;
|
|
|
|
|
|
|
|
|
|
for (j = TYPE_NFIELDS (field_type) - 1; j >= 0; j -= 1)
|
|
|
|
|
{
|
2004-06-28 18:59:14 +00:00
|
|
|
|
struct value *v = ada_search_struct_field /* Force line break. */
|
|
|
|
|
(name, arg,
|
|
|
|
|
var_offset + TYPE_FIELD_BITPOS (field_type, j) / 8,
|
|
|
|
|
TYPE_FIELD_TYPE (field_type, j));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (v != NULL)
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Given ARG, a value of type (pointer or reference to a)*
|
|
|
|
|
structure/union, extract the component named NAME from the ultimate
|
|
|
|
|
target structure/union and return it as a value with its
|
|
|
|
|
appropriate type. If ARG is a pointer or reference and the field
|
|
|
|
|
is not packed, returns a reference to the field, otherwise the
|
|
|
|
|
value of the field (an lvalue if ARG is an lvalue).
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
The routine searches for NAME among all members of the structure itself
|
|
|
|
|
and (recursively) among all members of any wrapper members
|
2002-06-04 15:28:49 +00:00
|
|
|
|
(e.g., '_parent').
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ERR is a name (for use in error messages) that identifies the class
|
|
|
|
|
of entity that ARG is supposed to be. ERR may be null, indicating
|
|
|
|
|
that on error, the function simply returns NULL, and does not
|
|
|
|
|
throw an error. (FIXME: True only if ARG is a pointer or reference
|
|
|
|
|
at the moment). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_value_struct_elt (struct value *arg, char *name, char *err)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *t, *t1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *v;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
v = NULL;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
t1 = t = ada_check_typedef (value_type (arg));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_CODE (t) == TYPE_CODE_REF)
|
|
|
|
|
{
|
|
|
|
|
t1 = TYPE_TARGET_TYPE (t);
|
|
|
|
|
if (t1 == NULL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (err == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
else
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Bad value type in a %s."), err);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
}
|
2004-10-08 09:40:12 +00:00
|
|
|
|
t1 = ada_check_typedef (t1);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_CODE (t1) == TYPE_CODE_PTR)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
2004-11-10 Andrew Cagney <cagney@gnu.org>
* value.h (COERCE_REF, COERCE_ARRAY, COERCE_NUMBER, COERCE_ENUM)
(coerce_ref, coerce_array, coerce_number, coerce_enum): Replace
macros with function declarations.
* value.c (coerce_ref, coerce_array, coerce_number)
(coerce_enum): New functions.
(value_as_long, value_as_address): Update.
* ada-lang.c (ada_coerce_ref, ada_value_binop)
(ada_evaluate_subexp, ada_value_assign, ada_value_struct_elt): Update.
* jv-lang.c (evaluate_subexp_java): Update.
* valarith.c (value_less, value_neg, value_complement)
(value_binop, value_add, value_subscript, value_x_binop)
(value_logical_not, value_sub): Update.
* valops.c (check_field, value_struct_elt, value_ind)
(value_find_oload_method_list, value_cast, value_assign): Update.
* eval.c (evaluate_subexp_standard): Update.
2004-11-10 18:52:25 +00:00
|
|
|
|
arg = coerce_ref (arg);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
t = t1;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
while (TYPE_CODE (t) == TYPE_CODE_PTR)
|
|
|
|
|
{
|
|
|
|
|
t1 = TYPE_TARGET_TYPE (t);
|
|
|
|
|
if (t1 == NULL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (err == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
else
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Bad value type in a %s."), err);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
}
|
2004-10-08 09:40:12 +00:00
|
|
|
|
t1 = ada_check_typedef (t1);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_CODE (t1) == TYPE_CODE_PTR)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
arg = value_ind (arg);
|
|
|
|
|
t = t1;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
break;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_CODE (t1) != TYPE_CODE_STRUCT && TYPE_CODE (t1) != TYPE_CODE_UNION)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (err == NULL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Attempt to extract a component of a value that is not a %s."),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
err);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (t1 == t)
|
|
|
|
|
v = ada_search_struct_field (name, arg, 0, t);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int bit_offset, bit_size, byte_offset;
|
|
|
|
|
struct type *field_type;
|
|
|
|
|
CORE_ADDR address;
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (TYPE_CODE (t) == TYPE_CODE_PTR)
|
|
|
|
|
address = value_as_address (arg);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
address = unpack_pointer (t, value_contents (arg));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
t1 = ada_to_fixed_type (ada_get_base_type (t1), NULL, address, NULL);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (find_struct_field (name, t1, 0,
|
|
|
|
|
&field_type, &byte_offset, &bit_offset,
|
|
|
|
|
&bit_size))
|
|
|
|
|
{
|
|
|
|
|
if (bit_size != 0)
|
|
|
|
|
{
|
2004-10-15 09:12:24 +00:00
|
|
|
|
if (TYPE_CODE (t) == TYPE_CODE_REF)
|
|
|
|
|
arg = ada_coerce_ref (arg);
|
|
|
|
|
else
|
|
|
|
|
arg = ada_value_ind (arg);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
v = ada_value_primitive_packed_val (arg, NULL, byte_offset,
|
|
|
|
|
bit_offset, bit_size,
|
|
|
|
|
field_type);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
v = value_from_pointer (lookup_reference_type (field_type),
|
|
|
|
|
address + byte_offset);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (v == NULL && err != NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("There is no member named %s."), name);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return v;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Given a type TYPE, look up the type of the component of type named NAME.
|
2004-06-02 09:55:36 +00:00
|
|
|
|
If DISPP is non-null, add its byte displacement from the beginning of a
|
|
|
|
|
structure (pointed to by a value) of type TYPE to *DISPP (does not
|
2002-06-04 15:28:49 +00:00
|
|
|
|
work for packed fields).
|
|
|
|
|
|
|
|
|
|
Matches any field whose name has NAME as a prefix, possibly
|
2004-06-02 09:55:36 +00:00
|
|
|
|
followed by "___".
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE can be either a struct or union. If REFOK, TYPE may also
|
|
|
|
|
be a (pointer or reference)+ to a struct or union, and the
|
|
|
|
|
ultimate target type will be searched.
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
Looks recursively into variant clauses and parent types.
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
If NOERR is nonzero, return NULL if NAME is not suitably defined or
|
|
|
|
|
TYPE is not a type of the right kind. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct type *
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_lookup_struct_elt_type (struct type *type, char *name, int refok,
|
|
|
|
|
int noerr, int *dispp)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
goto BadName;
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (refok && type != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
while (1)
|
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (TYPE_CODE (type) != TYPE_CODE_PTR
|
|
|
|
|
&& TYPE_CODE (type) != TYPE_CODE_REF)
|
|
|
|
|
break;
|
|
|
|
|
type = TYPE_TARGET_TYPE (type);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (type == NULL
|
2004-06-27 19:28:20 +00:00
|
|
|
|
|| (TYPE_CODE (type) != TYPE_CODE_STRUCT
|
|
|
|
|
&& TYPE_CODE (type) != TYPE_CODE_UNION))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (noerr)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
target_terminal_ours ();
|
|
|
|
|
gdb_flush (gdb_stdout);
|
2004-12-12 17:06:26 +00:00
|
|
|
|
if (type == NULL)
|
|
|
|
|
error (_("Type (null) is not a structure or union type"));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* XXX: type_sprint */
|
|
|
|
|
fprintf_unfiltered (gdb_stderr, _("Type "));
|
|
|
|
|
type_print (type, "", gdb_stderr, -1);
|
|
|
|
|
error (_(" is not a structure or union type"));
|
|
|
|
|
}
|
2004-06-27 19:06:23 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type = to_static_fixed_type (type);
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < TYPE_NFIELDS (type); i += 1)
|
|
|
|
|
{
|
|
|
|
|
char *t_field_name = TYPE_FIELD_NAME (type, i);
|
|
|
|
|
struct type *t;
|
|
|
|
|
int disp;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (t_field_name == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
continue;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
else if (field_name_match (t_field_name, name))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (dispp != NULL)
|
|
|
|
|
*dispp += TYPE_FIELD_BITPOS (type, i) / 8;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
return ada_check_typedef (TYPE_FIELD_TYPE (type, i));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
else if (ada_is_wrapper_field (type, i))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
disp = 0;
|
|
|
|
|
t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (type, i), name,
|
|
|
|
|
0, 1, &disp);
|
|
|
|
|
if (t != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (dispp != NULL)
|
|
|
|
|
*dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8;
|
|
|
|
|
return t;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
else if (ada_is_variant_part (type, i))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int j;
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type, i));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
for (j = TYPE_NFIELDS (field_type) - 1; j >= 0; j -= 1)
|
|
|
|
|
{
|
|
|
|
|
disp = 0;
|
|
|
|
|
t = ada_lookup_struct_elt_type (TYPE_FIELD_TYPE (field_type, j),
|
|
|
|
|
name, 0, 1, &disp);
|
|
|
|
|
if (t != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (dispp != NULL)
|
|
|
|
|
*dispp += disp + TYPE_FIELD_BITPOS (type, i) / 8;
|
|
|
|
|
return t;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BadName:
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (!noerr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
target_terminal_ours ();
|
|
|
|
|
gdb_flush (gdb_stdout);
|
2004-12-12 17:06:26 +00:00
|
|
|
|
if (name == NULL)
|
|
|
|
|
{
|
|
|
|
|
/* XXX: type_sprint */
|
|
|
|
|
fprintf_unfiltered (gdb_stderr, _("Type "));
|
|
|
|
|
type_print (type, "", gdb_stderr, -1);
|
|
|
|
|
error (_(" has no component named <null>"));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* XXX: type_sprint */
|
|
|
|
|
fprintf_unfiltered (gdb_stderr, _("Type "));
|
|
|
|
|
type_print (type, "", gdb_stderr, -1);
|
|
|
|
|
error (_(" has no component named %s"), name);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming that VAR_TYPE is the type of a variant part of a record (a union),
|
|
|
|
|
within a value of type OUTER_TYPE that is stored in GDB at
|
2004-06-02 09:55:36 +00:00
|
|
|
|
OUTER_VALADDR, determine which variant clause (field number in VAR_TYPE,
|
|
|
|
|
numbering from 0) is applicable. Returns -1 if none are. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_which_variant_applies (struct type *var_type, struct type *outer_type,
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
const gdb_byte *outer_valaddr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int others_clause;
|
|
|
|
|
int i;
|
|
|
|
|
int disp;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *discrim_type;
|
|
|
|
|
char *discrim_name = ada_variant_discrim_name (var_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
LONGEST discrim_val;
|
|
|
|
|
|
|
|
|
|
disp = 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
discrim_type =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_lookup_struct_elt_type (outer_type, discrim_name, 1, 1, &disp);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (discrim_type == NULL)
|
|
|
|
|
return -1;
|
|
|
|
|
discrim_val = unpack_long (discrim_type, outer_valaddr + disp);
|
|
|
|
|
|
|
|
|
|
others_clause = -1;
|
|
|
|
|
for (i = 0; i < TYPE_NFIELDS (var_type); i += 1)
|
|
|
|
|
{
|
|
|
|
|
if (ada_is_others_clause (var_type, i))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
others_clause = i;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (ada_in_variant (discrim_val, var_type, i))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return i;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return others_clause;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Dynamic-Sized Records */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Strategy: The type ostensibly attached to a value with dynamic size
|
|
|
|
|
(i.e., a size that is not statically recorded in the debugging
|
|
|
|
|
data) does not accurately reflect the size or layout of the value.
|
|
|
|
|
Our strategy is to convert these values to values with accurate,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
conventional types that are constructed on the fly. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* There is a subtle and tricky problem here. In general, we cannot
|
|
|
|
|
determine the size of dynamic records without its data. However,
|
|
|
|
|
the 'struct value' data structure, which GDB uses to represent
|
|
|
|
|
quantities in the inferior process (the target), requires the size
|
|
|
|
|
of the type at the time of its allocation in order to reserve space
|
|
|
|
|
for GDB's internal copy of the data. That's why the
|
|
|
|
|
'to_fixed_xxx_type' routines take (target) addresses as parameters,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
rather than struct value*s.
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
However, GDB's internal history variables ($1, $2, etc.) are
|
|
|
|
|
struct value*s containing internal copies of the data that are not, in
|
|
|
|
|
general, the same as the data at their corresponding addresses in
|
|
|
|
|
the target. Fortunately, the types we give to these values are all
|
|
|
|
|
conventional, fixed-size types (as per the strategy described
|
|
|
|
|
above), so that we don't usually have to perform the
|
|
|
|
|
'to_fixed_xxx_type' conversions to look at their values.
|
|
|
|
|
Unfortunately, there is one exception: if one of the internal
|
|
|
|
|
history variables is an array whose elements are unconstrained
|
|
|
|
|
records, then we will need to create distinct fixed types for each
|
|
|
|
|
element selected. */
|
|
|
|
|
|
|
|
|
|
/* The upshot of all of this is that many routines take a (type, host
|
|
|
|
|
address, target address) triple as arguments to represent a value.
|
|
|
|
|
The host address, if non-null, is supposed to contain an internal
|
|
|
|
|
copy of the relevant data; otherwise, the program is to consult the
|
2004-06-02 09:55:36 +00:00
|
|
|
|
target at the target address. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Assuming that VAL0 represents a pointer value, the result of
|
|
|
|
|
dereferencing it. Differs from value_ind in its treatment of
|
2004-06-02 09:55:36 +00:00
|
|
|
|
dynamic-sized types. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_value_ind (struct value *val0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *val = unwrap_value (value_ind (val0));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_to_fixed_value (val);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The value resulting from dereferencing any "reference to"
|
2004-06-02 09:55:36 +00:00
|
|
|
|
qualifiers on VAL0. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
ada_coerce_ref (struct value *val0)
|
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_CODE (value_type (val0)) == TYPE_CODE_REF)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{
|
|
|
|
|
struct value *val = val0;
|
2004-11-10 Andrew Cagney <cagney@gnu.org>
* value.h (COERCE_REF, COERCE_ARRAY, COERCE_NUMBER, COERCE_ENUM)
(coerce_ref, coerce_array, coerce_number, coerce_enum): Replace
macros with function declarations.
* value.c (coerce_ref, coerce_array, coerce_number)
(coerce_enum): New functions.
(value_as_long, value_as_address): Update.
* ada-lang.c (ada_coerce_ref, ada_value_binop)
(ada_evaluate_subexp, ada_value_assign, ada_value_struct_elt): Update.
* jv-lang.c (evaluate_subexp_java): Update.
* valarith.c (value_less, value_neg, value_complement)
(value_binop, value_add, value_subscript, value_x_binop)
(value_logical_not, value_sub): Update.
* valops.c (check_field, value_struct_elt, value_ind)
(value_find_oload_method_list, value_cast, value_assign): Update.
* eval.c (evaluate_subexp_standard): Update.
2004-11-10 18:52:25 +00:00
|
|
|
|
val = coerce_ref (val);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
val = unwrap_value (val);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_to_fixed_value (val);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return val0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return OFF rounded upward if necessary to a multiple of
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ALIGNMENT (a power of 2). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static unsigned int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
align_value (unsigned int off, unsigned int alignment)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
return (off + alignment - 1) & ~(alignment - 1);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return the bit alignment required for field #F of template type TYPE. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static unsigned int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
field_alignment (struct type *type, int f)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *name = TYPE_FIELD_NAME (type, f);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int len = (name == NULL) ? 0 : strlen (name);
|
|
|
|
|
int align_offset;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (!isdigit (name[len - 1]))
|
|
|
|
|
return 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (isdigit (name[len - 2]))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
align_offset = len - 2;
|
|
|
|
|
else
|
|
|
|
|
align_offset = len - 1;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (align_offset < 7 || strncmp ("___XV", name + align_offset - 6, 5) != 0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return TARGET_CHAR_BIT;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return atoi (name + align_offset) * TARGET_CHAR_BIT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Find a symbol named NAME. Ignores ambiguity. */
|
|
|
|
|
|
|
|
|
|
struct symbol *
|
|
|
|
|
ada_find_any_symbol (const char *name)
|
|
|
|
|
{
|
|
|
|
|
struct symbol *sym;
|
|
|
|
|
|
|
|
|
|
sym = standard_lookup (name, get_selected_block (NULL), VAR_DOMAIN);
|
|
|
|
|
if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
|
|
|
|
|
return sym;
|
|
|
|
|
|
|
|
|
|
sym = standard_lookup (name, NULL, STRUCT_DOMAIN);
|
|
|
|
|
return sym;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Find a type named NAME. Ignores ambiguity. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_find_any_type (const char *name)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct symbol *sym = ada_find_any_symbol (name);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (sym != NULL)
|
|
|
|
|
return SYMBOL_TYPE (sym);
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Given a symbol NAME and its associated BLOCK, search all symbols
|
|
|
|
|
for its ___XR counterpart, which is the ``renaming'' symbol
|
|
|
|
|
associated to NAME. Return this symbol if found, return
|
|
|
|
|
NULL otherwise. */
|
|
|
|
|
|
|
|
|
|
struct symbol *
|
|
|
|
|
ada_find_renaming_symbol (const char *name, struct block *block)
|
|
|
|
|
{
|
|
|
|
|
const struct symbol *function_sym = block_function (block);
|
|
|
|
|
char *rename;
|
|
|
|
|
|
|
|
|
|
if (function_sym != NULL)
|
|
|
|
|
{
|
|
|
|
|
/* If the symbol is defined inside a function, NAME is not fully
|
|
|
|
|
qualified. This means we need to prepend the function name
|
|
|
|
|
as well as adding the ``___XR'' suffix to build the name of
|
|
|
|
|
the associated renaming symbol. */
|
|
|
|
|
char *function_name = SYMBOL_LINKAGE_NAME (function_sym);
|
|
|
|
|
const int function_name_len = strlen (function_name);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
const int rename_len = function_name_len + 2 /* "__" */
|
|
|
|
|
+ strlen (name) + 6 /* "___XR\0" */ ;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
/* Library-level functions are a special case, as GNAT adds
|
|
|
|
|
a ``_ada_'' prefix to the function name to avoid namespace
|
|
|
|
|
pollution. However, the renaming symbol themselves do not
|
|
|
|
|
have this prefix, so we need to skip this prefix if present. */
|
|
|
|
|
if (function_name_len > 5 /* "_ada_" */
|
|
|
|
|
&& strstr (function_name, "_ada_") == function_name)
|
|
|
|
|
function_name = function_name + 5;
|
|
|
|
|
|
|
|
|
|
rename = (char *) alloca (rename_len * sizeof (char));
|
|
|
|
|
sprintf (rename, "%s__%s___XR", function_name, name);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
const int rename_len = strlen (name) + 6;
|
|
|
|
|
rename = (char *) alloca (rename_len * sizeof (char));
|
|
|
|
|
sprintf (rename, "%s___XR", name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ada_find_any_symbol (rename);
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* Because of GNAT encoding conventions, several GDB symbols may match a
|
2004-06-02 09:55:36 +00:00
|
|
|
|
given type name. If the type denoted by TYPE0 is to be preferred to
|
2002-06-04 15:28:49 +00:00
|
|
|
|
that of TYPE1 for purposes of type printing, return non-zero;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
otherwise return 0. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_prefer_type (struct type *type0, struct type *type1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (type1 == NULL)
|
|
|
|
|
return 1;
|
|
|
|
|
else if (type0 == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
else if (TYPE_CODE (type1) == TYPE_CODE_VOID)
|
|
|
|
|
return 1;
|
|
|
|
|
else if (TYPE_CODE (type0) == TYPE_CODE_VOID)
|
|
|
|
|
return 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (TYPE_NAME (type1) == NULL && TYPE_NAME (type0) != NULL)
|
|
|
|
|
return 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (ada_is_packed_array_type (type0))
|
|
|
|
|
return 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (ada_is_array_descriptor_type (type0)
|
|
|
|
|
&& !ada_is_array_descriptor_type (type1))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else if (ada_renaming_type (type0) != NULL
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& ada_renaming_type (type1) == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The name of TYPE, which is either its TYPE_NAME, or, if that is
|
2004-06-02 09:55:36 +00:00
|
|
|
|
null, its TYPE_TAG_NAME. Null if TYPE is null. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *
|
|
|
|
|
ada_type_name (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (type == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
else if (TYPE_NAME (type) != NULL)
|
|
|
|
|
return TYPE_NAME (type);
|
|
|
|
|
else
|
|
|
|
|
return TYPE_TAG_NAME (type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Find a parallel type to TYPE whose name is formed by appending
|
2004-06-02 09:55:36 +00:00
|
|
|
|
SUFFIX to the name of TYPE. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_find_parallel_type (struct type *type, const char *suffix)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static char *name;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
static size_t name_len = 0;
|
|
|
|
|
int len;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *typename = ada_type_name (type);
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (typename == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
len = strlen (typename);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
GROW_VECT (name, name_len, len + strlen (suffix) + 1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
strcpy (name, typename);
|
|
|
|
|
strcpy (name + len, suffix);
|
|
|
|
|
|
|
|
|
|
return ada_find_any_type (name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* If TYPE is a variable-size record type, return the corresponding template
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type describing its fields. Otherwise, return NULL. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
dynamic_template_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|| ada_type_name (type) == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return NULL;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int len = strlen (ada_type_name (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (len > 6 && strcmp (ada_type_name (type) + len - 6, "___XVE") == 0)
|
|
|
|
|
return type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_find_parallel_type (type, "___XVE");
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming that TEMPL_TYPE is a union or struct type, returns
|
2004-06-02 09:55:36 +00:00
|
|
|
|
non-zero iff field FIELD_NUM of TEMPL_TYPE has dynamic size. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int
|
|
|
|
|
is_dynamic_field (struct type *templ_type, int field_num)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
const char *name = TYPE_FIELD_NAME (templ_type, field_num);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return name != NULL
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& TYPE_CODE (TYPE_FIELD_TYPE (templ_type, field_num)) == TYPE_CODE_PTR
|
|
|
|
|
&& strstr (name, "___XVL") != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The index of the variant field of TYPE, or -1 if TYPE does not
|
|
|
|
|
represent a variant record type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static int
|
2004-06-02 09:55:36 +00:00
|
|
|
|
variant_field_index (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int f;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (type == NULL || TYPE_CODE (type) != TYPE_CODE_STRUCT)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
for (f = 0; f < TYPE_NFIELDS (type); f += 1)
|
|
|
|
|
{
|
|
|
|
|
if (ada_is_variant_part (type, f))
|
|
|
|
|
return f;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* A record type with no fields. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
empty_record (struct objfile *objfile)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type = alloc_type (objfile);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
TYPE_CODE (type) = TYPE_CODE_STRUCT;
|
|
|
|
|
TYPE_NFIELDS (type) = 0;
|
|
|
|
|
TYPE_FIELDS (type) = NULL;
|
|
|
|
|
TYPE_NAME (type) = "<empty>";
|
|
|
|
|
TYPE_TAG_NAME (type) = NULL;
|
|
|
|
|
TYPE_FLAGS (type) = 0;
|
|
|
|
|
TYPE_LENGTH (type) = 0;
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* An ordinary record type (with fixed-length fields) that describes
|
2004-06-02 09:55:36 +00:00
|
|
|
|
the value of type TYPE at VALADDR or ADDRESS (see comments at
|
|
|
|
|
the beginning of this section) VAL according to GNAT conventions.
|
|
|
|
|
DVAL0 should describe the (portion of a) record that contains any
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
necessary discriminants. It should be NULL if value_type (VAL) is
|
2002-06-04 15:28:49 +00:00
|
|
|
|
an outer-level type (i.e., as opposed to a branch of a variant.) A
|
|
|
|
|
variant field (unless unchecked) is replaced by a particular branch
|
2004-06-02 09:55:36 +00:00
|
|
|
|
of the variant.
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
If not KEEP_DYNAMIC_FIELDS, then all fields whose position or
|
|
|
|
|
length are not statically known are discarded. As a consequence,
|
|
|
|
|
VALADDR, ADDRESS and DVAL0 are ignored.
|
|
|
|
|
|
|
|
|
|
NOTE: Limitations: For now, we assume that dynamic fields and
|
|
|
|
|
variants occupy whole numbers of bytes. However, they need not be
|
|
|
|
|
byte-aligned. */
|
|
|
|
|
|
|
|
|
|
struct type *
|
2005-01-28 19:56:01 +00:00
|
|
|
|
ada_template_to_fixed_record_type_1 (struct type *type,
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
const gdb_byte *valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR address, struct value *dval0,
|
|
|
|
|
int keep_dynamic_fields)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *mark = value_mark ();
|
|
|
|
|
struct value *dval;
|
|
|
|
|
struct type *rtype;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int nfields, bit_len;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int variant_field;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
long off;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int fld_bit_len, bit_incr;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int f;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Compute the number of fields in this record type that are going
|
|
|
|
|
to be processed: unless keep_dynamic_fields, this includes only
|
|
|
|
|
fields whose position and length are static will be processed. */
|
|
|
|
|
if (keep_dynamic_fields)
|
|
|
|
|
nfields = TYPE_NFIELDS (type);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
nfields = 0;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
while (nfields < TYPE_NFIELDS (type)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& !ada_is_variant_part (type, nfields)
|
|
|
|
|
&& !is_dynamic_field (type, nfields))
|
|
|
|
|
nfields++;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
rtype = alloc_type (TYPE_OBJFILE (type));
|
|
|
|
|
TYPE_CODE (rtype) = TYPE_CODE_STRUCT;
|
|
|
|
|
INIT_CPLUS_SPECIFIC (rtype);
|
|
|
|
|
TYPE_NFIELDS (rtype) = nfields;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
TYPE_FIELDS (rtype) = (struct field *)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
TYPE_ALLOC (rtype, nfields * sizeof (struct field));
|
|
|
|
|
memset (TYPE_FIELDS (rtype), 0, sizeof (struct field) * nfields);
|
|
|
|
|
TYPE_NAME (rtype) = ada_type_name (type);
|
|
|
|
|
TYPE_TAG_NAME (rtype) = NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FLAGS (rtype) |= TYPE_FLAG_FIXED_INSTANCE;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
off = 0;
|
|
|
|
|
bit_len = 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
variant_field = -1;
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
for (f = 0; f < nfields; f += 1)
|
|
|
|
|
{
|
2004-09-18 10:11:06 +00:00
|
|
|
|
off = align_value (off, field_alignment (type, f))
|
|
|
|
|
+ TYPE_FIELD_BITPOS (type, f);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
TYPE_FIELD_BITPOS (rtype, f) = off;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
TYPE_FIELD_BITSIZE (rtype, f) = 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (ada_is_variant_part (type, f))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
variant_field = f;
|
|
|
|
|
fld_bit_len = bit_incr = 0;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (is_dynamic_field (type, f))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (dval0 == NULL)
|
|
|
|
|
dval = value_from_contents_and_address (rtype, valaddr, address);
|
|
|
|
|
else
|
|
|
|
|
dval = dval0;
|
|
|
|
|
|
|
|
|
|
TYPE_FIELD_TYPE (rtype, f) =
|
|
|
|
|
ada_to_fixed_type
|
|
|
|
|
(ada_get_base_type
|
|
|
|
|
(TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (type, f))),
|
|
|
|
|
cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
|
|
|
|
|
cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
|
|
|
|
|
TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
|
|
|
|
|
bit_incr = fld_bit_len =
|
|
|
|
|
TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, f)) * TARGET_CHAR_BIT;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
TYPE_FIELD_TYPE (rtype, f) = TYPE_FIELD_TYPE (type, f);
|
|
|
|
|
TYPE_FIELD_NAME (rtype, f) = TYPE_FIELD_NAME (type, f);
|
|
|
|
|
if (TYPE_FIELD_BITSIZE (type, f) > 0)
|
|
|
|
|
bit_incr = fld_bit_len =
|
|
|
|
|
TYPE_FIELD_BITSIZE (rtype, f) = TYPE_FIELD_BITSIZE (type, f);
|
|
|
|
|
else
|
|
|
|
|
bit_incr = fld_bit_len =
|
|
|
|
|
TYPE_LENGTH (TYPE_FIELD_TYPE (type, f)) * TARGET_CHAR_BIT;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (off + fld_bit_len > bit_len)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
bit_len = off + fld_bit_len;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
off += bit_incr;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_LENGTH (rtype) =
|
|
|
|
|
align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
/* We handle the variant part, if any, at the end because of certain
|
|
|
|
|
odd cases in which it is re-ordered so as NOT the last field of
|
|
|
|
|
the record. This can happen in the presence of representation
|
|
|
|
|
clauses. */
|
|
|
|
|
if (variant_field >= 0)
|
|
|
|
|
{
|
|
|
|
|
struct type *branch_type;
|
|
|
|
|
|
|
|
|
|
off = TYPE_FIELD_BITPOS (rtype, variant_field);
|
|
|
|
|
|
|
|
|
|
if (dval0 == NULL)
|
|
|
|
|
dval = value_from_contents_and_address (rtype, valaddr, address);
|
|
|
|
|
else
|
|
|
|
|
dval = dval0;
|
|
|
|
|
|
|
|
|
|
branch_type =
|
|
|
|
|
to_fixed_variant_branch_type
|
|
|
|
|
(TYPE_FIELD_TYPE (type, variant_field),
|
|
|
|
|
cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
|
|
|
|
|
cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
|
|
|
|
|
if (branch_type == NULL)
|
|
|
|
|
{
|
|
|
|
|
for (f = variant_field + 1; f < TYPE_NFIELDS (rtype); f += 1)
|
|
|
|
|
TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f];
|
|
|
|
|
TYPE_NFIELDS (rtype) -= 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
TYPE_FIELD_TYPE (rtype, variant_field) = branch_type;
|
|
|
|
|
TYPE_FIELD_NAME (rtype, variant_field) = "S";
|
|
|
|
|
fld_bit_len =
|
|
|
|
|
TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, variant_field)) *
|
|
|
|
|
TARGET_CHAR_BIT;
|
|
|
|
|
if (off + fld_bit_len > bit_len)
|
|
|
|
|
bit_len = off + fld_bit_len;
|
|
|
|
|
TYPE_LENGTH (rtype) =
|
|
|
|
|
align_value (bit_len, TARGET_CHAR_BIT) / TARGET_CHAR_BIT;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-15 09:12:24 +00:00
|
|
|
|
/* According to exp_dbug.ads, the size of TYPE for variable-size records
|
|
|
|
|
should contain the alignment of that record, which should be a strictly
|
|
|
|
|
positive value. If null or negative, then something is wrong, most
|
|
|
|
|
probably in the debug info. In that case, we don't round up the size
|
|
|
|
|
of the resulting type. If this record is not part of another structure,
|
|
|
|
|
the current RTYPE length might be good enough for our purposes. */
|
|
|
|
|
if (TYPE_LENGTH (type) <= 0)
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
if (TYPE_NAME (rtype))
|
|
|
|
|
warning (_("Invalid type size for `%s' detected: %d."),
|
|
|
|
|
TYPE_NAME (rtype), TYPE_LENGTH (type));
|
|
|
|
|
else
|
|
|
|
|
warning (_("Invalid type size for <unnamed> detected: %d."),
|
|
|
|
|
TYPE_LENGTH (type));
|
2004-10-15 09:12:24 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
TYPE_LENGTH (rtype) = align_value (TYPE_LENGTH (rtype),
|
|
|
|
|
TYPE_LENGTH (type));
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
value_free_to_mark (mark);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_LENGTH (rtype) > varsize_limit)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("record type with dynamic size is larger than varsize-limit"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return rtype;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* As for ada_template_to_fixed_record_type_1 with KEEP_DYNAMIC_FIELDS
|
|
|
|
|
of 1. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
template_to_fixed_record_type (struct type *type, const gdb_byte *valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR address, struct value *dval0)
|
|
|
|
|
{
|
|
|
|
|
return ada_template_to_fixed_record_type_1 (type, valaddr,
|
|
|
|
|
address, dval0, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* An ordinary record type in which ___XVL-convention fields and
|
|
|
|
|
___XVU- and ___XVN-convention field types in TYPE0 are replaced with
|
|
|
|
|
static approximations, containing all possible fields. Uses
|
|
|
|
|
no runtime values. Useless for use in values, but that's OK,
|
|
|
|
|
since the results are used only for type determinations. Works on both
|
|
|
|
|
structs and unions. Representation note: to save space, we memorize
|
|
|
|
|
the result of this function in the TYPE_TARGET_TYPE of the
|
|
|
|
|
template type. */
|
|
|
|
|
|
|
|
|
|
static struct type *
|
|
|
|
|
template_to_static_fixed_type (struct type *type0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
struct type *type;
|
|
|
|
|
int nfields;
|
|
|
|
|
int f;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_TARGET_TYPE (type0) != NULL)
|
|
|
|
|
return TYPE_TARGET_TYPE (type0);
|
|
|
|
|
|
|
|
|
|
nfields = TYPE_NFIELDS (type0);
|
|
|
|
|
type = type0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
for (f = 0; f < nfields; f += 1)
|
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *field_type = ada_check_typedef (TYPE_FIELD_TYPE (type0, f));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *new_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (is_dynamic_field (type0, f))
|
|
|
|
|
new_type = to_static_fixed_type (TYPE_TARGET_TYPE (field_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
new_type = to_static_fixed_type (field_type);
|
|
|
|
|
if (type == type0 && new_type != field_type)
|
|
|
|
|
{
|
|
|
|
|
TYPE_TARGET_TYPE (type0) = type = alloc_type (TYPE_OBJFILE (type0));
|
|
|
|
|
TYPE_CODE (type) = TYPE_CODE (type0);
|
|
|
|
|
INIT_CPLUS_SPECIFIC (type);
|
|
|
|
|
TYPE_NFIELDS (type) = nfields;
|
|
|
|
|
TYPE_FIELDS (type) = (struct field *)
|
|
|
|
|
TYPE_ALLOC (type, nfields * sizeof (struct field));
|
|
|
|
|
memcpy (TYPE_FIELDS (type), TYPE_FIELDS (type0),
|
|
|
|
|
sizeof (struct field) * nfields);
|
|
|
|
|
TYPE_NAME (type) = ada_type_name (type0);
|
|
|
|
|
TYPE_TAG_NAME (type) = NULL;
|
|
|
|
|
TYPE_FLAGS (type) |= TYPE_FLAG_FIXED_INSTANCE;
|
|
|
|
|
TYPE_LENGTH (type) = 0;
|
|
|
|
|
}
|
|
|
|
|
TYPE_FIELD_TYPE (type, f) = new_type;
|
|
|
|
|
TYPE_FIELD_NAME (type, f) = TYPE_FIELD_NAME (type0, f);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Given an object of type TYPE whose contents are at VALADDR and
|
|
|
|
|
whose address in memory is ADDRESS, returns a revision of TYPE --
|
|
|
|
|
a non-dynamic-sized record with a variant part -- in which
|
|
|
|
|
the variant part is replaced with the appropriate branch. Looks
|
|
|
|
|
for discriminant values in DVAL0, which can be NULL if the record
|
|
|
|
|
contains the necessary discriminant values. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
to_record_with_fixed_variant_part (struct type *type, const gdb_byte *valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR address, struct value *dval0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *mark = value_mark ();
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value *dval;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *rtype;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
struct type *branch_type;
|
|
|
|
|
int nfields = TYPE_NFIELDS (type);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int variant_field = variant_field_index (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (variant_field == -1)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return type;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (dval0 == NULL)
|
|
|
|
|
dval = value_from_contents_and_address (type, valaddr, address);
|
|
|
|
|
else
|
|
|
|
|
dval = dval0;
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
rtype = alloc_type (TYPE_OBJFILE (type));
|
|
|
|
|
TYPE_CODE (rtype) = TYPE_CODE_STRUCT;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
INIT_CPLUS_SPECIFIC (rtype);
|
|
|
|
|
TYPE_NFIELDS (rtype) = nfields;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
TYPE_FIELDS (rtype) =
|
|
|
|
|
(struct field *) TYPE_ALLOC (rtype, nfields * sizeof (struct field));
|
|
|
|
|
memcpy (TYPE_FIELDS (rtype), TYPE_FIELDS (type),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sizeof (struct field) * nfields);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
TYPE_NAME (rtype) = ada_type_name (type);
|
|
|
|
|
TYPE_TAG_NAME (rtype) = NULL;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FLAGS (rtype) |= TYPE_FLAG_FIXED_INSTANCE;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
TYPE_LENGTH (rtype) = TYPE_LENGTH (type);
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
branch_type = to_fixed_variant_branch_type
|
|
|
|
|
(TYPE_FIELD_TYPE (type, variant_field),
|
2002-08-18 18:11:12 +00:00
|
|
|
|
cond_offset_host (valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FIELD_BITPOS (type, variant_field)
|
|
|
|
|
/ TARGET_CHAR_BIT),
|
2002-08-18 18:11:12 +00:00
|
|
|
|
cond_offset_target (address,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FIELD_BITPOS (type, variant_field)
|
|
|
|
|
/ TARGET_CHAR_BIT), dval);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (branch_type == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int f;
|
|
|
|
|
for (f = variant_field + 1; f < nfields; f += 1)
|
|
|
|
|
TYPE_FIELDS (rtype)[f - 1] = TYPE_FIELDS (rtype)[f];
|
2002-06-04 15:28:49 +00:00
|
|
|
|
TYPE_NFIELDS (rtype) -= 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FIELD_TYPE (rtype, variant_field) = branch_type;
|
|
|
|
|
TYPE_FIELD_NAME (rtype, variant_field) = "S";
|
|
|
|
|
TYPE_FIELD_BITSIZE (rtype, variant_field) = 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
TYPE_LENGTH (rtype) += TYPE_LENGTH (branch_type);
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_LENGTH (rtype) -= TYPE_LENGTH (TYPE_FIELD_TYPE (type, variant_field));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_free_to_mark (mark);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return rtype;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* An ordinary record type (with fixed-length fields) that describes
|
|
|
|
|
the value at (TYPE0, VALADDR, ADDRESS) [see explanation at
|
|
|
|
|
beginning of this section]. Any necessary discriminants' values
|
2004-06-02 09:55:36 +00:00
|
|
|
|
should be in DVAL, a record value; it may be NULL if the object
|
|
|
|
|
at ADDR itself contains any necessary discriminant values.
|
|
|
|
|
Additionally, VALADDR and ADDRESS may also be NULL if no discriminant
|
|
|
|
|
values from the record are needed. Except in the case that DVAL,
|
|
|
|
|
VALADDR, and ADDRESS are all 0 or NULL, a variant field (unless
|
|
|
|
|
unchecked) is replaced by a particular branch of the variant.
|
|
|
|
|
|
|
|
|
|
NOTE: the case in which DVAL and VALADDR are NULL and ADDRESS is 0
|
|
|
|
|
is questionable and may be removed. It can arise during the
|
|
|
|
|
processing of an unconstrained-array-of-record type where all the
|
|
|
|
|
variant branches have exactly the same size. This is because in
|
|
|
|
|
such cases, the compiler does not bother to use the XVS convention
|
|
|
|
|
when encoding the record. I am currently dubious of this
|
|
|
|
|
shortcut and suspect the compiler should be altered. FIXME. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
to_fixed_record_type (struct type *type0, const gdb_byte *valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR address, struct value *dval)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *templ_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_FLAGS (type0) & TYPE_FLAG_FIXED_INSTANCE)
|
|
|
|
|
return type0;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
templ_type = dynamic_template_type (type0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (templ_type != NULL)
|
|
|
|
|
return template_to_fixed_record_type (templ_type, valaddr, address, dval);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (variant_field_index (type0) >= 0)
|
|
|
|
|
{
|
|
|
|
|
if (dval == NULL && valaddr == NULL && address == 0)
|
|
|
|
|
return type0;
|
|
|
|
|
return to_record_with_fixed_variant_part (type0, valaddr, address,
|
|
|
|
|
dval);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FLAGS (type0) |= TYPE_FLAG_FIXED_INSTANCE;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return type0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* An ordinary record type (with fixed-length fields) that describes
|
|
|
|
|
the value at (VAR_TYPE0, VALADDR, ADDRESS), where VAR_TYPE0 is a
|
|
|
|
|
union type. Any necessary discriminants' values should be in DVAL,
|
|
|
|
|
a record value. That is, this routine selects the appropriate
|
|
|
|
|
branch of the union at ADDR according to the discriminant value
|
2004-06-02 09:55:36 +00:00
|
|
|
|
indicated in the union's type name. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
to_fixed_variant_branch_type (struct type *var_type0, const gdb_byte *valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR address, struct value *dval)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
int which;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *templ_type;
|
|
|
|
|
struct type *var_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (var_type0) == TYPE_CODE_PTR)
|
|
|
|
|
var_type = TYPE_TARGET_TYPE (var_type0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
var_type = var_type0;
|
|
|
|
|
|
|
|
|
|
templ_type = ada_find_parallel_type (var_type, "___XVU");
|
|
|
|
|
|
|
|
|
|
if (templ_type != NULL)
|
|
|
|
|
var_type = templ_type;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
which =
|
|
|
|
|
ada_which_variant_applies (var_type,
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
value_type (dval), value_contents (dval));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (which < 0)
|
|
|
|
|
return empty_record (TYPE_OBJFILE (var_type));
|
|
|
|
|
else if (is_dynamic_field (var_type, which))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return to_fixed_record_type
|
2002-08-18 18:11:12 +00:00
|
|
|
|
(TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (var_type, which)),
|
|
|
|
|
valaddr, address, dval);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (variant_field_index (TYPE_FIELD_TYPE (var_type, which)) >= 0)
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
|
|
|
|
to_fixed_record_type
|
|
|
|
|
(TYPE_FIELD_TYPE (var_type, which), valaddr, address, dval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
return TYPE_FIELD_TYPE (var_type, which);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming that TYPE0 is an array type describing the type of a value
|
|
|
|
|
at ADDR, and that DVAL describes a record containing any
|
|
|
|
|
discriminants used in TYPE0, returns a type for the value that
|
|
|
|
|
contains no dynamic components (that is, no components whose sizes
|
|
|
|
|
are determined by run-time quantities). Unless IGNORE_TOO_BIG is
|
|
|
|
|
true, gives an error message if the resulting type's size is over
|
2004-06-02 09:55:36 +00:00
|
|
|
|
varsize_limit. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
to_fixed_array_type (struct type *type0, struct value *dval,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int ignore_too_big)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *index_type_desc;
|
|
|
|
|
struct type *result;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ada_is_packed_array_type (type0) /* revisit? */
|
|
|
|
|
|| (TYPE_FLAGS (type0) & TYPE_FLAG_FIXED_INSTANCE))
|
|
|
|
|
return type0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
index_type_desc = ada_find_parallel_type (type0, "___XA");
|
|
|
|
|
if (index_type_desc == NULL)
|
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *elt_type0 = ada_check_typedef (TYPE_TARGET_TYPE (type0));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* NOTE: elt_type---the fixed version of elt_type0---should never
|
2004-06-02 09:55:36 +00:00
|
|
|
|
depend on the contents of the array in properly constructed
|
|
|
|
|
debugging data. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *elt_type = ada_to_fixed_type (elt_type0, 0, 0, dval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (elt_type0 == elt_type)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
result = type0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
result = create_array_type (alloc_type (TYPE_OBJFILE (type0)),
|
|
|
|
|
elt_type, TYPE_INDEX_TYPE (type0));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
struct type *elt_type0;
|
|
|
|
|
|
|
|
|
|
elt_type0 = type0;
|
|
|
|
|
for (i = TYPE_NFIELDS (index_type_desc); i > 0; i -= 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
elt_type0 = TYPE_TARGET_TYPE (elt_type0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* NOTE: result---the fixed version of elt_type0---should never
|
2004-06-02 09:55:36 +00:00
|
|
|
|
depend on the contents of the array in properly constructed
|
|
|
|
|
debugging data. */
|
2004-10-08 09:40:12 +00:00
|
|
|
|
result = ada_to_fixed_type (ada_check_typedef (elt_type0), 0, 0, dval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
for (i = TYPE_NFIELDS (index_type_desc) - 1; i >= 0; i -= 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
struct type *range_type =
|
|
|
|
|
to_fixed_range_type (TYPE_FIELD_NAME (index_type_desc, i),
|
|
|
|
|
dval, TYPE_OBJFILE (type0));
|
|
|
|
|
result = create_array_type (alloc_type (TYPE_OBJFILE (type0)),
|
|
|
|
|
result, range_type);
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (!ignore_too_big && TYPE_LENGTH (result) > varsize_limit)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("array type with dynamic size is larger than varsize-limit"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_FLAGS (result) |= TYPE_FLAG_FIXED_INSTANCE;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return result;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* A standard type (containing no dynamically sized components)
|
|
|
|
|
corresponding to TYPE for the value (TYPE, VALADDR, ADDRESS)
|
|
|
|
|
DVAL describes a record containing any discriminants used in TYPE0,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
and may be NULL if there are none, or if the object of type TYPE at
|
|
|
|
|
ADDRESS or in VALADDR contains these discriminants. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
ada_to_fixed_type (struct type *type, const gdb_byte *valaddr,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
CORE_ADDR address, struct value *dval)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
switch (TYPE_CODE (type))
|
|
|
|
|
{
|
|
|
|
|
default:
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
case TYPE_CODE_STRUCT:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct type *static_type = to_static_fixed_type (type);
|
|
|
|
|
if (ada_is_tagged_type (static_type, 0))
|
|
|
|
|
{
|
|
|
|
|
struct type *real_type =
|
|
|
|
|
type_from_tag (value_tag_from_contents_and_address (static_type,
|
|
|
|
|
valaddr,
|
|
|
|
|
address));
|
|
|
|
|
if (real_type != NULL)
|
|
|
|
|
type = real_type;
|
|
|
|
|
}
|
|
|
|
|
return to_fixed_record_type (type, valaddr, address, NULL);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
case TYPE_CODE_ARRAY:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return to_fixed_array_type (type, dval, 1);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
case TYPE_CODE_UNION:
|
|
|
|
|
if (dval == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return to_fixed_variant_branch_type (type, valaddr, address, dval);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* A standard (static-sized) type corresponding as well as possible to
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE0, but based on no runtime data. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
to_static_fixed_type (struct type *type0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (type0 == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_FLAGS (type0) & TYPE_FLAG_FIXED_INSTANCE)
|
|
|
|
|
return type0;
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type0 = ada_check_typedef (type0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
switch (TYPE_CODE (type0))
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return type0;
|
|
|
|
|
case TYPE_CODE_STRUCT:
|
|
|
|
|
type = dynamic_template_type (type0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (type != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return template_to_static_fixed_type (type);
|
|
|
|
|
else
|
|
|
|
|
return template_to_static_fixed_type (type0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
case TYPE_CODE_UNION:
|
|
|
|
|
type = ada_find_parallel_type (type0, "___XVU");
|
|
|
|
|
if (type != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return template_to_static_fixed_type (type);
|
|
|
|
|
else
|
|
|
|
|
return template_to_static_fixed_type (type0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* A static approximation of TYPE with all type wrappers removed. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
|
|
|
|
static_unwrap_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (ada_is_aligner_type (type))
|
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
struct type *type1 = TYPE_FIELD_TYPE (ada_check_typedef (type), 0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (ada_type_name (type1) == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_NAME (type1) = ada_type_name (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return static_unwrap_type (type1);
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *raw_real_type = ada_get_base_type (type);
|
|
|
|
|
if (raw_real_type == type)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return to_static_fixed_type (raw_real_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* In some cases, incomplete and private types require
|
2004-06-02 09:55:36 +00:00
|
|
|
|
cross-references that are not resolved as records (for example,
|
2002-06-04 15:28:49 +00:00
|
|
|
|
type Foo;
|
|
|
|
|
type FooP is access Foo;
|
|
|
|
|
V: FooP;
|
|
|
|
|
type Foo is array ...;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
). In these cases, since there is no mechanism for producing
|
2002-06-04 15:28:49 +00:00
|
|
|
|
cross-references to such types, we instead substitute for FooP a
|
|
|
|
|
stub enumeration type that is nowhere resolved, and whose tag is
|
2004-06-02 09:55:36 +00:00
|
|
|
|
the name of the actual type. Call these types "non-record stubs". */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* A type equivalent to TYPE that is not a non-record stub, if one
|
2004-06-02 09:55:36 +00:00
|
|
|
|
exists, otherwise TYPE. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
2004-10-08 09:40:12 +00:00
|
|
|
|
ada_check_typedef (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
CHECK_TYPEDEF (type);
|
|
|
|
|
if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM
|
|
|
|
|
|| (TYPE_FLAGS (type) & TYPE_FLAG_STUB) == 0
|
|
|
|
|
|| TYPE_TAG_NAME (type) == NULL)
|
|
|
|
|
return type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *name = TYPE_TAG_NAME (type);
|
|
|
|
|
struct type *type1 = ada_find_any_type (name);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (type1 == NULL) ? type : type1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* A value representing the data at VALADDR/ADDRESS as described by
|
|
|
|
|
type TYPE0, but with a standard (static-sized) type that correctly
|
|
|
|
|
describes it. If VAL0 is not NULL and TYPE0 already is a standard
|
|
|
|
|
type, then return VAL0 [this feature is simply to avoid redundant
|
2004-06-02 09:55:36 +00:00
|
|
|
|
creation of struct values]. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
ada_to_fixed_value_create (struct type *type0, CORE_ADDR address,
|
|
|
|
|
struct value *val0)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *type = ada_to_fixed_type (type0, 0, address, NULL);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (type == type0 && val0 != NULL)
|
|
|
|
|
return val0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_from_contents_and_address (type, 0, address);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* A value representing VAL, but with a standard (static-sized) type
|
|
|
|
|
that correctly describes it. Does not necessarily create a new
|
|
|
|
|
value. */
|
|
|
|
|
|
|
|
|
|
static struct value *
|
|
|
|
|
ada_to_fixed_value (struct value *val)
|
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return ada_to_fixed_value_create (value_type (val),
|
|
|
|
|
VALUE_ADDRESS (val) + value_offset (val),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
val);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* A value representing VAL, but with a standard (static-sized) type
|
2002-06-04 15:28:49 +00:00
|
|
|
|
chosen to approximate the real type of VAL as well as possible, but
|
|
|
|
|
without consulting any runtime values. For Ada dynamic-sized
|
2004-06-02 09:55:36 +00:00
|
|
|
|
types, therefore, the type of the result is likely to be inaccurate. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_to_static_fixed_value (struct value *val)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *type =
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
to_static_fixed_type (static_unwrap_type (value_type (val)));
|
|
|
|
|
if (type == value_type (val))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return val;
|
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return coerce_unspec_val_to_type (val, type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Attributes */
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Table mapping attribute numbers to names.
|
|
|
|
|
NOTE: Keep up to date with enum ada_attribute definition in ada-lang.h. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static const char *attribute_names[] = {
|
2002-06-04 15:28:49 +00:00
|
|
|
|
"<?>",
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
"first",
|
2002-06-04 15:28:49 +00:00
|
|
|
|
"last",
|
|
|
|
|
"length",
|
|
|
|
|
"image",
|
|
|
|
|
"max",
|
|
|
|
|
"min",
|
2004-06-02 09:55:36 +00:00
|
|
|
|
"modulus",
|
|
|
|
|
"pos",
|
|
|
|
|
"size",
|
|
|
|
|
"tag",
|
2002-06-04 15:28:49 +00:00
|
|
|
|
"val",
|
|
|
|
|
0
|
|
|
|
|
};
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_attribute_name (enum exp_opcode n)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (n >= OP_ATR_FIRST && n <= (int) OP_ATR_VAL)
|
|
|
|
|
return attribute_names[n - OP_ATR_FIRST + 1];
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
return attribute_names[0];
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Evaluate the 'POS attribute applied to ARG. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static LONGEST
|
|
|
|
|
pos_atr (struct value *arg)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type = value_type (arg);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (!discrete_type_p (type))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("'POS only defined on discrete types"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_ENUM)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
LONGEST v = value_as_long (arg);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
for (i = 0; i < TYPE_NFIELDS (type); i += 1)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (v == TYPE_FIELD_BITPOS (type, i))
|
|
|
|
|
return i;
|
|
|
|
|
}
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("enumeration value is invalid: can't find 'POS"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_as_long (arg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct value *
|
|
|
|
|
value_pos_atr (struct value *arg)
|
|
|
|
|
{
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
return value_from_longest (builtin_type_int, pos_atr (arg));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Evaluate the TYPE'VAL attribute applied to ARG. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
value_val_atr (struct type *type, struct value *arg)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (!discrete_type_p (type))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("'VAL only defined on discrete types"));
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (!integer_type_p (value_type (arg)))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("'VAL requires integral argument"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_ENUM)
|
|
|
|
|
{
|
|
|
|
|
long pos = value_as_long (arg);
|
|
|
|
|
if (pos < 0 || pos >= TYPE_NFIELDS (type))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("argument to 'VAL out of range"));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return value_from_longest (type, TYPE_FIELD_BITPOS (type, pos));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return value_from_longest (type, value_as_long (arg));
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Evaluation */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True if TYPE appears to be an Ada character type.
|
|
|
|
|
[At the moment, this is true only for Character and Wide_Character;
|
|
|
|
|
It is a heuristic test that could stand improvement]. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
int
|
|
|
|
|
ada_is_character_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *name = ada_type_name (type);
|
|
|
|
|
return
|
2002-06-04 15:28:49 +00:00
|
|
|
|
name != NULL
|
2002-08-18 18:11:12 +00:00
|
|
|
|
&& (TYPE_CODE (type) == TYPE_CODE_CHAR
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| TYPE_CODE (type) == TYPE_CODE_INT
|
|
|
|
|
|| TYPE_CODE (type) == TYPE_CODE_RANGE)
|
|
|
|
|
&& (strcmp (name, "character") == 0
|
|
|
|
|
|| strcmp (name, "wide_character") == 0
|
|
|
|
|
|| strcmp (name, "unsigned char") == 0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True if TYPE appears to be an Ada string type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_string_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (type != NULL
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& TYPE_CODE (type) != TYPE_CODE_PTR
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& (ada_is_simple_array_type (type)
|
|
|
|
|
|| ada_is_array_descriptor_type (type))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& ada_array_arity (type) == 1)
|
|
|
|
|
{
|
|
|
|
|
struct type *elttype = ada_array_element_type (type, 1);
|
|
|
|
|
|
|
|
|
|
return ada_is_character_type (elttype);
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* True if TYPE is a struct type introduced by the compiler to force the
|
|
|
|
|
alignment of a value. Such types have a single field with a
|
2004-06-02 09:55:36 +00:00
|
|
|
|
distinctive name. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_aligner_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (type);
|
2004-10-15 09:12:24 +00:00
|
|
|
|
|
|
|
|
|
/* If we can find a parallel XVS type, then the XVS type should
|
|
|
|
|
be used instead of this type. And hence, this is not an aligner
|
|
|
|
|
type. */
|
|
|
|
|
if (ada_find_parallel_type (type, "___XVS") != NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (TYPE_CODE (type) == TYPE_CODE_STRUCT
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& TYPE_NFIELDS (type) == 1
|
|
|
|
|
&& strcmp (TYPE_FIELD_NAME (type, 0), "F") == 0);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If there is an ___XVS-convention type parallel to SUBTYPE, return
|
2004-06-02 09:55:36 +00:00
|
|
|
|
the parallel type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
|
|
|
|
ada_get_base_type (struct type *raw_type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *real_type_namer;
|
|
|
|
|
struct type *raw_real_type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (raw_type == NULL || TYPE_CODE (raw_type) != TYPE_CODE_STRUCT)
|
|
|
|
|
return raw_type;
|
|
|
|
|
|
|
|
|
|
real_type_namer = ada_find_parallel_type (raw_type, "___XVS");
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (real_type_namer == NULL
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|| TYPE_CODE (real_type_namer) != TYPE_CODE_STRUCT
|
|
|
|
|
|| TYPE_NFIELDS (real_type_namer) != 1)
|
|
|
|
|
return raw_type;
|
|
|
|
|
|
|
|
|
|
raw_real_type = ada_find_any_type (TYPE_FIELD_NAME (real_type_namer, 0));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (raw_real_type == NULL)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return raw_type;
|
|
|
|
|
else
|
|
|
|
|
return raw_real_type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The type of value designated by TYPE, with all aligners removed. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *
|
|
|
|
|
ada_aligned_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
if (ada_is_aligner_type (type))
|
|
|
|
|
return ada_aligned_type (TYPE_FIELD_TYPE (type, 0));
|
|
|
|
|
else
|
|
|
|
|
return ada_get_base_type (type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The address of the aligned value in an object at address VALADDR
|
2004-06-02 09:55:36 +00:00
|
|
|
|
having type TYPE. Assumes ada_is_aligner_type (TYPE). */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2005-05-09 Andrew Cagney <cagney@gnu.org>
Use gdb_byte in preference to bfd_byte.
* gdbarch.sh: Update.
* gdbarch.h, gdbarch.c: Re-generate.
* ada-lang.c, ada-lang.h, ada-valprint.c, arch-utils.c: Update.
* c-lang.c, c-lang.h, c-valprint.c, cp-valprint.c: Update.
* f-lang.c, f-lang.h, f-valprint.c, gdbcore.h, jv-lang.h: Update.
* jv-valprint.c, language.c, language.h, m2-lang.c: Update.
* m2-lang.h, m2-valprint.c, objc-lang.c, p-lang.c: Update.
* p-lang.h, p-valprint.c, regcache.c, scm-lang.c: Update.
* scm-lang.h, scm-valprint.c, target.c, target.h: Update.
* tramp-frame.c, valarith.c, valops.c, valprint.c: Update.
* valprint.h, value.c, value.h: Update.
2005-05-09 21:20:35 +00:00
|
|
|
|
const gdb_byte *
|
|
|
|
|
ada_aligned_value_addr (struct type *type, const gdb_byte *valaddr)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (ada_is_aligner_type (type))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return ada_aligned_value_addr (TYPE_FIELD_TYPE (type, 0),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
valaddr +
|
|
|
|
|
TYPE_FIELD_BITPOS (type,
|
|
|
|
|
0) / TARGET_CHAR_BIT);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
|
|
|
|
return valaddr;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* The printed representation of an enumeration literal with encoded
|
2004-06-02 09:55:36 +00:00
|
|
|
|
name NAME. The value is good to the next call of ada_enum_name. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *
|
|
|
|
|
ada_enum_name (const char *name)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static char *result;
|
|
|
|
|
static size_t result_len = 0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *tmp;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* First, unqualify the enumeration name:
|
|
|
|
|
1. Search for the last '.' character. If we find one, then skip
|
2004-06-27 19:06:23 +00:00
|
|
|
|
all the preceeding characters, the unqualified name starts
|
|
|
|
|
right after that dot.
|
2004-06-02 09:55:36 +00:00
|
|
|
|
2. Otherwise, we may be debugging on a target where the compiler
|
2004-06-27 19:06:23 +00:00
|
|
|
|
translates dots into "__". Search forward for double underscores,
|
|
|
|
|
but stop searching when we hit an overloading suffix, which is
|
|
|
|
|
of the form "__" followed by digits. */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-07-09 19:29:56 +00:00
|
|
|
|
tmp = strrchr (name, '.');
|
|
|
|
|
if (tmp != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
name = tmp + 1;
|
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
while ((tmp = strstr (name, "__")) != NULL)
|
|
|
|
|
{
|
|
|
|
|
if (isdigit (tmp[2]))
|
|
|
|
|
break;
|
|
|
|
|
else
|
|
|
|
|
name = tmp + 2;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (name[0] == 'Q')
|
|
|
|
|
{
|
|
|
|
|
int v;
|
|
|
|
|
if (name[1] == 'U' || name[1] == 'W')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (sscanf (name + 2, "%x", &v) != 1)
|
|
|
|
|
return name;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return name;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
GROW_VECT (result, result_len, 16);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (isascii (v) && isprint (v))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sprintf (result, "'%c'", v);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (name[1] == 'U')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sprintf (result, "[\"%02x\"]", v);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
sprintf (result, "[\"%04x\"]", v);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-07-09 19:29:56 +00:00
|
|
|
|
tmp = strstr (name, "__");
|
|
|
|
|
if (tmp == NULL)
|
|
|
|
|
tmp = strstr (name, "$");
|
|
|
|
|
if (tmp != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
GROW_VECT (result, result_len, tmp - name + 1);
|
|
|
|
|
strncpy (result, name, tmp - name);
|
|
|
|
|
result[tmp - name] = '\0';
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return name;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
evaluate_subexp (struct type *expect_type, struct expression *exp, int *pos,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
enum noside noside)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return (*exp->language_defn->la_exp_desc->evaluate_exp)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
(expect_type, exp, pos, noside);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Evaluate the subexpression of EXP starting at *POS as for
|
|
|
|
|
evaluate_type, updating *POS to point just past the evaluated
|
2004-06-02 09:55:36 +00:00
|
|
|
|
expression. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
evaluate_subexp_type (struct expression *exp, int *pos)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return (*exp->language_defn->la_exp_desc->evaluate_exp)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
(NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If VAL is wrapped in an aligner or subtype wrapper, return the
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value it wraps. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
unwrap_value (struct value *val)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type = ada_check_typedef (value_type (val));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (ada_is_aligner_type (type))
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *v = value_struct_elt (&val, NULL, "F",
|
2004-06-02 09:55:36 +00:00
|
|
|
|
NULL, "internal structure");
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *val_type = ada_check_typedef (value_type (v));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (ada_type_name (val_type) == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TYPE_NAME (val_type) = ada_type_name (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return unwrap_value (v);
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct type *raw_real_type =
|
2004-10-08 09:40:12 +00:00
|
|
|
|
ada_check_typedef (ada_get_base_type (type));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (type == raw_real_type)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return val;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2004-06-02 09:55:36 +00:00
|
|
|
|
coerce_unspec_val_to_type
|
|
|
|
|
(val, ada_to_fixed_type (raw_real_type, 0,
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
VALUE_ADDRESS (val) + value_offset (val),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
NULL));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
|
|
|
|
static struct value *
|
|
|
|
|
cast_to_fixed (struct type *type, struct value *arg)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
LONGEST val;
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (type == value_type (arg))
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return arg;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
else if (ada_is_fixed_point_type (value_type (arg)))
|
2002-08-18 18:11:12 +00:00
|
|
|
|
val = ada_float_to_fixed (type,
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
ada_fixed_to_float (value_type (arg),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_as_long (arg)));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
DOUBLEST argd =
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_as_double (value_cast (builtin_type_double, value_copy (arg)));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
val = ada_float_to_fixed (type, argd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return value_from_longest (type, val);
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
cast_from_fixed_to_double (struct value *arg)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
DOUBLEST val = ada_fixed_to_float (value_type (arg),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
value_as_long (arg));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return value_from_double (builtin_type_double, val);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Coerce VAL as necessary for assignment to an lval of type TYPE, and
|
|
|
|
|
return the converted value. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
coerce_for_assign (struct type *type, struct value *val)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type2 = value_type (val);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (type == type2)
|
|
|
|
|
return val;
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type2 = ada_check_typedef (type2);
|
|
|
|
|
type = ada_check_typedef (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_CODE (type2) == TYPE_CODE_PTR
|
|
|
|
|
&& TYPE_CODE (type) == TYPE_CODE_ARRAY)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
val = ada_value_ind (val);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
type2 = value_type (val);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (TYPE_CODE (type2) == TYPE_CODE_ARRAY
|
2002-06-04 15:28:49 +00:00
|
|
|
|
&& TYPE_CODE (type) == TYPE_CODE_ARRAY)
|
|
|
|
|
{
|
|
|
|
|
if (TYPE_LENGTH (type2) != TYPE_LENGTH (type)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| TYPE_LENGTH (TYPE_TARGET_TYPE (type2))
|
|
|
|
|
!= TYPE_LENGTH (TYPE_TARGET_TYPE (type2)))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Incompatible types in assignment"));
|
2005-02-07 Andrew Cagney <cagney@gnu.org>
* value.h (deprecated_set_value_type): Declare.
* value.c (deprecated_set_value_type): Define.
* hpacc-abi.c, gnu-v2-abi.c, cp-valprint.c: Update.
* c-valprint.c, jv-lang.c, objc-lang.c, ada-lang.c: Update.
* infcall.c, printcmd.c, valops.c, eval.c, p-exp.y: Update.
* ax-gdb.c, tracepoint.c: Update.
2005-02-07 23:51:03 +00:00
|
|
|
|
deprecated_set_value_type (val, type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return val;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
ada_value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
|
|
|
|
|
{
|
|
|
|
|
struct value *val;
|
|
|
|
|
struct type *type1, *type2;
|
|
|
|
|
LONGEST v, v1, v2;
|
|
|
|
|
|
2004-11-10 Andrew Cagney <cagney@gnu.org>
* value.h (COERCE_REF, COERCE_ARRAY, COERCE_NUMBER, COERCE_ENUM)
(coerce_ref, coerce_array, coerce_number, coerce_enum): Replace
macros with function declarations.
* value.c (coerce_ref, coerce_array, coerce_number)
(coerce_enum): New functions.
(value_as_long, value_as_address): Update.
* ada-lang.c (ada_coerce_ref, ada_value_binop)
(ada_evaluate_subexp, ada_value_assign, ada_value_struct_elt): Update.
* jv-lang.c (evaluate_subexp_java): Update.
* valarith.c (value_less, value_neg, value_complement)
(value_binop, value_add, value_subscript, value_x_binop)
(value_logical_not, value_sub): Update.
* valops.c (check_field, value_struct_elt, value_ind)
(value_find_oload_method_list, value_cast, value_assign): Update.
* eval.c (evaluate_subexp_standard): Update.
2004-11-10 18:52:25 +00:00
|
|
|
|
arg1 = coerce_ref (arg1);
|
|
|
|
|
arg2 = coerce_ref (arg2);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
type1 = base_type (ada_check_typedef (value_type (arg1)));
|
|
|
|
|
type2 = base_type (ada_check_typedef (value_type (arg2)));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (TYPE_CODE (type1) != TYPE_CODE_INT
|
|
|
|
|
|| TYPE_CODE (type2) != TYPE_CODE_INT)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_binop (arg1, arg2, op);
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
switch (op)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case BINOP_MOD:
|
|
|
|
|
case BINOP_DIV:
|
|
|
|
|
case BINOP_REM:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return value_binop (arg1, arg2, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v2 = value_as_long (arg2);
|
|
|
|
|
if (v2 == 0)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("second operand of %s must not be zero."), op_string (op));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
if (TYPE_UNSIGNED (type1) || op == BINOP_MOD)
|
|
|
|
|
return value_binop (arg1, arg2, op);
|
|
|
|
|
|
|
|
|
|
v1 = value_as_long (arg1);
|
|
|
|
|
switch (op)
|
|
|
|
|
{
|
|
|
|
|
case BINOP_DIV:
|
|
|
|
|
v = v1 / v2;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (!TRUNCATION_TOWARDS_ZERO && v1 * (v1 % v2) < 0)
|
|
|
|
|
v += v > 0 ? -1 : 1;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
|
|
|
|
case BINOP_REM:
|
|
|
|
|
v = v1 % v2;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (v * v1 < 0)
|
|
|
|
|
v -= v2;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
/* Should not reach this point. */
|
|
|
|
|
v = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val = allocate_value (type1);
|
2005-02-02 00:20:07 +00:00
|
|
|
|
store_unsigned_integer (value_contents_raw (val),
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
TYPE_LENGTH (value_type (val)), v);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ada_value_equal (struct value *arg1, struct value *arg2)
|
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_direct_array_type (value_type (arg1))
|
|
|
|
|
|| ada_is_direct_array_type (value_type (arg2)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
arg1 = ada_coerce_to_simple_array (arg1);
|
|
|
|
|
arg2 = ada_coerce_to_simple_array (arg2);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_CODE (value_type (arg1)) != TYPE_CODE_ARRAY
|
|
|
|
|
|| TYPE_CODE (value_type (arg2)) != TYPE_CODE_ARRAY)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Attempt to compare array with non-array"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* FIXME: The following works only for types whose
|
2004-06-27 19:06:23 +00:00
|
|
|
|
representations use all bits (no padding or undefined bits)
|
|
|
|
|
and do not have user-defined equality. */
|
|
|
|
|
return
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
TYPE_LENGTH (value_type (arg1)) == TYPE_LENGTH (value_type (arg2))
|
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New
functions.
* value.h (VALUE_CONTENTS): Delete macro.
(value_contents, value_contents_writeable): Declare.
* xstormy16-tdep.c, value.c, valops.c, valarith.c: Update.
* stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update.
* sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update.
* rs6000-tdep.c, p-valprint.c, printcmd.c: Update.
* ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update.
* m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update.
* jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update.
* hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update.
* c-valprint.c, cris-tdep.c, cp-valprint.c: Update.
* cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update.
* arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update.
* ada-valprint.c, ada-lang.c: Update.
2005-02-07 00:09:56 +00:00
|
|
|
|
&& memcmp (value_contents (arg1), value_contents (arg2),
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
TYPE_LENGTH (value_type (arg1))) == 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
return value_equal (arg1, arg2);
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_evaluate_subexp (struct type *expect_type, struct expression *exp,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
int *pos, enum noside noside)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
enum exp_opcode op;
|
|
|
|
|
int tem, tem2, tem3;
|
|
|
|
|
int pc;
|
|
|
|
|
struct value *arg1 = NULL, *arg2 = NULL, *arg3;
|
|
|
|
|
struct type *type;
|
|
|
|
|
int nargs;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value **argvec;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
pc = *pos;
|
|
|
|
|
*pos += 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
op = exp->elts[pc].opcode;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
switch (op)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
*pos -= 1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2004-06-02 09:55:36 +00:00
|
|
|
|
unwrap_value (evaluate_subexp_standard
|
|
|
|
|
(expect_type, exp, pos, noside));
|
|
|
|
|
|
|
|
|
|
case OP_STRING:
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct value *result;
|
|
|
|
|
*pos -= 1;
|
|
|
|
|
result = evaluate_subexp_standard (expect_type, exp, pos, noside);
|
|
|
|
|
/* The result type will have code OP_STRING, bashed there from
|
|
|
|
|
OP_ARRAY. Bash it back. */
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_CODE (value_type (result)) == TYPE_CODE_STRING)
|
|
|
|
|
TYPE_CODE (value_type (result)) = TYPE_CODE_ARRAY;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return result;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case UNOP_CAST:
|
|
|
|
|
(*pos) += 2;
|
|
|
|
|
type = exp->elts[pc + 1].type;
|
|
|
|
|
arg1 = evaluate_subexp (type, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (type != ada_check_typedef (value_type (arg1)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (ada_is_fixed_point_type (type))
|
|
|
|
|
arg1 = cast_to_fixed (type, arg1);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
else if (ada_is_fixed_point_type (value_type (arg1)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arg1 = value_cast (type, cast_from_fixed_to_double (arg1));
|
|
|
|
|
else if (VALUE_LVAL (arg1) == lval_memory)
|
|
|
|
|
{
|
|
|
|
|
/* This is in case of the really obscure (and undocumented,
|
|
|
|
|
but apparently expected) case of (Foo) Bar.all, where Bar
|
|
|
|
|
is an integer constant and Foo is a dynamic-sized type.
|
|
|
|
|
If we don't do this, ARG1 will simply be relabeled with
|
|
|
|
|
TYPE. */
|
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
return value_zero (to_static_fixed_type (type), not_lval);
|
|
|
|
|
arg1 =
|
|
|
|
|
ada_to_fixed_value_create
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
(type, VALUE_ADDRESS (arg1) + value_offset (arg1), 0);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
arg1 = value_cast (type, arg1);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return arg1;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_QUAL:
|
|
|
|
|
(*pos) += 2;
|
|
|
|
|
type = exp->elts[pc + 1].type;
|
|
|
|
|
return ada_evaluate_subexp (type, exp, pos, noside);
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
case BINOP_ASSIGN:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return arg1;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_fixed_point_type (value_type (arg1)))
|
|
|
|
|
arg2 = cast_to_fixed (value_type (arg1), arg2);
|
|
|
|
|
else if (ada_is_fixed_point_type (value_type (arg2)))
|
2004-06-27 19:06:23 +00:00
|
|
|
|
error
|
2004-12-12 17:06:26 +00:00
|
|
|
|
(_("Fixed-point values must be assigned to fixed-point variables"));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
arg2 = coerce_for_assign (value_type (arg1), arg2);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_value_assign (arg1, arg2);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_ADD:
|
|
|
|
|
arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if ((ada_is_fixed_point_type (value_type (arg1))
|
|
|
|
|
|| ada_is_fixed_point_type (value_type (arg2)))
|
|
|
|
|
&& value_type (arg1) != value_type (arg2))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Operands of fixed-point addition must have the same type"));
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return value_cast (value_type (arg1), value_add (arg1, arg2));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_SUB:
|
|
|
|
|
arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if ((ada_is_fixed_point_type (value_type (arg1))
|
|
|
|
|
|| ada_is_fixed_point_type (value_type (arg2)))
|
|
|
|
|
&& value_type (arg1) != value_type (arg2))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Operands of fixed-point subtraction must have the same type"));
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return value_cast (value_type (arg1), value_sub (arg1, arg2));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_MUL:
|
|
|
|
|
case BINOP_DIV:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD))
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return value_zero (value_type (arg1), not_lval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_fixed_point_type (value_type (arg1)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arg1 = cast_from_fixed_to_double (arg1);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_fixed_point_type (value_type (arg2)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arg2 = cast_from_fixed_to_double (arg2);
|
|
|
|
|
return ada_value_binop (arg1, arg2, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case BINOP_REM:
|
|
|
|
|
case BINOP_MOD:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
goto nosideret;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD))
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return value_zero (value_type (arg1), not_lval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return ada_value_binop (arg1, arg2, op);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case BINOP_EQUAL:
|
|
|
|
|
case BINOP_NOTEQUAL:
|
2002-06-04 15:28:49 +00:00
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
goto nosideret;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
tem = 0;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
tem = ada_value_equal (arg1, arg2);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (op == BINOP_NOTEQUAL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
tem = !tem;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
|
|
|
|
|
|
|
|
|
|
case UNOP_NEG:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
else if (ada_is_fixed_point_type (value_type (arg1)))
|
|
|
|
|
return value_cast (value_type (arg1), value_neg (arg1));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_neg (arg1);
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
case OP_VAR_VALUE:
|
|
|
|
|
*pos -= 1;
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
*pos += 4;
|
|
|
|
|
goto nosideret;
|
|
|
|
|
}
|
|
|
|
|
else if (SYMBOL_DOMAIN (exp->elts[pc + 2].symbol) == UNDEF_DOMAIN)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
/* Only encountered when an unresolved symbol occurs in a
|
|
|
|
|
context other than a function call, in which case, it is
|
|
|
|
|
illegal. */
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Unexpected unresolved symbol, %s, during evaluation"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
*pos += 4;
|
|
|
|
|
return value_zero
|
|
|
|
|
(to_static_fixed_type
|
|
|
|
|
(static_unwrap_type (SYMBOL_TYPE (exp->elts[pc + 2].symbol))),
|
|
|
|
|
not_lval);
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
arg1 =
|
|
|
|
|
unwrap_value (evaluate_subexp_standard
|
|
|
|
|
(expect_type, exp, pos, noside));
|
|
|
|
|
return ada_to_fixed_value (arg1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case OP_FUNCALL:
|
|
|
|
|
(*pos) += 2;
|
|
|
|
|
|
|
|
|
|
/* Allocate arg vector, including space for the function to be
|
|
|
|
|
called in argvec[0] and a terminating NULL. */
|
|
|
|
|
nargs = longest_to_int (exp->elts[pc + 1].longconst);
|
|
|
|
|
argvec =
|
|
|
|
|
(struct value **) alloca (sizeof (struct value *) * (nargs + 2));
|
|
|
|
|
|
|
|
|
|
if (exp->elts[*pos].opcode == OP_VAR_VALUE
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& SYMBOL_DOMAIN (exp->elts[pc + 5].symbol) == UNDEF_DOMAIN)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Unexpected unresolved symbol, %s, during evaluation"),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
SYMBOL_PRINT_NAME (exp->elts[pc + 5].symbol));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (tem = 0; tem <= nargs; tem += 1)
|
|
|
|
|
argvec[tem] = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
argvec[tem] = 0;
|
|
|
|
|
|
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_packed_array_type (desc_base_type (value_type (argvec[0]))))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
argvec[0] = ada_coerce_to_simple_array (argvec[0]);
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
else if (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_REF
|
|
|
|
|
|| (TYPE_CODE (value_type (argvec[0])) == TYPE_CODE_ARRAY
|
2004-06-27 19:06:23 +00:00
|
|
|
|
&& VALUE_LVAL (argvec[0]) == lval_memory))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
argvec[0] = value_addr (argvec[0]);
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
type = ada_check_typedef (value_type (argvec[0]));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (TYPE_CODE (type) == TYPE_CODE_PTR)
|
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
switch (TYPE_CODE (ada_check_typedef (TYPE_TARGET_TYPE (type))))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_FUNC:
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (TYPE_TARGET_TYPE (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
|
|
|
|
case TYPE_CODE_ARRAY:
|
|
|
|
|
break;
|
|
|
|
|
case TYPE_CODE_STRUCT:
|
|
|
|
|
if (noside != EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
argvec[0] = ada_value_ind (argvec[0]);
|
2004-10-08 09:40:12 +00:00
|
|
|
|
type = ada_check_typedef (TYPE_TARGET_TYPE (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("cannot subscript or call something of type `%s'"),
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
ada_type_name (value_type (argvec[0])));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (TYPE_CODE (type))
|
|
|
|
|
{
|
|
|
|
|
case TYPE_CODE_FUNC:
|
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
return allocate_value (TYPE_TARGET_TYPE (type));
|
|
|
|
|
return call_function_by_hand (argvec[0], nargs, argvec + 1);
|
|
|
|
|
case TYPE_CODE_STRUCT:
|
|
|
|
|
{
|
|
|
|
|
int arity;
|
|
|
|
|
|
|
|
|
|
arity = ada_array_arity (type);
|
|
|
|
|
type = ada_array_element_type (type, nargs);
|
|
|
|
|
if (type == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("cannot subscript or call a record"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (arity != nargs)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("wrong number of subscripts; expecting %d"), arity);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
return allocate_value (ada_aligned_type (type));
|
|
|
|
|
return
|
|
|
|
|
unwrap_value (ada_value_subscript
|
|
|
|
|
(argvec[0], nargs, argvec + 1));
|
|
|
|
|
}
|
|
|
|
|
case TYPE_CODE_ARRAY:
|
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
{
|
|
|
|
|
type = ada_array_element_type (type, nargs);
|
|
|
|
|
if (type == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("element type of array unknown"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
|
|
|
|
return allocate_value (ada_aligned_type (type));
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
unwrap_value (ada_value_subscript
|
|
|
|
|
(ada_coerce_to_simple_array (argvec[0]),
|
|
|
|
|
nargs, argvec + 1));
|
|
|
|
|
case TYPE_CODE_PTR: /* Pointer to array */
|
|
|
|
|
type = to_fixed_array_type (TYPE_TARGET_TYPE (type), NULL, 1);
|
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
{
|
|
|
|
|
type = ada_array_element_type (type, nargs);
|
|
|
|
|
if (type == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("element type of array unknown"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
|
|
|
|
return allocate_value (ada_aligned_type (type));
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
unwrap_value (ada_value_ptr_subscript (argvec[0], type,
|
|
|
|
|
nargs, argvec + 1));
|
|
|
|
|
|
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Attempt to index or call something other than an \
|
|
|
|
|
array or function"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case TERNOP_SLICE:
|
|
|
|
|
{
|
|
|
|
|
struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
struct value *low_bound_val =
|
|
|
|
|
evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
2004-10-15 09:12:24 +00:00
|
|
|
|
struct value *high_bound_val =
|
|
|
|
|
evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
LONGEST low_bound;
|
|
|
|
|
LONGEST high_bound;
|
2004-11-10 Andrew Cagney <cagney@gnu.org>
* value.h (COERCE_REF, COERCE_ARRAY, COERCE_NUMBER, COERCE_ENUM)
(coerce_ref, coerce_array, coerce_number, coerce_enum): Replace
macros with function declarations.
* value.c (coerce_ref, coerce_array, coerce_number)
(coerce_enum): New functions.
(value_as_long, value_as_address): Update.
* ada-lang.c (ada_coerce_ref, ada_value_binop)
(ada_evaluate_subexp, ada_value_assign, ada_value_struct_elt): Update.
* jv-lang.c (evaluate_subexp_java): Update.
* valarith.c (value_less, value_neg, value_complement)
(value_binop, value_add, value_subscript, value_x_binop)
(value_logical_not, value_sub): Update.
* valops.c (check_field, value_struct_elt, value_ind)
(value_find_oload_method_list, value_cast, value_assign): Update.
* eval.c (evaluate_subexp_standard): Update.
2004-11-10 18:52:25 +00:00
|
|
|
|
low_bound_val = coerce_ref (low_bound_val);
|
|
|
|
|
high_bound_val = coerce_ref (high_bound_val);
|
2004-10-15 09:12:24 +00:00
|
|
|
|
low_bound = pos_atr (low_bound_val);
|
|
|
|
|
high_bound = pos_atr (high_bound_val);
|
2004-10-01 10:23:09 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
|
|
|
|
|
|
|
|
|
/* If this is a reference to an aligner type, then remove all
|
|
|
|
|
the aligners. */
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
|
|
|
|
|
&& ada_is_aligner_type (TYPE_TARGET_TYPE (value_type (array))))
|
|
|
|
|
TYPE_TARGET_TYPE (value_type (array)) =
|
|
|
|
|
ada_aligned_type (TYPE_TARGET_TYPE (value_type (array)));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_packed_array_type (value_type (array)))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("cannot slice a packed array"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
/* If this is a reference to an array or an array lvalue,
|
|
|
|
|
convert to a pointer. */
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_CODE (value_type (array)) == TYPE_CODE_REF
|
|
|
|
|
|| (TYPE_CODE (value_type (array)) == TYPE_CODE_ARRAY
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& VALUE_LVAL (array) == lval_memory))
|
|
|
|
|
array = value_addr (array);
|
|
|
|
|
|
2004-06-27 19:28:20 +00:00
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS
|
2004-10-08 09:40:12 +00:00
|
|
|
|
&& ada_is_array_descriptor_type (ada_check_typedef
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
(value_type (array))))
|
2004-07-01 10:30:57 +00:00
|
|
|
|
return empty_array (ada_type_of_array (array, 0), low_bound);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
array = ada_coerce_to_simple_array_ptr (array);
|
|
|
|
|
|
2004-10-15 09:12:24 +00:00
|
|
|
|
/* If we have more than one level of pointer indirection,
|
|
|
|
|
dereference the value until we get only one level. */
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
while (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR
|
|
|
|
|
&& (TYPE_CODE (TYPE_TARGET_TYPE (value_type (array)))
|
2004-10-15 09:12:24 +00:00
|
|
|
|
== TYPE_CODE_PTR))
|
|
|
|
|
array = value_ind (array);
|
|
|
|
|
|
|
|
|
|
/* Make sure we really do have an array type before going further,
|
|
|
|
|
to avoid a SEGV when trying to get the index type or the target
|
|
|
|
|
type later down the road if the debug info generated by
|
|
|
|
|
the compiler is incorrect or incomplete. */
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (!ada_is_simple_array_type (value_type (array)))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("cannot take slice of non-array"));
|
2004-10-15 09:12:24 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (TYPE_CODE (value_type (array)) == TYPE_CODE_PTR)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-07-01 10:30:57 +00:00
|
|
|
|
if (high_bound < low_bound || noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return empty_array (TYPE_TARGET_TYPE (value_type (array)),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
low_bound);
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
struct type *arr_type0 =
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
to_fixed_array_type (TYPE_TARGET_TYPE (value_type (array)),
|
2004-06-02 09:55:36 +00:00
|
|
|
|
NULL, 1);
|
2004-07-01 10:30:57 +00:00
|
|
|
|
return ada_value_slice_ptr (array, arr_type0,
|
2004-09-18 10:11:06 +00:00
|
|
|
|
(int) low_bound,
|
|
|
|
|
(int) high_bound);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
return array;
|
|
|
|
|
else if (high_bound < low_bound)
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return empty_array (value_type (array), low_bound);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2004-07-01 10:30:57 +00:00
|
|
|
|
return ada_value_slice (array, (int) low_bound, (int) high_bound);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_IN_RANGE:
|
|
|
|
|
(*pos) += 2;
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
type = exp->elts[pc + 1].type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
switch (TYPE_CODE (type))
|
|
|
|
|
{
|
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
lim_warning (_("Membership test incompletely implemented; \
|
|
|
|
|
always returns true"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_from_longest (builtin_type_int, (LONGEST) 1);
|
|
|
|
|
|
|
|
|
|
case TYPE_CODE_RANGE:
|
2004-06-27 19:06:23 +00:00
|
|
|
|
arg2 = value_from_longest (builtin_type_int, TYPE_LOW_BOUND (type));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arg3 = value_from_longest (builtin_type_int,
|
|
|
|
|
TYPE_HIGH_BOUND (type));
|
|
|
|
|
return
|
|
|
|
|
value_from_longest (builtin_type_int,
|
|
|
|
|
(value_less (arg1, arg3)
|
|
|
|
|
|| value_equal (arg1, arg3))
|
|
|
|
|
&& (value_less (arg2, arg1)
|
|
|
|
|
|| value_equal (arg2, arg1)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case BINOP_IN_BOUNDS:
|
2002-06-04 15:28:49 +00:00
|
|
|
|
(*pos) += 2;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
return value_zero (builtin_type_int, not_lval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
tem = longest_to_int (exp->elts[pc + 1].longconst);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (tem < 1 || tem > ada_array_arity (value_type (arg2)))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("invalid dimension number to 'range"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
arg3 = ada_array_bound (arg2, tem, 1);
|
|
|
|
|
arg2 = ada_array_bound (arg2, tem, 0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return
|
|
|
|
|
value_from_longest (builtin_type_int,
|
|
|
|
|
(value_less (arg1, arg3)
|
|
|
|
|
|| value_equal (arg1, arg3))
|
|
|
|
|
&& (value_less (arg2, arg1)
|
|
|
|
|
|| value_equal (arg2, arg1)));
|
|
|
|
|
|
|
|
|
|
case TERNOP_IN_RANGE:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
arg3 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
|
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
value_from_longest (builtin_type_int,
|
|
|
|
|
(value_less (arg1, arg3)
|
|
|
|
|
|| value_equal (arg1, arg3))
|
|
|
|
|
&& (value_less (arg2, arg1)
|
|
|
|
|
|| value_equal (arg2, arg1)));
|
|
|
|
|
|
|
|
|
|
case OP_ATR_FIRST:
|
|
|
|
|
case OP_ATR_LAST:
|
|
|
|
|
case OP_ATR_LENGTH:
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct type *type_arg;
|
|
|
|
|
if (exp->elts[*pos].opcode == OP_TYPE)
|
|
|
|
|
{
|
|
|
|
|
evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
|
|
|
|
|
arg1 = NULL;
|
|
|
|
|
type_arg = exp->elts[pc + 2].type;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
type_arg = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (exp->elts[*pos].opcode != OP_LONG)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Invalid operand to '%s"), ada_attribute_name (op));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
tem = longest_to_int (exp->elts[*pos + 2].longconst);
|
|
|
|
|
*pos += 4;
|
|
|
|
|
|
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
|
|
|
|
|
|
|
|
|
if (type_arg == NULL)
|
|
|
|
|
{
|
|
|
|
|
arg1 = ada_coerce_ref (arg1);
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (ada_is_packed_array_type (value_type (arg1)))
|
2004-06-27 19:06:23 +00:00
|
|
|
|
arg1 = ada_coerce_to_simple_array (arg1);
|
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (tem < 1 || tem > ada_array_arity (value_type (arg1)))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("invalid dimension number to '%s"),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_attribute_name (op));
|
|
|
|
|
|
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
type = ada_index_type (value_type (arg1), tem);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (type == NULL)
|
|
|
|
|
error
|
2004-12-12 17:06:26 +00:00
|
|
|
|
(_("attempt to take bound of something that is not an array"));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return allocate_value (type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (op)
|
|
|
|
|
{
|
|
|
|
|
default: /* Should never happen. */
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("unexpected attribute encountered"));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
case OP_ATR_FIRST:
|
|
|
|
|
return ada_array_bound (arg1, tem, 0);
|
|
|
|
|
case OP_ATR_LAST:
|
|
|
|
|
return ada_array_bound (arg1, tem, 1);
|
|
|
|
|
case OP_ATR_LENGTH:
|
|
|
|
|
return ada_array_length (arg1, tem);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (discrete_type_p (type_arg))
|
|
|
|
|
{
|
|
|
|
|
struct type *range_type;
|
|
|
|
|
char *name = ada_type_name (type_arg);
|
|
|
|
|
range_type = NULL;
|
|
|
|
|
if (name != NULL && TYPE_CODE (type_arg) != TYPE_CODE_ENUM)
|
|
|
|
|
range_type =
|
|
|
|
|
to_fixed_range_type (name, NULL, TYPE_OBJFILE (type_arg));
|
|
|
|
|
if (range_type == NULL)
|
|
|
|
|
range_type = type_arg;
|
|
|
|
|
switch (op)
|
|
|
|
|
{
|
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("unexpected attribute encountered"));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
case OP_ATR_FIRST:
|
|
|
|
|
return discrete_type_low_bound (range_type);
|
|
|
|
|
case OP_ATR_LAST:
|
|
|
|
|
return discrete_type_high_bound (range_type);
|
|
|
|
|
case OP_ATR_LENGTH:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("the 'length attribute applies only to array types"));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (TYPE_CODE (type_arg) == TYPE_CODE_FLT)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("unimplemented type attribute"));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LONGEST low, high;
|
|
|
|
|
|
|
|
|
|
if (ada_is_packed_array_type (type_arg))
|
|
|
|
|
type_arg = decode_packed_array_type (type_arg);
|
|
|
|
|
|
|
|
|
|
if (tem < 1 || tem > ada_array_arity (type_arg))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("invalid dimension number to '%s"),
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_attribute_name (op));
|
|
|
|
|
|
|
|
|
|
type = ada_index_type (type_arg, tem);
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
error
|
2004-12-12 17:06:26 +00:00
|
|
|
|
(_("attempt to take bound of something that is not an array"));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
|
|
|
|
return allocate_value (type);
|
|
|
|
|
|
|
|
|
|
switch (op)
|
|
|
|
|
{
|
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("unexpected attribute encountered"));
|
2004-06-27 19:06:23 +00:00
|
|
|
|
case OP_ATR_FIRST:
|
|
|
|
|
low = ada_array_bound_from_type (type_arg, tem, 0, &type);
|
|
|
|
|
return value_from_longest (type, low);
|
|
|
|
|
case OP_ATR_LAST:
|
|
|
|
|
high = ada_array_bound_from_type (type_arg, tem, 1, &type);
|
|
|
|
|
return value_from_longest (type, high);
|
|
|
|
|
case OP_ATR_LENGTH:
|
|
|
|
|
low = ada_array_bound_from_type (type_arg, tem, 0, &type);
|
|
|
|
|
high = ada_array_bound_from_type (type_arg, tem, 1, NULL);
|
|
|
|
|
return value_from_longest (type, high - low + 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case OP_ATR_TAG:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
goto nosideret;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return value_zero (ada_tag_type (arg1), not_lval);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
return ada_value_tag (arg1);
|
|
|
|
|
|
|
|
|
|
case OP_ATR_MIN:
|
|
|
|
|
case OP_ATR_MAX:
|
|
|
|
|
evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
goto nosideret;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return value_zero (value_type (arg1), not_lval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return value_binop (arg1, arg2,
|
|
|
|
|
op == OP_ATR_MIN ? BINOP_MIN : BINOP_MAX);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case OP_ATR_MODULUS:
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
struct type *type_arg = exp->elts[pc + 2].type;
|
|
|
|
|
evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (!ada_is_modular_type (type_arg))
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("'modulus must be applied to modular type"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return value_from_longest (TYPE_TARGET_TYPE (type_arg),
|
|
|
|
|
ada_modulus (type_arg));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case OP_ATR_POS:
|
|
|
|
|
evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
goto nosideret;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
return value_zero (builtin_type_int, not_lval);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return value_pos_atr (arg1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case OP_ATR_SIZE:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
goto nosideret;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
return value_zero (builtin_type_int, not_lval);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
return value_from_longest (builtin_type_int,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
TARGET_CHAR_BIT
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
* TYPE_LENGTH (value_type (arg1)));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
case OP_ATR_VAL:
|
|
|
|
|
evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type = exp->elts[pc + 2].type;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
goto nosideret;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return value_zero (type, not_lval);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return value_val_atr (type, arg1);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
case BINOP_EXP:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
return value_zero (value_type (arg1), not_lval);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
|
|
|
|
return value_binop (arg1, arg2, op);
|
|
|
|
|
|
|
|
|
|
case UNOP_PLUS:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
|
|
|
|
else
|
|
|
|
|
return arg1;
|
|
|
|
|
|
|
|
|
|
case UNOP_ABS:
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
|
|
|
|
goto nosideret;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
if (value_less (arg1, value_zero (value_type (arg1), not_lval)))
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_neg (arg1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return arg1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case UNOP_IND:
|
|
|
|
|
if (expect_type && TYPE_CODE (expect_type) == TYPE_CODE_PTR)
|
2004-10-08 09:40:12 +00:00
|
|
|
|
expect_type = TYPE_TARGET_TYPE (ada_check_typedef (expect_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
arg1 = evaluate_subexp (expect_type, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
type = ada_check_typedef (value_type (arg1));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (ada_is_array_descriptor_type (type))
|
|
|
|
|
/* GDB allows dereferencing GNAT array descriptors. */
|
|
|
|
|
{
|
|
|
|
|
struct type *arrType = ada_type_of_array (arg1, 0);
|
|
|
|
|
if (arrType == NULL)
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Attempt to dereference null array pointer."));
|
2004-11-09 Andrew Cagney <cagney@gnu.org>
* value.h (struct value): Delete field bfd_section.
(VALUE_BFD_SECTION): Delete macro.
(COERCE_REF): Update.
(value_at, value_at_lazy): Delete asection parameter.
* printcmd.c (print_formatted, x_command): Update.
(do_examine): Delete asection parameter.
(next_section): Delete variable.
* valops.c (value_cast, value_at, value_at_lazy)
(value_coerce_function, value_addr, value_ind, value_string)
(find_rt_vbase_offset, value_full_object): Update.
* hpacc-abi.c (hpacc_virtual_fn_field)
(hpacc_value_rtti_type): Update.
* gnu-v3-abi.c (gnuv3_rtti_type, gnuv3_virtual_fn_field)
(gnuv3_baseclass_offset): Update.
* f-valprint.c (f_val_print): Update.
* c-valprint.c (c_val_print): Update.
* p-valprint.c (pascal_val_print): Update.
* jv-valprint.c (java_value_print): Update.
* jv-lang.c (java_class_from_object, evaluate_subexp_java): Update.
* ada-lang.c (ada_value_primitive_packed_val)
(ada_evaluate_subexp): Update.
* dwarf2loc.c (dwarf2_evaluate_loc_desc): Update.
* expprint.c (print_subexp_standard): Update.
* infcall.c (call_function_by_hand): Update.
* valarith.c (value_add): Update.
* eval.c (evaluate_subexp_standard): Update.
* values.c (allocate_value, value_copy, value_static_field): Update.
* findvar.c (read_var_value, locate_var_value): Update.
2004-11-09 14:43:27 +00:00
|
|
|
|
return value_at_lazy (arrType, 0);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
|
|
|
|
else if (TYPE_CODE (type) == TYPE_CODE_PTR
|
|
|
|
|
|| TYPE_CODE (type) == TYPE_CODE_REF
|
|
|
|
|
/* In C you can dereference an array to get the 1st elt. */
|
|
|
|
|
|| TYPE_CODE (type) == TYPE_CODE_ARRAY)
|
2004-10-15 09:12:24 +00:00
|
|
|
|
{
|
|
|
|
|
type = to_static_fixed_type
|
|
|
|
|
(ada_aligned_type
|
|
|
|
|
(ada_check_typedef (TYPE_TARGET_TYPE (type))));
|
|
|
|
|
check_size (type);
|
|
|
|
|
return value_zero (type, lval_memory);
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else if (TYPE_CODE (type) == TYPE_CODE_INT)
|
|
|
|
|
/* GDB allows dereferencing an int. */
|
|
|
|
|
return value_zero (builtin_type_int, lval_memory);
|
|
|
|
|
else
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Attempt to take contents of a non-pointer value."));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
}
|
2004-06-27 19:06:23 +00:00
|
|
|
|
arg1 = ada_coerce_ref (arg1); /* FIXME: What is this for?? */
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
type = ada_check_typedef (value_type (arg1));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (ada_is_array_descriptor_type (type))
|
|
|
|
|
/* GDB allows dereferencing GNAT array descriptors. */
|
|
|
|
|
return ada_coerce_to_simple_array (arg1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return ada_value_ind (arg1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
case STRUCTOP_STRUCT:
|
|
|
|
|
tem = longest_to_int (exp->elts[pc + 1].longconst);
|
|
|
|
|
(*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
|
|
|
|
|
arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
struct type *type1 = value_type (arg1);
|
2004-06-27 19:06:23 +00:00
|
|
|
|
if (ada_is_tagged_type (type1, 1))
|
|
|
|
|
{
|
|
|
|
|
type = ada_lookup_struct_elt_type (type1,
|
|
|
|
|
&exp->elts[pc + 2].string,
|
|
|
|
|
1, 1, NULL);
|
|
|
|
|
if (type == NULL)
|
|
|
|
|
/* In this case, we assume that the field COULD exist
|
|
|
|
|
in some extension of the type. Return an object of
|
|
|
|
|
"type" void, which will match any formal
|
|
|
|
|
(see ada_type_match). */
|
|
|
|
|
return value_zero (builtin_type_void, lval_memory);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
type =
|
|
|
|
|
ada_lookup_struct_elt_type (type1, &exp->elts[pc + 2].string, 1,
|
|
|
|
|
0, NULL);
|
|
|
|
|
|
|
|
|
|
return value_zero (ada_aligned_type (type), lval_memory);
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
return
|
|
|
|
|
ada_to_fixed_value (unwrap_value
|
|
|
|
|
(ada_value_struct_elt
|
|
|
|
|
(arg1, &exp->elts[pc + 2].string, "record")));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
case OP_TYPE:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The value is not supposed to be used. This is here to make it
|
|
|
|
|
easier to accommodate expressions that contain types. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
(*pos) += 2;
|
|
|
|
|
if (noside == EVAL_SKIP)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
goto nosideret;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else if (noside == EVAL_AVOID_SIDE_EFFECTS)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return allocate_value (builtin_type_void);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("Attempt to use a type name as an expression"));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nosideret:
|
|
|
|
|
return value_from_longest (builtin_type_long, (LONGEST) 1);
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Fixed point */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* If TYPE encodes an Ada fixed-point type, return the suffix of the
|
|
|
|
|
type name that encodes the 'small and 'delta information.
|
2004-06-02 09:55:36 +00:00
|
|
|
|
Otherwise, return NULL. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static const char *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
fixed_type_info (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
const char *name = ada_type_name (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
enum type_code code = (type == NULL) ? TYPE_CODE_UNDEF : TYPE_CODE (type);
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if ((code == TYPE_CODE_INT || code == TYPE_CODE_RANGE) && name != NULL)
|
|
|
|
|
{
|
2002-06-04 15:28:49 +00:00
|
|
|
|
const char *tail = strstr (name, "___XF_");
|
|
|
|
|
if (tail == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return NULL;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return tail + 5;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
else if (code == TYPE_CODE_RANGE && TYPE_TARGET_TYPE (type) != type)
|
|
|
|
|
return fixed_type_info (TYPE_TARGET_TYPE (type));
|
|
|
|
|
else
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Returns non-zero iff TYPE represents an Ada fixed-point type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_is_fixed_point_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
return fixed_type_info (type) != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Return non-zero iff TYPE represents a System.Address type. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
ada_is_system_address_type (struct type *type)
|
|
|
|
|
{
|
|
|
|
|
return (TYPE_NAME (type)
|
|
|
|
|
&& strcmp (TYPE_NAME (type), "system__address") == 0);
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* Assuming that TYPE is the representation of an Ada fixed-point
|
|
|
|
|
type, return its delta, or -1 if the type is malformed and the
|
2004-06-02 09:55:36 +00:00
|
|
|
|
delta cannot be determined. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
DOUBLEST
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_delta (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
const char *encoding = fixed_type_info (type);
|
|
|
|
|
long num, den;
|
|
|
|
|
|
|
|
|
|
if (sscanf (encoding, "_%ld_%ld", &num, &den) < 2)
|
|
|
|
|
return -1.0;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (DOUBLEST) num / (DOUBLEST) den;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Assuming that ada_is_fixed_point_type (TYPE), return the scaling
|
2004-06-02 09:55:36 +00:00
|
|
|
|
factor ('SMALL value) associated with the type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static DOUBLEST
|
2002-07-25 01:14:26 +00:00
|
|
|
|
scaling_factor (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
const char *encoding = fixed_type_info (type);
|
|
|
|
|
unsigned long num0, den0, num1, den1;
|
|
|
|
|
int n;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
n = sscanf (encoding, "_%lu_%lu_%lu_%lu", &num0, &den0, &num1, &den1);
|
|
|
|
|
|
|
|
|
|
if (n < 2)
|
|
|
|
|
return 1.0;
|
|
|
|
|
else if (n == 4)
|
|
|
|
|
return (DOUBLEST) num1 / (DOUBLEST) den1;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (DOUBLEST) num0 / (DOUBLEST) den0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Assuming that X is the representation of a value of fixed-point
|
2004-06-02 09:55:36 +00:00
|
|
|
|
type TYPE, return its floating-point equivalent. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
DOUBLEST
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_fixed_to_float (struct type *type, LONGEST x)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return (DOUBLEST) x *scaling_factor (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* The representation of a fixed-point value of type TYPE
|
|
|
|
|
corresponding to the value X. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
LONGEST
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_float_to_fixed (struct type *type, DOUBLEST x)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
return (LONGEST) (x / scaling_factor (type) + 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* VAX floating formats */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Non-zero iff TYPE represents one of the special VAX floating-point
|
2004-06-02 09:55:36 +00:00
|
|
|
|
types. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_is_vax_floating_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
int name_len =
|
2002-06-04 15:28:49 +00:00
|
|
|
|
(ada_type_name (type) == NULL) ? 0 : strlen (ada_type_name (type));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return
|
2002-06-04 15:28:49 +00:00
|
|
|
|
name_len > 6
|
2002-08-18 18:11:12 +00:00
|
|
|
|
&& (TYPE_CODE (type) == TYPE_CODE_INT
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|| TYPE_CODE (type) == TYPE_CODE_RANGE)
|
|
|
|
|
&& strncmp (ada_type_name (type) + name_len - 6, "___XF", 5) == 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The type of special VAX floating-point type this is, assuming
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_is_vax_floating_point. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_vax_float_type_suffix (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
return ada_type_name (type)[strlen (ada_type_name (type)) - 1];
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* A value representing the special debugging function that outputs
|
2002-06-04 15:28:49 +00:00
|
|
|
|
VAX floating-point values of the type represented by TYPE. Assumes
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_is_vax_floating_type (TYPE). */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *
|
|
|
|
|
ada_vax_float_print_function (struct type *type)
|
|
|
|
|
{
|
|
|
|
|
switch (ada_vax_float_type_suffix (type))
|
|
|
|
|
{
|
|
|
|
|
case 'F':
|
|
|
|
|
return get_var_value ("DEBUG_STRING_F", 0);
|
|
|
|
|
case 'D':
|
|
|
|
|
return get_var_value ("DEBUG_STRING_D", 0);
|
|
|
|
|
case 'G':
|
|
|
|
|
return get_var_value ("DEBUG_STRING_G", 0);
|
|
|
|
|
default:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
error (_("invalid VAX floating-point type"));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Range types */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Scan STR beginning at position K for a discriminant name, and
|
|
|
|
|
return the value of that discriminant field of DVAL in *PX. If
|
|
|
|
|
PNEW_K is not null, put the position of the character beyond the
|
|
|
|
|
name scanned in *PNEW_K. Return 1 if successful; return 0 and do
|
2004-06-02 09:55:36 +00:00
|
|
|
|
not alter *PX and *PNEW_K if unsuccessful. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
static int
|
2003-06-17 21:20:41 +00:00
|
|
|
|
scan_discrim_bound (char *str, int k, struct value *dval, LONGEST * px,
|
2004-06-27 19:06:23 +00:00
|
|
|
|
int *pnew_k)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
static char *bound_buffer = NULL;
|
|
|
|
|
static size_t bound_buffer_len = 0;
|
|
|
|
|
char *bound;
|
|
|
|
|
char *pend;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
struct value *bound_val;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (dval == NULL || str == NULL || str[k] == '\0')
|
|
|
|
|
return 0;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
pend = strstr (str + k, "__");
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (pend == NULL)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
bound = str + k;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
k += strlen (bound);
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
GROW_VECT (bound_buffer, bound_buffer_len, pend - (str + k) + 1);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
bound = bound_buffer;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
strncpy (bound_buffer, str + k, pend - (str + k));
|
|
|
|
|
bound[pend - (str + k)] = '\0';
|
|
|
|
|
k = pend - str;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
2004-11-12 21:45:08 +00:00
|
|
|
|
bound_val = ada_search_struct_field (bound, dval, 0, value_type (dval));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (bound_val == NULL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
*px = value_as_long (bound_val);
|
|
|
|
|
if (pnew_k != NULL)
|
|
|
|
|
*pnew_k = k;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Value of variable named NAME in the current environment. If
|
|
|
|
|
no such variable found, then if ERR_MSG is null, returns 0, and
|
2004-06-02 09:55:36 +00:00
|
|
|
|
otherwise causes an error with message ERR_MSG. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct value *
|
|
|
|
|
get_var_value (char *name, char *err_msg)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct ada_symbol_info *syms;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int nsyms;
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
nsyms = ada_lookup_symbol_list (name, get_selected_block (0), VAR_DOMAIN,
|
|
|
|
|
&syms);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (nsyms != 1)
|
|
|
|
|
{
|
|
|
|
|
if (err_msg == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
else
|
2005-02-10 Andrew Cagney <cagney@gnu.org>
Mark up all error and warning messages.
* ada-lang.c, amd64-tdep.c, arch-utils.c, breakpoint.c: Update.
* bsd-kvm.c, bsd-uthread.c, coff-solib.h, coffread.c: Update.
* core-aout.c, core-regset.c, corefile.c, corelow.c: Update.
* cp-abi.c, cp-support.c, cp-valprint.c, cris-tdep.c: Update.
* dbxread.c, demangle.c, doublest.c, dsrec.c: Update.
* dve3900-rom.c, dwarf2expr.c, dwarf2loc.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, eval.c: Update.
* event-top.c, exec.c, expprint.c, f-lang.c: Update.
* f-typeprint.c, f-valprint.c, fbsd-nat.c, findvar.c: Update.
* frame.c, frv-linux-tdep.c, gcore.c, gdbtypes.c: Update.
* gnu-nat.c, gnu-v2-abi.c, gnu-v3-abi.c, go32-nat.c: Update.
* hpacc-abi.c, hppa-hpux-nat.c, hppa-hpux-tdep.c: Update.
* hppa-linux-nat.c, hppa-linux-tdep.c, hppa-tdep.c: Update.
* hpread.c, hpux-thread.c, i386-linux-nat.c: Update.
* i386-linux-tdep.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386gnu-nat.c, i387-tdep.c, ia64-linux-nat.c: Update.
* ia64-tdep.c, inf-child.c, inf-ptrace.c, inf-ttrace.c: Update.
* infcall.c, infcmd.c, inflow.c, infptrace.c, infrun.c: Update.
* inftarg.c, interps.c, irix5-nat.c, jv-lang.c: Update.
* kod-cisco.c, kod.c, language.c, libunwind-frame.c: Update.
* linespec.c, linux-nat.c, linux-thread-db.c, m2-lang.c: Update.
* m32r-rom.c, m68hc11-tdep.c, m68k-tdep.c: Update.
* m68klinux-nat.c, macrocmd.c, macroexp.c, main.c: Update.
* maint.c, mdebugread.c, mem-break.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mipsread.c, monitor.c: Update.
* nlmread.c, nto-procfs.c, objc-lang.c, objfiles.c: Update.
* observer.c, ocd.c, p-lang.c, p-typeprint.c: Update.
* p-valprint.c, pa64solib.c, parse.c, ppc-linux-tdep.c: Update.
* ppcnbsd-tdep.c, printcmd.c, procfs.c, remote-e7000.c: Update.
* remote-fileio.c, remote-m32r-sdi.c, remote-rdi.c: Update.
* remote-rdp.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote-utils.h, remote.c: Update.
* rom68k-rom.c, rs6000-nat.c, s390-tdep.c, scm-lang.c: Update.
* ser-e7kpc.c, ser-tcp.c, ser-unix.c, sh-tdep.c: Update.
* sh3-rom.c, shnbsd-tdep.c, sol-thread.c, solib-aix5.c: Update.
* solib-frv.c, solib-irix.c, solib-osf.c, solib-pa64.c: Update.
* solib-som.c, solib-sunos.c, solib-svr4.c, solib.c: Update.
* somread.c, somsolib.c, source.c, stabsread.c: Update.
* stack.c, std-regs.c, symfile-mem.c, symfile.c: Update.
* symmisc.c, symtab.c, target.c, thread.c, top.c: Update.
* tracepoint.c, trad-frame.c, typeprint.c, utils.c: Update.
* uw-thread.c, valarith.c, valops.c, valprint.c: Update.
* value.c, varobj.c, version.in, win32-nat.c, wince.c: Update.
* xcoffread.c, xcoffsolib.c, cli/cli-cmds.c: Update.
* cli/cli-decode.c, cli/cli-dump.c, cli/cli-logging.c: Update.
* cli/cli-script.c, cli/cli-setshow.c, mi/mi-cmd-break.c: Update.
* mi/mi-cmd-disas.c, mi/mi-cmd-env.c, mi/mi-cmd-file.c: Update.
* mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-getopt.c: Update.
* mi/mi-symbol-cmds.c, tui/tui-layout.c, tui/tui-stack.c: Update.
* tui/tui-win.c: Update.
2005-02-11 04:06:14 +00:00
|
|
|
|
error (("%s"), err_msg);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return value_of_variable (syms[0].sym, syms[0].block);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
/* Value of integer variable named NAME in the current environment. If
|
2004-06-02 09:55:36 +00:00
|
|
|
|
no such variable found, returns 0, and sets *FLAG to 0. If
|
|
|
|
|
successful, sets *FLAG to 1. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
LONGEST
|
2004-06-02 09:55:36 +00:00
|
|
|
|
get_int_var_value (char *name, int *flag)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct value *var_val = get_var_value (name, 0);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
if (var_val == 0)
|
|
|
|
|
{
|
|
|
|
|
if (flag != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*flag = 0;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (flag != NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*flag = 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return value_as_long (var_val);
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Return a range type whose base type is that of the range type named
|
|
|
|
|
NAME in the current environment, and whose bounds are calculated
|
2004-06-02 09:55:36 +00:00
|
|
|
|
from NAME according to the GNAT range encoding conventions.
|
2002-06-04 15:28:49 +00:00
|
|
|
|
Extract discriminant values, if needed, from DVAL. If a new type
|
|
|
|
|
must be created, allocate in OBJFILE's space. The bounds
|
|
|
|
|
information, in general, is encoded in NAME, the base type given in
|
2004-06-02 09:55:36 +00:00
|
|
|
|
the named range type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static struct type *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
to_fixed_range_type (char *name, struct value *dval, struct objfile *objfile)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
struct type *raw_type = ada_find_any_type (name);
|
|
|
|
|
struct type *base_type;
|
2002-08-18 18:11:12 +00:00
|
|
|
|
char *subtype_info;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
if (raw_type == NULL)
|
|
|
|
|
base_type = builtin_type_int;
|
|
|
|
|
else if (TYPE_CODE (raw_type) == TYPE_CODE_RANGE)
|
|
|
|
|
base_type = TYPE_TARGET_TYPE (raw_type);
|
|
|
|
|
else
|
|
|
|
|
base_type = raw_type;
|
|
|
|
|
|
|
|
|
|
subtype_info = strstr (name, "___XD");
|
|
|
|
|
if (subtype_info == NULL)
|
|
|
|
|
return raw_type;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
static char *name_buf = NULL;
|
|
|
|
|
static size_t name_len = 0;
|
|
|
|
|
int prefix_len = subtype_info - name;
|
|
|
|
|
LONGEST L, U;
|
|
|
|
|
struct type *type;
|
|
|
|
|
char *bounds_str;
|
|
|
|
|
int n;
|
|
|
|
|
|
|
|
|
|
GROW_VECT (name_buf, name_len, prefix_len + 5);
|
|
|
|
|
strncpy (name_buf, name, prefix_len);
|
|
|
|
|
name_buf[prefix_len] = '\0';
|
|
|
|
|
|
|
|
|
|
subtype_info += 5;
|
|
|
|
|
bounds_str = strchr (subtype_info, '_');
|
|
|
|
|
n = 1;
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (*subtype_info == 'L')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (!ada_scan_number (bounds_str, n, &L, &n)
|
|
|
|
|
&& !scan_discrim_bound (bounds_str, n, dval, &L, &n))
|
|
|
|
|
return raw_type;
|
|
|
|
|
if (bounds_str[n] == '_')
|
|
|
|
|
n += 2;
|
|
|
|
|
else if (bounds_str[n] == '.') /* FIXME? SGI Workshop kludge. */
|
|
|
|
|
n += 1;
|
|
|
|
|
subtype_info += 1;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int ok;
|
|
|
|
|
strcpy (name_buf + prefix_len, "___L");
|
|
|
|
|
L = get_int_var_value (name_buf, &ok);
|
|
|
|
|
if (!ok)
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
lim_warning (_("Unknown lower bound, using 1."));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
L = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (*subtype_info == 'U')
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
if (!ada_scan_number (bounds_str, n, &U, &n)
|
|
|
|
|
&& !scan_discrim_bound (bounds_str, n, dval, &U, &n))
|
|
|
|
|
return raw_type;
|
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
else
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int ok;
|
|
|
|
|
strcpy (name_buf + prefix_len, "___U");
|
|
|
|
|
U = get_int_var_value (name_buf, &ok);
|
|
|
|
|
if (!ok)
|
|
|
|
|
{
|
2004-12-12 17:06:26 +00:00
|
|
|
|
lim_warning (_("Unknown upper bound, using %ld."), (long) L);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
U = L;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
if (objfile == NULL)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
objfile = TYPE_OBJFILE (base_type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
type = create_range_type (alloc_type (objfile), base_type, L, U);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
TYPE_NAME (type) = name;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* True iff NAME is the name of a range type. */
|
|
|
|
|
|
2002-06-04 15:28:49 +00:00
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_is_range_type_name (const char *name)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
return (name != NULL && strstr (name, "___XD"));
|
2002-08-18 18:11:12 +00:00
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Modular types */
|
|
|
|
|
|
|
|
|
|
/* True iff TYPE is an Ada modular type. */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
int
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_is_modular_type (struct type *type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-06-02 09:55:36 +00:00
|
|
|
|
struct type *subranged_type = base_type (type);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
return (subranged_type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE
|
2004-06-02 09:55:36 +00:00
|
|
|
|
&& TYPE_CODE (subranged_type) != TYPE_CODE_ENUM
|
|
|
|
|
&& TYPE_UNSIGNED (subranged_type));
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Assuming ada_is_modular_type (TYPE), the modulus of TYPE. */
|
|
|
|
|
|
2004-10-08 09:40:12 +00:00
|
|
|
|
ULONGEST
|
2002-08-18 18:11:12 +00:00
|
|
|
|
ada_modulus (struct type * type)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-10-08 09:40:12 +00:00
|
|
|
|
return (ULONGEST) TYPE_HIGH_BOUND (type) + 1;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|
2002-08-18 18:11:12 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
/* Operators */
|
|
|
|
|
/* Information about operators given special treatment in functions
|
|
|
|
|
below. */
|
|
|
|
|
/* Format: OP_DEFN (<operator>, <operator length>, <# args>, <binop>). */
|
|
|
|
|
|
|
|
|
|
#define ADA_OPERATORS \
|
|
|
|
|
OP_DEFN (OP_VAR_VALUE, 4, 0, 0) \
|
|
|
|
|
OP_DEFN (BINOP_IN_BOUNDS, 3, 2, 0) \
|
|
|
|
|
OP_DEFN (TERNOP_IN_RANGE, 1, 3, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_FIRST, 1, 2, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_LAST, 1, 2, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_LENGTH, 1, 2, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_IMAGE, 1, 2, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_MAX, 1, 3, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_MIN, 1, 3, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_MODULUS, 1, 1, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_POS, 1, 2, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_SIZE, 1, 1, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_TAG, 1, 1, 0) \
|
|
|
|
|
OP_DEFN (OP_ATR_VAL, 1, 2, 0) \
|
|
|
|
|
OP_DEFN (UNOP_QUAL, 3, 1, 0) \
|
|
|
|
|
OP_DEFN (UNOP_IN_RANGE, 3, 1, 0)
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ada_operator_length (struct expression *exp, int pc, int *oplenp, int *argsp)
|
|
|
|
|
{
|
|
|
|
|
switch (exp->elts[pc - 1].opcode)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
default:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
operator_length_standard (exp, pc, oplenp, argsp);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#define OP_DEFN(op, len, args, binop) \
|
|
|
|
|
case op: *oplenp = len; *argsp = args; break;
|
|
|
|
|
ADA_OPERATORS;
|
|
|
|
|
#undef OP_DEFN
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
ada_op_name (enum exp_opcode opcode)
|
|
|
|
|
{
|
|
|
|
|
switch (opcode)
|
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
default:
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return op_name_standard (opcode);
|
|
|
|
|
#define OP_DEFN(op, len, args, binop) case op: return #op;
|
|
|
|
|
ADA_OPERATORS;
|
|
|
|
|
#undef OP_DEFN
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* As for operator_length, but assumes PC is pointing at the first
|
|
|
|
|
element of the operator, and gives meaningful results only for the
|
|
|
|
|
Ada-specific operators. */
|
|
|
|
|
|
|
|
|
|
static void
|
2004-06-27 19:06:23 +00:00
|
|
|
|
ada_forward_operator_length (struct expression *exp, int pc,
|
|
|
|
|
int *oplenp, int *argsp)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
switch (exp->elts[pc].opcode)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
*oplenp = *argsp = 0;
|
|
|
|
|
break;
|
|
|
|
|
#define OP_DEFN(op, len, args, binop) \
|
|
|
|
|
case op: *oplenp = len; *argsp = args; break;
|
|
|
|
|
ADA_OPERATORS;
|
|
|
|
|
#undef OP_DEFN
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
ada_dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
|
|
|
|
|
{
|
|
|
|
|
enum exp_opcode op = exp->elts[elt].opcode;
|
|
|
|
|
int oplen, nargs;
|
|
|
|
|
int pc = elt;
|
|
|
|
|
int i;
|
2004-06-27 19:06:23 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
ada_forward_operator_length (exp, elt, &oplen, &nargs);
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
switch (op)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
2004-06-27 19:06:23 +00:00
|
|
|
|
/* Ada attributes ('Foo). */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case OP_ATR_FIRST:
|
|
|
|
|
case OP_ATR_LAST:
|
|
|
|
|
case OP_ATR_LENGTH:
|
|
|
|
|
case OP_ATR_IMAGE:
|
|
|
|
|
case OP_ATR_MAX:
|
|
|
|
|
case OP_ATR_MIN:
|
|
|
|
|
case OP_ATR_MODULUS:
|
|
|
|
|
case OP_ATR_POS:
|
|
|
|
|
case OP_ATR_SIZE:
|
|
|
|
|
case OP_ATR_TAG:
|
|
|
|
|
case OP_ATR_VAL:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case UNOP_IN_RANGE:
|
|
|
|
|
case UNOP_QUAL:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
/* XXX: gdb_sprint_host_address, type_sprint */
|
|
|
|
|
fprintf_filtered (stream, _("Type @"));
|
2004-06-02 09:55:36 +00:00
|
|
|
|
gdb_print_host_address (exp->elts[pc + 1].type, stream);
|
|
|
|
|
fprintf_filtered (stream, " (");
|
|
|
|
|
type_print (exp->elts[pc + 1].type, NULL, stream, 0);
|
|
|
|
|
fprintf_filtered (stream, ")");
|
|
|
|
|
break;
|
|
|
|
|
case BINOP_IN_BOUNDS:
|
|
|
|
|
fprintf_filtered (stream, " (%d)", (int) exp->elts[pc + 2].longconst);
|
|
|
|
|
break;
|
|
|
|
|
case TERNOP_IN_RANGE:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return dump_subexp_body_standard (exp, stream, elt);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elt += oplen;
|
|
|
|
|
for (i = 0; i < nargs; i += 1)
|
|
|
|
|
elt = dump_subexp (exp, stream, elt);
|
|
|
|
|
|
|
|
|
|
return elt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The Ada extension of print_subexp (q.v.). */
|
|
|
|
|
|
2004-06-27 19:06:23 +00:00
|
|
|
|
static void
|
|
|
|
|
ada_print_subexp (struct expression *exp, int *pos,
|
|
|
|
|
struct ui_file *stream, enum precedence prec)
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{
|
|
|
|
|
int oplen, nargs;
|
|
|
|
|
int pc = *pos;
|
|
|
|
|
enum exp_opcode op = exp->elts[pc].opcode;
|
|
|
|
|
|
|
|
|
|
ada_forward_operator_length (exp, pc, &oplen, &nargs);
|
|
|
|
|
|
|
|
|
|
switch (op)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
print_subexp_standard (exp, pos, stream, prec);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case OP_VAR_VALUE:
|
|
|
|
|
*pos += oplen;
|
|
|
|
|
fputs_filtered (SYMBOL_NATURAL_NAME (exp->elts[pc + 2].symbol), stream);
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case BINOP_IN_BOUNDS:
|
2004-12-12 17:06:26 +00:00
|
|
|
|
/* XXX: sprint_subexp */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
*pos += oplen;
|
|
|
|
|
print_subexp (exp, pos, stream, PREC_SUFFIX);
|
2004-12-21 10:03:55 +00:00
|
|
|
|
fputs_filtered (" in ", stream);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
print_subexp (exp, pos, stream, PREC_SUFFIX);
|
2004-12-21 10:03:55 +00:00
|
|
|
|
fputs_filtered ("'range", stream);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
if (exp->elts[pc + 1].longconst > 1)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
fprintf_filtered (stream, "(%ld)",
|
|
|
|
|
(long) exp->elts[pc + 1].longconst);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case TERNOP_IN_RANGE:
|
|
|
|
|
*pos += oplen;
|
|
|
|
|
if (prec >= PREC_EQUAL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
fputs_filtered ("(", stream);
|
2004-12-12 17:06:26 +00:00
|
|
|
|
/* XXX: sprint_subexp */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
print_subexp (exp, pos, stream, PREC_SUFFIX);
|
2004-12-21 10:03:55 +00:00
|
|
|
|
fputs_filtered (" in ", stream);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
print_subexp (exp, pos, stream, PREC_EQUAL);
|
|
|
|
|
fputs_filtered (" .. ", stream);
|
|
|
|
|
print_subexp (exp, pos, stream, PREC_EQUAL);
|
|
|
|
|
if (prec >= PREC_EQUAL)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
fputs_filtered (")", stream);
|
|
|
|
|
return;
|
2004-06-02 09:55:36 +00:00
|
|
|
|
|
|
|
|
|
case OP_ATR_FIRST:
|
|
|
|
|
case OP_ATR_LAST:
|
|
|
|
|
case OP_ATR_LENGTH:
|
|
|
|
|
case OP_ATR_IMAGE:
|
|
|
|
|
case OP_ATR_MAX:
|
|
|
|
|
case OP_ATR_MIN:
|
|
|
|
|
case OP_ATR_MODULUS:
|
|
|
|
|
case OP_ATR_POS:
|
|
|
|
|
case OP_ATR_SIZE:
|
|
|
|
|
case OP_ATR_TAG:
|
|
|
|
|
case OP_ATR_VAL:
|
|
|
|
|
*pos += oplen;
|
|
|
|
|
if (exp->elts[*pos].opcode == OP_TYPE)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (TYPE_CODE (exp->elts[*pos + 1].type) != TYPE_CODE_VOID)
|
|
|
|
|
LA_PRINT_TYPE (exp->elts[*pos + 1].type, "", stream, 0, 0);
|
|
|
|
|
*pos += 3;
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
else
|
2004-06-27 19:06:23 +00:00
|
|
|
|
print_subexp (exp, pos, stream, PREC_SUFFIX);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
fprintf_filtered (stream, "'%s", ada_attribute_name (op));
|
|
|
|
|
if (nargs > 1)
|
2004-06-27 19:06:23 +00:00
|
|
|
|
{
|
|
|
|
|
int tem;
|
|
|
|
|
for (tem = 1; tem < nargs; tem += 1)
|
|
|
|
|
{
|
|
|
|
|
fputs_filtered ((tem == 1) ? " (" : ", ", stream);
|
|
|
|
|
print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
|
|
|
|
|
}
|
|
|
|
|
fputs_filtered (")", stream);
|
|
|
|
|
}
|
2004-06-02 09:55:36 +00:00
|
|
|
|
return;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_QUAL:
|
|
|
|
|
*pos += oplen;
|
|
|
|
|
type_print (exp->elts[pc + 1].type, "", stream, 0);
|
|
|
|
|
fputs_filtered ("'(", stream);
|
|
|
|
|
print_subexp (exp, pos, stream, PREC_PREFIX);
|
|
|
|
|
fputs_filtered (")", stream);
|
|
|
|
|
return;
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
2004-06-02 09:55:36 +00:00
|
|
|
|
case UNOP_IN_RANGE:
|
|
|
|
|
*pos += oplen;
|
2004-12-12 17:06:26 +00:00
|
|
|
|
/* XXX: sprint_subexp */
|
2004-06-02 09:55:36 +00:00
|
|
|
|
print_subexp (exp, pos, stream, PREC_SUFFIX);
|
2004-12-21 10:03:55 +00:00
|
|
|
|
fputs_filtered (" in ", stream);
|
2004-06-02 09:55:36 +00:00
|
|
|
|
LA_PRINT_TYPE (exp->elts[pc + 1].type, "", stream, 1, 0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Table mapping opcodes into strings for printing operators
|
|
|
|
|
and precedences of the operators. */
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
static const struct op_print ada_op_print_tab[] = {
|
|
|
|
|
{":=", BINOP_ASSIGN, PREC_ASSIGN, 1},
|
|
|
|
|
{"or else", BINOP_LOGICAL_OR, PREC_LOGICAL_OR, 0},
|
|
|
|
|
{"and then", BINOP_LOGICAL_AND, PREC_LOGICAL_AND, 0},
|
|
|
|
|
{"or", BINOP_BITWISE_IOR, PREC_BITWISE_IOR, 0},
|
|
|
|
|
{"xor", BINOP_BITWISE_XOR, PREC_BITWISE_XOR, 0},
|
|
|
|
|
{"and", BINOP_BITWISE_AND, PREC_BITWISE_AND, 0},
|
|
|
|
|
{"=", BINOP_EQUAL, PREC_EQUAL, 0},
|
|
|
|
|
{"/=", BINOP_NOTEQUAL, PREC_EQUAL, 0},
|
|
|
|
|
{"<=", BINOP_LEQ, PREC_ORDER, 0},
|
|
|
|
|
{">=", BINOP_GEQ, PREC_ORDER, 0},
|
|
|
|
|
{">", BINOP_GTR, PREC_ORDER, 0},
|
|
|
|
|
{"<", BINOP_LESS, PREC_ORDER, 0},
|
|
|
|
|
{">>", BINOP_RSH, PREC_SHIFT, 0},
|
|
|
|
|
{"<<", BINOP_LSH, PREC_SHIFT, 0},
|
|
|
|
|
{"+", BINOP_ADD, PREC_ADD, 0},
|
|
|
|
|
{"-", BINOP_SUB, PREC_ADD, 0},
|
|
|
|
|
{"&", BINOP_CONCAT, PREC_ADD, 0},
|
|
|
|
|
{"*", BINOP_MUL, PREC_MUL, 0},
|
|
|
|
|
{"/", BINOP_DIV, PREC_MUL, 0},
|
|
|
|
|
{"rem", BINOP_REM, PREC_MUL, 0},
|
|
|
|
|
{"mod", BINOP_MOD, PREC_MUL, 0},
|
|
|
|
|
{"**", BINOP_EXP, PREC_REPEAT, 0},
|
|
|
|
|
{"@", BINOP_REPEAT, PREC_REPEAT, 0},
|
|
|
|
|
{"-", UNOP_NEG, PREC_PREFIX, 0},
|
|
|
|
|
{"+", UNOP_PLUS, PREC_PREFIX, 0},
|
|
|
|
|
{"not ", UNOP_LOGICAL_NOT, PREC_PREFIX, 0},
|
|
|
|
|
{"not ", UNOP_COMPLEMENT, PREC_PREFIX, 0},
|
|
|
|
|
{"abs ", UNOP_ABS, PREC_PREFIX, 0},
|
2004-06-02 09:55:36 +00:00
|
|
|
|
{".all", UNOP_IND, PREC_SUFFIX, 1},
|
|
|
|
|
{"'access", UNOP_ADDR, PREC_SUFFIX, 1},
|
|
|
|
|
{"'size", OP_ATR_SIZE, PREC_SUFFIX, 1},
|
2002-08-18 18:11:12 +00:00
|
|
|
|
{NULL, 0, 0, 0}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
};
|
|
|
|
|
|
2004-09-18 10:11:06 +00:00
|
|
|
|
/* Fundamental Ada Types */
|
2002-06-04 15:28:49 +00:00
|
|
|
|
|
|
|
|
|
/* Create a fundamental Ada type using default reasonable for the current
|
|
|
|
|
target machine.
|
|
|
|
|
|
|
|
|
|
Some object/debugging file formats (DWARF version 1, COFF, etc) do not
|
|
|
|
|
define fundamental types such as "int" or "double". Others (stabs or
|
|
|
|
|
DWARF version 2, etc) do define fundamental types. For the formats which
|
|
|
|
|
don't provide fundamental types, gdb can create such types using this
|
|
|
|
|
function.
|
|
|
|
|
|
|
|
|
|
FIXME: Some compilers distinguish explicitly signed integral types
|
|
|
|
|
(signed short, signed int, signed long) from "regular" integral types
|
|
|
|
|
(short, int, long) in the debugging information. There is some dis-
|
|
|
|
|
agreement as to how useful this feature is. In particular, gcc does
|
|
|
|
|
not support this. Also, only some debugging formats allow the
|
|
|
|
|
distinction to be passed on to a debugger. For now, we always just
|
|
|
|
|
use "short", "int", or "long" as the type name, for both the implicit
|
|
|
|
|
and explicitly signed types. This also makes life easier for the
|
|
|
|
|
gdb test suite since we don't have to account for the differences
|
|
|
|
|
in output depending upon what the compiler and debugging format
|
|
|
|
|
support. We will probably have to re-examine the issue when gdb
|
|
|
|
|
starts taking it's fundamental type information directly from the
|
|
|
|
|
debugging information supplied by the compiler. fnf@cygnus.com */
|
|
|
|
|
|
|
|
|
|
static struct type *
|
2002-07-25 01:14:26 +00:00
|
|
|
|
ada_create_fundamental_type (struct objfile *objfile, int typeid)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
|
|
|
|
struct type *type = NULL;
|
|
|
|
|
|
|
|
|
|
switch (typeid)
|
|
|
|
|
{
|
2002-08-18 18:11:12 +00:00
|
|
|
|
default:
|
|
|
|
|
/* FIXME: For now, if we are asked to produce a type not in this
|
|
|
|
|
language, create the equivalent of a C integer type with the
|
|
|
|
|
name "<?type?>". When all the dust settles from the type
|
2004-06-02 09:55:36 +00:00
|
|
|
|
reconstruction work, this should probably become an error. */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_INT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "<?type?>", objfile);
|
2004-12-12 17:06:26 +00:00
|
|
|
|
warning (_("internal error: no Ada fundamental type %d"), typeid);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_VOID:
|
|
|
|
|
type = init_type (TYPE_CODE_VOID,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_CHAR_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "void", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_CHAR:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_CHAR_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "character", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_SIGNED_CHAR:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_CHAR_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "signed char", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_UNSIGNED_CHAR:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_CHAR_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
TYPE_FLAG_UNSIGNED, "unsigned char", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_SHORT:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_SHORT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "short_integer", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_SIGNED_SHORT:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_SHORT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "short_integer", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_UNSIGNED_SHORT:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_SHORT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
TYPE_FLAG_UNSIGNED, "unsigned short", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_INTEGER:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_INT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "integer", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_SIGNED_INTEGER:
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
type = init_type (TYPE_CODE_INT, TARGET_INT_BIT /
|
|
|
|
|
TARGET_CHAR_BIT,
|
|
|
|
|
0, "integer", objfile); /* FIXME -fnf */
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_UNSIGNED_INTEGER:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_INT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
TYPE_FLAG_UNSIGNED, "unsigned int", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_LONG:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_integer", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_SIGNED_LONG:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_integer", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_UNSIGNED_LONG:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
TYPE_FLAG_UNSIGNED, "unsigned long", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_LONG_LONG:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_long_integer", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_SIGNED_LONG_LONG:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_long_integer", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_UNSIGNED_LONG_LONG:
|
|
|
|
|
type = init_type (TYPE_CODE_INT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
TYPE_FLAG_UNSIGNED, "unsigned long long", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_FLOAT:
|
|
|
|
|
type = init_type (TYPE_CODE_FLT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "float", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_DBL_PREC_FLOAT:
|
|
|
|
|
type = init_type (TYPE_CODE_FLT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_float", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case FT_EXT_PREC_FLOAT:
|
|
|
|
|
type = init_type (TYPE_CODE_FLT,
|
2004-06-02 09:55:36 +00:00
|
|
|
|
TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_long_float", objfile);
|
2002-08-18 18:11:12 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2002-06-04 15:28:49 +00:00
|
|
|
|
return (type);
|
|
|
|
|
}
|
|
|
|
|
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
enum ada_primitive_types {
|
|
|
|
|
ada_primitive_type_int,
|
|
|
|
|
ada_primitive_type_long,
|
|
|
|
|
ada_primitive_type_short,
|
|
|
|
|
ada_primitive_type_char,
|
|
|
|
|
ada_primitive_type_float,
|
|
|
|
|
ada_primitive_type_double,
|
|
|
|
|
ada_primitive_type_void,
|
|
|
|
|
ada_primitive_type_long_long,
|
|
|
|
|
ada_primitive_type_long_double,
|
|
|
|
|
ada_primitive_type_natural,
|
|
|
|
|
ada_primitive_type_positive,
|
|
|
|
|
ada_primitive_type_system_address,
|
|
|
|
|
nr_ada_primitive_types
|
|
|
|
|
};
|
2004-09-18 10:11:06 +00:00
|
|
|
|
|
|
|
|
|
static void
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
ada_language_arch_info (struct gdbarch *current_gdbarch,
|
|
|
|
|
struct language_arch_info *lai)
|
|
|
|
|
{
|
|
|
|
|
const struct builtin_type *builtin = builtin_type (current_gdbarch);
|
|
|
|
|
lai->primitive_type_vector
|
|
|
|
|
= GDBARCH_OBSTACK_CALLOC (current_gdbarch, nr_ada_primitive_types + 1,
|
|
|
|
|
struct type *);
|
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_int] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "integer", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_long] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_INT, TARGET_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_integer", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_short] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_INT, TARGET_SHORT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "short_integer", (struct objfile *) NULL);
|
2004-10-08 09:40:12 +00:00
|
|
|
|
lai->string_char_type =
|
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_char] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "character", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_float] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "float", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_double] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_float", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_long_long] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_INT, TARGET_LONG_LONG_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_long_integer", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_long_double] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_FLT, TARGET_LONG_DOUBLE_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "long_long_float", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_natural] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "natural", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_positive] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
|
|
|
|
|
0, "positive", (struct objfile *) NULL);
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_void] = builtin->builtin_void;
|
2004-09-18 10:11:06 +00:00
|
|
|
|
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
lai->primitive_type_vector [ada_primitive_type_system_address] =
|
2004-09-18 10:11:06 +00:00
|
|
|
|
lookup_pointer_type (init_type (TYPE_CODE_VOID, 1, 0, "void",
|
|
|
|
|
(struct objfile *) NULL));
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
TYPE_NAME (lai->primitive_type_vector [ada_primitive_type_system_address])
|
|
|
|
|
= "system__address";
|
2004-09-18 10:11:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Language vector */
|
|
|
|
|
|
|
|
|
|
/* Not really used, but needed in the ada_language_defn. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
emit_char (int c, struct ui_file *stream, int quoter)
|
|
|
|
|
{
|
|
|
|
|
ada_emit_char (c, stream, quoter, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
parse (void)
|
|
|
|
|
{
|
|
|
|
|
warnings_issued = 0;
|
|
|
|
|
return ada_parse ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct exp_descriptor ada_exp_descriptor = {
|
|
|
|
|
ada_print_subexp,
|
|
|
|
|
ada_operator_length,
|
|
|
|
|
ada_op_name,
|
|
|
|
|
ada_dump_subexp_body,
|
|
|
|
|
ada_evaluate_subexp
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const struct language_defn ada_language_defn = {
|
|
|
|
|
"ada", /* Language name */
|
|
|
|
|
language_ada,
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
NULL,
|
2004-09-18 10:11:06 +00:00
|
|
|
|
range_check_off,
|
|
|
|
|
type_check_off,
|
|
|
|
|
case_sensitive_on, /* Yes, Ada is case-insensitive, but
|
|
|
|
|
that's not quite what this means. */
|
|
|
|
|
array_row_major,
|
|
|
|
|
&ada_exp_descriptor,
|
|
|
|
|
parse,
|
|
|
|
|
ada_error,
|
|
|
|
|
resolve,
|
|
|
|
|
ada_printchar, /* Print a character constant */
|
|
|
|
|
ada_printstr, /* Function to print string constant */
|
|
|
|
|
emit_char, /* Function to print single char (not used) */
|
|
|
|
|
ada_create_fundamental_type, /* Create fundamental type in this language */
|
|
|
|
|
ada_print_type, /* Print a type using appropriate syntax */
|
|
|
|
|
ada_val_print, /* Print a value using appropriate syntax */
|
|
|
|
|
ada_value_print, /* Print a top-level value */
|
|
|
|
|
NULL, /* Language specific skip_trampoline */
|
|
|
|
|
NULL, /* value_of_this */
|
|
|
|
|
ada_lookup_symbol_nonlocal, /* Looking up non-local symbols. */
|
|
|
|
|
basic_lookup_transparent_type, /* lookup_transparent_type */
|
|
|
|
|
ada_la_decode, /* Language specific symbol demangler */
|
|
|
|
|
NULL, /* Language specific class_name_from_physname */
|
|
|
|
|
ada_op_print_tab, /* expression operators for printing */
|
|
|
|
|
0, /* c-style arrays */
|
|
|
|
|
1, /* String lower bound */
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
NULL,
|
2004-09-18 10:11:06 +00:00
|
|
|
|
ada_get_gdb_completer_word_break_characters,
|
* ada-exp.y (type_int): New function to add layer of abstraction
around references to expression types.
(type_long): Ditto.
(type_long_long): Ditto.
(type_float): Ditto.
(type_double): Ditto.
(type_long_double): Ditto.
(type_char): Ditto.
(type_system_address): Ditto.
(simple_exp): Use type_* functions in place of builtin_*
variables.
(exp): Ditto.
(write_var_from_name): Ditto.
(write_object_renaming): Ditto.
* ada-lang.c (ada_create_fundamental_type): Remove redundant
declaration.
(build_ada_types): Remove, replacing with...
(ada_language_arch_info): New function to initialize primitive
type vector in language_arch_info.
(ada_array_length): Remove use of builtin_type_ada_int.
(value_pos_atr): Ditto.
(ada_evaluate_subexp): Ditto.
(builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
builtin_type_ada_long_long, builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
(ada_builtin_types): Remove.
(ada_language_defn): Remove entries for la_builtin_type_vector and
string_char_type and use ada_language_arch_info.
(_initialize_ada_language): Do type-vector initialization along
the lines of c-lang.c.
(ada_create_fundamental_type): Break up line.
(ada_dump_symtab): Remove unused function.
(enum ada_primitive_types): Define.
* ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
builtin_type_ada_float, builtin_type_ada_double,
builtin_type_ada_long_double, builtin_type_ada_natural,
builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
* ada-lex.l: Use type_* functions in place of builtin_* variables.
(processInt): Ditto.
(processReal): Ditto.
(name_lookup): Ditto.
* ada-typeprint.c (print_range): Use builtin_type_int, not
builtin_type_ada_int.
2004-09-18 22:23:23 +00:00
|
|
|
|
ada_language_arch_info,
|
2004-09-18 10:11:06 +00:00
|
|
|
|
LANG_MAGIC
|
|
|
|
|
};
|
|
|
|
|
|
2002-08-18 18:11:12 +00:00
|
|
|
|
void
|
2004-09-18 10:11:06 +00:00
|
|
|
|
_initialize_ada_language (void)
|
2002-06-04 15:28:49 +00:00
|
|
|
|
{
|
2004-09-18 10:11:06 +00:00
|
|
|
|
add_language (&ada_language_defn);
|
|
|
|
|
|
|
|
|
|
varsize_limit = 65536;
|
|
|
|
|
|
|
|
|
|
obstack_init (&symbol_list_obstack);
|
|
|
|
|
|
|
|
|
|
decoded_names_store = htab_create_alloc
|
|
|
|
|
(256, htab_hash_string, (int (*)(const void *, const void *)) streq,
|
|
|
|
|
NULL, xcalloc, xfree);
|
2002-06-04 15:28:49 +00:00
|
|
|
|
}
|