2002-06-04 23:28:49 +08:00
|
|
|
|
/* YACC parser for Ada expressions, for GDB.
|
2004-06-02 17:55:36 +08:00
|
|
|
|
Copyright (C) 1986, 1989, 1990, 1991, 1993, 1994, 1997, 2000, 2003,
|
|
|
|
|
2004 Free Software Foundation, Inc.
|
2002-06-04 23:28:49 +08: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. */
|
|
|
|
|
|
|
|
|
|
/* Parse an Ada expression from text in a string,
|
|
|
|
|
and return the result as a struct expression pointer.
|
|
|
|
|
That structure contains arithmetic operations in reverse polish,
|
|
|
|
|
with constants represented by operations that are followed by special data.
|
|
|
|
|
See expression.h for the details of the format.
|
|
|
|
|
What is important here is that it can be built up sequentially
|
|
|
|
|
during the process of parsing; the lower levels of the tree always
|
|
|
|
|
come first in the result.
|
|
|
|
|
|
|
|
|
|
malloc's and realloc's in this file are transformed to
|
|
|
|
|
xmalloc and xrealloc respectively by the same sed command in the
|
|
|
|
|
makefile that remaps any other malloc/realloc inserted by the parser
|
|
|
|
|
generator. Doing this with #defines and trying to control the interaction
|
|
|
|
|
with include files (<malloc.h> and <stdlib.h> for example) just became
|
|
|
|
|
too messy, particularly when such includes can be inserted at random
|
|
|
|
|
times by the parser generator. */
|
2004-06-02 17:55:36 +08:00
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
%{
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
2004-07-01 18:11:11 +08:00
|
|
|
|
#include "gdb_string.h"
|
2002-06-04 23:28:49 +08:00
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include "expression.h"
|
|
|
|
|
#include "value.h"
|
|
|
|
|
#include "parser-defs.h"
|
|
|
|
|
#include "language.h"
|
|
|
|
|
#include "ada-lang.h"
|
|
|
|
|
#include "bfd.h" /* Required by objfiles.h. */
|
|
|
|
|
#include "symfile.h" /* Required by objfiles.h. */
|
|
|
|
|
#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
|
|
|
|
|
#include "frame.h"
|
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 08:01:07 +08:00
|
|
|
|
#include "block.h"
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
|
|
|
|
|
as well as gratuitiously global symbol names, so we can have multiple
|
|
|
|
|
yacc generated parsers in gdb. These are only the variables
|
|
|
|
|
produced by yacc. If other parser generators (bison, byacc, etc) produce
|
|
|
|
|
additional global names that conflict at link time, then those parser
|
2004-06-02 17:55:36 +08:00
|
|
|
|
generators need to be fixed instead of adding those names to this list. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
/* NOTE: This is clumsy, especially since BISON and FLEX provide --prefix
|
2002-06-04 23:28:49 +08:00
|
|
|
|
options. I presume we are maintaining it to accommodate systems
|
|
|
|
|
without BISON? (PNH) */
|
|
|
|
|
|
|
|
|
|
#define yymaxdepth ada_maxdepth
|
|
|
|
|
#define yyparse _ada_parse /* ada_parse calls this after initialization */
|
|
|
|
|
#define yylex ada_lex
|
|
|
|
|
#define yyerror ada_error
|
|
|
|
|
#define yylval ada_lval
|
|
|
|
|
#define yychar ada_char
|
|
|
|
|
#define yydebug ada_debug
|
2004-06-02 17:55:36 +08:00
|
|
|
|
#define yypact ada_pact
|
|
|
|
|
#define yyr1 ada_r1
|
|
|
|
|
#define yyr2 ada_r2
|
|
|
|
|
#define yydef ada_def
|
|
|
|
|
#define yychk ada_chk
|
|
|
|
|
#define yypgo ada_pgo
|
|
|
|
|
#define yyact ada_act
|
2002-06-04 23:28:49 +08:00
|
|
|
|
#define yyexca ada_exca
|
|
|
|
|
#define yyerrflag ada_errflag
|
|
|
|
|
#define yynerrs ada_nerrs
|
|
|
|
|
#define yyps ada_ps
|
|
|
|
|
#define yypv ada_pv
|
|
|
|
|
#define yys ada_s
|
|
|
|
|
#define yy_yys ada_yys
|
|
|
|
|
#define yystate ada_state
|
|
|
|
|
#define yytmp ada_tmp
|
|
|
|
|
#define yyv ada_v
|
|
|
|
|
#define yy_yyv ada_yyv
|
|
|
|
|
#define yyval ada_val
|
|
|
|
|
#define yylloc ada_lloc
|
|
|
|
|
#define yyreds ada_reds /* With YYDEBUG defined */
|
|
|
|
|
#define yytoks ada_toks /* With YYDEBUG defined */
|
2002-09-03 10:45:56 +08:00
|
|
|
|
#define yyname ada_name /* With YYDEBUG defined */
|
|
|
|
|
#define yyrule ada_rule /* With YYDEBUG defined */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
#ifndef YYDEBUG
|
2002-06-21 22:32:10 +08:00
|
|
|
|
#define YYDEBUG 1 /* Default to yydebug support */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-06-21 22:32:10 +08:00
|
|
|
|
#define YYFPRINTF parser_fprintf
|
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
struct name_info {
|
2004-06-02 17:55:36 +08:00
|
|
|
|
struct symbol *sym;
|
|
|
|
|
struct minimal_symbol *msym;
|
|
|
|
|
struct block *block;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
struct stoken stoken;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* If expression is in the context of TYPE'(...), then TYPE, else
|
2004-06-02 17:55:36 +08:00
|
|
|
|
* NULL. */
|
|
|
|
|
static struct type *type_qualifier;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
int yyparse (void);
|
|
|
|
|
|
|
|
|
|
static int yylex (void);
|
|
|
|
|
|
|
|
|
|
void yyerror (char *);
|
|
|
|
|
|
|
|
|
|
static struct stoken string_to_operator (struct stoken);
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
static void write_int (LONGEST, struct type *);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
static void write_object_renaming (struct block *, struct symbol *, int);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
static void write_var_from_name (struct block *, struct name_info);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
2004-07-01 18:11:11 +08:00
|
|
|
|
static LONGEST convert_char_literal (struct type *, LONGEST);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
%}
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
%union
|
|
|
|
|
{
|
|
|
|
|
LONGEST lval;
|
|
|
|
|
struct {
|
|
|
|
|
LONGEST val;
|
|
|
|
|
struct type *type;
|
|
|
|
|
} typed_val;
|
|
|
|
|
struct {
|
|
|
|
|
DOUBLEST dval;
|
|
|
|
|
struct type *type;
|
|
|
|
|
} typed_val_float;
|
|
|
|
|
struct type *tval;
|
|
|
|
|
struct stoken sval;
|
|
|
|
|
struct name_info ssym;
|
|
|
|
|
int voidval;
|
|
|
|
|
struct block *bval;
|
|
|
|
|
struct internalvar *ivar;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%type <voidval> exp exp1 simple_exp start variable
|
|
|
|
|
%type <tval> type
|
|
|
|
|
|
|
|
|
|
%token <typed_val> INT NULL_PTR CHARLIT
|
|
|
|
|
%token <typed_val_float> FLOAT
|
|
|
|
|
%token <tval> TYPENAME
|
|
|
|
|
%token <bval> BLOCKNAME
|
|
|
|
|
|
|
|
|
|
/* Both NAME and TYPENAME tokens represent symbols in the input,
|
|
|
|
|
and both convey their data as strings.
|
|
|
|
|
But a TYPENAME is a string that happens to be defined as a typedef
|
|
|
|
|
or builtin type name (such as int or char)
|
|
|
|
|
and a NAME is any other symbol.
|
|
|
|
|
Contexts where this distinction is not important can use the
|
|
|
|
|
nonterminal "name", which matches either NAME or TYPENAME. */
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
%token <sval> STRING
|
2002-06-04 23:28:49 +08:00
|
|
|
|
%token <ssym> NAME DOT_ID OBJECT_RENAMING
|
2004-06-02 17:55:36 +08:00
|
|
|
|
%type <bval> block
|
2002-06-04 23:28:49 +08:00
|
|
|
|
%type <lval> arglist tick_arglist
|
|
|
|
|
|
|
|
|
|
%type <tval> save_qualifier
|
|
|
|
|
|
|
|
|
|
%token DOT_ALL
|
|
|
|
|
|
|
|
|
|
/* Special type cases, put in to allow the parser to distinguish different
|
|
|
|
|
legal basetypes. */
|
2004-06-02 17:55:36 +08:00
|
|
|
|
%token <sval> SPECIAL_VARIABLE
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
%nonassoc ASSIGN
|
|
|
|
|
%left _AND_ OR XOR THEN ELSE
|
|
|
|
|
%left '=' NOTEQUAL '<' '>' LEQ GEQ IN DOTDOT
|
|
|
|
|
%left '@'
|
|
|
|
|
%left '+' '-' '&'
|
|
|
|
|
%left UNARY
|
|
|
|
|
%left '*' '/' MOD REM
|
|
|
|
|
%right STARSTAR ABS NOT
|
2004-06-02 17:55:36 +08:00
|
|
|
|
/* The following are right-associative only so that reductions at this
|
|
|
|
|
precedence have lower precedence than '.' and '('. The syntax still
|
|
|
|
|
forces a.b.c, e.g., to be LEFT-associated. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
%right TICK_ACCESS TICK_ADDRESS TICK_FIRST TICK_LAST TICK_LENGTH
|
|
|
|
|
%right TICK_MAX TICK_MIN TICK_MODULUS
|
|
|
|
|
%right TICK_POS TICK_RANGE TICK_SIZE TICK_TAG TICK_VAL
|
|
|
|
|
%right '.' '(' '[' DOT_ID DOT_ALL
|
|
|
|
|
|
|
|
|
|
%token ARROW NEW
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
|
|
start : exp1
|
|
|
|
|
| type { write_exp_elt_opcode (OP_TYPE);
|
|
|
|
|
write_exp_elt_type ($1);
|
|
|
|
|
write_exp_elt_opcode (OP_TYPE); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
/* Expressions, including the sequencing operator. */
|
|
|
|
|
exp1 : exp
|
|
|
|
|
| exp1 ';' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_COMMA); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
/* Expressions, not including the sequencing operator. */
|
|
|
|
|
simple_exp : simple_exp DOT_ALL
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_IND); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
simple_exp : simple_exp DOT_ID
|
|
|
|
|
{ write_exp_elt_opcode (STRUCTOP_STRUCT);
|
|
|
|
|
write_exp_string ($2.stoken);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (STRUCTOP_STRUCT);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
simple_exp : simple_exp '(' arglist ')'
|
|
|
|
|
{
|
|
|
|
|
write_exp_elt_opcode (OP_FUNCALL);
|
|
|
|
|
write_exp_elt_longcst ($3);
|
|
|
|
|
write_exp_elt_opcode (OP_FUNCALL);
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
simple_exp : type '(' exp ')'
|
|
|
|
|
{
|
|
|
|
|
write_exp_elt_opcode (UNOP_CAST);
|
|
|
|
|
write_exp_elt_type ($1);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (UNOP_CAST);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
simple_exp : type '\'' save_qualifier { type_qualifier = $1; } '(' exp ')'
|
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (UNOP_QUAL);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_type ($1);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (UNOP_QUAL);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
type_qualifier = $3;
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
save_qualifier : { $$ = type_qualifier; }
|
2002-09-19 21:59:26 +08:00
|
|
|
|
;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
simple_exp :
|
|
|
|
|
simple_exp '(' exp DOTDOT exp ')'
|
|
|
|
|
{ write_exp_elt_opcode (TERNOP_SLICE); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
simple_exp : '(' exp1 ')' { }
|
|
|
|
|
;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
simple_exp : variable
|
2002-06-04 23:28:49 +08:00
|
|
|
|
;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
simple_exp: SPECIAL_VARIABLE /* Various GDB extensions */
|
|
|
|
|
{ write_dollar_variable ($1); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : simple_exp
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp ASSIGN exp /* Extension for convenience */
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_ASSIGN); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : '-' exp %prec UNARY
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_NEG); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : '+' exp %prec UNARY
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_PLUS); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : NOT exp %prec UNARY
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : ABS exp %prec UNARY
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_ABS); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
arglist : { $$ = 0; }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
arglist : exp
|
|
|
|
|
{ $$ = 1; }
|
|
|
|
|
| any_name ARROW exp
|
|
|
|
|
{ $$ = 1; }
|
|
|
|
|
| arglist ',' exp
|
|
|
|
|
{ $$ = $1 + 1; }
|
|
|
|
|
| arglist ',' any_name ARROW exp
|
|
|
|
|
{ $$ = $1 + 1; }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : '{' type '}' exp %prec '.'
|
|
|
|
|
/* GDB extension */
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_MEMVAL);
|
|
|
|
|
write_exp_elt_type ($2);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (UNOP_MEMVAL);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
/* Binary operators in order of decreasing precedence. */
|
|
|
|
|
|
|
|
|
|
exp : exp STARSTAR exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_EXP); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '*' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_MUL); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '/' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_DIV); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp REM exp /* May need to be fixed to give correct Ada REM */
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_REM); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp MOD exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_MOD); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '@' exp /* GDB extension */
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_REPEAT); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '+' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_ADD); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '&' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_CONCAT); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '-' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_SUB); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '=' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_EQUAL); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp NOTEQUAL exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_NOTEQUAL); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp LEQ exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_LEQ); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp IN exp DOTDOT exp
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (TERNOP_IN_RANGE); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| exp IN exp TICK_RANGE tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (BINOP_IN_BOUNDS);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_longcst ((LONGEST) $5);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (BINOP_IN_BOUNDS);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
| exp IN TYPENAME %prec TICK_ACCESS
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (UNOP_IN_RANGE);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_type ($3);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (UNOP_IN_RANGE);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
| exp NOT IN exp DOTDOT exp
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (TERNOP_IN_RANGE);
|
|
|
|
|
write_exp_elt_opcode (UNOP_LOGICAL_NOT);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
| exp NOT IN exp TICK_RANGE tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (BINOP_IN_BOUNDS);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_longcst ((LONGEST) $6);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (BINOP_IN_BOUNDS);
|
|
|
|
|
write_exp_elt_opcode (UNOP_LOGICAL_NOT);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
| exp NOT IN TYPENAME %prec TICK_ACCESS
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (UNOP_IN_RANGE);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_type ($4);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (UNOP_IN_RANGE);
|
|
|
|
|
write_exp_elt_opcode (UNOP_LOGICAL_NOT);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp GEQ exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_GEQ); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '<' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_LESS); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp '>' exp
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_GTR); }
|
|
|
|
|
;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
exp : exp _AND_ exp /* Fix for Ada elementwise AND. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{ write_exp_elt_opcode (BINOP_BITWISE_AND); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp _AND_ THEN exp %prec _AND_
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_LOGICAL_AND); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp OR exp /* Fix for Ada elementwise OR */
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_BITWISE_IOR); }
|
|
|
|
|
;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
exp : exp OR ELSE exp
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{ write_exp_elt_opcode (BINOP_LOGICAL_OR); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : exp XOR exp /* Fix for Ada elementwise XOR */
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_BITWISE_XOR); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
simple_exp : simple_exp TICK_ACCESS
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_ADDR); }
|
|
|
|
|
| simple_exp TICK_ADDRESS
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_ADDR);
|
|
|
|
|
write_exp_elt_opcode (UNOP_CAST);
|
|
|
|
|
write_exp_elt_type (builtin_type_ada_system_address);
|
|
|
|
|
write_exp_elt_opcode (UNOP_CAST);
|
|
|
|
|
}
|
|
|
|
|
| simple_exp TICK_FIRST tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int ($3, builtin_type_int);
|
|
|
|
|
write_exp_elt_opcode (OP_ATR_FIRST); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| simple_exp TICK_LAST tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int ($3, builtin_type_int);
|
|
|
|
|
write_exp_elt_opcode (OP_ATR_LAST); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| simple_exp TICK_LENGTH tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int ($3, builtin_type_int);
|
|
|
|
|
write_exp_elt_opcode (OP_ATR_LENGTH); }
|
|
|
|
|
| simple_exp TICK_SIZE
|
|
|
|
|
{ write_exp_elt_opcode (OP_ATR_SIZE); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| simple_exp TICK_TAG
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (OP_ATR_TAG); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| opt_type_prefix TICK_MIN '(' exp ',' exp ')'
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (OP_ATR_MIN); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| opt_type_prefix TICK_MAX '(' exp ',' exp ')'
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (OP_ATR_MAX); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| opt_type_prefix TICK_POS '(' exp ')'
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (OP_ATR_POS); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| type_prefix TICK_FIRST tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int ($3, builtin_type_int);
|
|
|
|
|
write_exp_elt_opcode (OP_ATR_FIRST); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| type_prefix TICK_LAST tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int ($3, builtin_type_int);
|
|
|
|
|
write_exp_elt_opcode (OP_ATR_LAST); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| type_prefix TICK_LENGTH tick_arglist
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int ($3, builtin_type_int);
|
|
|
|
|
write_exp_elt_opcode (OP_ATR_LENGTH); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
| type_prefix TICK_VAL '(' exp ')'
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_exp_elt_opcode (OP_ATR_VAL); }
|
|
|
|
|
| type_prefix TICK_MODULUS
|
|
|
|
|
{ write_exp_elt_opcode (OP_ATR_MODULUS); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
tick_arglist : %prec '('
|
|
|
|
|
{ $$ = 1; }
|
|
|
|
|
| '(' INT ')'
|
|
|
|
|
{ $$ = $2.val; }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
type_prefix :
|
|
|
|
|
TYPENAME
|
|
|
|
|
{ write_exp_elt_opcode (OP_TYPE);
|
|
|
|
|
write_exp_elt_type ($1);
|
|
|
|
|
write_exp_elt_opcode (OP_TYPE); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
opt_type_prefix :
|
|
|
|
|
type_prefix
|
2004-06-02 17:55:36 +08:00
|
|
|
|
| /* EMPTY */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{ write_exp_elt_opcode (OP_TYPE);
|
|
|
|
|
write_exp_elt_type (builtin_type_void);
|
|
|
|
|
write_exp_elt_opcode (OP_TYPE); }
|
|
|
|
|
;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
exp : INT
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int ((LONGEST) $1.val, $1.type); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : CHARLIT
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int (convert_char_literal (type_qualifier, $1.val),
|
|
|
|
|
(type_qualifier == NULL)
|
|
|
|
|
? $1.type : type_qualifier);
|
|
|
|
|
}
|
2002-09-19 21:59:26 +08:00
|
|
|
|
;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
exp : FLOAT
|
|
|
|
|
{ write_exp_elt_opcode (OP_DOUBLE);
|
|
|
|
|
write_exp_elt_type ($1.type);
|
|
|
|
|
write_exp_elt_dblcst ($1.dval);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (OP_DOUBLE);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : NULL_PTR
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{ write_int (0, builtin_type_int); }
|
2002-09-19 21:59:26 +08:00
|
|
|
|
;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
exp : STRING
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{
|
|
|
|
|
write_exp_elt_opcode (OP_STRING);
|
|
|
|
|
write_exp_string ($1);
|
|
|
|
|
write_exp_elt_opcode (OP_STRING);
|
|
|
|
|
}
|
2002-06-04 23:28:49 +08:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
exp : NEW TYPENAME
|
|
|
|
|
{ error ("NEW not implemented."); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
variable: NAME { write_var_from_name (NULL, $1); }
|
|
|
|
|
| block NAME /* GDB extension */
|
|
|
|
|
{ write_var_from_name ($1, $2); }
|
2004-06-02 17:55:36 +08:00
|
|
|
|
| OBJECT_RENAMING
|
|
|
|
|
{ write_object_renaming (NULL, $1.sym,
|
|
|
|
|
MAX_RENAMING_CHAIN_LENGTH); }
|
|
|
|
|
| block OBJECT_RENAMING
|
|
|
|
|
{ write_object_renaming ($1, $2.sym,
|
|
|
|
|
MAX_RENAMING_CHAIN_LENGTH); }
|
2002-06-04 23:28:49 +08:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
any_name : NAME { }
|
|
|
|
|
| TYPENAME { }
|
|
|
|
|
| OBJECT_RENAMING { }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
block : BLOCKNAME /* GDB extension */
|
|
|
|
|
{ $$ = $1; }
|
|
|
|
|
| block BLOCKNAME /* GDB extension */
|
|
|
|
|
{ $$ = $2; }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type : TYPENAME { $$ = $1; }
|
|
|
|
|
| block TYPENAME { $$ = $2; }
|
2004-06-02 17:55:36 +08:00
|
|
|
|
| TYPENAME TICK_ACCESS
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{ $$ = lookup_pointer_type ($1); }
|
|
|
|
|
| block TYPENAME TICK_ACCESS
|
|
|
|
|
{ $$ = lookup_pointer_type ($2); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
/* Some extensions borrowed from C, for the benefit of those who find they
|
2004-06-02 17:55:36 +08:00
|
|
|
|
can't get used to Ada notation in GDB. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
exp : '*' exp %prec '.'
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_IND); }
|
|
|
|
|
| '&' exp %prec '.'
|
|
|
|
|
{ write_exp_elt_opcode (UNOP_ADDR); }
|
|
|
|
|
| exp '[' exp ']'
|
|
|
|
|
{ write_exp_elt_opcode (BINOP_SUBSCRIPT); }
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
|
|
|
|
|
/* yylex defined in ada-lex.c: Reads one token, getting characters */
|
|
|
|
|
/* through lexptr. */
|
|
|
|
|
|
|
|
|
|
/* Remap normal flex interface names (yylex) as well as gratuitiously */
|
|
|
|
|
/* global symbol names, so we can have multiple flex-generated parsers */
|
|
|
|
|
/* in gdb. */
|
|
|
|
|
|
|
|
|
|
/* (See note above on previous definitions for YACC.) */
|
|
|
|
|
|
|
|
|
|
#define yy_create_buffer ada_yy_create_buffer
|
|
|
|
|
#define yy_delete_buffer ada_yy_delete_buffer
|
|
|
|
|
#define yy_init_buffer ada_yy_init_buffer
|
|
|
|
|
#define yy_load_buffer_state ada_yy_load_buffer_state
|
|
|
|
|
#define yy_switch_to_buffer ada_yy_switch_to_buffer
|
|
|
|
|
#define yyrestart ada_yyrestart
|
|
|
|
|
#define yytext ada_yytext
|
|
|
|
|
#define yywrap ada_yywrap
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
static struct obstack temp_parse_space;
|
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
/* The following kludge was found necessary to prevent conflicts between */
|
|
|
|
|
/* defs.h and non-standard stdlib.h files. */
|
|
|
|
|
#define qsort __qsort__dummy
|
|
|
|
|
#include "ada-lex.c"
|
|
|
|
|
|
|
|
|
|
int
|
2004-06-02 17:55:36 +08:00
|
|
|
|
ada_parse (void)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
lexer_init (yyin); /* (Re-)initialize lexer. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
left_block_context = NULL;
|
|
|
|
|
type_qualifier = NULL;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
obstack_free (&temp_parse_space, NULL);
|
|
|
|
|
obstack_init (&temp_parse_space);
|
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
return _ada_parse ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2004-06-02 17:55:36 +08:00
|
|
|
|
yyerror (char *msg)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
error ("A %s in expression, near `%s'.", (msg ? msg : "error"), lexptr);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
/* The operator name corresponding to operator symbol STRING (adds
|
2002-06-04 23:28:49 +08:00
|
|
|
|
quotes and maps to lower-case). Destroys the previous contents of
|
|
|
|
|
the array pointed to by STRING.ptr. Error if STRING does not match
|
|
|
|
|
a valid Ada operator. Assumes that STRING.ptr points to a
|
|
|
|
|
null-terminated string and that, if STRING is a valid operator
|
|
|
|
|
symbol, the array pointed to by STRING.ptr contains at least
|
2004-06-02 17:55:36 +08:00
|
|
|
|
STRING.length+3 characters. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
static struct stoken
|
2004-06-02 17:55:36 +08:00
|
|
|
|
string_to_operator (struct stoken string)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
for (i = 0; ada_opname_table[i].encoded != NULL; i += 1)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (string.length == strlen (ada_opname_table[i].decoded)-2
|
|
|
|
|
&& strncasecmp (string.ptr, ada_opname_table[i].decoded+1,
|
2002-06-04 23:28:49 +08:00
|
|
|
|
string.length) == 0)
|
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
strncpy (string.ptr, ada_opname_table[i].decoded,
|
2002-06-04 23:28:49 +08:00
|
|
|
|
string.length+2);
|
|
|
|
|
string.length += 2;
|
|
|
|
|
return string;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
error ("Invalid operator symbol `%s'", string.ptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Emit expression to access an instance of SYM, in block BLOCK (if
|
2004-06-02 17:55:36 +08:00
|
|
|
|
* non-NULL), and with :: qualification ORIG_LEFT_CONTEXT. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
static void
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_var_from_sym (struct block *orig_left_context,
|
|
|
|
|
struct block *block,
|
|
|
|
|
struct symbol *sym)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
if (orig_left_context == NULL && symbol_read_needs_frame (sym))
|
|
|
|
|
{
|
2004-07-10 03:29:56 +08:00
|
|
|
|
if (innermost_block == 0
|
|
|
|
|
|| contained_in (block, innermost_block))
|
2002-06-04 23:28:49 +08:00
|
|
|
|
innermost_block = block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
write_exp_elt_opcode (OP_VAR_VALUE);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_block (block);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_sym (sym);
|
|
|
|
|
write_exp_elt_opcode (OP_VAR_VALUE);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
/* Emit expression to access an instance of NAME in :: context
|
|
|
|
|
* ORIG_LEFT_CONTEXT. If no unique symbol for NAME has been found,
|
|
|
|
|
* output a dummy symbol (good to the next call of ada_parse) for NAME
|
|
|
|
|
* in the UNDEF_DOMAIN, for later resolution by ada_resolve. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
static void
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_var_from_name (struct block *orig_left_context,
|
|
|
|
|
struct name_info name)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
if (name.msym != NULL)
|
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_msymbol (name.msym,
|
2002-06-04 23:28:49 +08:00
|
|
|
|
lookup_function_type (builtin_type_int),
|
|
|
|
|
builtin_type_int);
|
|
|
|
|
}
|
2004-06-02 17:55:36 +08:00
|
|
|
|
else if (name.sym == NULL)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
/* Multiple matches: record name and starting block for later
|
|
|
|
|
resolution by ada_resolve. */
|
|
|
|
|
char *encoded_name = ada_encode (name.stoken.ptr);
|
|
|
|
|
struct symbol *sym =
|
|
|
|
|
obstack_alloc (&temp_parse_space, sizeof (struct symbol));
|
|
|
|
|
memset (sym, 0, sizeof (struct symbol));
|
|
|
|
|
SYMBOL_DOMAIN (sym) = UNDEF_DOMAIN;
|
|
|
|
|
SYMBOL_LINKAGE_NAME (sym)
|
|
|
|
|
= obsavestring (encoded_name, strlen (encoded_name), &temp_parse_space);
|
|
|
|
|
SYMBOL_LANGUAGE (sym) = language_ada;
|
|
|
|
|
|
|
|
|
|
write_exp_elt_opcode (OP_VAR_VALUE);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_block (name.block);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_sym (sym);
|
|
|
|
|
write_exp_elt_opcode (OP_VAR_VALUE);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
write_var_from_sym (orig_left_context, name.block, name.sym);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
/* Write integer constant ARG of type TYPE. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
static void
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_int (LONGEST arg, struct type *type)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
write_exp_elt_opcode (OP_LONG);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_type (type);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_longcst (arg);
|
|
|
|
|
write_exp_elt_opcode (OP_LONG);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
}
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
/* Emit expression corresponding to the renamed object designated by
|
2002-06-04 23:28:49 +08:00
|
|
|
|
* the type RENAMING, which must be the referent of an object renaming
|
2004-06-02 17:55:36 +08:00
|
|
|
|
* type, in the context of ORIG_LEFT_CONTEXT. MAX_DEPTH is the maximum
|
|
|
|
|
* number of cascaded renamings to allow. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
static void
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_object_renaming (struct block *orig_left_context,
|
|
|
|
|
struct symbol *renaming, int max_depth)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
const char *qualification = SYMBOL_LINKAGE_NAME (renaming);
|
|
|
|
|
const char *simple_tail;
|
|
|
|
|
const char *expr = TYPE_FIELD_NAME (SYMBOL_TYPE (renaming), 0);
|
|
|
|
|
const char *suffix;
|
|
|
|
|
char *name;
|
|
|
|
|
struct symbol *sym;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
enum { SIMPLE_INDEX, LOWER_BOUND, UPPER_BOUND } slice_state;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (max_depth <= 0)
|
|
|
|
|
error ("Could not find renamed symbol");
|
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
/* if orig_left_context is null, then use the currently selected
|
2004-06-02 17:55:36 +08:00
|
|
|
|
block; otherwise we might fail our symbol lookup below. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
if (orig_left_context == NULL)
|
|
|
|
|
orig_left_context = get_selected_block (NULL);
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
for (simple_tail = qualification + strlen (qualification);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
simple_tail != qualification; simple_tail -= 1)
|
|
|
|
|
{
|
|
|
|
|
if (*simple_tail == '.')
|
|
|
|
|
{
|
|
|
|
|
simple_tail += 1;
|
|
|
|
|
break;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
}
|
|
|
|
|
else if (strncmp (simple_tail, "__", 2) == 0)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
simple_tail += 2;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
suffix = strstr (expr, "___XE");
|
|
|
|
|
if (suffix == NULL)
|
|
|
|
|
goto BadEncoding;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
name = (char *) obstack_alloc (&temp_parse_space, suffix - expr + 1);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
strncpy (name, expr, suffix-expr);
|
|
|
|
|
name[suffix-expr] = '\000';
|
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-15 01:43:20 +08:00
|
|
|
|
sym = lookup_symbol (name, orig_left_context, VAR_DOMAIN, 0, NULL);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (sym == NULL)
|
|
|
|
|
error ("Could not find renamed variable: %s", ada_decode (name));
|
|
|
|
|
if (ada_is_object_renaming (sym))
|
|
|
|
|
write_object_renaming (orig_left_context, sym, max_depth-1);
|
|
|
|
|
else
|
|
|
|
|
write_var_from_sym (orig_left_context, block_found, sym);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
suffix += 5;
|
|
|
|
|
slice_state = SIMPLE_INDEX;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
while (*suffix == 'X')
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
suffix += 1;
|
|
|
|
|
|
|
|
|
|
switch (*suffix) {
|
2004-06-02 17:55:36 +08:00
|
|
|
|
case 'A':
|
|
|
|
|
suffix += 1;
|
|
|
|
|
write_exp_elt_opcode (UNOP_IND);
|
|
|
|
|
break;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
case 'L':
|
|
|
|
|
slice_state = LOWER_BOUND;
|
|
|
|
|
case 'S':
|
|
|
|
|
suffix += 1;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (isdigit (*suffix))
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
char *next;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
long val = strtol (suffix, &next, 10);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (next == suffix)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
goto BadEncoding;
|
|
|
|
|
suffix = next;
|
|
|
|
|
write_exp_elt_opcode (OP_LONG);
|
|
|
|
|
write_exp_elt_type (builtin_type_ada_int);
|
|
|
|
|
write_exp_elt_longcst ((LONGEST) val);
|
|
|
|
|
write_exp_elt_opcode (OP_LONG);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
}
|
2002-06-04 23:28:49 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
const char *end;
|
|
|
|
|
char *index_name;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
int index_len;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
struct symbol *index_sym;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
|
|
|
|
|
end = strchr (suffix, 'X');
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (end == NULL)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
end = suffix + strlen (suffix);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
index_len = simple_tail - qualification + 2 + (suffix - end) + 1;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
index_name
|
|
|
|
|
= (char *) obstack_alloc (&temp_parse_space, index_len);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
memset (index_name, '\000', index_len);
|
|
|
|
|
strncpy (index_name, qualification, simple_tail - qualification);
|
|
|
|
|
index_name[simple_tail - qualification] = '\000';
|
|
|
|
|
strncat (index_name, suffix, suffix-end);
|
|
|
|
|
suffix = end;
|
|
|
|
|
|
2004-06-02 17:55:36 +08:00
|
|
|
|
index_sym =
|
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-15 01:43:20 +08:00
|
|
|
|
lookup_symbol (index_name, NULL, VAR_DOMAIN, 0, NULL);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
if (index_sym == NULL)
|
|
|
|
|
error ("Could not find %s", index_name);
|
|
|
|
|
write_var_from_sym (NULL, block_found, sym);
|
|
|
|
|
}
|
|
|
|
|
if (slice_state == SIMPLE_INDEX)
|
2004-06-02 17:55:36 +08:00
|
|
|
|
{
|
2002-06-04 23:28:49 +08:00
|
|
|
|
write_exp_elt_opcode (OP_FUNCALL);
|
|
|
|
|
write_exp_elt_longcst ((LONGEST) 1);
|
|
|
|
|
write_exp_elt_opcode (OP_FUNCALL);
|
|
|
|
|
}
|
|
|
|
|
else if (slice_state == LOWER_BOUND)
|
|
|
|
|
slice_state = UPPER_BOUND;
|
|
|
|
|
else if (slice_state == UPPER_BOUND)
|
|
|
|
|
{
|
|
|
|
|
write_exp_elt_opcode (TERNOP_SLICE);
|
|
|
|
|
slice_state = SIMPLE_INDEX;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'R':
|
|
|
|
|
{
|
|
|
|
|
struct stoken field_name;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
const char *end;
|
2002-06-04 23:28:49 +08:00
|
|
|
|
suffix += 1;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
if (slice_state != SIMPLE_INDEX)
|
|
|
|
|
goto BadEncoding;
|
|
|
|
|
end = strchr (suffix, 'X');
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (end == NULL)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
end = suffix + strlen (suffix);
|
|
|
|
|
field_name.length = end - suffix;
|
2004-06-02 17:55:36 +08:00
|
|
|
|
field_name.ptr = (char *) malloc (end - suffix + 1);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
strncpy (field_name.ptr, suffix, end - suffix);
|
|
|
|
|
field_name.ptr[end - suffix] = '\000';
|
|
|
|
|
suffix = end;
|
|
|
|
|
write_exp_elt_opcode (STRUCTOP_STRUCT);
|
|
|
|
|
write_exp_string (field_name);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
write_exp_elt_opcode (STRUCTOP_STRUCT);
|
2002-06-04 23:28:49 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2004-06-02 17:55:36 +08:00
|
|
|
|
|
2002-06-04 23:28:49 +08:00
|
|
|
|
default:
|
|
|
|
|
goto BadEncoding;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (slice_state == SIMPLE_INDEX)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
BadEncoding:
|
|
|
|
|
error ("Internal error in encoding of renaming declaration: %s",
|
2004-06-02 17:55:36 +08:00
|
|
|
|
SYMBOL_LINKAGE_NAME (renaming));
|
2002-06-04 23:28:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Convert the character literal whose ASCII value would be VAL to the
|
|
|
|
|
appropriate value of type TYPE, if there is a translation.
|
2004-06-02 17:55:36 +08:00
|
|
|
|
Otherwise return VAL. Hence, in an enumeration type ('A', 'B'),
|
|
|
|
|
the literal 'A' (VAL == 65), returns 0. */
|
2002-06-04 23:28:49 +08:00
|
|
|
|
static LONGEST
|
2004-06-02 17:55:36 +08:00
|
|
|
|
convert_char_literal (struct type *type, LONGEST val)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
|
|
|
|
char name[7];
|
|
|
|
|
int f;
|
|
|
|
|
|
|
|
|
|
if (type == NULL || TYPE_CODE (type) != TYPE_CODE_ENUM)
|
|
|
|
|
return val;
|
|
|
|
|
sprintf (name, "QU%02x", (int) val);
|
2004-06-02 17:55:36 +08:00
|
|
|
|
for (f = 0; f < TYPE_NFIELDS (type); f += 1)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
{
|
2004-06-02 17:55:36 +08:00
|
|
|
|
if (strcmp (name, TYPE_FIELD_NAME (type, f)) == 0)
|
2002-06-04 23:28:49 +08:00
|
|
|
|
return TYPE_FIELD_BITPOS (type, f);
|
|
|
|
|
}
|
|
|
|
|
return val;
|
|
|
|
|
}
|
2004-06-02 17:55:36 +08:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_initialize_ada_exp (void)
|
|
|
|
|
{
|
|
|
|
|
obstack_init (&temp_parse_space);
|
|
|
|
|
}
|