Handle "p S::method()::static_var" in the C++ parser
[external/binutils.git] / gdb / expprint.c
1 /* Print in infix form a struct expression.
2
3    Copyright (C) 1986-2017 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
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 3 of the License, or
10    (at your option) any later version.
11
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.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include "defs.h"
21 #include "symtab.h"
22 #include "gdbtypes.h"
23 #include "expression.h"
24 #include "value.h"
25 #include "language.h"
26 #include "parser-defs.h"
27 #include "user-regs.h"          /* For user_reg_map_regnum_to_name.  */
28 #include "target.h"
29 #include "block.h"
30 #include "objfiles.h"
31 #include "valprint.h"
32
33 #include <ctype.h>
34
35 void
36 print_expression (struct expression *exp, struct ui_file *stream)
37 {
38   int pc = 0;
39
40   print_subexp (exp, &pc, stream, PREC_NULL);
41 }
42
43 /* Print the subexpression of EXP that starts in position POS, on STREAM.
44    PREC is the precedence of the surrounding operator;
45    if the precedence of the main operator of this subexpression is less,
46    parentheses are needed here.  */
47
48 void
49 print_subexp (struct expression *exp, int *pos,
50               struct ui_file *stream, enum precedence prec)
51 {
52   exp->language_defn->la_exp_desc->print_subexp (exp, pos, stream, prec);
53 }
54
55 /* Standard implementation of print_subexp for use in language_defn
56    vectors.  */
57 void
58 print_subexp_standard (struct expression *exp, int *pos,
59                        struct ui_file *stream, enum precedence prec)
60 {
61   unsigned tem;
62   const struct op_print *op_print_tab;
63   int pc;
64   unsigned nargs;
65   const char *op_str;
66   int assign_modify = 0;
67   enum exp_opcode opcode;
68   enum precedence myprec = PREC_NULL;
69   /* Set to 1 for a right-associative operator.  */
70   int assoc = 0;
71   struct value *val;
72   char *tempstr = NULL;
73
74   op_print_tab = exp->language_defn->la_op_print_tab;
75   pc = (*pos)++;
76   opcode = exp->elts[pc].opcode;
77   switch (opcode)
78     {
79       /* Common ops */
80
81     case OP_TYPE:
82       (*pos) += 2;
83       type_print (exp->elts[pc + 1].type, "", stream, 0);
84       return;
85
86     case OP_SCOPE:
87       myprec = PREC_PREFIX;
88       assoc = 0;
89       fputs_filtered (type_name_no_tag (exp->elts[pc + 1].type), stream);
90       fputs_filtered ("::", stream);
91       nargs = longest_to_int (exp->elts[pc + 2].longconst);
92       (*pos) += 4 + BYTES_TO_EXP_ELEM (nargs + 1);
93       fputs_filtered (&exp->elts[pc + 3].string, stream);
94       return;
95
96     case OP_LONG:
97       {
98         struct value_print_options opts;
99
100         get_no_prettyformat_print_options (&opts);
101         (*pos) += 3;
102         value_print (value_from_longest (exp->elts[pc + 1].type,
103                                          exp->elts[pc + 2].longconst),
104                      stream, &opts);
105       }
106       return;
107
108     case OP_DOUBLE:
109       {
110         struct value_print_options opts;
111
112         get_no_prettyformat_print_options (&opts);
113         (*pos) += 3;
114         value_print (value_from_double (exp->elts[pc + 1].type,
115                                         exp->elts[pc + 2].doubleconst),
116                      stream, &opts);
117       }
118       return;
119
120     case OP_VAR_VALUE:
121       {
122         const struct block *b;
123
124         (*pos) += 3;
125         b = exp->elts[pc + 1].block;
126         if (b != NULL
127             && BLOCK_FUNCTION (b) != NULL
128             && SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)) != NULL)
129           {
130             fputs_filtered (SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)), stream);
131             fputs_filtered ("::", stream);
132           }
133         fputs_filtered (SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol), stream);
134       }
135       return;
136
137     case OP_VAR_MSYM_VALUE:
138       {
139         (*pos) += 3;
140         fputs_filtered (MSYMBOL_PRINT_NAME (exp->elts[pc + 2].msymbol), stream);
141       }
142       return;
143
144     case OP_FUNC_STATIC_VAR:
145       {
146         tem = longest_to_int (exp->elts[pc + 1].longconst);
147         (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
148         fputs_filtered (&exp->elts[pc + 1].string, stream);
149       }
150       return;
151
152     case OP_VAR_ENTRY_VALUE:
153       {
154         (*pos) += 2;
155         fprintf_filtered (stream, "%s@entry",
156                           SYMBOL_PRINT_NAME (exp->elts[pc + 1].symbol));
157       }
158       return;
159
160     case OP_LAST:
161       (*pos) += 2;
162       fprintf_filtered (stream, "$%d",
163                         longest_to_int (exp->elts[pc + 1].longconst));
164       return;
165
166     case OP_REGISTER:
167       {
168         const char *name = &exp->elts[pc + 2].string;
169
170         (*pos) += 3 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
171         fprintf_filtered (stream, "$%s", name);
172         return;
173       }
174
175     case OP_BOOL:
176       (*pos) += 2;
177       fprintf_filtered (stream, "%s",
178                         longest_to_int (exp->elts[pc + 1].longconst)
179                         ? "TRUE" : "FALSE");
180       return;
181
182     case OP_INTERNALVAR:
183       (*pos) += 2;
184       fprintf_filtered (stream, "$%s",
185                         internalvar_name (exp->elts[pc + 1].internalvar));
186       return;
187
188     case OP_FUNCALL:
189       (*pos) += 2;
190       nargs = longest_to_int (exp->elts[pc + 1].longconst);
191       print_subexp (exp, pos, stream, PREC_SUFFIX);
192       fputs_filtered (" (", stream);
193       for (tem = 0; tem < nargs; tem++)
194         {
195           if (tem != 0)
196             fputs_filtered (", ", stream);
197           print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
198         }
199       fputs_filtered (")", stream);
200       return;
201
202     case OP_NAME:
203       nargs = longest_to_int (exp->elts[pc + 1].longconst);
204       (*pos) += 3 + BYTES_TO_EXP_ELEM (nargs + 1);
205       fputs_filtered (&exp->elts[pc + 2].string, stream);
206       return;
207
208     case OP_STRING:
209       {
210         struct value_print_options opts;
211
212         nargs = longest_to_int (exp->elts[pc + 1].longconst);
213         (*pos) += 3 + BYTES_TO_EXP_ELEM (nargs + 1);
214         /* LA_PRINT_STRING will print using the current repeat count threshold.
215            If necessary, we can temporarily set it to zero, or pass it as an
216            additional parameter to LA_PRINT_STRING.  -fnf */
217         get_user_print_options (&opts);
218         LA_PRINT_STRING (stream, builtin_type (exp->gdbarch)->builtin_char,
219                          (gdb_byte *) &exp->elts[pc + 2].string, nargs,
220                          NULL, 0, &opts);
221       }
222       return;
223
224     case OP_OBJC_NSSTRING:      /* Objective-C Foundation Class
225                                    NSString constant.  */
226       {
227         struct value_print_options opts;
228
229         nargs = longest_to_int (exp->elts[pc + 1].longconst);
230         (*pos) += 3 + BYTES_TO_EXP_ELEM (nargs + 1);
231         fputs_filtered ("@\"", stream);
232         get_user_print_options (&opts);
233         LA_PRINT_STRING (stream, builtin_type (exp->gdbarch)->builtin_char,
234                          (gdb_byte *) &exp->elts[pc + 2].string, nargs,
235                          NULL, 0, &opts);
236         fputs_filtered ("\"", stream);
237       }
238       return;
239
240     case OP_OBJC_MSGCALL:
241       {                 /* Objective C message (method) call.  */
242         char *selector;
243
244         (*pos) += 3;
245         nargs = longest_to_int (exp->elts[pc + 2].longconst);
246         fprintf_unfiltered (stream, "[");
247         print_subexp (exp, pos, stream, PREC_SUFFIX);
248         if (0 == target_read_string (exp->elts[pc + 1].longconst,
249                                      &selector, 1024, NULL))
250           {
251             error (_("bad selector"));
252             return;
253           }
254         if (nargs)
255           {
256             char *s, *nextS;
257
258             s = (char *) alloca (strlen (selector) + 1);
259             strcpy (s, selector);
260             for (tem = 0; tem < nargs; tem++)
261               {
262                 nextS = strchr (s, ':');
263                 gdb_assert (nextS);     /* Make sure we found ':'.  */
264                 *nextS = '\0';
265                 fprintf_unfiltered (stream, " %s: ", s);
266                 s = nextS + 1;
267                 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
268               }
269           }
270         else
271           {
272             fprintf_unfiltered (stream, " %s", selector);
273           }
274         fprintf_unfiltered (stream, "]");
275         /* "selector" was malloc'd by target_read_string.  Free it.  */
276         xfree (selector);
277         return;
278       }
279
280     case OP_ARRAY:
281       (*pos) += 3;
282       nargs = longest_to_int (exp->elts[pc + 2].longconst);
283       nargs -= longest_to_int (exp->elts[pc + 1].longconst);
284       nargs++;
285       tem = 0;
286       if (exp->elts[pc + 4].opcode == OP_LONG
287           && exp->elts[pc + 5].type
288              == builtin_type (exp->gdbarch)->builtin_char
289           && exp->language_defn->la_language == language_c)
290         {
291           /* Attempt to print C character arrays using string syntax.
292              Walk through the args, picking up one character from each
293              of the OP_LONG expression elements.  If any array element
294              does not match our expection of what we should find for
295              a simple string, revert back to array printing.  Note that
296              the last expression element is an explicit null terminator
297              byte, which doesn't get printed.  */
298           tempstr = (char *) alloca (nargs);
299           pc += 4;
300           while (tem < nargs)
301             {
302               if (exp->elts[pc].opcode != OP_LONG
303                   || exp->elts[pc + 1].type
304                      != builtin_type (exp->gdbarch)->builtin_char)
305                 {
306                   /* Not a simple array of char, use regular array
307                      printing.  */
308                   tem = 0;
309                   break;
310                 }
311               else
312                 {
313                   tempstr[tem++] =
314                     longest_to_int (exp->elts[pc + 2].longconst);
315                   pc += 4;
316                 }
317             }
318         }
319       if (tem > 0)
320         {
321           struct value_print_options opts;
322
323           get_user_print_options (&opts);
324           LA_PRINT_STRING (stream, builtin_type (exp->gdbarch)->builtin_char,
325                            (gdb_byte *) tempstr, nargs - 1, NULL, 0, &opts);
326           (*pos) = pc;
327         }
328       else
329         {
330           fputs_filtered (" {", stream);
331           for (tem = 0; tem < nargs; tem++)
332             {
333               if (tem != 0)
334                 {
335                   fputs_filtered (", ", stream);
336                 }
337               print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
338             }
339           fputs_filtered ("}", stream);
340         }
341       return;
342
343     case TERNOP_COND:
344       if ((int) prec > (int) PREC_COMMA)
345         fputs_filtered ("(", stream);
346       /* Print the subexpressions, forcing parentheses
347          around any binary operations within them.
348          This is more parentheses than are strictly necessary,
349          but it looks clearer.  */
350       print_subexp (exp, pos, stream, PREC_HYPER);
351       fputs_filtered (" ? ", stream);
352       print_subexp (exp, pos, stream, PREC_HYPER);
353       fputs_filtered (" : ", stream);
354       print_subexp (exp, pos, stream, PREC_HYPER);
355       if ((int) prec > (int) PREC_COMMA)
356         fputs_filtered (")", stream);
357       return;
358
359     case TERNOP_SLICE:
360       print_subexp (exp, pos, stream, PREC_SUFFIX);
361       fputs_filtered ("(", stream);
362       print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
363       fputs_filtered (opcode == TERNOP_SLICE ? " : " : " UP ", stream);
364       print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
365       fputs_filtered (")", stream);
366       return;
367
368     case STRUCTOP_STRUCT:
369       tem = longest_to_int (exp->elts[pc + 1].longconst);
370       (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
371       print_subexp (exp, pos, stream, PREC_SUFFIX);
372       fputs_filtered (".", stream);
373       fputs_filtered (&exp->elts[pc + 2].string, stream);
374       return;
375
376       /* Will not occur for Modula-2.  */
377     case STRUCTOP_PTR:
378       tem = longest_to_int (exp->elts[pc + 1].longconst);
379       (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
380       print_subexp (exp, pos, stream, PREC_SUFFIX);
381       fputs_filtered ("->", stream);
382       fputs_filtered (&exp->elts[pc + 2].string, stream);
383       return;
384
385     case STRUCTOP_MEMBER:
386       print_subexp (exp, pos, stream, PREC_SUFFIX);
387       fputs_filtered (".*", stream);
388       print_subexp (exp, pos, stream, PREC_SUFFIX);
389       return;
390
391     case STRUCTOP_MPTR:
392       print_subexp (exp, pos, stream, PREC_SUFFIX);
393       fputs_filtered ("->*", stream);
394       print_subexp (exp, pos, stream, PREC_SUFFIX);
395       return;
396
397     case BINOP_SUBSCRIPT:
398       print_subexp (exp, pos, stream, PREC_SUFFIX);
399       fputs_filtered ("[", stream);
400       print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
401       fputs_filtered ("]", stream);
402       return;
403
404     case UNOP_POSTINCREMENT:
405       print_subexp (exp, pos, stream, PREC_SUFFIX);
406       fputs_filtered ("++", stream);
407       return;
408
409     case UNOP_POSTDECREMENT:
410       print_subexp (exp, pos, stream, PREC_SUFFIX);
411       fputs_filtered ("--", stream);
412       return;
413
414     case UNOP_CAST:
415       (*pos) += 2;
416       if ((int) prec > (int) PREC_PREFIX)
417         fputs_filtered ("(", stream);
418       fputs_filtered ("(", stream);
419       type_print (exp->elts[pc + 1].type, "", stream, 0);
420       fputs_filtered (") ", stream);
421       print_subexp (exp, pos, stream, PREC_PREFIX);
422       if ((int) prec > (int) PREC_PREFIX)
423         fputs_filtered (")", stream);
424       return;
425
426     case UNOP_CAST_TYPE:
427       if ((int) prec > (int) PREC_PREFIX)
428         fputs_filtered ("(", stream);
429       fputs_filtered ("(", stream);
430       print_subexp (exp, pos, stream, PREC_PREFIX);
431       fputs_filtered (") ", stream);
432       print_subexp (exp, pos, stream, PREC_PREFIX);
433       if ((int) prec > (int) PREC_PREFIX)
434         fputs_filtered (")", stream);
435       return;
436
437     case UNOP_DYNAMIC_CAST:
438     case UNOP_REINTERPRET_CAST:
439       fputs_filtered (opcode == UNOP_DYNAMIC_CAST ? "dynamic_cast"
440                       : "reinterpret_cast", stream);
441       fputs_filtered ("<", stream);
442       print_subexp (exp, pos, stream, PREC_PREFIX);
443       fputs_filtered ("> (", stream);
444       print_subexp (exp, pos, stream, PREC_PREFIX);
445       fputs_filtered (")", stream);
446       return;
447
448     case UNOP_MEMVAL:
449       (*pos) += 2;
450       if ((int) prec > (int) PREC_PREFIX)
451         fputs_filtered ("(", stream);
452       if (TYPE_CODE (exp->elts[pc + 1].type) == TYPE_CODE_FUNC
453           && exp->elts[pc + 3].opcode == OP_LONG)
454         {
455           struct value_print_options opts;
456
457           /* We have a minimal symbol fn, probably.  It's encoded
458              as a UNOP_MEMVAL (function-type) of an OP_LONG (int, address).
459              Swallow the OP_LONG (including both its opcodes); ignore
460              its type; print the value in the type of the MEMVAL.  */
461           (*pos) += 4;
462           val = value_at_lazy (exp->elts[pc + 1].type,
463                                (CORE_ADDR) exp->elts[pc + 5].longconst);
464           get_no_prettyformat_print_options (&opts);
465           value_print (val, stream, &opts);
466         }
467       else
468         {
469           fputs_filtered ("{", stream);
470           type_print (exp->elts[pc + 1].type, "", stream, 0);
471           fputs_filtered ("} ", stream);
472           print_subexp (exp, pos, stream, PREC_PREFIX);
473         }
474       if ((int) prec > (int) PREC_PREFIX)
475         fputs_filtered (")", stream);
476       return;
477
478     case UNOP_MEMVAL_TYPE:
479       if ((int) prec > (int) PREC_PREFIX)
480         fputs_filtered ("(", stream);
481       fputs_filtered ("{", stream);
482       print_subexp (exp, pos, stream, PREC_PREFIX);
483       fputs_filtered ("} ", stream);
484       print_subexp (exp, pos, stream, PREC_PREFIX);
485       if ((int) prec > (int) PREC_PREFIX)
486         fputs_filtered (")", stream);
487       return;
488
489     case BINOP_ASSIGN_MODIFY:
490       opcode = exp->elts[pc + 1].opcode;
491       (*pos) += 2;
492       myprec = PREC_ASSIGN;
493       assoc = 1;
494       assign_modify = 1;
495       op_str = "???";
496       for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
497         if (op_print_tab[tem].opcode == opcode)
498           {
499             op_str = op_print_tab[tem].string;
500             break;
501           }
502       if (op_print_tab[tem].opcode != opcode)
503         /* Not found; don't try to keep going because we don't know how
504            to interpret further elements.  */
505         error (_("Invalid expression"));
506       break;
507
508       /* C++ ops */
509
510     case OP_THIS:
511       ++(*pos);
512       if (exp->language_defn->la_name_of_this)
513         fputs_filtered (exp->language_defn->la_name_of_this, stream);
514       else
515         fprintf_filtered (stream, _("<language %s has no 'this'>"),
516                           exp->language_defn->la_name);
517       return;
518
519       /* Modula-2 ops */
520
521     case MULTI_SUBSCRIPT:
522       (*pos) += 2;
523       nargs = longest_to_int (exp->elts[pc + 1].longconst);
524       print_subexp (exp, pos, stream, PREC_SUFFIX);
525       fprintf_unfiltered (stream, " [");
526       for (tem = 0; tem < nargs; tem++)
527         {
528           if (tem != 0)
529             fprintf_unfiltered (stream, ", ");
530           print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
531         }
532       fprintf_unfiltered (stream, "]");
533       return;
534
535     case BINOP_VAL:
536       (*pos) += 2;
537       fprintf_unfiltered (stream, "VAL(");
538       type_print (exp->elts[pc + 1].type, "", stream, 0);
539       fprintf_unfiltered (stream, ",");
540       print_subexp (exp, pos, stream, PREC_PREFIX);
541       fprintf_unfiltered (stream, ")");
542       return;
543
544     case TYPE_INSTANCE:
545       {
546         LONGEST count = exp->elts[pc + 1].longconst;
547
548         /* The COUNT.  */
549         (*pos)++;
550         fputs_unfiltered ("TypesInstance(", stream);
551         while (count-- > 0)
552           {
553             type_print (exp->elts[(*pos)++].type, "", stream, 0);
554             if (count > 0)
555               fputs_unfiltered (",", stream);
556           }
557         fputs_unfiltered (",", stream);
558         /* Ending COUNT and ending TYPE_INSTANCE.  */
559         (*pos) += 2;
560         print_subexp (exp, pos, stream, PREC_PREFIX);
561         fputs_unfiltered (")", stream);
562         return;
563       }
564
565     case OP_RANGE:
566       {
567         enum range_type range_type;
568
569         range_type = (enum range_type)
570           longest_to_int (exp->elts[pc + 1].longconst);
571         *pos += 2;
572
573         fputs_filtered ("RANGE(", stream);
574         if (range_type == HIGH_BOUND_DEFAULT
575             || range_type == NONE_BOUND_DEFAULT)
576           print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
577         fputs_filtered ("..", stream);
578         if (range_type == LOW_BOUND_DEFAULT
579             || range_type == NONE_BOUND_DEFAULT)
580           print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
581         fputs_filtered (")", stream);
582         return;
583       }
584
585       /* Default ops */
586
587     default:
588       op_str = "???";
589       for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
590         if (op_print_tab[tem].opcode == opcode)
591           {
592             op_str = op_print_tab[tem].string;
593             myprec = op_print_tab[tem].precedence;
594             assoc = op_print_tab[tem].right_assoc;
595             break;
596           }
597       if (op_print_tab[tem].opcode != opcode)
598         /* Not found; don't try to keep going because we don't know how
599            to interpret further elements.  For example, this happens
600            if opcode is OP_TYPE.  */
601         error (_("Invalid expression"));
602     }
603
604   /* Note that PREC_BUILTIN will always emit parentheses.  */
605   if ((int) myprec < (int) prec)
606     fputs_filtered ("(", stream);
607   if ((int) opcode > (int) BINOP_END)
608     {
609       if (assoc)
610         {
611           /* Unary postfix operator.  */
612           print_subexp (exp, pos, stream, PREC_SUFFIX);
613           fputs_filtered (op_str, stream);
614         }
615       else
616         {
617           /* Unary prefix operator.  */
618           fputs_filtered (op_str, stream);
619           if (myprec == PREC_BUILTIN_FUNCTION)
620             fputs_filtered ("(", stream);
621           print_subexp (exp, pos, stream, PREC_PREFIX);
622           if (myprec == PREC_BUILTIN_FUNCTION)
623             fputs_filtered (")", stream);
624         }
625     }
626   else
627     {
628       /* Binary operator.  */
629       /* Print left operand.
630          If operator is right-associative,
631          increment precedence for this operand.  */
632       print_subexp (exp, pos, stream,
633                     (enum precedence) ((int) myprec + assoc));
634       /* Print the operator itself.  */
635       if (assign_modify)
636         fprintf_filtered (stream, " %s= ", op_str);
637       else if (op_str[0] == ',')
638         fprintf_filtered (stream, "%s ", op_str);
639       else
640         fprintf_filtered (stream, " %s ", op_str);
641       /* Print right operand.
642          If operator is left-associative,
643          increment precedence for this operand.  */
644       print_subexp (exp, pos, stream,
645                     (enum precedence) ((int) myprec + !assoc));
646     }
647
648   if ((int) myprec < (int) prec)
649     fputs_filtered (")", stream);
650 }
651
652 /* Return the operator corresponding to opcode OP as
653    a string.   NULL indicates that the opcode was not found in the
654    current language table.  */
655 const char *
656 op_string (enum exp_opcode op)
657 {
658   int tem;
659   const struct op_print *op_print_tab;
660
661   op_print_tab = current_language->la_op_print_tab;
662   for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
663     if (op_print_tab[tem].opcode == op)
664       return op_print_tab[tem].string;
665   return NULL;
666 }
667
668 /* Support for dumping the raw data from expressions in a human readable
669    form.  */
670
671 static int dump_subexp_body (struct expression *exp, struct ui_file *, int);
672
673 /* Name for OPCODE, when it appears in expression EXP.  */
674
675 const char *
676 op_name (struct expression *exp, enum exp_opcode opcode)
677 {
678   return exp->language_defn->la_exp_desc->op_name (opcode);
679 }
680
681 /* Default name for the standard operator OPCODE (i.e., one defined in
682    the definition of enum exp_opcode).  */
683
684 const char *
685 op_name_standard (enum exp_opcode opcode)
686 {
687   switch (opcode)
688     {
689     default:
690       {
691         static char buf[30];
692
693         xsnprintf (buf, sizeof (buf), "<unknown %d>", opcode);
694         return buf;
695       }
696 #define OP(name)        \
697     case name:          \
698       return #name ;
699 #include "std-operator.def"
700 #undef OP
701     }
702 }
703
704 /* Print a raw dump of expression EXP to STREAM.
705    NOTE, if non-NULL, is printed as extra explanatory text.  */
706
707 void
708 dump_raw_expression (struct expression *exp, struct ui_file *stream,
709                      const char *note)
710 {
711   int elt;
712   char *eltscan;
713   int eltsize;
714
715   fprintf_filtered (stream, "Dump of expression @ ");
716   gdb_print_host_address (exp, stream);
717   if (note)
718     fprintf_filtered (stream, ", %s:", note);
719   fprintf_filtered (stream, "\n\tLanguage %s, %d elements, %ld bytes each.\n",
720                     exp->language_defn->la_name, exp->nelts,
721                     (long) sizeof (union exp_element));
722   fprintf_filtered (stream, "\t%5s  %20s  %16s  %s\n", "Index", "Opcode",
723                     "Hex Value", "String Value");
724   for (elt = 0; elt < exp->nelts; elt++)
725     {
726       fprintf_filtered (stream, "\t%5d  ", elt);
727
728       const char *opcode_name = op_name (exp, exp->elts[elt].opcode);
729       fprintf_filtered (stream, "%20s  ", opcode_name);
730
731       print_longest (stream, 'd', 0, exp->elts[elt].longconst);
732       fprintf_filtered (stream, "  ");
733
734       for (eltscan = (char *) &exp->elts[elt],
735            eltsize = sizeof (union exp_element);
736            eltsize-- > 0;
737            eltscan++)
738         {
739           fprintf_filtered (stream, "%c",
740                             isprint (*eltscan) ? (*eltscan & 0xFF) : '.');
741         }
742       fprintf_filtered (stream, "\n");
743     }
744 }
745
746 /* Dump the subexpression of prefix expression EXP whose operator is at
747    position ELT onto STREAM.  Returns the position of the next 
748    subexpression in EXP.  */
749
750 int
751 dump_subexp (struct expression *exp, struct ui_file *stream, int elt)
752 {
753   static int indent = 0;
754   int i;
755
756   fprintf_filtered (stream, "\n");
757   fprintf_filtered (stream, "\t%5d  ", elt);
758
759   for (i = 1; i <= indent; i++)
760     fprintf_filtered (stream, " ");
761   indent += 2;
762
763   fprintf_filtered (stream, "%-20s  ", op_name (exp, exp->elts[elt].opcode));
764
765   elt = dump_subexp_body (exp, stream, elt);
766
767   indent -= 2;
768
769   return elt;
770 }
771
772 /* Dump the operands of prefix expression EXP whose opcode is at
773    position ELT onto STREAM.  Returns the position of the next 
774    subexpression in EXP.  */
775
776 static int
777 dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
778 {
779   return exp->language_defn->la_exp_desc->dump_subexp_body (exp, stream, elt);
780 }
781
782 /* Default value for subexp_body in exp_descriptor vector.  */
783
784 int
785 dump_subexp_body_standard (struct expression *exp, 
786                            struct ui_file *stream, int elt)
787 {
788   int opcode = exp->elts[elt++].opcode;
789
790   switch (opcode)
791     {
792     case TERNOP_COND:
793     case TERNOP_SLICE:
794       elt = dump_subexp (exp, stream, elt);
795       /* FALL THROUGH */
796     case BINOP_ADD:
797     case BINOP_SUB:
798     case BINOP_MUL:
799     case BINOP_DIV:
800     case BINOP_REM:
801     case BINOP_MOD:
802     case BINOP_LSH:
803     case BINOP_RSH:
804     case BINOP_LOGICAL_AND:
805     case BINOP_LOGICAL_OR:
806     case BINOP_BITWISE_AND:
807     case BINOP_BITWISE_IOR:
808     case BINOP_BITWISE_XOR:
809     case BINOP_EQUAL:
810     case BINOP_NOTEQUAL:
811     case BINOP_LESS:
812     case BINOP_GTR:
813     case BINOP_LEQ:
814     case BINOP_GEQ:
815     case BINOP_REPEAT:
816     case BINOP_ASSIGN:
817     case BINOP_COMMA:
818     case BINOP_SUBSCRIPT:
819     case BINOP_EXP:
820     case BINOP_MIN:
821     case BINOP_MAX:
822     case BINOP_INTDIV:
823     case BINOP_ASSIGN_MODIFY:
824     case BINOP_VAL:
825     case BINOP_CONCAT:
826     case BINOP_END:
827     case STRUCTOP_MEMBER:
828     case STRUCTOP_MPTR:
829       elt = dump_subexp (exp, stream, elt);
830       /* FALL THROUGH */
831     case UNOP_NEG:
832     case UNOP_LOGICAL_NOT:
833     case UNOP_COMPLEMENT:
834     case UNOP_IND:
835     case UNOP_ADDR:
836     case UNOP_PREINCREMENT:
837     case UNOP_POSTINCREMENT:
838     case UNOP_PREDECREMENT:
839     case UNOP_POSTDECREMENT:
840     case UNOP_SIZEOF:
841     case UNOP_PLUS:
842     case UNOP_CAP:
843     case UNOP_CHR:
844     case UNOP_ORD:
845     case UNOP_ABS:
846     case UNOP_FLOAT:
847     case UNOP_HIGH:
848     case UNOP_MAX:
849     case UNOP_MIN:
850     case UNOP_ODD:
851     case UNOP_TRUNC:
852       elt = dump_subexp (exp, stream, elt);
853       break;
854     case OP_LONG:
855       fprintf_filtered (stream, "Type @");
856       gdb_print_host_address (exp->elts[elt].type, stream);
857       fprintf_filtered (stream, " (");
858       type_print (exp->elts[elt].type, NULL, stream, 0);
859       fprintf_filtered (stream, "), value %ld (0x%lx)",
860                         (long) exp->elts[elt + 1].longconst,
861                         (long) exp->elts[elt + 1].longconst);
862       elt += 3;
863       break;
864     case OP_DOUBLE:
865       fprintf_filtered (stream, "Type @");
866       gdb_print_host_address (exp->elts[elt].type, stream);
867       fprintf_filtered (stream, " (");
868       type_print (exp->elts[elt].type, NULL, stream, 0);
869       fprintf_filtered (stream, "), value %g",
870                         (double) exp->elts[elt + 1].doubleconst);
871       elt += 3;
872       break;
873     case OP_VAR_VALUE:
874       fprintf_filtered (stream, "Block @");
875       gdb_print_host_address (exp->elts[elt].block, stream);
876       fprintf_filtered (stream, ", symbol @");
877       gdb_print_host_address (exp->elts[elt + 1].symbol, stream);
878       fprintf_filtered (stream, " (%s)",
879                         SYMBOL_PRINT_NAME (exp->elts[elt + 1].symbol));
880       elt += 3;
881       break;
882     case OP_VAR_MSYM_VALUE:
883       fprintf_filtered (stream, "Objfile @");
884       gdb_print_host_address (exp->elts[elt].objfile, stream);
885       fprintf_filtered (stream, ", msymbol @");
886       gdb_print_host_address (exp->elts[elt + 1].msymbol, stream);
887       fprintf_filtered (stream, " (%s)",
888                         MSYMBOL_PRINT_NAME (exp->elts[elt + 1].msymbol));
889       elt += 3;
890       break;
891     case OP_VAR_ENTRY_VALUE:
892       fprintf_filtered (stream, "Entry value of symbol @");
893       gdb_print_host_address (exp->elts[elt].symbol, stream);
894       fprintf_filtered (stream, " (%s)",
895                         SYMBOL_PRINT_NAME (exp->elts[elt].symbol));
896       elt += 2;
897       break;
898     case OP_LAST:
899       fprintf_filtered (stream, "History element %ld",
900                         (long) exp->elts[elt].longconst);
901       elt += 2;
902       break;
903     case OP_REGISTER:
904       fprintf_filtered (stream, "Register $%s", &exp->elts[elt + 1].string);
905       elt += 3 + BYTES_TO_EXP_ELEM (exp->elts[elt].longconst + 1);
906       break;
907     case OP_INTERNALVAR:
908       fprintf_filtered (stream, "Internal var @");
909       gdb_print_host_address (exp->elts[elt].internalvar, stream);
910       fprintf_filtered (stream, " (%s)",
911                         internalvar_name (exp->elts[elt].internalvar));
912       elt += 2;
913       break;
914     case OP_FUNCALL:
915       {
916         int i, nargs;
917
918         nargs = longest_to_int (exp->elts[elt].longconst);
919
920         fprintf_filtered (stream, "Number of args: %d", nargs);
921         elt += 2;
922
923         for (i = 1; i <= nargs + 1; i++)
924           elt = dump_subexp (exp, stream, elt);
925       }
926       break;
927     case OP_ARRAY:
928       {
929         int lower, upper;
930         int i;
931
932         lower = longest_to_int (exp->elts[elt].longconst);
933         upper = longest_to_int (exp->elts[elt + 1].longconst);
934
935         fprintf_filtered (stream, "Bounds [%d:%d]", lower, upper);
936         elt += 3;
937
938         for (i = 1; i <= upper - lower + 1; i++)
939           elt = dump_subexp (exp, stream, elt);
940       }
941       break;
942     case UNOP_DYNAMIC_CAST:
943     case UNOP_REINTERPRET_CAST:
944     case UNOP_CAST_TYPE:
945     case UNOP_MEMVAL_TYPE:
946       fprintf_filtered (stream, " (");
947       elt = dump_subexp (exp, stream, elt);
948       fprintf_filtered (stream, ")");
949       elt = dump_subexp (exp, stream, elt);
950       break;
951     case UNOP_MEMVAL:
952     case UNOP_CAST:
953       fprintf_filtered (stream, "Type @");
954       gdb_print_host_address (exp->elts[elt].type, stream);
955       fprintf_filtered (stream, " (");
956       type_print (exp->elts[elt].type, NULL, stream, 0);
957       fprintf_filtered (stream, ")");
958       elt = dump_subexp (exp, stream, elt + 2);
959       break;
960     case OP_TYPE:
961       fprintf_filtered (stream, "Type @");
962       gdb_print_host_address (exp->elts[elt].type, stream);
963       fprintf_filtered (stream, " (");
964       type_print (exp->elts[elt].type, NULL, stream, 0);
965       fprintf_filtered (stream, ")");
966       elt += 2;
967       break;
968     case OP_TYPEOF:
969     case OP_DECLTYPE:
970       fprintf_filtered (stream, "Typeof (");
971       elt = dump_subexp (exp, stream, elt);
972       fprintf_filtered (stream, ")");
973       break;
974     case OP_TYPEID:
975       fprintf_filtered (stream, "typeid (");
976       elt = dump_subexp (exp, stream, elt);
977       fprintf_filtered (stream, ")");
978       break;
979     case STRUCTOP_STRUCT:
980     case STRUCTOP_PTR:
981       {
982         char *elem_name;
983         int len;
984
985         len = longest_to_int (exp->elts[elt].longconst);
986         elem_name = &exp->elts[elt + 1].string;
987
988         fprintf_filtered (stream, "Element name: `%.*s'", len, elem_name);
989         elt = dump_subexp (exp, stream, elt + 3 + BYTES_TO_EXP_ELEM (len + 1));
990       }
991       break;
992     case OP_SCOPE:
993       {
994         char *elem_name;
995         int len;
996
997         fprintf_filtered (stream, "Type @");
998         gdb_print_host_address (exp->elts[elt].type, stream);
999         fprintf_filtered (stream, " (");
1000         type_print (exp->elts[elt].type, NULL, stream, 0);
1001         fprintf_filtered (stream, ") ");
1002
1003         len = longest_to_int (exp->elts[elt + 1].longconst);
1004         elem_name = &exp->elts[elt + 2].string;
1005
1006         fprintf_filtered (stream, "Field name: `%.*s'", len, elem_name);
1007         elt += 4 + BYTES_TO_EXP_ELEM (len + 1);
1008       }
1009       break;
1010
1011     case OP_FUNC_STATIC_VAR:
1012       {
1013         int len = longest_to_int (exp->elts[elt].longconst);
1014         const char *var_name = &exp->elts[elt + 1].string;
1015         fprintf_filtered (stream, "Field name: `%.*s'", len, var_name);
1016         elt += 3 + BYTES_TO_EXP_ELEM (len + 1);
1017       }
1018       break;
1019
1020     case TYPE_INSTANCE:
1021       {
1022         LONGEST len;
1023
1024         len = exp->elts[elt++].longconst;
1025         fprintf_filtered (stream, "%s TypeInstance: ", plongest (len));
1026         while (len-- > 0)
1027           {
1028             fprintf_filtered (stream, "Type @");
1029             gdb_print_host_address (exp->elts[elt].type, stream);
1030             fprintf_filtered (stream, " (");
1031             type_print (exp->elts[elt].type, NULL, stream, 0);
1032             fprintf_filtered (stream, ")");
1033             elt++;
1034             if (len > 0)
1035               fputs_filtered (", ", stream);
1036           }
1037         /* Ending LEN and ending TYPE_INSTANCE.  */
1038         elt += 2;
1039         elt = dump_subexp (exp, stream, elt);
1040       }
1041       break;
1042     case OP_STRING:
1043       {
1044         LONGEST len = exp->elts[elt].longconst;
1045         LONGEST type = exp->elts[elt + 1].longconst;
1046
1047         fprintf_filtered (stream, "Language-specific string type: %s",
1048                           plongest (type));
1049
1050         /* Skip length.  */
1051         elt += 1;
1052
1053         /* Skip string content. */
1054         elt += BYTES_TO_EXP_ELEM (len);
1055
1056         /* Skip length and ending OP_STRING. */
1057         elt += 2;
1058       }
1059       break;
1060     case OP_RANGE:
1061       {
1062         enum range_type range_type;
1063
1064         range_type = (enum range_type)
1065           longest_to_int (exp->elts[elt].longconst);
1066         elt += 2;
1067
1068         switch (range_type)
1069           {
1070           case BOTH_BOUND_DEFAULT:
1071             fputs_filtered ("Range '..'", stream);
1072             break;
1073           case LOW_BOUND_DEFAULT:
1074             fputs_filtered ("Range '..EXP'", stream);
1075             break;
1076           case HIGH_BOUND_DEFAULT:
1077             fputs_filtered ("Range 'EXP..'", stream);
1078             break;
1079           case NONE_BOUND_DEFAULT:
1080             fputs_filtered ("Range 'EXP..EXP'", stream);
1081             break;
1082           default:
1083             fputs_filtered ("Invalid Range!", stream);
1084             break;
1085           }
1086
1087         if (range_type == HIGH_BOUND_DEFAULT
1088             || range_type == NONE_BOUND_DEFAULT)
1089           elt = dump_subexp (exp, stream, elt);
1090         if (range_type == LOW_BOUND_DEFAULT
1091             || range_type == NONE_BOUND_DEFAULT)
1092           elt = dump_subexp (exp, stream, elt);
1093       }
1094       break;
1095
1096     default:
1097     case OP_NULL:
1098     case MULTI_SUBSCRIPT:
1099     case OP_F77_UNDETERMINED_ARGLIST:
1100     case OP_COMPLEX:
1101     case OP_BOOL:
1102     case OP_M2_STRING:
1103     case OP_THIS:
1104     case OP_NAME:
1105       fprintf_filtered (stream, "Unknown format");
1106     }
1107
1108   return elt;
1109 }
1110
1111 void
1112 dump_prefix_expression (struct expression *exp, struct ui_file *stream)
1113 {
1114   int elt;
1115
1116   fprintf_filtered (stream, "Dump of expression @ ");
1117   gdb_print_host_address (exp, stream);
1118   fputs_filtered (", after conversion to prefix form:\nExpression: `", stream);
1119   print_expression (exp, stream);
1120   fprintf_filtered (stream, "'\n\tLanguage %s, %d elements, %ld bytes each.\n",
1121                     exp->language_defn->la_name, exp->nelts,
1122                     (long) sizeof (union exp_element));
1123   fputs_filtered ("\n", stream);
1124
1125   for (elt = 0; elt < exp->nelts;)
1126     elt = dump_subexp (exp, stream, elt);
1127   fputs_filtered ("\n", stream);
1128 }