Remove trailing spaces and tabulations from pascal language
[deliverable/binutils-gdb.git] / gdb / p-exp.y
index 21c3dbb183312439a513611dedc9402201ad4876..2b7cb2ab52a2399b008cf484a4a631078ab5fc04 100644 (file)
 #define        yylval  pascal_lval
 #define        yychar  pascal_char
 #define        yydebug pascal_debug
-#define        yypact  pascal_pact     
-#define        yyr1    pascal_r1                       
-#define        yyr2    pascal_r2                       
-#define        yydef   pascal_def              
-#define        yychk   pascal_chk              
-#define        yypgo   pascal_pgo              
+#define        yypact  pascal_pact
+#define        yyr1    pascal_r1
+#define        yyr2    pascal_r2
+#define        yydef   pascal_def
+#define        yychk   pascal_chk
+#define        yypgo   pascal_pgo
 #define        yyact   pascal_act
 #define        yyexca  pascal_exca
 #define yyerrflag pascal_errflag
@@ -117,8 +117,7 @@ int yyparse (void);
 
 static int yylex (void);
 
-void
-yyerror (char *);
+void yyerror (char *);
 
 static char * uptok (char *, int);
 %}
@@ -154,10 +153,10 @@ static char * uptok (char *, int);
 
 %{
 /* YYSTYPE gets defined by %union */
-static int
-parse_number (char *, int, int, YYSTYPE *);
+static int parse_number (char *, int, int, YYSTYPE *);
 
 static struct type *current_type;
+static struct internalvar *intvar;
 static int leftdiv_is_integer;
 static void push_current_type (void);
 static void pop_current_type (void);
@@ -182,8 +181,9 @@ static int search_field;
    Contexts where this distinction is not important can use the
    nonterminal "name", which matches either NAME or TYPENAME.  */
 
-%token <sval> STRING 
+%token <sval> STRING
 %token <sval> FIELDNAME
+%token <voidval> COMPLETE
 %token <ssym> NAME /* BLOCKNAME defined below to give it higher precedence.  */
 %token <tsym> TYPENAME
 %type <sval> name
@@ -233,6 +233,7 @@ static int search_field;
 %%
 
 start   :      { current_type = NULL;
+                 intvar = NULL;
                  search_field = 0;
                  leftdiv_is_integer = 0;
                }
@@ -259,12 +260,12 @@ exp1      :       exp
 /* Expressions, not including the comma operator.  */
 exp    :       exp '^'   %prec UNARY
                        { write_exp_elt_opcode (UNOP_IND);
-                         if (current_type) 
+                         if (current_type)
                            current_type = TYPE_TARGET_TYPE (current_type); }
        ;
 
 exp    :       '@' exp    %prec UNARY
-                       { write_exp_elt_opcode (UNOP_ADDR); 
+                       { write_exp_elt_opcode (UNOP_ADDR);
                          if (current_type)
                            current_type = TYPE_POINTER_TYPE (current_type); }
        ;
@@ -285,36 +286,74 @@ exp       :       DECREMENT  '(' exp ')'   %prec UNARY
                        { write_exp_elt_opcode (UNOP_PREDECREMENT); }
        ;
 
-exp    :       exp '.' { search_field = 1; } 
-               FIELDNAME 
-               /* name */
+
+field_exp      :       exp '.' %prec UNARY
+                       { search_field = 1; }
+       ;
+
+exp    :       field_exp FIELDNAME
                        { write_exp_elt_opcode (STRUCTOP_STRUCT);
-                         write_exp_string ($4); 
+                         write_exp_string ($2);
                          write_exp_elt_opcode (STRUCTOP_STRUCT);
-                         search_field = 0; 
+                         search_field = 0;
                          if (current_type)
-                           { while (TYPE_CODE (current_type) == TYPE_CODE_PTR)
-                               current_type = TYPE_TARGET_TYPE (current_type);
+                           {
+                             while (TYPE_CODE (current_type)
+                                    == TYPE_CODE_PTR)
+                               current_type =
+                                 TYPE_TARGET_TYPE (current_type);
                              current_type = lookup_struct_elt_type (
-                               current_type, $4.ptr, 0); };
-                        } ; 
+                               current_type, $2.ptr, 0);
+                           }
+                        }
+       ;
+
+
+exp    :       field_exp name
+                       { mark_struct_expression ();
+                         write_exp_elt_opcode (STRUCTOP_STRUCT);
+                         write_exp_string ($2);
+                         write_exp_elt_opcode (STRUCTOP_STRUCT);
+                         search_field = 0;
+                         if (current_type)
+                           {
+                             while (TYPE_CODE (current_type)
+                                    == TYPE_CODE_PTR)
+                               current_type =
+                                 TYPE_TARGET_TYPE (current_type);
+                             current_type = lookup_struct_elt_type (
+                               current_type, $2.ptr, 0);
+                           }
+                       }
+       ;
+
+exp    :       field_exp COMPLETE
+                       { struct stoken s;
+                         mark_struct_expression ();
+                         write_exp_elt_opcode (STRUCTOP_STRUCT);
+                         s.ptr = "";
+                         s.length = 0;
+                         write_exp_string (s);
+                         write_exp_elt_opcode (STRUCTOP_STRUCT); }
+       ;
+
 exp    :       exp '['
                        /* We need to save the current_type value.  */
-                       { char *arrayname; 
+                       { char *arrayname;
                          int arrayfieldindex;
                          arrayfieldindex = is_pascal_string_type (
                                current_type, NULL, NULL,
-                               NULL, NULL, &arrayname); 
-                         if (arrayfieldindex) 
+                               NULL, NULL, &arrayname);
+                         if (arrayfieldindex)
                            {
                              struct stoken stringsval;
                              stringsval.ptr = alloca (strlen (arrayname) + 1);
                              stringsval.length = strlen (arrayname);
                              strcpy (stringsval.ptr, arrayname);
                              current_type = TYPE_FIELD_TYPE (current_type,
-                               arrayfieldindex - 1); 
+                               arrayfieldindex - 1);
                              write_exp_elt_opcode (STRUCTOP_STRUCT);
-                             write_exp_string (stringsval); 
+                             write_exp_string (stringsval);
                              write_exp_elt_opcode (STRUCTOP_STRUCT);
                            }
                          push_current_type ();  }
@@ -333,7 +372,7 @@ exp :       exp '('
                arglist ')'     %prec ARROW
                        { write_exp_elt_opcode (OP_FUNCALL);
                          write_exp_elt_longcst ((LONGEST) end_arglist ());
-                         write_exp_elt_opcode (OP_FUNCALL); 
+                         write_exp_elt_opcode (OP_FUNCALL);
                          pop_current_type ();
                          if (current_type)
                            current_type = TYPE_TARGET_TYPE (current_type);
@@ -358,7 +397,7 @@ exp :       type '(' exp ')' %prec UNARY
                            }
                          write_exp_elt_opcode (UNOP_CAST);
                          write_exp_elt_type ($1);
-                         write_exp_elt_opcode (UNOP_CAST); 
+                         write_exp_elt_opcode (UNOP_CAST);
                          current_type = $1; }
        ;
 
@@ -375,9 +414,9 @@ exp :       exp '*' exp
 exp    :       exp '/' {
                          if (current_type && is_integral_type (current_type))
                            leftdiv_is_integer = 1;
-                       } 
+                       }
                exp
-                       { 
+                       {
                          if (leftdiv_is_integer && current_type
                              && is_integral_type (current_type))
                            {
@@ -388,7 +427,7 @@ exp :       exp '/' {
                              leftdiv_is_integer = 0;
                            }
 
-                         write_exp_elt_opcode (BINOP_DIV); 
+                         write_exp_elt_opcode (BINOP_DIV);
                        }
        ;
 
@@ -417,37 +456,37 @@ exp       :       exp RSH exp
        ;
 
 exp    :       exp '=' exp
-                       { write_exp_elt_opcode (BINOP_EQUAL); 
+                       { write_exp_elt_opcode (BINOP_EQUAL);
                          current_type = parse_type->builtin_bool;
                        }
        ;
 
 exp    :       exp NOTEQUAL exp
-                       { write_exp_elt_opcode (BINOP_NOTEQUAL); 
+                       { write_exp_elt_opcode (BINOP_NOTEQUAL);
                          current_type = parse_type->builtin_bool;
                        }
        ;
 
 exp    :       exp LEQ exp
-                       { write_exp_elt_opcode (BINOP_LEQ); 
+                       { write_exp_elt_opcode (BINOP_LEQ);
                          current_type = parse_type->builtin_bool;
                        }
        ;
 
 exp    :       exp GEQ exp
-                       { write_exp_elt_opcode (BINOP_GEQ); 
+                       { write_exp_elt_opcode (BINOP_GEQ);
                          current_type = parse_type->builtin_bool;
                        }
        ;
 
 exp    :       exp '<' exp
-                       { write_exp_elt_opcode (BINOP_LESS); 
+                       { write_exp_elt_opcode (BINOP_LESS);
                          current_type = parse_type->builtin_bool;
                        }
        ;
 
 exp    :       exp '>' exp
-                       { write_exp_elt_opcode (BINOP_GTR); 
+                       { write_exp_elt_opcode (BINOP_GTR);
                          current_type = parse_type->builtin_bool;
                        }
        ;
@@ -516,8 +555,19 @@ exp        :       variable
        ;
 
 exp    :       VARIABLE
-                       /* Already written by write_dollar_variable.  */
-       ;
+                       /* Already written by write_dollar_variable.
+                          Handle current_type.  */
+                       {  if (intvar) {
+                            struct value * val, * mark;
+
+                            mark = value_mark ();
+                            val = value_of_internalvar (parse_gdbarch,
+                                                        intvar);
+                            current_type = value_type (val);
+                            value_release_to_mark (mark);
+                          }
+                       }
+       ;
 
 exp    :       SIZEOF '(' type ')'     %prec UNARY
                        { write_exp_elt_opcode (OP_LONG);
@@ -529,7 +579,7 @@ exp :       SIZEOF '(' type ')'     %prec UNARY
 
 exp    :       SIZEOF  '(' exp ')'      %prec UNARY
                        { write_exp_elt_opcode (UNOP_SIZEOF); }
-       
+
 exp    :       STRING
                        { /* C strings are converted into array constants with
                             an explicit null byte added at the end.  Thus
@@ -556,13 +606,13 @@ exp       :       STRING
 
 /* Object pascal  */
 exp    :       THIS
-                       { 
+                       {
                          struct value * this_val;
                          struct type * this_type;
                          write_exp_elt_opcode (OP_THIS);
-                         write_exp_elt_opcode (OP_THIS); 
+                         write_exp_elt_opcode (OP_THIS);
                          /* We need type of this.  */
-                         this_val = value_of_this (0); 
+                         this_val = value_of_this (0);
                          if (this_val)
                            this_type = value_type (this_val);
                          else
@@ -575,7 +625,7 @@ exp :       THIS
                                  write_exp_elt_opcode (UNOP_IND);
                                }
                            }
-               
+
                          current_type = this_type;
                        }
        ;
@@ -710,7 +760,7 @@ variable:   name_not_typename
                              write_exp_string ($1.stoken);
                              write_exp_elt_opcode (STRUCTOP_PTR);
                              /* We need type of this.  */
-                             this_val = value_of_this (0); 
+                             this_val = value_of_this (0);
                              if (this_val)
                                this_type = value_type (this_val);
                              else
@@ -720,7 +770,7 @@ variable:   name_not_typename
                                  this_type,
                                  copy_name ($1.stoken), 0);
                              else
-                               current_type = NULL; 
+                               current_type = NULL;
                            }
                          else
                            {
@@ -909,7 +959,7 @@ parse_number (char *p, int len, int parsed_float, YYSTYPE *putithere)
         FIXME: This check is wrong; for example it doesn't find overflow
         on 0x123456789 when LONGEST is 32 bits.  */
       if (c != 'l' && c != 'u' && n != 0)
-       {       
+       {
          if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
            error ("Numeric constant too large.");
        }
@@ -998,7 +1048,7 @@ push_current_type (void)
   tpnew->next = tp_top;
   tpnew->stored = current_type;
   current_type = NULL;
-  tp_top = tpnew; 
+  tp_top = tpnew;
 }
 
 static void
@@ -1060,11 +1110,16 @@ static char * uptok (tokstart, namelen)
   uptokstart[namelen]='\0';
   return uptokstart;
 }
-/* Read one token, getting characters through lexptr.  */
 
+/* This is set if the previously-returned token was a structure
+   operator  '.'.  This is used only when parsing to
+   do field name completion.  */
+static int last_was_structop;
+
+/* Read one token, getting characters through lexptr.  */
 
 static int
-yylex ()
+yylex (void)
 {
   int c;
   int namelen;
@@ -1075,7 +1130,9 @@ yylex ()
   int explen, tempbufindex;
   static char *tempbuf;
   static int tempbufsize;
+  int saw_structop = last_was_structop;
 
+  last_was_structop = 0;
  retry:
 
   prev_lexptr = lexptr;
@@ -1111,7 +1168,10 @@ yylex ()
   switch (c = *tokstart)
     {
     case 0:
-      return 0;
+      if (saw_structop && search_field)
+       return COMPLETE;
+      else
+       return 0;
 
     case ' ':
     case '\t':
@@ -1172,7 +1232,12 @@ yylex ()
     case '.':
       /* Might be a floating point number.  */
       if (lexptr[1] < '0' || lexptr[1] > '9')
-       goto symbol;            /* Nope, must be a symbol.  */
+       {
+         if (in_parse_field)
+           last_was_structop = 1;
+         goto symbol;          /* Nope, must be a symbol.  */
+       }
+
       /* FALL THRU into number case.  */
 
     case '0':
@@ -1430,11 +1495,17 @@ yylex ()
 
   if (*tokstart == '$')
     {
+      char c;
       /* $ is the normal prefix for pascal hexadecimal values
         but this conflicts with the GDB use for debugger variables
         so in expression to enter hexadecimal values
         we still need to use C syntax with 0xff  */
       write_dollar_variable (yylval.sval);
+      c = tokstart[namelen];
+      tokstart[namelen] = 0;
+      intvar = lookup_only_internalvar (++tokstart);
+      --tokstart;
+      tokstart[namelen] = c;
       free (uptokstart);
       return VARIABLE;
     }
@@ -1454,7 +1525,7 @@ yylex ()
 
     if (search_field && current_type)
       is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL);
-    if (is_a_field)
+    if (is_a_field || in_parse_field)
       sym = NULL;
     else
       sym = lookup_symbol (tmp, expression_context_block,
@@ -1469,7 +1540,7 @@ yylex ()
          }
        if (search_field && current_type)
         is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL);
-       if (is_a_field)
+       if (is_a_field || in_parse_field)
         sym = NULL;
        else
         sym = lookup_symbol (tmp, expression_context_block,
@@ -1497,7 +1568,7 @@ yylex ()
           }
        if (search_field && current_type)
         is_a_field = (lookup_struct_elt_type (current_type, tmp, 1) != NULL);
-       if (is_a_field)
+       if (is_a_field || in_parse_field)
         sym = NULL;
        else
         sym = lookup_symbol (tmp, expression_context_block,
@@ -1521,10 +1592,10 @@ yylex ()
        tempbuf = (char *) realloc (tempbuf, namelen + 1);
        strncpy (tempbuf, tokstart, namelen); tempbuf [namelen] = 0;
        yylval.sval.ptr = tempbuf;
-       yylval.sval.length = namelen; 
+       yylval.sval.length = namelen;
        free (uptokstart);
        return FIELDNAME;
-      } 
+      }
     /* Call lookup_symtab, not lookup_partial_symtab, in case there are
        no psymtabs (coff, xcoff, or some future change to blow away the
        psymtabs once once symbols are read).  */
This page took 0.03511 seconds and 4 git commands to generate.