OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [jv-exp.y] - Diff between revs 105 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 105 Rev 1765
/* YACC parser for Java expressions, for GDB.
/* YACC parser for Java expressions, for GDB.
   Copyright (C) 1997, 1998, 1999.
   Copyright (C) 1997, 1998, 1999.
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
This file is part of GDB.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
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
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
(at your option) any later version.
This program is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
/* Parse a Java expression from text in a string,
/* Parse a Java expression from text in a string,
   and return the result as a  struct expression  pointer.
   and return the result as a  struct expression  pointer.
   That structure contains arithmetic operations in reverse polish,
   That structure contains arithmetic operations in reverse polish,
   with constants represented by operations that are followed by special data.
   with constants represented by operations that are followed by special data.
   See expression.h for the details of the format.
   See expression.h for the details of the format.
   What is important here is that it can be built up sequentially
   What is important here is that it can be built up sequentially
   during the process of parsing; the lower levels of the tree always
   during the process of parsing; the lower levels of the tree always
   come first in the result.  Well, almost always; see ArrayAccess.
   come first in the result.  Well, almost always; see ArrayAccess.
   Note that malloc's and realloc's in this file are transformed to
   Note that malloc's and realloc's in this file are transformed to
   xmalloc and xrealloc respectively by the same sed command in the
   xmalloc and xrealloc respectively by the same sed command in the
   makefile that remaps any other malloc/realloc inserted by the parser
   makefile that remaps any other malloc/realloc inserted by the parser
   generator.  Doing this with #defines and trying to control the interaction
   generator.  Doing this with #defines and trying to control the interaction
   with include files ( and  for example) just became
   with include files ( and  for example) just became
   too messy, particularly when such includes can be inserted at random
   too messy, particularly when such includes can be inserted at random
   times by the parser generator.  */
   times by the parser generator.  */
%{
%{
#include "defs.h"
#include "defs.h"
#include "gdb_string.h"
#include "gdb_string.h"
#include 
#include 
#include "expression.h"
#include "expression.h"
#include "value.h"
#include "value.h"
#include "parser-defs.h"
#include "parser-defs.h"
#include "language.h"
#include "language.h"
#include "jv-lang.h"
#include "jv-lang.h"
#include "bfd.h" /* Required by objfiles.h.  */
#include "bfd.h" /* Required by objfiles.h.  */
#include "symfile.h" /* Required by objfiles.h.  */
#include "symfile.h" /* Required by objfiles.h.  */
#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
   as well as gratuitiously global symbol names, so we can have multiple
   as well as gratuitiously global symbol names, so we can have multiple
   yacc generated parsers in gdb.  Note that these are only the variables
   yacc generated parsers in gdb.  Note that these are only the variables
   produced by yacc.  If other parser generators (bison, byacc, etc) produce
   produced by yacc.  If other parser generators (bison, byacc, etc) produce
   additional global names that conflict at link time, then those parser
   additional global names that conflict at link time, then those parser
   generators need to be fixed instead of adding those names to this list. */
   generators need to be fixed instead of adding those names to this list. */
#define yymaxdepth java_maxdepth
#define yymaxdepth java_maxdepth
#define yyparse java_parse
#define yyparse java_parse
#define yylex   java_lex
#define yylex   java_lex
#define yyerror java_error
#define yyerror java_error
#define yylval  java_lval
#define yylval  java_lval
#define yychar  java_char
#define yychar  java_char
#define yydebug java_debug
#define yydebug java_debug
#define yypact  java_pact
#define yypact  java_pact
#define yyr1    java_r1
#define yyr1    java_r1
#define yyr2    java_r2
#define yyr2    java_r2
#define yydef   java_def
#define yydef   java_def
#define yychk   java_chk
#define yychk   java_chk
#define yypgo   java_pgo
#define yypgo   java_pgo
#define yyact   java_act
#define yyact   java_act
#define yyexca  java_exca
#define yyexca  java_exca
#define yyerrflag java_errflag
#define yyerrflag java_errflag
#define yynerrs java_nerrs
#define yynerrs java_nerrs
#define yyps    java_ps
#define yyps    java_ps
#define yypv    java_pv
#define yypv    java_pv
#define yys     java_s
#define yys     java_s
#define yy_yys  java_yys
#define yy_yys  java_yys
#define yystate java_state
#define yystate java_state
#define yytmp   java_tmp
#define yytmp   java_tmp
#define yyv     java_v
#define yyv     java_v
#define yy_yyv  java_yyv
#define yy_yyv  java_yyv
#define yyval   java_val
#define yyval   java_val
#define yylloc  java_lloc
#define yylloc  java_lloc
#define yyreds  java_reds               /* With YYDEBUG defined */
#define yyreds  java_reds               /* With YYDEBUG defined */
#define yytoks  java_toks               /* With YYDEBUG defined */
#define yytoks  java_toks               /* With YYDEBUG defined */
#define yylhs   java_yylhs
#define yylhs   java_yylhs
#define yylen   java_yylen
#define yylen   java_yylen
#define yydefred java_yydefred
#define yydefred java_yydefred
#define yydgoto java_yydgoto
#define yydgoto java_yydgoto
#define yysindex java_yysindex
#define yysindex java_yysindex
#define yyrindex java_yyrindex
#define yyrindex java_yyrindex
#define yygindex java_yygindex
#define yygindex java_yygindex
#define yytable  java_yytable
#define yytable  java_yytable
#define yycheck  java_yycheck
#define yycheck  java_yycheck
#ifndef YYDEBUG
#ifndef YYDEBUG
#define YYDEBUG 0                /* Default to no yydebug support */
#define YYDEBUG 0                /* Default to no yydebug support */
#endif
#endif
int
int
yyparse PARAMS ((void));
yyparse PARAMS ((void));
static int
static int
yylex PARAMS ((void));
yylex PARAMS ((void));
void
void
yyerror PARAMS ((char *));
yyerror PARAMS ((char *));
static struct type * java_type_from_name PARAMS ((struct stoken));
static struct type * java_type_from_name PARAMS ((struct stoken));
static void push_expression_name PARAMS ((struct stoken));
static void push_expression_name PARAMS ((struct stoken));
static void push_fieldnames PARAMS ((struct stoken));
static void push_fieldnames PARAMS ((struct stoken));
static struct expression *copy_exp PARAMS ((struct expression *, int));
static struct expression *copy_exp PARAMS ((struct expression *, int));
static void insert_exp PARAMS ((int, struct expression *));
static void insert_exp PARAMS ((int, struct expression *));
%}
%}
/* Although the yacc "value" of an expression is not used,
/* Although the yacc "value" of an expression is not used,
   since the result is stored in the structure being created,
   since the result is stored in the structure being created,
   other node types do have values.  */
   other node types do have values.  */
%union
%union
  {
  {
    LONGEST lval;
    LONGEST lval;
    struct {
    struct {
      LONGEST val;
      LONGEST val;
      struct type *type;
      struct type *type;
    } typed_val_int;
    } typed_val_int;
    struct {
    struct {
      DOUBLEST dval;
      DOUBLEST dval;
      struct type *type;
      struct type *type;
    } typed_val_float;
    } typed_val_float;
    struct symbol *sym;
    struct symbol *sym;
    struct type *tval;
    struct type *tval;
    struct stoken sval;
    struct stoken sval;
    struct ttype tsym;
    struct ttype tsym;
    struct symtoken ssym;
    struct symtoken ssym;
    struct block *bval;
    struct block *bval;
    enum exp_opcode opcode;
    enum exp_opcode opcode;
    struct internalvar *ivar;
    struct internalvar *ivar;
    int *ivec;
    int *ivec;
  }
  }
%{
%{
/* YYSTYPE gets defined by %union */
/* YYSTYPE gets defined by %union */
static int
static int
parse_number PARAMS ((char *, int, int, YYSTYPE *));
parse_number PARAMS ((char *, int, int, YYSTYPE *));
%}
%}
%type  rcurly Dims Dims_opt
%type  rcurly Dims Dims_opt
%type  ClassOrInterfaceType ClassType /* ReferenceType Type ArrayType */
%type  ClassOrInterfaceType ClassType /* ReferenceType Type ArrayType */
%type  IntegralType FloatingPointType NumericType PrimitiveType ArrayType PrimitiveOrArrayType
%type  IntegralType FloatingPointType NumericType PrimitiveType ArrayType PrimitiveOrArrayType
%token  INTEGER_LITERAL
%token  INTEGER_LITERAL
%token  FLOATING_POINT_LITERAL
%token  FLOATING_POINT_LITERAL
%token  IDENTIFIER
%token  IDENTIFIER
%token  STRING_LITERAL
%token  STRING_LITERAL
%token  BOOLEAN_LITERAL
%token  BOOLEAN_LITERAL
%token  TYPENAME
%token  TYPENAME
%type  Name SimpleName QualifiedName ForcedName
%type  Name SimpleName QualifiedName ForcedName
/* A NAME_OR_INT is a symbol which is not known in the symbol table,
/* A NAME_OR_INT is a symbol which is not known in the symbol table,
   but which would parse as a valid number in the current input radix.
   but which would parse as a valid number in the current input radix.
   E.g. "c" when input_radix==16.  Depending on the parse, it will be
   E.g. "c" when input_radix==16.  Depending on the parse, it will be
   turned into a name or into a number.  */
   turned into a name or into a number.  */
%token  NAME_OR_INT
%token  NAME_OR_INT
%token ERROR
%token ERROR
/* Special type cases, put in to allow the parser to distinguish different
/* Special type cases, put in to allow the parser to distinguish different
   legal basetypes.  */
   legal basetypes.  */
%token LONG SHORT BYTE INT CHAR BOOLEAN DOUBLE FLOAT
%token LONG SHORT BYTE INT CHAR BOOLEAN DOUBLE FLOAT
%token VARIABLE
%token VARIABLE
%token  ASSIGN_MODIFY
%token  ASSIGN_MODIFY
%token THIS SUPER NEW
%token THIS SUPER NEW
%left ','
%left ','
%right '=' ASSIGN_MODIFY
%right '=' ASSIGN_MODIFY
%right '?'
%right '?'
%left OROR
%left OROR
%left ANDAND
%left ANDAND
%left '|'
%left '|'
%left '^'
%left '^'
%left '&'
%left '&'
%left EQUAL NOTEQUAL
%left EQUAL NOTEQUAL
%left '<' '>' LEQ GEQ
%left '<' '>' LEQ GEQ
%left LSH RSH
%left LSH RSH
%left '+' '-'
%left '+' '-'
%left '*' '/' '%'
%left '*' '/' '%'
%right INCREMENT DECREMENT
%right INCREMENT DECREMENT
%right '.' '[' '('
%right '.' '[' '('


%%
%%
start   :       exp1
start   :       exp1
        |       type_exp
        |       type_exp
        ;
        ;
type_exp:       PrimitiveOrArrayType
type_exp:       PrimitiveOrArrayType
                {
                {
                  write_exp_elt_opcode(OP_TYPE);
                  write_exp_elt_opcode(OP_TYPE);
                  write_exp_elt_type($1);
                  write_exp_elt_type($1);
                  write_exp_elt_opcode(OP_TYPE);
                  write_exp_elt_opcode(OP_TYPE);
                }
                }
        ;
        ;
PrimitiveOrArrayType:
PrimitiveOrArrayType:
                PrimitiveType
                PrimitiveType
        |       ArrayType
        |       ArrayType
        ;
        ;
StringLiteral:
StringLiteral:
        STRING_LITERAL
        STRING_LITERAL
                {
                {
                  write_exp_elt_opcode (OP_STRING);
                  write_exp_elt_opcode (OP_STRING);
                  write_exp_string ($1);
                  write_exp_string ($1);
                  write_exp_elt_opcode (OP_STRING);
                  write_exp_elt_opcode (OP_STRING);
                }
                }
;
;
Literal:
Literal:
        INTEGER_LITERAL
        INTEGER_LITERAL
                { write_exp_elt_opcode (OP_LONG);
                { write_exp_elt_opcode (OP_LONG);
                  write_exp_elt_type ($1.type);
                  write_exp_elt_type ($1.type);
                  write_exp_elt_longcst ((LONGEST)($1.val));
                  write_exp_elt_longcst ((LONGEST)($1.val));
                  write_exp_elt_opcode (OP_LONG); }
                  write_exp_elt_opcode (OP_LONG); }
|       NAME_OR_INT
|       NAME_OR_INT
                { YYSTYPE val;
                { YYSTYPE val;
                  parse_number ($1.ptr, $1.length, 0, &val);
                  parse_number ($1.ptr, $1.length, 0, &val);
                  write_exp_elt_opcode (OP_LONG);
                  write_exp_elt_opcode (OP_LONG);
                  write_exp_elt_type (val.typed_val_int.type);
                  write_exp_elt_type (val.typed_val_int.type);
                  write_exp_elt_longcst ((LONGEST)val.typed_val_int.val);
                  write_exp_elt_longcst ((LONGEST)val.typed_val_int.val);
                  write_exp_elt_opcode (OP_LONG);
                  write_exp_elt_opcode (OP_LONG);
                }
                }
|       FLOATING_POINT_LITERAL
|       FLOATING_POINT_LITERAL
                { write_exp_elt_opcode (OP_DOUBLE);
                { write_exp_elt_opcode (OP_DOUBLE);
                  write_exp_elt_type ($1.type);
                  write_exp_elt_type ($1.type);
                  write_exp_elt_dblcst ($1.dval);
                  write_exp_elt_dblcst ($1.dval);
                  write_exp_elt_opcode (OP_DOUBLE); }
                  write_exp_elt_opcode (OP_DOUBLE); }
|       BOOLEAN_LITERAL
|       BOOLEAN_LITERAL
                { write_exp_elt_opcode (OP_LONG);
                { write_exp_elt_opcode (OP_LONG);
                  write_exp_elt_type (java_boolean_type);
                  write_exp_elt_type (java_boolean_type);
                  write_exp_elt_longcst ((LONGEST)$1);
                  write_exp_elt_longcst ((LONGEST)$1);
                  write_exp_elt_opcode (OP_LONG); }
                  write_exp_elt_opcode (OP_LONG); }
|       StringLiteral
|       StringLiteral
        ;
        ;
/* UNUSED:
/* UNUSED:
Type:
Type:
        PrimitiveType
        PrimitiveType
|       ReferenceType
|       ReferenceType
;
;
*/
*/
PrimitiveType:
PrimitiveType:
        NumericType
        NumericType
|       BOOLEAN
|       BOOLEAN
                { $$ = java_boolean_type; }
                { $$ = java_boolean_type; }
;
;
NumericType:
NumericType:
        IntegralType
        IntegralType
|       FloatingPointType
|       FloatingPointType
;
;
IntegralType:
IntegralType:
        BYTE
        BYTE
                { $$ = java_byte_type; }
                { $$ = java_byte_type; }
|       SHORT
|       SHORT
                { $$ = java_short_type; }
                { $$ = java_short_type; }
|       INT
|       INT
                { $$ = java_int_type; }
                { $$ = java_int_type; }
|       LONG
|       LONG
                { $$ = java_long_type; }
                { $$ = java_long_type; }
|       CHAR
|       CHAR
                { $$ = java_char_type; }
                { $$ = java_char_type; }
;
;
FloatingPointType:
FloatingPointType:
        FLOAT
        FLOAT
                { $$ = java_float_type; }
                { $$ = java_float_type; }
|       DOUBLE
|       DOUBLE
                { $$ = java_double_type; }
                { $$ = java_double_type; }
;
;
/* UNUSED:
/* UNUSED:
ReferenceType:
ReferenceType:
        ClassOrInterfaceType
        ClassOrInterfaceType
|       ArrayType
|       ArrayType
;
;
*/
*/
ClassOrInterfaceType:
ClassOrInterfaceType:
        Name
        Name
                { $$ = java_type_from_name ($1); }
                { $$ = java_type_from_name ($1); }
;
;
ClassType:
ClassType:
        ClassOrInterfaceType
        ClassOrInterfaceType
;
;
ArrayType:
ArrayType:
        PrimitiveType Dims
        PrimitiveType Dims
                { $$ = java_array_type ($1, $2); }
                { $$ = java_array_type ($1, $2); }
|       Name Dims
|       Name Dims
                { $$ = java_array_type (java_type_from_name ($1), $2); }
                { $$ = java_array_type (java_type_from_name ($1), $2); }
;
;
Name:
Name:
        IDENTIFIER
        IDENTIFIER
|       QualifiedName
|       QualifiedName
;
;
ForcedName:
ForcedName:
        SimpleName
        SimpleName
|       QualifiedName
|       QualifiedName
;
;
SimpleName:
SimpleName:
        IDENTIFIER
        IDENTIFIER
|       NAME_OR_INT
|       NAME_OR_INT
;
;
QualifiedName:
QualifiedName:
        Name '.' SimpleName
        Name '.' SimpleName
                { $$.length = $1.length + $3.length + 1;
                { $$.length = $1.length + $3.length + 1;
                  if ($1.ptr + $1.length + 1 == $3.ptr
                  if ($1.ptr + $1.length + 1 == $3.ptr
                      && $1.ptr[$1.length] == '.')
                      && $1.ptr[$1.length] == '.')
                    $$.ptr = $1.ptr;  /* Optimization. */
                    $$.ptr = $1.ptr;  /* Optimization. */
                  else
                  else
                    {
                    {
                      $$.ptr = (char *) malloc ($$.length + 1);
                      $$.ptr = (char *) malloc ($$.length + 1);
                      make_cleanup (free, $$.ptr);
                      make_cleanup (free, $$.ptr);
                      sprintf ($$.ptr, "%.*s.%.*s",
                      sprintf ($$.ptr, "%.*s.%.*s",
                               $1.length, $1.ptr, $3.length, $3.ptr);
                               $1.length, $1.ptr, $3.length, $3.ptr);
                } }
                } }
;
;
/*
/*
type_exp:       type
type_exp:       type
                        { write_exp_elt_opcode(OP_TYPE);
                        { write_exp_elt_opcode(OP_TYPE);
                          write_exp_elt_type($1);
                          write_exp_elt_type($1);
                          write_exp_elt_opcode(OP_TYPE);}
                          write_exp_elt_opcode(OP_TYPE);}
        ;
        ;
        */
        */
/* Expressions, including the comma operator.  */
/* Expressions, including the comma operator.  */
exp1    :       Expression
exp1    :       Expression
        |       exp1 ',' Expression
        |       exp1 ',' Expression
                        { write_exp_elt_opcode (BINOP_COMMA); }
                        { write_exp_elt_opcode (BINOP_COMMA); }
        ;
        ;
Primary:
Primary:
        PrimaryNoNewArray
        PrimaryNoNewArray
|       ArrayCreationExpression
|       ArrayCreationExpression
;
;
PrimaryNoNewArray:
PrimaryNoNewArray:
        Literal
        Literal
|       THIS
|       THIS
                { write_exp_elt_opcode (OP_THIS);
                { write_exp_elt_opcode (OP_THIS);
                  write_exp_elt_opcode (OP_THIS); }
                  write_exp_elt_opcode (OP_THIS); }
|       '(' Expression ')'
|       '(' Expression ')'
|       ClassInstanceCreationExpression
|       ClassInstanceCreationExpression
|       FieldAccess
|       FieldAccess
|       MethodInvocation
|       MethodInvocation
|       ArrayAccess
|       ArrayAccess
|       lcurly ArgumentList rcurly
|       lcurly ArgumentList rcurly
                { write_exp_elt_opcode (OP_ARRAY);
                { write_exp_elt_opcode (OP_ARRAY);
                  write_exp_elt_longcst ((LONGEST) 0);
                  write_exp_elt_longcst ((LONGEST) 0);
                  write_exp_elt_longcst ((LONGEST) $3);
                  write_exp_elt_longcst ((LONGEST) $3);
                  write_exp_elt_opcode (OP_ARRAY); }
                  write_exp_elt_opcode (OP_ARRAY); }
;
;
lcurly:
lcurly:
        '{'
        '{'
                { start_arglist (); }
                { start_arglist (); }
;
;
rcurly:
rcurly:
        '}'
        '}'
                { $$ = end_arglist () - 1; }
                { $$ = end_arglist () - 1; }
;
;
ClassInstanceCreationExpression:
ClassInstanceCreationExpression:
        NEW ClassType '(' ArgumentList_opt ')'
        NEW ClassType '(' ArgumentList_opt ')'
                { error ("FIXME - ClassInstanceCreationExpression"); }
                { error ("FIXME - ClassInstanceCreationExpression"); }
;
;
ArgumentList:
ArgumentList:
        Expression
        Expression
                { arglist_len = 1; }
                { arglist_len = 1; }
|       ArgumentList ',' Expression
|       ArgumentList ',' Expression
                { arglist_len++; }
                { arglist_len++; }
;
;
ArgumentList_opt:
ArgumentList_opt:
        /* EMPTY */
        /* EMPTY */
                { arglist_len = 0; }
                { arglist_len = 0; }
| ArgumentList
| ArgumentList
;
;
ArrayCreationExpression:
ArrayCreationExpression:
        NEW PrimitiveType DimExprs Dims_opt
        NEW PrimitiveType DimExprs Dims_opt
                { error ("FIXME - ArrayCreatiionExpression"); }
                { error ("FIXME - ArrayCreatiionExpression"); }
|       NEW ClassOrInterfaceType DimExprs Dims_opt
|       NEW ClassOrInterfaceType DimExprs Dims_opt
                { error ("FIXME - ArrayCreatiionExpression"); }
                { error ("FIXME - ArrayCreatiionExpression"); }
;
;
DimExprs:
DimExprs:
        DimExpr
        DimExpr
|       DimExprs DimExpr
|       DimExprs DimExpr
;
;
DimExpr:
DimExpr:
        '[' Expression ']'
        '[' Expression ']'
;
;
Dims:
Dims:
        '[' ']'
        '[' ']'
                { $$ = 1; }
                { $$ = 1; }
|       Dims '[' ']'
|       Dims '[' ']'
        { $$ = $1 + 1; }
        { $$ = $1 + 1; }
;
;
Dims_opt:
Dims_opt:
        Dims
        Dims
|       /* EMPTY */
|       /* EMPTY */
                { $$ = 0; }
                { $$ = 0; }
;
;
FieldAccess:
FieldAccess:
        Primary '.' SimpleName
        Primary '.' SimpleName
                { push_fieldnames ($3); }
                { push_fieldnames ($3); }
|       VARIABLE '.' SimpleName
|       VARIABLE '.' SimpleName
                { push_fieldnames ($3); }
                { push_fieldnames ($3); }
/*|     SUPER '.' SimpleName { FIXME } */
/*|     SUPER '.' SimpleName { FIXME } */
;
;
MethodInvocation:
MethodInvocation:
        Name '(' ArgumentList_opt ')'
        Name '(' ArgumentList_opt ')'
                { error ("method invocation not implemented"); }
                { error ("method invocation not implemented"); }
|       Primary '.' SimpleName '(' ArgumentList_opt ')'
|       Primary '.' SimpleName '(' ArgumentList_opt ')'
                { error ("method invocation not implemented"); }
                { error ("method invocation not implemented"); }
|       SUPER '.' SimpleName '(' ArgumentList_opt ')'
|       SUPER '.' SimpleName '(' ArgumentList_opt ')'
                { error ("method invocation not implemented"); }
                { error ("method invocation not implemented"); }
;
;
ArrayAccess:
ArrayAccess:
        Name '[' Expression ']'
        Name '[' Expression ']'
                {
                {
                  /* Emit code for the Name now, then exchange it in the
                  /* Emit code for the Name now, then exchange it in the
                     expout array with the Expression's code.  We could
                     expout array with the Expression's code.  We could
                     introduce a OP_SWAP code or a reversed version of
                     introduce a OP_SWAP code or a reversed version of
                     BINOP_SUBSCRIPT, but that makes the rest of GDB pay
                     BINOP_SUBSCRIPT, but that makes the rest of GDB pay
                     for our parsing kludges.  */
                     for our parsing kludges.  */
                  struct expression *name_expr;
                  struct expression *name_expr;
                  push_expression_name ($1);
                  push_expression_name ($1);
                  name_expr = copy_exp (expout, expout_ptr);
                  name_expr = copy_exp (expout, expout_ptr);
                  expout_ptr -= name_expr->nelts;
                  expout_ptr -= name_expr->nelts;
                  insert_exp (expout_ptr-length_of_subexp (expout, expout_ptr),
                  insert_exp (expout_ptr-length_of_subexp (expout, expout_ptr),
                              name_expr);
                              name_expr);
                  free (name_expr);
                  free (name_expr);
                  write_exp_elt_opcode (BINOP_SUBSCRIPT);
                  write_exp_elt_opcode (BINOP_SUBSCRIPT);
                }
                }
|       VARIABLE '[' Expression ']'
|       VARIABLE '[' Expression ']'
                { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
                { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
|       PrimaryNoNewArray '[' Expression ']'
|       PrimaryNoNewArray '[' Expression ']'
                { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
                { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
;
;
PostfixExpression:
PostfixExpression:
        Primary
        Primary
|       Name
|       Name
                { push_expression_name ($1); }
                { push_expression_name ($1); }
|       VARIABLE
|       VARIABLE
                /* Already written by write_dollar_variable. */
                /* Already written by write_dollar_variable. */
|       PostIncrementExpression
|       PostIncrementExpression
|       PostDecrementExpression
|       PostDecrementExpression
;
;
PostIncrementExpression:
PostIncrementExpression:
        PostfixExpression INCREMENT
        PostfixExpression INCREMENT
                { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
                { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
;
;
PostDecrementExpression:
PostDecrementExpression:
        PostfixExpression DECREMENT
        PostfixExpression DECREMENT
                { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
                { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
;
;
UnaryExpression:
UnaryExpression:
        PreIncrementExpression
        PreIncrementExpression
|       PreDecrementExpression
|       PreDecrementExpression
|       '+' UnaryExpression
|       '+' UnaryExpression
|       '-' UnaryExpression
|       '-' UnaryExpression
                { write_exp_elt_opcode (UNOP_NEG); }
                { write_exp_elt_opcode (UNOP_NEG); }
|       '*' UnaryExpression
|       '*' UnaryExpression
                { write_exp_elt_opcode (UNOP_IND); } /*FIXME not in Java  */
                { write_exp_elt_opcode (UNOP_IND); } /*FIXME not in Java  */
|       UnaryExpressionNotPlusMinus
|       UnaryExpressionNotPlusMinus
;
;
PreIncrementExpression:
PreIncrementExpression:
        INCREMENT UnaryExpression
        INCREMENT UnaryExpression
                { write_exp_elt_opcode (UNOP_PREINCREMENT); }
                { write_exp_elt_opcode (UNOP_PREINCREMENT); }
;
;
PreDecrementExpression:
PreDecrementExpression:
        DECREMENT UnaryExpression
        DECREMENT UnaryExpression
                { write_exp_elt_opcode (UNOP_PREDECREMENT); }
                { write_exp_elt_opcode (UNOP_PREDECREMENT); }
;
;
UnaryExpressionNotPlusMinus:
UnaryExpressionNotPlusMinus:
        PostfixExpression
        PostfixExpression
|       '~' UnaryExpression
|       '~' UnaryExpression
                { write_exp_elt_opcode (UNOP_COMPLEMENT); }
                { write_exp_elt_opcode (UNOP_COMPLEMENT); }
|       '!' UnaryExpression
|       '!' UnaryExpression
                { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
                { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
|       CastExpression
|       CastExpression
        ;
        ;
CastExpression:
CastExpression:
        '(' PrimitiveType Dims_opt ')' UnaryExpression
        '(' PrimitiveType Dims_opt ')' UnaryExpression
                { write_exp_elt_opcode (UNOP_CAST);
                { write_exp_elt_opcode (UNOP_CAST);
                  write_exp_elt_type (java_array_type ($2, $3));
                  write_exp_elt_type (java_array_type ($2, $3));
                  write_exp_elt_opcode (UNOP_CAST); }
                  write_exp_elt_opcode (UNOP_CAST); }
|       '(' Expression ')' UnaryExpressionNotPlusMinus
|       '(' Expression ')' UnaryExpressionNotPlusMinus
                {
                {
                  int exp_size = expout_ptr;
                  int exp_size = expout_ptr;
                  int last_exp_size = length_of_subexp(expout, expout_ptr);
                  int last_exp_size = length_of_subexp(expout, expout_ptr);
                  struct type *type;
                  struct type *type;
                  int i;
                  int i;
                  int base = expout_ptr - last_exp_size - 3;
                  int base = expout_ptr - last_exp_size - 3;
                  if (base < 0 || expout->elts[base+2].opcode != OP_TYPE)
                  if (base < 0 || expout->elts[base+2].opcode != OP_TYPE)
                    error ("invalid cast expression");
                    error ("invalid cast expression");
                  type = expout->elts[base+1].type;
                  type = expout->elts[base+1].type;
                  /* Remove the 'Expression' and slide the
                  /* Remove the 'Expression' and slide the
                     UnaryExpressionNotPlusMinus down to replace it. */
                     UnaryExpressionNotPlusMinus down to replace it. */
                  for (i = 0;  i < last_exp_size;  i++)
                  for (i = 0;  i < last_exp_size;  i++)
                    expout->elts[base + i] = expout->elts[base + i + 3];
                    expout->elts[base + i] = expout->elts[base + i + 3];
                  expout_ptr -= 3;
                  expout_ptr -= 3;
                  if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
                  if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
                    type = lookup_pointer_type (type);
                    type = lookup_pointer_type (type);
                  write_exp_elt_opcode (UNOP_CAST);
                  write_exp_elt_opcode (UNOP_CAST);
                  write_exp_elt_type (type);
                  write_exp_elt_type (type);
                  write_exp_elt_opcode (UNOP_CAST);
                  write_exp_elt_opcode (UNOP_CAST);
                }
                }
|       '(' Name Dims ')' UnaryExpressionNotPlusMinus
|       '(' Name Dims ')' UnaryExpressionNotPlusMinus
                { write_exp_elt_opcode (UNOP_CAST);
                { write_exp_elt_opcode (UNOP_CAST);
                  write_exp_elt_type (java_array_type (java_type_from_name ($2), $3));
                  write_exp_elt_type (java_array_type (java_type_from_name ($2), $3));
                  write_exp_elt_opcode (UNOP_CAST); }
                  write_exp_elt_opcode (UNOP_CAST); }
;
;
MultiplicativeExpression:
MultiplicativeExpression:
        UnaryExpression
        UnaryExpression
|       MultiplicativeExpression '*' UnaryExpression
|       MultiplicativeExpression '*' UnaryExpression
                { write_exp_elt_opcode (BINOP_MUL); }
                { write_exp_elt_opcode (BINOP_MUL); }
|       MultiplicativeExpression '/' UnaryExpression
|       MultiplicativeExpression '/' UnaryExpression
                { write_exp_elt_opcode (BINOP_DIV); }
                { write_exp_elt_opcode (BINOP_DIV); }
|       MultiplicativeExpression '%' UnaryExpression
|       MultiplicativeExpression '%' UnaryExpression
                { write_exp_elt_opcode (BINOP_REM); }
                { write_exp_elt_opcode (BINOP_REM); }
;
;
AdditiveExpression:
AdditiveExpression:
        MultiplicativeExpression
        MultiplicativeExpression
|       AdditiveExpression '+' MultiplicativeExpression
|       AdditiveExpression '+' MultiplicativeExpression
                { write_exp_elt_opcode (BINOP_ADD); }
                { write_exp_elt_opcode (BINOP_ADD); }
|       AdditiveExpression '-' MultiplicativeExpression
|       AdditiveExpression '-' MultiplicativeExpression
                { write_exp_elt_opcode (BINOP_SUB); }
                { write_exp_elt_opcode (BINOP_SUB); }
;
;
ShiftExpression:
ShiftExpression:
        AdditiveExpression
        AdditiveExpression
|       ShiftExpression LSH AdditiveExpression
|       ShiftExpression LSH AdditiveExpression
                { write_exp_elt_opcode (BINOP_LSH); }
                { write_exp_elt_opcode (BINOP_LSH); }
|       ShiftExpression RSH AdditiveExpression
|       ShiftExpression RSH AdditiveExpression
                { write_exp_elt_opcode (BINOP_RSH); }
                { write_exp_elt_opcode (BINOP_RSH); }
/* |    ShiftExpression >>> AdditiveExpression { FIXME } */
/* |    ShiftExpression >>> AdditiveExpression { FIXME } */
;
;
RelationalExpression:
RelationalExpression:
        ShiftExpression
        ShiftExpression
|       RelationalExpression '<' ShiftExpression
|       RelationalExpression '<' ShiftExpression
                { write_exp_elt_opcode (BINOP_LESS); }
                { write_exp_elt_opcode (BINOP_LESS); }
|       RelationalExpression '>' ShiftExpression
|       RelationalExpression '>' ShiftExpression
                { write_exp_elt_opcode (BINOP_GTR); }
                { write_exp_elt_opcode (BINOP_GTR); }
|       RelationalExpression LEQ ShiftExpression
|       RelationalExpression LEQ ShiftExpression
                { write_exp_elt_opcode (BINOP_LEQ); }
                { write_exp_elt_opcode (BINOP_LEQ); }
|       RelationalExpression GEQ ShiftExpression
|       RelationalExpression GEQ ShiftExpression
                { write_exp_elt_opcode (BINOP_GEQ); }
                { write_exp_elt_opcode (BINOP_GEQ); }
/* | RelationalExpresion INSTANCEOF ReferenceType { FIXME } */
/* | RelationalExpresion INSTANCEOF ReferenceType { FIXME } */
;
;
EqualityExpression:
EqualityExpression:
        RelationalExpression
        RelationalExpression
|       EqualityExpression EQUAL RelationalExpression
|       EqualityExpression EQUAL RelationalExpression
                { write_exp_elt_opcode (BINOP_EQUAL); }
                { write_exp_elt_opcode (BINOP_EQUAL); }
|       EqualityExpression NOTEQUAL RelationalExpression
|       EqualityExpression NOTEQUAL RelationalExpression
                { write_exp_elt_opcode (BINOP_NOTEQUAL); }
                { write_exp_elt_opcode (BINOP_NOTEQUAL); }
;
;
AndExpression:
AndExpression:
        EqualityExpression
        EqualityExpression
|       AndExpression '&' EqualityExpression
|       AndExpression '&' EqualityExpression
                { write_exp_elt_opcode (BINOP_BITWISE_AND); }
                { write_exp_elt_opcode (BINOP_BITWISE_AND); }
;
;
ExclusiveOrExpression:
ExclusiveOrExpression:
        AndExpression
        AndExpression
|       ExclusiveOrExpression '^' AndExpression
|       ExclusiveOrExpression '^' AndExpression
                { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
                { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
;
;
InclusiveOrExpression:
InclusiveOrExpression:
        ExclusiveOrExpression
        ExclusiveOrExpression
|       InclusiveOrExpression '|' ExclusiveOrExpression
|       InclusiveOrExpression '|' ExclusiveOrExpression
                { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
                { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
;
;
ConditionalAndExpression:
ConditionalAndExpression:
        InclusiveOrExpression
        InclusiveOrExpression
|       ConditionalAndExpression ANDAND InclusiveOrExpression
|       ConditionalAndExpression ANDAND InclusiveOrExpression
                { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
                { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
;
;
ConditionalOrExpression:
ConditionalOrExpression:
        ConditionalAndExpression
        ConditionalAndExpression
|       ConditionalOrExpression OROR ConditionalAndExpression
|       ConditionalOrExpression OROR ConditionalAndExpression
                { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
                { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
;
;
ConditionalExpression:
ConditionalExpression:
        ConditionalOrExpression
        ConditionalOrExpression
|       ConditionalOrExpression '?' Expression ':' ConditionalExpression
|       ConditionalOrExpression '?' Expression ':' ConditionalExpression
                { write_exp_elt_opcode (TERNOP_COND); }
                { write_exp_elt_opcode (TERNOP_COND); }
;
;
AssignmentExpression:
AssignmentExpression:
        ConditionalExpression
        ConditionalExpression
|       Assignment
|       Assignment
;
;
Assignment:
Assignment:
        LeftHandSide '=' ConditionalExpression
        LeftHandSide '=' ConditionalExpression
                { write_exp_elt_opcode (BINOP_ASSIGN); }
                { write_exp_elt_opcode (BINOP_ASSIGN); }
|       LeftHandSide ASSIGN_MODIFY ConditionalExpression
|       LeftHandSide ASSIGN_MODIFY ConditionalExpression
                { write_exp_elt_opcode (BINOP_ASSIGN_MODIFY);
                { write_exp_elt_opcode (BINOP_ASSIGN_MODIFY);
                  write_exp_elt_opcode ($2);
                  write_exp_elt_opcode ($2);
                  write_exp_elt_opcode (BINOP_ASSIGN_MODIFY); }
                  write_exp_elt_opcode (BINOP_ASSIGN_MODIFY); }
;
;
LeftHandSide:
LeftHandSide:
        ForcedName
        ForcedName
                { push_expression_name ($1); }
                { push_expression_name ($1); }
|       VARIABLE
|       VARIABLE
                /* Already written by write_dollar_variable. */
                /* Already written by write_dollar_variable. */
|       FieldAccess
|       FieldAccess
|       ArrayAccess
|       ArrayAccess
;
;
Expression:
Expression:
        AssignmentExpression
        AssignmentExpression
;
;
%%
%%
/* Take care of parsing a number (anything that starts with a digit).
/* Take care of parsing a number (anything that starts with a digit).
   Set yylval and return the token type; update lexptr.
   Set yylval and return the token type; update lexptr.
   LEN is the number of characters in it.  */
   LEN is the number of characters in it.  */
/*** Needs some error checking for the float case ***/
/*** Needs some error checking for the float case ***/
static int
static int
parse_number (p, len, parsed_float, putithere)
parse_number (p, len, parsed_float, putithere)
     register char *p;
     register char *p;
     register int len;
     register int len;
     int parsed_float;
     int parsed_float;
     YYSTYPE *putithere;
     YYSTYPE *putithere;
{
{
  register ULONGEST n = 0;
  register ULONGEST n = 0;
  ULONGEST limit, limit_div_base;
  ULONGEST limit, limit_div_base;
  register int c;
  register int c;
  register int base = input_radix;
  register int base = input_radix;
  struct type *type;
  struct type *type;
  if (parsed_float)
  if (parsed_float)
    {
    {
      /* It's a float since it contains a point or an exponent.  */
      /* It's a float since it contains a point or an exponent.  */
      char c;
      char c;
      int num = 0;      /* number of tokens scanned by scanf */
      int num = 0;      /* number of tokens scanned by scanf */
      char saved_char = p[len];
      char saved_char = p[len];
      p[len] = 0;       /* null-terminate the token */
      p[len] = 0;       /* null-terminate the token */
      if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
      if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
        num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
        num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
      else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
      else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
        num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval, &c);
        num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval, &c);
      else
      else
        {
        {
#ifdef SCANF_HAS_LONG_DOUBLE
#ifdef SCANF_HAS_LONG_DOUBLE
          num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
          num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
#else
#else
          /* Scan it into a double, then assign it to the long double.
          /* Scan it into a double, then assign it to the long double.
             This at least wins with values representable in the range
             This at least wins with values representable in the range
             of doubles. */
             of doubles. */
          double temp;
          double temp;
          num = sscanf (p, "%lg%c", &temp, &c);
          num = sscanf (p, "%lg%c", &temp, &c);
          putithere->typed_val_float.dval = temp;
          putithere->typed_val_float.dval = temp;
#endif
#endif
        }
        }
      p[len] = saved_char;      /* restore the input stream */
      p[len] = saved_char;      /* restore the input stream */
      if (num != 1)             /* check scanf found ONLY a float ... */
      if (num != 1)             /* check scanf found ONLY a float ... */
        return ERROR;
        return ERROR;
      /* See if it has `f' or `d' suffix (float or double).  */
      /* See if it has `f' or `d' suffix (float or double).  */
      c = tolower (p[len - 1]);
      c = tolower (p[len - 1]);
      if (c == 'f' || c == 'F')
      if (c == 'f' || c == 'F')
        putithere->typed_val_float.type = builtin_type_float;
        putithere->typed_val_float.type = builtin_type_float;
      else if (isdigit (c) || c == '.' || c == 'd' || c == 'D')
      else if (isdigit (c) || c == '.' || c == 'd' || c == 'D')
        putithere->typed_val_float.type = builtin_type_double;
        putithere->typed_val_float.type = builtin_type_double;
      else
      else
        return ERROR;
        return ERROR;
      return FLOATING_POINT_LITERAL;
      return FLOATING_POINT_LITERAL;
    }
    }
  /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
  /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
  if (p[0] == '0')
  if (p[0] == '0')
    switch (p[1])
    switch (p[1])
      {
      {
      case 'x':
      case 'x':
      case 'X':
      case 'X':
        if (len >= 3)
        if (len >= 3)
          {
          {
            p += 2;
            p += 2;
            base = 16;
            base = 16;
            len -= 2;
            len -= 2;
          }
          }
        break;
        break;
      case 't':
      case 't':
      case 'T':
      case 'T':
      case 'd':
      case 'd':
      case 'D':
      case 'D':
        if (len >= 3)
        if (len >= 3)
          {
          {
            p += 2;
            p += 2;
            base = 10;
            base = 10;
            len -= 2;
            len -= 2;
          }
          }
        break;
        break;
      default:
      default:
        base = 8;
        base = 8;
        break;
        break;
      }
      }
  c = p[len-1];
  c = p[len-1];
  limit = (ULONGEST)0xffffffff;
  limit = (ULONGEST)0xffffffff;
  if (c == 'l' || c == 'L')
  if (c == 'l' || c == 'L')
    {
    {
      type = java_long_type;
      type = java_long_type;
      len--;
      len--;
      /* A paranoid calculation of (1<<64)-1. */
      /* A paranoid calculation of (1<<64)-1. */
      limit = ((limit << 16) << 16) | limit;
      limit = ((limit << 16) << 16) | limit;
    }
    }
  else
  else
    {
    {
      type = java_int_type;
      type = java_int_type;
    }
    }
  limit_div_base = limit / (ULONGEST) base;
  limit_div_base = limit / (ULONGEST) base;
  while (--len >= 0)
  while (--len >= 0)
    {
    {
      c = *p++;
      c = *p++;
      if (c >= '0' && c <= '9')
      if (c >= '0' && c <= '9')
        c -= '0';
        c -= '0';
      else if (c >= 'A' && c <= 'Z')
      else if (c >= 'A' && c <= 'Z')
        c -= 'A' - 10;
        c -= 'A' - 10;
      else if (c >= 'a' && c <= 'z')
      else if (c >= 'a' && c <= 'z')
        c -= 'a' - 10;
        c -= 'a' - 10;
      else
      else
        return ERROR;   /* Char not a digit */
        return ERROR;   /* Char not a digit */
      if (c >= base)
      if (c >= base)
        return ERROR;
        return ERROR;
      if (n > limit_div_base
      if (n > limit_div_base
          || (n *= base) > limit - c)
          || (n *= base) > limit - c)
        error ("Numeric constant too large.");
        error ("Numeric constant too large.");
      n += c;
      n += c;
        }
        }
   putithere->typed_val_int.val = n;
   putithere->typed_val_int.val = n;
   putithere->typed_val_int.type = type;
   putithere->typed_val_int.type = type;
   return INTEGER_LITERAL;
   return INTEGER_LITERAL;
}
}
struct token
struct token
{
{
  char *operator;
  char *operator;
  int token;
  int token;
  enum exp_opcode opcode;
  enum exp_opcode opcode;
};
};
static const struct token tokentab3[] =
static const struct token tokentab3[] =
  {
  {
    {">>=", ASSIGN_MODIFY, BINOP_RSH},
    {">>=", ASSIGN_MODIFY, BINOP_RSH},
    {"<<=", ASSIGN_MODIFY, BINOP_LSH}
    {"<<=", ASSIGN_MODIFY, BINOP_LSH}
  };
  };
static const struct token tokentab2[] =
static const struct token tokentab2[] =
  {
  {
    {"+=", ASSIGN_MODIFY, BINOP_ADD},
    {"+=", ASSIGN_MODIFY, BINOP_ADD},
    {"-=", ASSIGN_MODIFY, BINOP_SUB},
    {"-=", ASSIGN_MODIFY, BINOP_SUB},
    {"*=", ASSIGN_MODIFY, BINOP_MUL},
    {"*=", ASSIGN_MODIFY, BINOP_MUL},
    {"/=", ASSIGN_MODIFY, BINOP_DIV},
    {"/=", ASSIGN_MODIFY, BINOP_DIV},
    {"%=", ASSIGN_MODIFY, BINOP_REM},
    {"%=", ASSIGN_MODIFY, BINOP_REM},
    {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
    {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
    {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
    {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
    {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
    {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
    {"++", INCREMENT, BINOP_END},
    {"++", INCREMENT, BINOP_END},
    {"--", DECREMENT, BINOP_END},
    {"--", DECREMENT, BINOP_END},
    {"&&", ANDAND, BINOP_END},
    {"&&", ANDAND, BINOP_END},
    {"||", OROR, BINOP_END},
    {"||", OROR, BINOP_END},
    {"<<", LSH, BINOP_END},
    {"<<", LSH, BINOP_END},
    {">>", RSH, BINOP_END},
    {">>", RSH, BINOP_END},
    {"==", EQUAL, BINOP_END},
    {"==", EQUAL, BINOP_END},
    {"!=", NOTEQUAL, BINOP_END},
    {"!=", NOTEQUAL, BINOP_END},
    {"<=", LEQ, BINOP_END},
    {"<=", LEQ, BINOP_END},
    {">=", GEQ, BINOP_END}
    {">=", GEQ, BINOP_END}
  };
  };
/* Read one token, getting characters through lexptr.  */
/* Read one token, getting characters through lexptr.  */
static int
static int
yylex ()
yylex ()
{
{
  int c;
  int c;
  int namelen;
  int namelen;
  unsigned int i;
  unsigned int i;
  char *tokstart;
  char *tokstart;
  char *tokptr;
  char *tokptr;
  int tempbufindex;
  int tempbufindex;
  static char *tempbuf;
  static char *tempbuf;
  static int tempbufsize;
  static int tempbufsize;
 retry:
 retry:
  tokstart = lexptr;
  tokstart = lexptr;
  /* See if it is a special token of length 3.  */
  /* See if it is a special token of length 3.  */
  for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
  for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
    if (STREQN (tokstart, tokentab3[i].operator, 3))
    if (STREQN (tokstart, tokentab3[i].operator, 3))
      {
      {
        lexptr += 3;
        lexptr += 3;
        yylval.opcode = tokentab3[i].opcode;
        yylval.opcode = tokentab3[i].opcode;
        return tokentab3[i].token;
        return tokentab3[i].token;
      }
      }
  /* See if it is a special token of length 2.  */
  /* See if it is a special token of length 2.  */
  for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
  for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
    if (STREQN (tokstart, tokentab2[i].operator, 2))
    if (STREQN (tokstart, tokentab2[i].operator, 2))
      {
      {
        lexptr += 2;
        lexptr += 2;
        yylval.opcode = tokentab2[i].opcode;
        yylval.opcode = tokentab2[i].opcode;
        return tokentab2[i].token;
        return tokentab2[i].token;
      }
      }
  switch (c = *tokstart)
  switch (c = *tokstart)
    {
    {
    case 0:
    case 0:
      return 0;
      return 0;
    case ' ':
    case ' ':
    case '\t':
    case '\t':
    case '\n':
    case '\n':
      lexptr++;
      lexptr++;
      goto retry;
      goto retry;
    case '\'':
    case '\'':
      /* We either have a character constant ('0' or '\177' for example)
      /* We either have a character constant ('0' or '\177' for example)
         or we have a quoted symbol reference ('foo(int,int)' in C++
         or we have a quoted symbol reference ('foo(int,int)' in C++
         for example). */
         for example). */
      lexptr++;
      lexptr++;
      c = *lexptr++;
      c = *lexptr++;
      if (c == '\\')
      if (c == '\\')
        c = parse_escape (&lexptr);
        c = parse_escape (&lexptr);
      else if (c == '\'')
      else if (c == '\'')
        error ("Empty character constant.");
        error ("Empty character constant.");
      yylval.typed_val_int.val = c;
      yylval.typed_val_int.val = c;
      yylval.typed_val_int.type = java_char_type;
      yylval.typed_val_int.type = java_char_type;
      c = *lexptr++;
      c = *lexptr++;
      if (c != '\'')
      if (c != '\'')
        {
        {
          namelen = skip_quoted (tokstart) - tokstart;
          namelen = skip_quoted (tokstart) - tokstart;
          if (namelen > 2)
          if (namelen > 2)
            {
            {
              lexptr = tokstart + namelen;
              lexptr = tokstart + namelen;
              if (lexptr[-1] != '\'')
              if (lexptr[-1] != '\'')
                error ("Unmatched single quote.");
                error ("Unmatched single quote.");
              namelen -= 2;
              namelen -= 2;
              tokstart++;
              tokstart++;
              goto tryname;
              goto tryname;
            }
            }
          error ("Invalid character constant.");
          error ("Invalid character constant.");
        }
        }
      return INTEGER_LITERAL;
      return INTEGER_LITERAL;
    case '(':
    case '(':
      paren_depth++;
      paren_depth++;
      lexptr++;
      lexptr++;
      return c;
      return c;
    case ')':
    case ')':
      if (paren_depth == 0)
      if (paren_depth == 0)
        return 0;
        return 0;
      paren_depth--;
      paren_depth--;
      lexptr++;
      lexptr++;
      return c;
      return c;
    case ',':
    case ',':
      if (comma_terminates && paren_depth == 0)
      if (comma_terminates && paren_depth == 0)
        return 0;
        return 0;
      lexptr++;
      lexptr++;
      return c;
      return c;
    case '.':
    case '.':
      /* Might be a floating point number.  */
      /* Might be a floating point number.  */
      if (lexptr[1] < '0' || lexptr[1] > '9')
      if (lexptr[1] < '0' || lexptr[1] > '9')
        goto symbol;            /* Nope, must be a symbol. */
        goto symbol;            /* Nope, must be a symbol. */
      /* FALL THRU into number case.  */
      /* FALL THRU into number case.  */
    case '0':
    case '0':
    case '1':
    case '1':
    case '2':
    case '2':
    case '3':
    case '3':
    case '4':
    case '4':
    case '5':
    case '5':
    case '6':
    case '6':
    case '7':
    case '7':
    case '8':
    case '8':
    case '9':
    case '9':
      {
      {
        /* It's a number.  */
        /* It's a number.  */
        int got_dot = 0, got_e = 0, toktype;
        int got_dot = 0, got_e = 0, toktype;
        register char *p = tokstart;
        register char *p = tokstart;
        int hex = input_radix > 10;
        int hex = input_radix > 10;
        if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
        if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
          {
          {
            p += 2;
            p += 2;
            hex = 1;
            hex = 1;
          }
          }
        else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
        else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
          {
          {
            p += 2;
            p += 2;
            hex = 0;
            hex = 0;
          }
          }
        for (;; ++p)
        for (;; ++p)
          {
          {
            /* This test includes !hex because 'e' is a valid hex digit
            /* This test includes !hex because 'e' is a valid hex digit
               and thus does not indicate a floating point number when
               and thus does not indicate a floating point number when
               the radix is hex.  */
               the radix is hex.  */
            if (!hex && !got_e && (*p == 'e' || *p == 'E'))
            if (!hex && !got_e && (*p == 'e' || *p == 'E'))
              got_dot = got_e = 1;
              got_dot = got_e = 1;
            /* This test does not include !hex, because a '.' always indicates
            /* This test does not include !hex, because a '.' always indicates
               a decimal floating point number regardless of the radix.  */
               a decimal floating point number regardless of the radix.  */
            else if (!got_dot && *p == '.')
            else if (!got_dot && *p == '.')
              got_dot = 1;
              got_dot = 1;
            else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
            else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
                     && (*p == '-' || *p == '+'))
                     && (*p == '-' || *p == '+'))
              /* This is the sign of the exponent, not the end of the
              /* This is the sign of the exponent, not the end of the
                 number.  */
                 number.  */
              continue;
              continue;
            /* We will take any letters or digits.  parse_number will
            /* We will take any letters or digits.  parse_number will
               complain if past the radix, or if L or U are not final.  */
               complain if past the radix, or if L or U are not final.  */
            else if ((*p < '0' || *p > '9')
            else if ((*p < '0' || *p > '9')
                     && ((*p < 'a' || *p > 'z')
                     && ((*p < 'a' || *p > 'z')
                                  && (*p < 'A' || *p > 'Z')))
                                  && (*p < 'A' || *p > 'Z')))
              break;
              break;
          }
          }
        toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
        toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
        if (toktype == ERROR)
        if (toktype == ERROR)
          {
          {
            char *err_copy = (char *) alloca (p - tokstart + 1);
            char *err_copy = (char *) alloca (p - tokstart + 1);
            memcpy (err_copy, tokstart, p - tokstart);
            memcpy (err_copy, tokstart, p - tokstart);
            err_copy[p - tokstart] = 0;
            err_copy[p - tokstart] = 0;
            error ("Invalid number \"%s\".", err_copy);
            error ("Invalid number \"%s\".", err_copy);
          }
          }
        lexptr = p;
        lexptr = p;
        return toktype;
        return toktype;
      }
      }
    case '+':
    case '+':
    case '-':
    case '-':
    case '*':
    case '*':
    case '/':
    case '/':
    case '%':
    case '%':
    case '|':
    case '|':
    case '&':
    case '&':
    case '^':
    case '^':
    case '~':
    case '~':
    case '!':
    case '!':
    case '<':
    case '<':
    case '>':
    case '>':
    case '[':
    case '[':
    case ']':
    case ']':
    case '?':
    case '?':
    case ':':
    case ':':
    case '=':
    case '=':
    case '{':
    case '{':
    case '}':
    case '}':
    symbol:
    symbol:
      lexptr++;
      lexptr++;
      return c;
      return c;
    case '"':
    case '"':
      /* Build the gdb internal form of the input string in tempbuf,
      /* Build the gdb internal form of the input string in tempbuf,
         translating any standard C escape forms seen.  Note that the
         translating any standard C escape forms seen.  Note that the
         buffer is null byte terminated *only* for the convenience of
         buffer is null byte terminated *only* for the convenience of
         debugging gdb itself and printing the buffer contents when
         debugging gdb itself and printing the buffer contents when
         the buffer contains no embedded nulls.  Gdb does not depend
         the buffer contains no embedded nulls.  Gdb does not depend
         upon the buffer being null byte terminated, it uses the length
         upon the buffer being null byte terminated, it uses the length
         string instead.  This allows gdb to handle C strings (as well
         string instead.  This allows gdb to handle C strings (as well
         as strings in other languages) with embedded null bytes */
         as strings in other languages) with embedded null bytes */
      tokptr = ++tokstart;
      tokptr = ++tokstart;
      tempbufindex = 0;
      tempbufindex = 0;
      do {
      do {
        /* Grow the static temp buffer if necessary, including allocating
        /* Grow the static temp buffer if necessary, including allocating
           the first one on demand. */
           the first one on demand. */
        if (tempbufindex + 1 >= tempbufsize)
        if (tempbufindex + 1 >= tempbufsize)
          {
          {
            tempbuf = (char *) realloc (tempbuf, tempbufsize += 64);
            tempbuf = (char *) realloc (tempbuf, tempbufsize += 64);
          }
          }
        switch (*tokptr)
        switch (*tokptr)
          {
          {
          case '\0':
          case '\0':
          case '"':
          case '"':
            /* Do nothing, loop will terminate. */
            /* Do nothing, loop will terminate. */
            break;
            break;
          case '\\':
          case '\\':
            tokptr++;
            tokptr++;
            c = parse_escape (&tokptr);
            c = parse_escape (&tokptr);
            if (c == -1)
            if (c == -1)
              {
              {
                continue;
                continue;
              }
              }
            tempbuf[tempbufindex++] = c;
            tempbuf[tempbufindex++] = c;
            break;
            break;
          default:
          default:
            tempbuf[tempbufindex++] = *tokptr++;
            tempbuf[tempbufindex++] = *tokptr++;
            break;
            break;
          }
          }
      } while ((*tokptr != '"') && (*tokptr != '\0'));
      } while ((*tokptr != '"') && (*tokptr != '\0'));
      if (*tokptr++ != '"')
      if (*tokptr++ != '"')
        {
        {
          error ("Unterminated string in expression.");
          error ("Unterminated string in expression.");
        }
        }
      tempbuf[tempbufindex] = '\0';     /* See note above */
      tempbuf[tempbufindex] = '\0';     /* See note above */
      yylval.sval.ptr = tempbuf;
      yylval.sval.ptr = tempbuf;
      yylval.sval.length = tempbufindex;
      yylval.sval.length = tempbufindex;
      lexptr = tokptr;
      lexptr = tokptr;
      return (STRING_LITERAL);
      return (STRING_LITERAL);
    }
    }
  if (!(c == '_' || c == '$'
  if (!(c == '_' || c == '$'
        || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
        || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
    /* We must have come across a bad character (e.g. ';').  */
    /* We must have come across a bad character (e.g. ';').  */
    error ("Invalid character '%c' in expression.", c);
    error ("Invalid character '%c' in expression.", c);
  /* It's a name.  See how long it is.  */
  /* It's a name.  See how long it is.  */
  namelen = 0;
  namelen = 0;
  for (c = tokstart[namelen];
  for (c = tokstart[namelen];
       (c == '_'
       (c == '_'
        || c == '$'
        || c == '$'
        || (c >= '0' && c <= '9')
        || (c >= '0' && c <= '9')
        || (c >= 'a' && c <= 'z')
        || (c >= 'a' && c <= 'z')
        || (c >= 'A' && c <= 'Z')
        || (c >= 'A' && c <= 'Z')
        || c == '<');
        || c == '<');
       )
       )
    {
    {
      if (c == '<')
      if (c == '<')
        {
        {
          int i = namelen;
          int i = namelen;
          while (tokstart[++i] && tokstart[i] != '>');
          while (tokstart[++i] && tokstart[i] != '>');
          if (tokstart[i] == '>')
          if (tokstart[i] == '>')
            namelen = i;
            namelen = i;
        }
        }
       c = tokstart[++namelen];
       c = tokstart[++namelen];
     }
     }
  /* The token "if" terminates the expression and is NOT
  /* The token "if" terminates the expression and is NOT
     removed from the input stream.  */
     removed from the input stream.  */
  if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
  if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
    {
    {
      return 0;
      return 0;
    }
    }
  lexptr += namelen;
  lexptr += namelen;
  tryname:
  tryname:
  /* Catch specific keywords.  Should be done with a data structure.  */
  /* Catch specific keywords.  Should be done with a data structure.  */
  switch (namelen)
  switch (namelen)
    {
    {
    case 7:
    case 7:
      if (STREQN (tokstart, "boolean", 7))
      if (STREQN (tokstart, "boolean", 7))
        return BOOLEAN;
        return BOOLEAN;
      break;
      break;
    case 6:
    case 6:
      if (STREQN (tokstart, "double", 6))
      if (STREQN (tokstart, "double", 6))
        return DOUBLE;
        return DOUBLE;
      break;
      break;
    case 5:
    case 5:
      if (STREQN (tokstart, "short", 5))
      if (STREQN (tokstart, "short", 5))
        return SHORT;
        return SHORT;
      if (STREQN (tokstart, "false", 5))
      if (STREQN (tokstart, "false", 5))
        {
        {
          yylval.lval = 0;
          yylval.lval = 0;
          return BOOLEAN_LITERAL;
          return BOOLEAN_LITERAL;
        }
        }
      if (STREQN (tokstart, "super", 5))
      if (STREQN (tokstart, "super", 5))
        return SUPER;
        return SUPER;
      if (STREQN (tokstart, "float", 5))
      if (STREQN (tokstart, "float", 5))
        return FLOAT;
        return FLOAT;
      break;
      break;
    case 4:
    case 4:
      if (STREQN (tokstart, "long", 4))
      if (STREQN (tokstart, "long", 4))
        return LONG;
        return LONG;
      if (STREQN (tokstart, "byte", 4))
      if (STREQN (tokstart, "byte", 4))
        return BYTE;
        return BYTE;
      if (STREQN (tokstart, "char", 4))
      if (STREQN (tokstart, "char", 4))
        return CHAR;
        return CHAR;
      if (STREQN (tokstart, "true", 4))
      if (STREQN (tokstart, "true", 4))
        {
        {
          yylval.lval = 1;
          yylval.lval = 1;
          return BOOLEAN_LITERAL;
          return BOOLEAN_LITERAL;
        }
        }
      if (current_language->la_language == language_cplus
      if (current_language->la_language == language_cplus
          && STREQN (tokstart, "this", 4))
          && STREQN (tokstart, "this", 4))
        {
        {
          static const char this_name[] =
          static const char this_name[] =
                                 { CPLUS_MARKER, 't', 'h', 'i', 's', '\0' };
                                 { CPLUS_MARKER, 't', 'h', 'i', 's', '\0' };
          if (lookup_symbol (this_name, expression_context_block,
          if (lookup_symbol (this_name, expression_context_block,
                             VAR_NAMESPACE, (int *) NULL,
                             VAR_NAMESPACE, (int *) NULL,
                             (struct symtab **) NULL))
                             (struct symtab **) NULL))
            return THIS;
            return THIS;
        }
        }
      break;
      break;
    case 3:
    case 3:
      if (STREQN (tokstart, "int", 3))
      if (STREQN (tokstart, "int", 3))
        return INT;
        return INT;
      if (STREQN (tokstart, "new", 3))
      if (STREQN (tokstart, "new", 3))
        return NEW;
        return NEW;
      break;
      break;
    default:
    default:
      break;
      break;
    }
    }
  yylval.sval.ptr = tokstart;
  yylval.sval.ptr = tokstart;
  yylval.sval.length = namelen;
  yylval.sval.length = namelen;
  if (*tokstart == '$')
  if (*tokstart == '$')
    {
    {
      write_dollar_variable (yylval.sval);
      write_dollar_variable (yylval.sval);
      return VARIABLE;
      return VARIABLE;
    }
    }
  /* Input names that aren't symbols but ARE valid hex numbers,
  /* Input names that aren't symbols but ARE valid hex numbers,
     when the input radix permits them, can be names or numbers
     when the input radix permits them, can be names or numbers
     depending on the parse.  Note we support radixes > 16 here.  */
     depending on the parse.  Note we support radixes > 16 here.  */
  if (((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
  if (((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
       (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
       (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
    {
    {
      YYSTYPE newlval;  /* Its value is ignored.  */
      YYSTYPE newlval;  /* Its value is ignored.  */
      int hextype = parse_number (tokstart, namelen, 0, &newlval);
      int hextype = parse_number (tokstart, namelen, 0, &newlval);
      if (hextype == INTEGER_LITERAL)
      if (hextype == INTEGER_LITERAL)
        return NAME_OR_INT;
        return NAME_OR_INT;
    }
    }
  return IDENTIFIER;
  return IDENTIFIER;
}
}
void
void
yyerror (msg)
yyerror (msg)
     char *msg;
     char *msg;
{
{
  error ("A %s in expression, near `%s'.", (msg ? msg : "error"), lexptr);
  error ("A %s in expression, near `%s'.", (msg ? msg : "error"), lexptr);
}
}
static struct type *
static struct type *
java_type_from_name (name)
java_type_from_name (name)
     struct stoken name;
     struct stoken name;
{
{
  char *tmp = copy_name (name);
  char *tmp = copy_name (name);
  struct type *typ = java_lookup_class (tmp);
  struct type *typ = java_lookup_class (tmp);
  if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
  if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
    error ("No class named %s.", tmp);
    error ("No class named %s.", tmp);
  return typ;
  return typ;
}
}
/* If NAME is a valid variable name in this scope, push it and return 1.
/* If NAME is a valid variable name in this scope, push it and return 1.
   Otherwise, return 0. */
   Otherwise, return 0. */
static int
static int
push_variable (name)
push_variable (name)
     struct stoken name;
     struct stoken name;
{
{
  char *tmp = copy_name (name);
  char *tmp = copy_name (name);
  int is_a_field_of_this = 0;
  int is_a_field_of_this = 0;
  struct symbol *sym;
  struct symbol *sym;
  sym = lookup_symbol (tmp, expression_context_block, VAR_NAMESPACE,
  sym = lookup_symbol (tmp, expression_context_block, VAR_NAMESPACE,
                       &is_a_field_of_this, (struct symtab **) NULL);
                       &is_a_field_of_this, (struct symtab **) NULL);
  if (sym && SYMBOL_CLASS (sym) != LOC_TYPEDEF)
  if (sym && SYMBOL_CLASS (sym) != LOC_TYPEDEF)
    {
    {
      if (symbol_read_needs_frame (sym))
      if (symbol_read_needs_frame (sym))
        {
        {
          if (innermost_block == 0 ||
          if (innermost_block == 0 ||
              contained_in (block_found, innermost_block))
              contained_in (block_found, innermost_block))
            innermost_block = block_found;
            innermost_block = block_found;
        }
        }
      write_exp_elt_opcode (OP_VAR_VALUE);
      write_exp_elt_opcode (OP_VAR_VALUE);
      /* We want to use the selected frame, not another more inner frame
      /* We want to use the selected frame, not another more inner frame
         which happens to be in the same block.  */
         which happens to be in the same block.  */
      write_exp_elt_block (NULL);
      write_exp_elt_block (NULL);
      write_exp_elt_sym (sym);
      write_exp_elt_sym (sym);
      write_exp_elt_opcode (OP_VAR_VALUE);
      write_exp_elt_opcode (OP_VAR_VALUE);
      return 1;
      return 1;
    }
    }
  if (is_a_field_of_this)
  if (is_a_field_of_this)
    {
    {
      /* it hangs off of `this'.  Must not inadvertently convert from a
      /* it hangs off of `this'.  Must not inadvertently convert from a
         method call to data ref.  */
         method call to data ref.  */
      if (innermost_block == 0 ||
      if (innermost_block == 0 ||
          contained_in (block_found, innermost_block))
          contained_in (block_found, innermost_block))
        innermost_block = block_found;
        innermost_block = block_found;
      write_exp_elt_opcode (OP_THIS);
      write_exp_elt_opcode (OP_THIS);
      write_exp_elt_opcode (OP_THIS);
      write_exp_elt_opcode (OP_THIS);
      write_exp_elt_opcode (STRUCTOP_PTR);
      write_exp_elt_opcode (STRUCTOP_PTR);
      write_exp_string (name);
      write_exp_string (name);
      write_exp_elt_opcode (STRUCTOP_PTR);
      write_exp_elt_opcode (STRUCTOP_PTR);
      return 1;
      return 1;
    }
    }
  return 0;
  return 0;
}
}
/* Assuming a reference expression has been pushed, emit the
/* Assuming a reference expression has been pushed, emit the
   STRUCTOP_STRUCT ops to access the field named NAME.  If NAME is a
   STRUCTOP_STRUCT ops to access the field named NAME.  If NAME is a
   qualified name (has '.'), generate a field access for each part. */
   qualified name (has '.'), generate a field access for each part. */
static void
static void
push_fieldnames (name)
push_fieldnames (name)
     struct stoken name;
     struct stoken name;
{
{
  int i;
  int i;
  struct stoken token;
  struct stoken token;
  token.ptr = name.ptr;
  token.ptr = name.ptr;
  for (i = 0;  ;  i++)
  for (i = 0;  ;  i++)
    {
    {
      if (i == name.length || name.ptr[i] == '.')
      if (i == name.length || name.ptr[i] == '.')
        {
        {
          /* token.ptr is start of current field name. */
          /* token.ptr is start of current field name. */
          token.length = &name.ptr[i] - token.ptr;
          token.length = &name.ptr[i] - token.ptr;
          write_exp_elt_opcode (STRUCTOP_STRUCT);
          write_exp_elt_opcode (STRUCTOP_STRUCT);
          write_exp_string (token);
          write_exp_string (token);
          write_exp_elt_opcode (STRUCTOP_STRUCT);
          write_exp_elt_opcode (STRUCTOP_STRUCT);
          token.ptr += token.length + 1;
          token.ptr += token.length + 1;
        }
        }
      if (i >= name.length)
      if (i >= name.length)
        break;
        break;
    }
    }
}
}
/* Helper routine for push_expression_name.
/* Helper routine for push_expression_name.
   Handle a qualified name, where DOT_INDEX is the index of the first '.' */
   Handle a qualified name, where DOT_INDEX is the index of the first '.' */
static void
static void
push_qualified_expression_name (name, dot_index)
push_qualified_expression_name (name, dot_index)
     struct stoken name;
     struct stoken name;
     int dot_index;
     int dot_index;
{
{
  struct stoken token;
  struct stoken token;
  char *tmp;
  char *tmp;
  struct type *typ;
  struct type *typ;
  token.ptr = name.ptr;
  token.ptr = name.ptr;
  token.length = dot_index;
  token.length = dot_index;
  if (push_variable (token))
  if (push_variable (token))
    {
    {
      token.ptr = name.ptr + dot_index + 1;
      token.ptr = name.ptr + dot_index + 1;
      token.length = name.length - dot_index - 1;
      token.length = name.length - dot_index - 1;
      push_fieldnames (token);
      push_fieldnames (token);
      return;
      return;
    }
    }
  token.ptr = name.ptr;
  token.ptr = name.ptr;
  for (;;)
  for (;;)
    {
    {
      token.length = dot_index;
      token.length = dot_index;
      tmp = copy_name (token);
      tmp = copy_name (token);
      typ = java_lookup_class (tmp);
      typ = java_lookup_class (tmp);
      if (typ != NULL)
      if (typ != NULL)
        {
        {
          if (dot_index == name.length)
          if (dot_index == name.length)
            {
            {
              write_exp_elt_opcode(OP_TYPE);
              write_exp_elt_opcode(OP_TYPE);
              write_exp_elt_type(typ);
              write_exp_elt_type(typ);
              write_exp_elt_opcode(OP_TYPE);
              write_exp_elt_opcode(OP_TYPE);
              return;
              return;
            }
            }
          dot_index++;  /* Skip '.' */
          dot_index++;  /* Skip '.' */
          name.ptr += dot_index;
          name.ptr += dot_index;
          name.length -= dot_index;
          name.length -= dot_index;
          dot_index = 0;
          dot_index = 0;
          while (dot_index < name.length && name.ptr[dot_index] != '.')
          while (dot_index < name.length && name.ptr[dot_index] != '.')
            dot_index++;
            dot_index++;
          token.ptr = name.ptr;
          token.ptr = name.ptr;
          token.length = dot_index;
          token.length = dot_index;
          write_exp_elt_opcode (OP_SCOPE);
          write_exp_elt_opcode (OP_SCOPE);
          write_exp_elt_type (typ);
          write_exp_elt_type (typ);
          write_exp_string (token);
          write_exp_string (token);
          write_exp_elt_opcode (OP_SCOPE);
          write_exp_elt_opcode (OP_SCOPE);
          if (dot_index < name.length)
          if (dot_index < name.length)
            {
            {
              dot_index++;
              dot_index++;
              name.ptr += dot_index;
              name.ptr += dot_index;
              name.length -= dot_index;
              name.length -= dot_index;
              push_fieldnames (name);
              push_fieldnames (name);
            }
            }
          return;
          return;
        }
        }
      else if (dot_index >= name.length)
      else if (dot_index >= name.length)
        break;
        break;
      dot_index++;  /* Skip '.' */
      dot_index++;  /* Skip '.' */
      while (dot_index < name.length && name.ptr[dot_index] != '.')
      while (dot_index < name.length && name.ptr[dot_index] != '.')
        dot_index++;
        dot_index++;
    }
    }
  error ("unknown type `%.*s'", name.length, name.ptr);
  error ("unknown type `%.*s'", name.length, name.ptr);
}
}
/* Handle Name in an expression (or LHS).
/* Handle Name in an expression (or LHS).
   Handle VAR, TYPE, TYPE.FIELD1....FIELDN and VAR.FIELD1....FIELDN. */
   Handle VAR, TYPE, TYPE.FIELD1....FIELDN and VAR.FIELD1....FIELDN. */
static void
static void
push_expression_name (name)
push_expression_name (name)
     struct stoken name;
     struct stoken name;
{
{
  char *tmp;
  char *tmp;
  struct type *typ;
  struct type *typ;
  char *ptr;
  char *ptr;
  int i;
  int i;
  for (i = 0;  i < name.length;  i++)
  for (i = 0;  i < name.length;  i++)
    {
    {
      if (name.ptr[i] == '.')
      if (name.ptr[i] == '.')
        {
        {
          /* It's a Qualified Expression Name. */
          /* It's a Qualified Expression Name. */
          push_qualified_expression_name (name, i);
          push_qualified_expression_name (name, i);
          return;
          return;
        }
        }
    }
    }
  /* It's a Simple Expression Name. */
  /* It's a Simple Expression Name. */
  if (push_variable (name))
  if (push_variable (name))
    return;
    return;
  tmp = copy_name (name);
  tmp = copy_name (name);
  typ = java_lookup_class (tmp);
  typ = java_lookup_class (tmp);
  if (typ != NULL)
  if (typ != NULL)
    {
    {
      write_exp_elt_opcode(OP_TYPE);
      write_exp_elt_opcode(OP_TYPE);
      write_exp_elt_type(typ);
      write_exp_elt_type(typ);
      write_exp_elt_opcode(OP_TYPE);
      write_exp_elt_opcode(OP_TYPE);
    }
    }
  else
  else
    {
    {
      struct minimal_symbol *msymbol;
      struct minimal_symbol *msymbol;
      msymbol = lookup_minimal_symbol (tmp, NULL, NULL);
      msymbol = lookup_minimal_symbol (tmp, NULL, NULL);
      if (msymbol != NULL)
      if (msymbol != NULL)
        {
        {
          write_exp_msymbol (msymbol,
          write_exp_msymbol (msymbol,
                             lookup_function_type (builtin_type_int),
                             lookup_function_type (builtin_type_int),
                             builtin_type_int);
                             builtin_type_int);
        }
        }
      else if (!have_full_symbols () && !have_partial_symbols ())
      else if (!have_full_symbols () && !have_partial_symbols ())
        error ("No symbol table is loaded.  Use the \"file\" command.");
        error ("No symbol table is loaded.  Use the \"file\" command.");
      else
      else
        error ("No symbol \"%s\" in current context.", tmp);
        error ("No symbol \"%s\" in current context.", tmp);
    }
    }
}
}
/* The following two routines, copy_exp and insert_exp, aren't specific to
/* The following two routines, copy_exp and insert_exp, aren't specific to
   Java, so they could go in parse.c, but their only purpose is to support
   Java, so they could go in parse.c, but their only purpose is to support
   the parsing kludges we use in this file, so maybe it's best to isolate
   the parsing kludges we use in this file, so maybe it's best to isolate
   them here.  */
   them here.  */
/* Copy the expression whose last element is at index ENDPOS - 1 in EXPR
/* Copy the expression whose last element is at index ENDPOS - 1 in EXPR
   into a freshly malloc'ed struct expression.  Its language_defn is set
   into a freshly malloc'ed struct expression.  Its language_defn is set
   to null.  */
   to null.  */
static struct expression *
static struct expression *
copy_exp (expr, endpos)
copy_exp (expr, endpos)
     struct expression *expr;
     struct expression *expr;
     int endpos;
     int endpos;
{
{
  int len = length_of_subexp (expr, endpos);
  int len = length_of_subexp (expr, endpos);
  struct expression *new
  struct expression *new
    = (struct expression *) malloc (sizeof (*new) + EXP_ELEM_TO_BYTES (len));
    = (struct expression *) malloc (sizeof (*new) + EXP_ELEM_TO_BYTES (len));
  new->nelts = len;
  new->nelts = len;
  memcpy (new->elts, expr->elts + endpos - len, EXP_ELEM_TO_BYTES (len));
  memcpy (new->elts, expr->elts + endpos - len, EXP_ELEM_TO_BYTES (len));
  new->language_defn = 0;
  new->language_defn = 0;
  return new;
  return new;
}
}
/* Insert the expression NEW into the current expression (expout) at POS.  */
/* Insert the expression NEW into the current expression (expout) at POS.  */
static void
static void
insert_exp (pos, new)
insert_exp (pos, new)
     int pos;
     int pos;
     struct expression *new;
     struct expression *new;
{
{
  int newlen = new->nelts;
  int newlen = new->nelts;
  /* Grow expout if necessary.  In this function's only use at present,
  /* Grow expout if necessary.  In this function's only use at present,
     this should never be necessary.  */
     this should never be necessary.  */
  if (expout_ptr + newlen > expout_size)
  if (expout_ptr + newlen > expout_size)
    {
    {
      expout_size = max (expout_size * 2, expout_ptr + newlen + 10);
      expout_size = max (expout_size * 2, expout_ptr + newlen + 10);
      expout = (struct expression *)
      expout = (struct expression *)
        realloc ((char *) expout, (sizeof (struct expression)
        realloc ((char *) expout, (sizeof (struct expression)
                                    + EXP_ELEM_TO_BYTES (expout_size)));
                                    + EXP_ELEM_TO_BYTES (expout_size)));
    }
    }
  {
  {
    int i;
    int i;
    for (i = expout_ptr - 1; i >= pos; i--)
    for (i = expout_ptr - 1; i >= pos; i--)
      expout->elts[i + newlen] = expout->elts[i];
      expout->elts[i + newlen] = expout->elts[i];
  }
  }
  memcpy (expout->elts + pos, new->elts, EXP_ELEM_TO_BYTES (newlen));
  memcpy (expout->elts + pos, new->elts, EXP_ELEM_TO_BYTES (newlen));
  expout_ptr += newlen;
  expout_ptr += newlen;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.