1 /* YACC parser for Java expressions, for GDB.
2 Copyright (C) 1997, 1998, 1999.
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* Parse a Java expression from text in a string,
22 and return the result as a struct expression pointer.
23 That structure contains arithmetic operations in reverse polish,
24 with constants represented by operations that are followed by special data.
25 See expression.h for the details of the format.
26 What is important here is that it can be built up sequentially
27 during the process of parsing; the lower levels of the tree always
28 come first in the result. Well, almost always; see ArrayAccess.
30 Note that malloc's and realloc's in this file are transformed to
31 xmalloc and xrealloc respectively by the same sed command in the
32 makefile that remaps any other malloc/realloc inserted by the parser
33 generator. Doing this with #defines and trying to control the interaction
34 with include files (<malloc.h> and <stdlib.h> for example) just became
35 too messy, particularly when such includes can be inserted at random
36 times by the parser generator. */
41 #include "gdb_string.h"
43 #include "expression.h"
45 #include "parser-defs.h"
48 #include "bfd.h" /* Required by objfiles.h. */
49 #include "symfile.h" /* Required by objfiles.h. */
50 #include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
52 /* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
53 as well as gratuitiously global symbol names, so we can have multiple
54 yacc generated parsers in gdb. Note that these are only the variables
55 produced by yacc. If other parser generators (bison, byacc, etc) produce
56 additional global names that conflict at link time, then those parser
57 generators need to be fixed instead of adding those names to this list. */
59 #define yymaxdepth java_maxdepth
60 #define yyparse java_parse
61 #define yylex java_lex
62 #define yyerror java_error
63 #define yylval java_lval
64 #define yychar java_char
65 #define yydebug java_debug
66 #define yypact java_pact
69 #define yydef java_def
70 #define yychk java_chk
71 #define yypgo java_pgo
72 #define yyact java_act
73 #define yyexca java_exca
74 #define yyerrflag java_errflag
75 #define yynerrs java_nerrs
79 #define yy_yys java_yys
80 #define yystate java_state
81 #define yytmp java_tmp
83 #define yy_yyv java_yyv
84 #define yyval java_val
85 #define yylloc java_lloc
86 #define yyreds java_reds /* With YYDEBUG defined */
87 #define yytoks java_toks /* With YYDEBUG defined */
88 #define yylhs java_yylhs
89 #define yylen java_yylen
90 #define yydefred java_yydefred
91 #define yydgoto java_yydgoto
92 #define yysindex java_yysindex
93 #define yyrindex java_yyrindex
94 #define yygindex java_yygindex
95 #define yytable java_yytable
96 #define yycheck java_yycheck
99 #define YYDEBUG 0 /* Default to no yydebug support */
103 yyparse PARAMS ((void));
106 yylex PARAMS ((void));
109 yyerror PARAMS ((char *));
111 static struct type * java_type_from_name PARAMS ((struct stoken));
112 static void push_expression_name PARAMS ((struct stoken));
113 static void push_fieldnames PARAMS ((struct stoken));
115 static struct expression *copy_exp PARAMS ((struct expression *, int));
116 static void insert_exp PARAMS ((int, struct expression *));
120 /* Although the yacc "value" of an expression is not used,
121 since the result is stored in the structure being created,
122 other node types do have values. */
139 struct symtoken ssym;
141 enum exp_opcode opcode;
142 struct internalvar *ivar;
147 /* YYSTYPE gets defined by %union */
149 parse_number PARAMS ((char *, int, int, YYSTYPE *));
152 %type <lval> rcurly Dims Dims_opt
153 %type <tval> ClassOrInterfaceType ClassType /* ReferenceType Type ArrayType */
154 %type <tval> IntegralType FloatingPointType NumericType PrimitiveType ArrayType PrimitiveOrArrayType
156 %token <typed_val_int> INTEGER_LITERAL
157 %token <typed_val_float> FLOATING_POINT_LITERAL
159 %token <sval> IDENTIFIER
160 %token <sval> STRING_LITERAL
161 %token <lval> BOOLEAN_LITERAL
162 %token <tsym> TYPENAME
163 %type <sval> Name SimpleName QualifiedName ForcedName
165 /* A NAME_OR_INT is a symbol which is not known in the symbol table,
166 but which would parse as a valid number in the current input radix.
167 E.g. "c" when input_radix==16. Depending on the parse, it will be
168 turned into a name or into a number. */
170 %token <sval> NAME_OR_INT
174 /* Special type cases, put in to allow the parser to distinguish different
176 %token LONG SHORT BYTE INT CHAR BOOLEAN DOUBLE FLOAT
180 %token <opcode> ASSIGN_MODIFY
182 %token THIS SUPER NEW
185 %right '=' ASSIGN_MODIFY
193 %left '<' '>' LEQ GEQ
197 %right INCREMENT DECREMENT
207 type_exp: PrimitiveOrArrayType
209 write_exp_elt_opcode(OP_TYPE);
210 write_exp_elt_type($1);
211 write_exp_elt_opcode(OP_TYPE);
215 PrimitiveOrArrayType:
223 write_exp_elt_opcode (OP_STRING);
224 write_exp_string ($1);
225 write_exp_elt_opcode (OP_STRING);
231 { write_exp_elt_opcode (OP_LONG);
232 write_exp_elt_type ($1.type);
233 write_exp_elt_longcst ((LONGEST)($1.val));
234 write_exp_elt_opcode (OP_LONG); }
237 parse_number ($1.ptr, $1.length, 0, &val);
238 write_exp_elt_opcode (OP_LONG);
239 write_exp_elt_type (val.typed_val_int.type);
240 write_exp_elt_longcst ((LONGEST)val.typed_val_int.val);
241 write_exp_elt_opcode (OP_LONG);
243 | FLOATING_POINT_LITERAL
244 { write_exp_elt_opcode (OP_DOUBLE);
245 write_exp_elt_type ($1.type);
246 write_exp_elt_dblcst ($1.dval);
247 write_exp_elt_opcode (OP_DOUBLE); }
249 { write_exp_elt_opcode (OP_LONG);
250 write_exp_elt_type (java_boolean_type);
251 write_exp_elt_longcst ((LONGEST)$1);
252 write_exp_elt_opcode (OP_LONG); }
266 { $$ = java_boolean_type; }
276 { $$ = java_byte_type; }
278 { $$ = java_short_type; }
280 { $$ = java_int_type; }
282 { $$ = java_long_type; }
284 { $$ = java_char_type; }
289 { $$ = java_float_type; }
291 { $$ = java_double_type; }
301 ClassOrInterfaceType:
303 { $$ = java_type_from_name ($1); }
312 { $$ = java_array_type ($1, $2); }
314 { $$ = java_array_type (java_type_from_name ($1), $2); }
334 { $$.length = $1.length + $3.length + 1;
335 if ($1.ptr + $1.length + 1 == $3.ptr
336 && $1.ptr[$1.length] == '.')
337 $$.ptr = $1.ptr; /* Optimization. */
340 $$.ptr = (char *) malloc ($$.length + 1);
341 make_cleanup (free, $$.ptr);
342 sprintf ($$.ptr, "%.*s.%.*s",
343 $1.length, $1.ptr, $3.length, $3.ptr);
349 { write_exp_elt_opcode(OP_TYPE);
350 write_exp_elt_type($1);
351 write_exp_elt_opcode(OP_TYPE);}
355 /* Expressions, including the comma operator. */
357 | exp1 ',' Expression
358 { write_exp_elt_opcode (BINOP_COMMA); }
363 | ArrayCreationExpression
369 { write_exp_elt_opcode (OP_THIS);
370 write_exp_elt_opcode (OP_THIS); }
372 | ClassInstanceCreationExpression
376 | lcurly ArgumentList rcurly
377 { write_exp_elt_opcode (OP_ARRAY);
378 write_exp_elt_longcst ((LONGEST) 0);
379 write_exp_elt_longcst ((LONGEST) $3);
380 write_exp_elt_opcode (OP_ARRAY); }
385 { start_arglist (); }
390 { $$ = end_arglist () - 1; }
393 ClassInstanceCreationExpression:
394 NEW ClassType '(' ArgumentList_opt ')'
395 { error ("FIXME - ClassInstanceCreationExpression"); }
401 | ArgumentList ',' Expression
411 ArrayCreationExpression:
412 NEW PrimitiveType DimExprs Dims_opt
413 { error ("FIXME - ArrayCreatiionExpression"); }
414 | NEW ClassOrInterfaceType DimExprs Dims_opt
415 { error ("FIXME - ArrayCreatiionExpression"); }
441 Primary '.' SimpleName
442 { push_fieldnames ($3); }
443 | VARIABLE '.' SimpleName
444 { push_fieldnames ($3); }
445 /*| SUPER '.' SimpleName { FIXME } */
449 Name '(' ArgumentList_opt ')'
450 { error ("method invocation not implemented"); }
451 | Primary '.' SimpleName '(' ArgumentList_opt ')'
452 { error ("method invocation not implemented"); }
453 | SUPER '.' SimpleName '(' ArgumentList_opt ')'
454 { error ("method invocation not implemented"); }
458 Name '[' Expression ']'
460 /* Emit code for the Name now, then exchange it in the
461 expout array with the Expression's code. We could
462 introduce a OP_SWAP code or a reversed version of
463 BINOP_SUBSCRIPT, but that makes the rest of GDB pay
464 for our parsing kludges. */
465 struct expression *name_expr;
467 push_expression_name ($1);
468 name_expr = copy_exp (expout, expout_ptr);
469 expout_ptr -= name_expr->nelts;
470 insert_exp (expout_ptr-length_of_subexp (expout, expout_ptr),
473 write_exp_elt_opcode (BINOP_SUBSCRIPT);
475 | VARIABLE '[' Expression ']'
476 { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
477 | PrimaryNoNewArray '[' Expression ']'
478 { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
484 { push_expression_name ($1); }
486 /* Already written by write_dollar_variable. */
487 | PostIncrementExpression
488 | PostDecrementExpression
491 PostIncrementExpression:
492 PostfixExpression INCREMENT
493 { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
496 PostDecrementExpression:
497 PostfixExpression DECREMENT
498 { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
502 PreIncrementExpression
503 | PreDecrementExpression
504 | '+' UnaryExpression
505 | '-' UnaryExpression
506 { write_exp_elt_opcode (UNOP_NEG); }
507 | '*' UnaryExpression
508 { write_exp_elt_opcode (UNOP_IND); } /*FIXME not in Java */
509 | UnaryExpressionNotPlusMinus
512 PreIncrementExpression:
513 INCREMENT UnaryExpression
514 { write_exp_elt_opcode (UNOP_PREINCREMENT); }
517 PreDecrementExpression:
518 DECREMENT UnaryExpression
519 { write_exp_elt_opcode (UNOP_PREDECREMENT); }
522 UnaryExpressionNotPlusMinus:
524 | '~' UnaryExpression
525 { write_exp_elt_opcode (UNOP_COMPLEMENT); }
526 | '!' UnaryExpression
527 { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
532 '(' PrimitiveType Dims_opt ')' UnaryExpression
533 { write_exp_elt_opcode (UNOP_CAST);
534 write_exp_elt_type (java_array_type ($2, $3));
535 write_exp_elt_opcode (UNOP_CAST); }
536 | '(' Expression ')' UnaryExpressionNotPlusMinus
538 int exp_size = expout_ptr;
539 int last_exp_size = length_of_subexp(expout, expout_ptr);
542 int base = expout_ptr - last_exp_size - 3;
543 if (base < 0 || expout->elts[base+2].opcode != OP_TYPE)
544 error ("invalid cast expression");
545 type = expout->elts[base+1].type;
546 /* Remove the 'Expression' and slide the
547 UnaryExpressionNotPlusMinus down to replace it. */
548 for (i = 0; i < last_exp_size; i++)
549 expout->elts[base + i] = expout->elts[base + i + 3];
551 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
552 type = lookup_pointer_type (type);
553 write_exp_elt_opcode (UNOP_CAST);
554 write_exp_elt_type (type);
555 write_exp_elt_opcode (UNOP_CAST);
557 | '(' Name Dims ')' UnaryExpressionNotPlusMinus
558 { write_exp_elt_opcode (UNOP_CAST);
559 write_exp_elt_type (java_array_type (java_type_from_name ($2), $3));
560 write_exp_elt_opcode (UNOP_CAST); }
564 MultiplicativeExpression:
566 | MultiplicativeExpression '*' UnaryExpression
567 { write_exp_elt_opcode (BINOP_MUL); }
568 | MultiplicativeExpression '/' UnaryExpression
569 { write_exp_elt_opcode (BINOP_DIV); }
570 | MultiplicativeExpression '%' UnaryExpression
571 { write_exp_elt_opcode (BINOP_REM); }
575 MultiplicativeExpression
576 | AdditiveExpression '+' MultiplicativeExpression
577 { write_exp_elt_opcode (BINOP_ADD); }
578 | AdditiveExpression '-' MultiplicativeExpression
579 { write_exp_elt_opcode (BINOP_SUB); }
584 | ShiftExpression LSH AdditiveExpression
585 { write_exp_elt_opcode (BINOP_LSH); }
586 | ShiftExpression RSH AdditiveExpression
587 { write_exp_elt_opcode (BINOP_RSH); }
588 /* | ShiftExpression >>> AdditiveExpression { FIXME } */
591 RelationalExpression:
593 | RelationalExpression '<' ShiftExpression
594 { write_exp_elt_opcode (BINOP_LESS); }
595 | RelationalExpression '>' ShiftExpression
596 { write_exp_elt_opcode (BINOP_GTR); }
597 | RelationalExpression LEQ ShiftExpression
598 { write_exp_elt_opcode (BINOP_LEQ); }
599 | RelationalExpression GEQ ShiftExpression
600 { write_exp_elt_opcode (BINOP_GEQ); }
601 /* | RelationalExpresion INSTANCEOF ReferenceType { FIXME } */
606 | EqualityExpression EQUAL RelationalExpression
607 { write_exp_elt_opcode (BINOP_EQUAL); }
608 | EqualityExpression NOTEQUAL RelationalExpression
609 { write_exp_elt_opcode (BINOP_NOTEQUAL); }
614 | AndExpression '&' EqualityExpression
615 { write_exp_elt_opcode (BINOP_BITWISE_AND); }
618 ExclusiveOrExpression:
620 | ExclusiveOrExpression '^' AndExpression
621 { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
623 InclusiveOrExpression:
624 ExclusiveOrExpression
625 | InclusiveOrExpression '|' ExclusiveOrExpression
626 { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
629 ConditionalAndExpression:
630 InclusiveOrExpression
631 | ConditionalAndExpression ANDAND InclusiveOrExpression
632 { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
635 ConditionalOrExpression:
636 ConditionalAndExpression
637 | ConditionalOrExpression OROR ConditionalAndExpression
638 { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
641 ConditionalExpression:
642 ConditionalOrExpression
643 | ConditionalOrExpression '?' Expression ':' ConditionalExpression
644 { write_exp_elt_opcode (TERNOP_COND); }
647 AssignmentExpression:
648 ConditionalExpression
653 LeftHandSide '=' ConditionalExpression
654 { write_exp_elt_opcode (BINOP_ASSIGN); }
655 | LeftHandSide ASSIGN_MODIFY ConditionalExpression
656 { write_exp_elt_opcode (BINOP_ASSIGN_MODIFY);
657 write_exp_elt_opcode ($2);
658 write_exp_elt_opcode (BINOP_ASSIGN_MODIFY); }
663 { push_expression_name ($1); }
665 /* Already written by write_dollar_variable. */
676 /* Take care of parsing a number (anything that starts with a digit).
677 Set yylval and return the token type; update lexptr.
678 LEN is the number of characters in it. */
680 /*** Needs some error checking for the float case ***/
683 parse_number (p, len, parsed_float, putithere)
689 register ULONGEST n = 0;
690 ULONGEST limit, limit_div_base;
693 register int base = input_radix;
699 /* It's a float since it contains a point or an exponent. */
701 int num = 0; /* number of tokens scanned by scanf */
702 char saved_char = p[len];
704 p[len] = 0; /* null-terminate the token */
705 if (sizeof (putithere->typed_val_float.dval) <= sizeof (float))
706 num = sscanf (p, "%g%c", (float *) &putithere->typed_val_float.dval, &c);
707 else if (sizeof (putithere->typed_val_float.dval) <= sizeof (double))
708 num = sscanf (p, "%lg%c", (double *) &putithere->typed_val_float.dval, &c);
711 #ifdef SCANF_HAS_LONG_DOUBLE
712 num = sscanf (p, "%Lg%c", &putithere->typed_val_float.dval, &c);
714 /* Scan it into a double, then assign it to the long double.
715 This at least wins with values representable in the range
718 num = sscanf (p, "%lg%c", &temp, &c);
719 putithere->typed_val_float.dval = temp;
722 p[len] = saved_char; /* restore the input stream */
723 if (num != 1) /* check scanf found ONLY a float ... */
725 /* See if it has `f' or `d' suffix (float or double). */
727 c = tolower (p[len - 1]);
729 if (c == 'f' || c == 'F')
730 putithere->typed_val_float.type = builtin_type_float;
731 else if (isdigit (c) || c == '.' || c == 'd' || c == 'D')
732 putithere->typed_val_float.type = builtin_type_double;
736 return FLOATING_POINT_LITERAL;
739 /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
771 limit = (ULONGEST)0xffffffff;
772 if (c == 'l' || c == 'L')
774 type = java_long_type;
776 /* A paranoid calculation of (1<<64)-1. */
777 limit = ((limit << 16) << 16) | limit;
781 type = java_int_type;
783 limit_div_base = limit / (ULONGEST) base;
788 if (c >= '0' && c <= '9')
790 else if (c >= 'A' && c <= 'Z')
792 else if (c >= 'a' && c <= 'z')
795 return ERROR; /* Char not a digit */
798 if (n > limit_div_base
799 || (n *= base) > limit - c)
800 error ("Numeric constant too large.");
804 putithere->typed_val_int.val = n;
805 putithere->typed_val_int.type = type;
806 return INTEGER_LITERAL;
813 enum exp_opcode opcode;
816 static const struct token tokentab3[] =
818 {">>=", ASSIGN_MODIFY, BINOP_RSH},
819 {"<<=", ASSIGN_MODIFY, BINOP_LSH}
822 static const struct token tokentab2[] =
824 {"+=", ASSIGN_MODIFY, BINOP_ADD},
825 {"-=", ASSIGN_MODIFY, BINOP_SUB},
826 {"*=", ASSIGN_MODIFY, BINOP_MUL},
827 {"/=", ASSIGN_MODIFY, BINOP_DIV},
828 {"%=", ASSIGN_MODIFY, BINOP_REM},
829 {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
830 {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
831 {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
832 {"++", INCREMENT, BINOP_END},
833 {"--", DECREMENT, BINOP_END},
834 {"&&", ANDAND, BINOP_END},
835 {"||", OROR, BINOP_END},
836 {"<<", LSH, BINOP_END},
837 {">>", RSH, BINOP_END},
838 {"==", EQUAL, BINOP_END},
839 {"!=", NOTEQUAL, BINOP_END},
840 {"<=", LEQ, BINOP_END},
841 {">=", GEQ, BINOP_END}
844 /* Read one token, getting characters through lexptr. */
855 static char *tempbuf;
856 static int tempbufsize;
861 /* See if it is a special token of length 3. */
862 for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
863 if (STREQN (tokstart, tokentab3[i].operator, 3))
866 yylval.opcode = tokentab3[i].opcode;
867 return tokentab3[i].token;
870 /* See if it is a special token of length 2. */
871 for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
872 if (STREQN (tokstart, tokentab2[i].operator, 2))
875 yylval.opcode = tokentab2[i].opcode;
876 return tokentab2[i].token;
879 switch (c = *tokstart)
891 /* We either have a character constant ('0' or '\177' for example)
892 or we have a quoted symbol reference ('foo(int,int)' in C++
897 c = parse_escape (&lexptr);
899 error ("Empty character constant.");
901 yylval.typed_val_int.val = c;
902 yylval.typed_val_int.type = java_char_type;
907 namelen = skip_quoted (tokstart) - tokstart;
910 lexptr = tokstart + namelen;
911 if (lexptr[-1] != '\'')
912 error ("Unmatched single quote.");
917 error ("Invalid character constant.");
919 return INTEGER_LITERAL;
927 if (paren_depth == 0)
934 if (comma_terminates && paren_depth == 0)
940 /* Might be a floating point number. */
941 if (lexptr[1] < '0' || lexptr[1] > '9')
942 goto symbol; /* Nope, must be a symbol. */
943 /* FALL THRU into number case. */
957 int got_dot = 0, got_e = 0, toktype;
958 register char *p = tokstart;
959 int hex = input_radix > 10;
961 if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
966 else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
974 /* This test includes !hex because 'e' is a valid hex digit
975 and thus does not indicate a floating point number when
977 if (!hex && !got_e && (*p == 'e' || *p == 'E'))
979 /* This test does not include !hex, because a '.' always indicates
980 a decimal floating point number regardless of the radix. */
981 else if (!got_dot && *p == '.')
983 else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
984 && (*p == '-' || *p == '+'))
985 /* This is the sign of the exponent, not the end of the
988 /* We will take any letters or digits. parse_number will
989 complain if past the radix, or if L or U are not final. */
990 else if ((*p < '0' || *p > '9')
991 && ((*p < 'a' || *p > 'z')
992 && (*p < 'A' || *p > 'Z')))
995 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
996 if (toktype == ERROR)
998 char *err_copy = (char *) alloca (p - tokstart + 1);
1000 memcpy (err_copy, tokstart, p - tokstart);
1001 err_copy[p - tokstart] = 0;
1002 error ("Invalid number \"%s\".", err_copy);
1033 /* Build the gdb internal form of the input string in tempbuf,
1034 translating any standard C escape forms seen. Note that the
1035 buffer is null byte terminated *only* for the convenience of
1036 debugging gdb itself and printing the buffer contents when
1037 the buffer contains no embedded nulls. Gdb does not depend
1038 upon the buffer being null byte terminated, it uses the length
1039 string instead. This allows gdb to handle C strings (as well
1040 as strings in other languages) with embedded null bytes */
1042 tokptr = ++tokstart;
1046 /* Grow the static temp buffer if necessary, including allocating
1047 the first one on demand. */
1048 if (tempbufindex + 1 >= tempbufsize)
1050 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64);
1056 /* Do nothing, loop will terminate. */
1060 c = parse_escape (&tokptr);
1065 tempbuf[tempbufindex++] = c;
1068 tempbuf[tempbufindex++] = *tokptr++;
1071 } while ((*tokptr != '"') && (*tokptr != '\0'));
1072 if (*tokptr++ != '"')
1074 error ("Unterminated string in expression.");
1076 tempbuf[tempbufindex] = '\0'; /* See note above */
1077 yylval.sval.ptr = tempbuf;
1078 yylval.sval.length = tempbufindex;
1080 return (STRING_LITERAL);
1083 if (!(c == '_' || c == '$'
1084 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
1085 /* We must have come across a bad character (e.g. ';'). */
1086 error ("Invalid character '%c' in expression.", c);
1088 /* It's a name. See how long it is. */
1090 for (c = tokstart[namelen];
1093 || (c >= '0' && c <= '9')
1094 || (c >= 'a' && c <= 'z')
1095 || (c >= 'A' && c <= 'Z')
1102 while (tokstart[++i] && tokstart[i] != '>');
1103 if (tokstart[i] == '>')
1106 c = tokstart[++namelen];
1109 /* The token "if" terminates the expression and is NOT
1110 removed from the input stream. */
1111 if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
1120 /* Catch specific keywords. Should be done with a data structure. */
1124 if (STREQN (tokstart, "boolean", 7))
1128 if (STREQN (tokstart, "double", 6))
1132 if (STREQN (tokstart, "short", 5))
1134 if (STREQN (tokstart, "false", 5))
1137 return BOOLEAN_LITERAL;
1139 if (STREQN (tokstart, "super", 5))
1141 if (STREQN (tokstart, "float", 5))
1145 if (STREQN (tokstart, "long", 4))
1147 if (STREQN (tokstart, "byte", 4))
1149 if (STREQN (tokstart, "char", 4))
1151 if (STREQN (tokstart, "true", 4))
1154 return BOOLEAN_LITERAL;
1156 if (current_language->la_language == language_cplus
1157 && STREQN (tokstart, "this", 4))
1159 static const char this_name[] =
1160 { CPLUS_MARKER, 't', 'h', 'i', 's', '\0' };
1162 if (lookup_symbol (this_name, expression_context_block,
1163 VAR_NAMESPACE, (int *) NULL,
1164 (struct symtab **) NULL))
1169 if (STREQN (tokstart, "int", 3))
1171 if (STREQN (tokstart, "new", 3))
1178 yylval.sval.ptr = tokstart;
1179 yylval.sval.length = namelen;
1181 if (*tokstart == '$')
1183 write_dollar_variable (yylval.sval);
1187 /* Input names that aren't symbols but ARE valid hex numbers,
1188 when the input radix permits them, can be names or numbers
1189 depending on the parse. Note we support radixes > 16 here. */
1190 if (((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
1191 (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
1193 YYSTYPE newlval; /* Its value is ignored. */
1194 int hextype = parse_number (tokstart, namelen, 0, &newlval);
1195 if (hextype == INTEGER_LITERAL)
1205 error ("A %s in expression, near `%s'.", (msg ? msg : "error"), lexptr);
1208 static struct type *
1209 java_type_from_name (name)
1213 char *tmp = copy_name (name);
1214 struct type *typ = java_lookup_class (tmp);
1215 if (typ == NULL || TYPE_CODE (typ) != TYPE_CODE_STRUCT)
1216 error ("No class named %s.", tmp);
1220 /* If NAME is a valid variable name in this scope, push it and return 1.
1221 Otherwise, return 0. */
1224 push_variable (name)
1228 char *tmp = copy_name (name);
1229 int is_a_field_of_this = 0;
1231 sym = lookup_symbol (tmp, expression_context_block, VAR_NAMESPACE,
1232 &is_a_field_of_this, (struct symtab **) NULL);
1233 if (sym && SYMBOL_CLASS (sym) != LOC_TYPEDEF)
1235 if (symbol_read_needs_frame (sym))
1237 if (innermost_block == 0 ||
1238 contained_in (block_found, innermost_block))
1239 innermost_block = block_found;
1242 write_exp_elt_opcode (OP_VAR_VALUE);
1243 /* We want to use the selected frame, not another more inner frame
1244 which happens to be in the same block. */
1245 write_exp_elt_block (NULL);
1246 write_exp_elt_sym (sym);
1247 write_exp_elt_opcode (OP_VAR_VALUE);
1250 if (is_a_field_of_this)
1252 /* it hangs off of `this'. Must not inadvertently convert from a
1253 method call to data ref. */
1254 if (innermost_block == 0 ||
1255 contained_in (block_found, innermost_block))
1256 innermost_block = block_found;
1257 write_exp_elt_opcode (OP_THIS);
1258 write_exp_elt_opcode (OP_THIS);
1259 write_exp_elt_opcode (STRUCTOP_PTR);
1260 write_exp_string (name);
1261 write_exp_elt_opcode (STRUCTOP_PTR);
1267 /* Assuming a reference expression has been pushed, emit the
1268 STRUCTOP_STRUCT ops to access the field named NAME. If NAME is a
1269 qualified name (has '.'), generate a field access for each part. */
1272 push_fieldnames (name)
1276 struct stoken token;
1277 token.ptr = name.ptr;
1280 if (i == name.length || name.ptr[i] == '.')
1282 /* token.ptr is start of current field name. */
1283 token.length = &name.ptr[i] - token.ptr;
1284 write_exp_elt_opcode (STRUCTOP_STRUCT);
1285 write_exp_string (token);
1286 write_exp_elt_opcode (STRUCTOP_STRUCT);
1287 token.ptr += token.length + 1;
1289 if (i >= name.length)
1294 /* Helper routine for push_expression_name.
1295 Handle a qualified name, where DOT_INDEX is the index of the first '.' */
1298 push_qualified_expression_name (name, dot_index)
1302 struct stoken token;
1306 token.ptr = name.ptr;
1307 token.length = dot_index;
1309 if (push_variable (token))
1311 token.ptr = name.ptr + dot_index + 1;
1312 token.length = name.length - dot_index - 1;
1313 push_fieldnames (token);
1317 token.ptr = name.ptr;
1320 token.length = dot_index;
1321 tmp = copy_name (token);
1322 typ = java_lookup_class (tmp);
1325 if (dot_index == name.length)
1327 write_exp_elt_opcode(OP_TYPE);
1328 write_exp_elt_type(typ);
1329 write_exp_elt_opcode(OP_TYPE);
1332 dot_index++; /* Skip '.' */
1333 name.ptr += dot_index;
1334 name.length -= dot_index;
1336 while (dot_index < name.length && name.ptr[dot_index] != '.')
1338 token.ptr = name.ptr;
1339 token.length = dot_index;
1340 write_exp_elt_opcode (OP_SCOPE);
1341 write_exp_elt_type (typ);
1342 write_exp_string (token);
1343 write_exp_elt_opcode (OP_SCOPE);
1344 if (dot_index < name.length)
1347 name.ptr += dot_index;
1348 name.length -= dot_index;
1349 push_fieldnames (name);
1353 else if (dot_index >= name.length)
1355 dot_index++; /* Skip '.' */
1356 while (dot_index < name.length && name.ptr[dot_index] != '.')
1359 error ("unknown type `%.*s'", name.length, name.ptr);
1362 /* Handle Name in an expression (or LHS).
1363 Handle VAR, TYPE, TYPE.FIELD1....FIELDN and VAR.FIELD1....FIELDN. */
1366 push_expression_name (name)
1374 for (i = 0; i < name.length; i++)
1376 if (name.ptr[i] == '.')
1378 /* It's a Qualified Expression Name. */
1379 push_qualified_expression_name (name, i);
1384 /* It's a Simple Expression Name. */
1386 if (push_variable (name))
1388 tmp = copy_name (name);
1389 typ = java_lookup_class (tmp);
1392 write_exp_elt_opcode(OP_TYPE);
1393 write_exp_elt_type(typ);
1394 write_exp_elt_opcode(OP_TYPE);
1398 struct minimal_symbol *msymbol;
1400 msymbol = lookup_minimal_symbol (tmp, NULL, NULL);
1401 if (msymbol != NULL)
1403 write_exp_msymbol (msymbol,
1404 lookup_function_type (builtin_type_int),
1407 else if (!have_full_symbols () && !have_partial_symbols ())
1408 error ("No symbol table is loaded. Use the \"file\" command.");
1410 error ("No symbol \"%s\" in current context.", tmp);
1416 /* The following two routines, copy_exp and insert_exp, aren't specific to
1417 Java, so they could go in parse.c, but their only purpose is to support
1418 the parsing kludges we use in this file, so maybe it's best to isolate
1421 /* Copy the expression whose last element is at index ENDPOS - 1 in EXPR
1422 into a freshly malloc'ed struct expression. Its language_defn is set
1424 static struct expression *
1425 copy_exp (expr, endpos)
1426 struct expression *expr;
1429 int len = length_of_subexp (expr, endpos);
1430 struct expression *new
1431 = (struct expression *) malloc (sizeof (*new) + EXP_ELEM_TO_BYTES (len));
1433 memcpy (new->elts, expr->elts + endpos - len, EXP_ELEM_TO_BYTES (len));
1434 new->language_defn = 0;
1439 /* Insert the expression NEW into the current expression (expout) at POS. */
1441 insert_exp (pos, new)
1443 struct expression *new;
1445 int newlen = new->nelts;
1447 /* Grow expout if necessary. In this function's only use at present,
1448 this should never be necessary. */
1449 if (expout_ptr + newlen > expout_size)
1451 expout_size = max (expout_size * 2, expout_ptr + newlen + 10);
1452 expout = (struct expression *)
1453 realloc ((char *) expout, (sizeof (struct expression)
1454 + EXP_ELEM_TO_BYTES (expout_size)));
1460 for (i = expout_ptr - 1; i >= pos; i--)
1461 expout->elts[i + newlen] = expout->elts[i];
1464 memcpy (expout->elts + pos, new->elts, EXP_ELEM_TO_BYTES (newlen));
1465 expout_ptr += newlen;