1 /* Print in infix form a struct expression.
3 Copyright 1986, 1988, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
4 1998, 1999, 2000, 2003 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
26 #include "expression.h"
29 #include "parser-defs.h"
30 #include "user-regs.h" /* For user_reg_map_regnum_to_name. */
32 #include "gdb_string.h"
40 print_expression (struct expression *exp, struct ui_file *stream)
43 print_subexp (exp, &pc, stream, PREC_NULL);
46 /* Print the subexpression of EXP that starts in position POS, on STREAM.
47 PREC is the precedence of the surrounding operator;
48 if the precedence of the main operator of this subexpression is less,
49 parentheses are needed here. */
52 print_subexp (struct expression *exp, int *pos,
53 struct ui_file *stream, enum precedence prec)
55 exp->language_defn->la_exp_desc->print_subexp (exp, pos, stream, prec);
58 /* Standard implementation of print_subexp for use in language_defn
61 print_subexp_standard (struct expression *exp, int *pos,
62 struct ui_file *stream, enum precedence prec)
65 const struct op_print *op_print_tab;
69 int assign_modify = 0;
70 enum exp_opcode opcode;
71 enum precedence myprec = PREC_NULL;
72 /* Set to 1 for a right-associative operator. */
77 op_print_tab = exp->language_defn->la_op_print_tab;
79 opcode = exp->elts[pc].opcode;
87 fputs_filtered (type_name_no_tag (exp->elts[pc + 1].type), stream);
88 fputs_filtered ("::", stream);
89 nargs = longest_to_int (exp->elts[pc + 2].longconst);
90 (*pos) += 4 + BYTES_TO_EXP_ELEM (nargs + 1);
91 fputs_filtered (&exp->elts[pc + 3].string, stream);
96 value_print (value_from_longest (exp->elts[pc + 1].type,
97 exp->elts[pc + 2].longconst),
98 stream, 0, Val_no_prettyprint);
103 value_print (value_from_double (exp->elts[pc + 1].type,
104 exp->elts[pc + 2].doubleconst),
105 stream, 0, Val_no_prettyprint);
112 b = exp->elts[pc + 1].block;
114 && BLOCK_FUNCTION (b) != NULL
115 && SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)) != NULL)
117 fputs_filtered (SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)), stream);
118 fputs_filtered ("::", stream);
120 fputs_filtered (SYMBOL_PRINT_NAME (exp->elts[pc + 2].symbol), stream);
126 fprintf_filtered (stream, "$%d",
127 longest_to_int (exp->elts[pc + 1].longconst));
132 int regnum = longest_to_int (exp->elts[pc + 1].longconst);
133 const char *name = user_reg_map_regnum_to_name (current_gdbarch,
136 fprintf_filtered (stream, "$%s", name);
142 fprintf_filtered (stream, "%s",
143 longest_to_int (exp->elts[pc + 1].longconst)
149 fprintf_filtered (stream, "$%s",
150 internalvar_name (exp->elts[pc + 1].internalvar));
155 nargs = longest_to_int (exp->elts[pc + 1].longconst);
156 print_subexp (exp, pos, stream, PREC_SUFFIX);
157 fputs_filtered (" (", stream);
158 for (tem = 0; tem < nargs; tem++)
161 fputs_filtered (", ", stream);
162 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
164 fputs_filtered (")", stream);
169 nargs = longest_to_int (exp->elts[pc + 1].longconst);
170 (*pos) += 3 + BYTES_TO_EXP_ELEM (nargs + 1);
171 fputs_filtered (&exp->elts[pc + 2].string, stream);
175 nargs = longest_to_int (exp->elts[pc + 1].longconst);
176 (*pos) += 3 + BYTES_TO_EXP_ELEM (nargs + 1);
177 /* LA_PRINT_STRING will print using the current repeat count threshold.
178 If necessary, we can temporarily set it to zero, or pass it as an
179 additional parameter to LA_PRINT_STRING. -fnf */
180 LA_PRINT_STRING (stream, &exp->elts[pc + 2].string, nargs, 1, 0);
184 nargs = longest_to_int (exp->elts[pc + 1].longconst);
186 += 3 + BYTES_TO_EXP_ELEM ((nargs + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT);
187 fprintf_unfiltered (stream, "B'<unimplemented>'");
190 case OP_OBJC_NSSTRING: /* Objective-C Foundation Class NSString constant. */
191 nargs = longest_to_int (exp->elts[pc + 1].longconst);
192 (*pos) += 3 + BYTES_TO_EXP_ELEM (nargs + 1);
193 fputs_filtered ("@\"", stream);
194 LA_PRINT_STRING (stream, &exp->elts[pc + 2].string, nargs, 1, 0);
195 fputs_filtered ("\"", stream);
198 case OP_OBJC_MSGCALL:
199 { /* Objective C message (method) call. */
202 nargs = longest_to_int (exp->elts[pc + 2].longconst);
203 fprintf_unfiltered (stream, "[");
204 print_subexp (exp, pos, stream, PREC_SUFFIX);
205 if (0 == target_read_string (exp->elts[pc + 1].longconst,
206 &selector, 1024, NULL))
208 error ("bad selector");
214 s = alloca (strlen (selector) + 1);
215 strcpy (s, selector);
216 for (tem = 0; tem < nargs; tem++)
218 nextS = strchr (s, ':');
220 fprintf_unfiltered (stream, " %s: ", s);
222 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
227 fprintf_unfiltered (stream, " %s", selector);
229 fprintf_unfiltered (stream, "]");
230 /* "selector" was malloc'd by target_read_string. Free it. */
237 nargs = longest_to_int (exp->elts[pc + 2].longconst);
238 nargs -= longest_to_int (exp->elts[pc + 1].longconst);
241 if (exp->elts[pc + 4].opcode == OP_LONG
242 && exp->elts[pc + 5].type == builtin_type_char
243 && exp->language_defn->la_language == language_c)
245 /* Attempt to print C character arrays using string syntax.
246 Walk through the args, picking up one character from each
247 of the OP_LONG expression elements. If any array element
248 does not match our expection of what we should find for
249 a simple string, revert back to array printing. Note that
250 the last expression element is an explicit null terminator
251 byte, which doesn't get printed. */
252 tempstr = alloca (nargs);
256 if (exp->elts[pc].opcode != OP_LONG
257 || exp->elts[pc + 1].type != builtin_type_char)
259 /* Not a simple array of char, use regular array printing. */
266 longest_to_int (exp->elts[pc + 2].longconst);
273 LA_PRINT_STRING (stream, tempstr, nargs - 1, 1, 0);
278 fputs_filtered (" {", stream);
279 for (tem = 0; tem < nargs; tem++)
283 fputs_filtered (", ", stream);
285 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
287 fputs_filtered ("}", stream);
292 tem = longest_to_int (exp->elts[pc + 1].longconst);
293 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
294 /* Gcc support both these syntaxes. Unsure which is preferred. */
296 fputs_filtered (&exp->elts[pc + 2].string, stream);
297 fputs_filtered (": ", stream);
299 fputs_filtered (".", stream);
300 fputs_filtered (&exp->elts[pc + 2].string, stream);
301 fputs_filtered ("=", stream);
303 print_subexp (exp, pos, stream, PREC_SUFFIX);
307 if ((int) prec > (int) PREC_COMMA)
308 fputs_filtered ("(", stream);
309 /* Print the subexpressions, forcing parentheses
310 around any binary operations within them.
311 This is more parentheses than are strictly necessary,
312 but it looks clearer. */
313 print_subexp (exp, pos, stream, PREC_HYPER);
314 fputs_filtered (" ? ", stream);
315 print_subexp (exp, pos, stream, PREC_HYPER);
316 fputs_filtered (" : ", stream);
317 print_subexp (exp, pos, stream, PREC_HYPER);
318 if ((int) prec > (int) PREC_COMMA)
319 fputs_filtered (")", stream);
323 case TERNOP_SLICE_COUNT:
324 print_subexp (exp, pos, stream, PREC_SUFFIX);
325 fputs_filtered ("(", stream);
326 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
327 fputs_filtered (opcode == TERNOP_SLICE ? " : " : " UP ", stream);
328 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
329 fputs_filtered (")", stream);
332 case STRUCTOP_STRUCT:
333 tem = longest_to_int (exp->elts[pc + 1].longconst);
334 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
335 print_subexp (exp, pos, stream, PREC_SUFFIX);
336 fputs_filtered (".", stream);
337 fputs_filtered (&exp->elts[pc + 2].string, stream);
340 /* Will not occur for Modula-2 */
342 tem = longest_to_int (exp->elts[pc + 1].longconst);
343 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
344 print_subexp (exp, pos, stream, PREC_SUFFIX);
345 fputs_filtered ("->", stream);
346 fputs_filtered (&exp->elts[pc + 2].string, stream);
349 case BINOP_SUBSCRIPT:
350 print_subexp (exp, pos, stream, PREC_SUFFIX);
351 fputs_filtered ("[", stream);
352 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
353 fputs_filtered ("]", stream);
356 case UNOP_POSTINCREMENT:
357 print_subexp (exp, pos, stream, PREC_SUFFIX);
358 fputs_filtered ("++", stream);
361 case UNOP_POSTDECREMENT:
362 print_subexp (exp, pos, stream, PREC_SUFFIX);
363 fputs_filtered ("--", stream);
368 if ((int) prec > (int) PREC_PREFIX)
369 fputs_filtered ("(", stream);
370 fputs_filtered ("(", stream);
371 type_print (exp->elts[pc + 1].type, "", stream, 0);
372 fputs_filtered (") ", stream);
373 print_subexp (exp, pos, stream, PREC_PREFIX);
374 if ((int) prec > (int) PREC_PREFIX)
375 fputs_filtered (")", stream);
380 if ((int) prec > (int) PREC_PREFIX)
381 fputs_filtered ("(", stream);
382 if (TYPE_CODE (exp->elts[pc + 1].type) == TYPE_CODE_FUNC &&
383 exp->elts[pc + 3].opcode == OP_LONG)
385 /* We have a minimal symbol fn, probably. It's encoded
386 as a UNOP_MEMVAL (function-type) of an OP_LONG (int, address).
387 Swallow the OP_LONG (including both its opcodes); ignore
388 its type; print the value in the type of the MEMVAL. */
390 val = value_at_lazy (exp->elts[pc + 1].type,
391 (CORE_ADDR) exp->elts[pc + 5].longconst,
393 value_print (val, stream, 0, Val_no_prettyprint);
397 fputs_filtered ("{", stream);
398 type_print (exp->elts[pc + 1].type, "", stream, 0);
399 fputs_filtered ("} ", stream);
400 print_subexp (exp, pos, stream, PREC_PREFIX);
402 if ((int) prec > (int) PREC_PREFIX)
403 fputs_filtered (")", stream);
406 case BINOP_ASSIGN_MODIFY:
407 opcode = exp->elts[pc + 1].opcode;
409 myprec = PREC_ASSIGN;
413 for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
414 if (op_print_tab[tem].opcode == opcode)
416 op_str = op_print_tab[tem].string;
419 if (op_print_tab[tem].opcode != opcode)
420 /* Not found; don't try to keep going because we don't know how
421 to interpret further elements. */
422 error ("Invalid expression");
429 fputs_filtered ("this", stream);
432 /* Objective-C ops */
436 fputs_filtered ("self", stream); /* The ObjC equivalent of "this". */
441 case MULTI_SUBSCRIPT:
443 nargs = longest_to_int (exp->elts[pc + 1].longconst);
444 print_subexp (exp, pos, stream, PREC_SUFFIX);
445 fprintf_unfiltered (stream, " [");
446 for (tem = 0; tem < nargs; tem++)
449 fprintf_unfiltered (stream, ", ");
450 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
452 fprintf_unfiltered (stream, "]");
457 fprintf_unfiltered (stream, "VAL(");
458 type_print (exp->elts[pc + 1].type, "", stream, 0);
459 fprintf_unfiltered (stream, ",");
460 print_subexp (exp, pos, stream, PREC_PREFIX);
461 fprintf_unfiltered (stream, ")");
466 error ("print_subexp: Not implemented.");
472 for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
473 if (op_print_tab[tem].opcode == opcode)
475 op_str = op_print_tab[tem].string;
476 myprec = op_print_tab[tem].precedence;
477 assoc = op_print_tab[tem].right_assoc;
480 if (op_print_tab[tem].opcode != opcode)
481 /* Not found; don't try to keep going because we don't know how
482 to interpret further elements. For example, this happens
483 if opcode is OP_TYPE. */
484 error ("Invalid expression");
487 /* Note that PREC_BUILTIN will always emit parentheses. */
488 if ((int) myprec < (int) prec)
489 fputs_filtered ("(", stream);
490 if ((int) opcode > (int) BINOP_END)
494 /* Unary postfix operator. */
495 print_subexp (exp, pos, stream, PREC_SUFFIX);
496 fputs_filtered (op_str, stream);
500 /* Unary prefix operator. */
501 fputs_filtered (op_str, stream);
502 if (myprec == PREC_BUILTIN_FUNCTION)
503 fputs_filtered ("(", stream);
504 print_subexp (exp, pos, stream, PREC_PREFIX);
505 if (myprec == PREC_BUILTIN_FUNCTION)
506 fputs_filtered (")", stream);
511 /* Binary operator. */
512 /* Print left operand.
513 If operator is right-associative,
514 increment precedence for this operand. */
515 print_subexp (exp, pos, stream,
516 (enum precedence) ((int) myprec + assoc));
517 /* Print the operator itself. */
519 fprintf_filtered (stream, " %s= ", op_str);
520 else if (op_str[0] == ',')
521 fprintf_filtered (stream, "%s ", op_str);
523 fprintf_filtered (stream, " %s ", op_str);
524 /* Print right operand.
525 If operator is left-associative,
526 increment precedence for this operand. */
527 print_subexp (exp, pos, stream,
528 (enum precedence) ((int) myprec + !assoc));
531 if ((int) myprec < (int) prec)
532 fputs_filtered (")", stream);
535 /* Return the operator corresponding to opcode OP as
536 a string. NULL indicates that the opcode was not found in the
537 current language table. */
539 op_string (enum exp_opcode op)
542 const struct op_print *op_print_tab;
544 op_print_tab = current_language->la_op_print_tab;
545 for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
546 if (op_print_tab[tem].opcode == op)
547 return op_print_tab[tem].string;
551 /* Support for dumping the raw data from expressions in a human readable
554 static char *op_name (struct expression *, enum exp_opcode);
555 static int dump_subexp_body (struct expression *exp, struct ui_file *, int);
557 /* Name for OPCODE, when it appears in expression EXP. */
560 op_name (struct expression *exp, enum exp_opcode opcode)
562 return exp->language_defn->la_exp_desc->op_name (opcode);
565 /* Default name for the standard operator OPCODE (i.e., one defined in
566 the definition of enum exp_opcode). */
569 op_name_standard (enum exp_opcode opcode)
577 sprintf (buf, "<unknown %d>", opcode);
598 case BINOP_LOGICAL_AND:
599 return "BINOP_LOGICAL_AND";
600 case BINOP_LOGICAL_OR:
601 return "BINOP_LOGICAL_OR";
602 case BINOP_BITWISE_AND:
603 return "BINOP_BITWISE_AND";
604 case BINOP_BITWISE_IOR:
605 return "BINOP_BITWISE_IOR";
606 case BINOP_BITWISE_XOR:
607 return "BINOP_BITWISE_XOR";
609 return "BINOP_EQUAL";
611 return "BINOP_NOTEQUAL";
621 return "BINOP_REPEAT";
623 return "BINOP_ASSIGN";
625 return "BINOP_COMMA";
626 case BINOP_SUBSCRIPT:
627 return "BINOP_SUBSCRIPT";
628 case MULTI_SUBSCRIPT:
629 return "MULTI_SUBSCRIPT";
636 case STRUCTOP_MEMBER:
637 return "STRUCTOP_MEMBER";
639 return "STRUCTOP_MPTR";
641 return "BINOP_INTDIV";
642 case BINOP_ASSIGN_MODIFY:
643 return "BINOP_ASSIGN_MODIFY";
651 return "BINOP_CONCAT";
653 return "BINOP_RANGE";
657 return "TERNOP_COND";
659 return "TERNOP_SLICE";
660 case TERNOP_SLICE_COUNT:
661 return "TERNOP_SLICE_COUNT";
667 return "OP_VAR_VALUE";
671 return "OP_REGISTER";
673 return "OP_INTERNALVAR";
679 return "OP_BITSTRING";
685 return "UNOP_MEMVAL";
688 case UNOP_LOGICAL_NOT:
689 return "UNOP_LOGICAL_NOT";
690 case UNOP_COMPLEMENT:
691 return "UNOP_COMPLEMENT";
696 case UNOP_PREINCREMENT:
697 return "UNOP_PREINCREMENT";
698 case UNOP_POSTINCREMENT:
699 return "UNOP_POSTINCREMENT";
700 case UNOP_PREDECREMENT:
701 return "UNOP_PREDECREMENT";
702 case UNOP_POSTDECREMENT:
703 return "UNOP_POSTDECREMENT";
705 return "UNOP_SIZEOF";
711 return "UNOP_LENGTH";
737 return "OP_M2_STRING";
738 case STRUCTOP_STRUCT:
739 return "STRUCTOP_STRUCT";
741 return "STRUCTOP_PTR";
745 return "OP_OBJC_SELF";
756 dump_raw_expression (struct expression *exp, struct ui_file *stream,
764 fprintf_filtered (stream, "Dump of expression @ ");
765 gdb_print_host_address (exp, stream);
766 fprintf_filtered (stream, "'\n\tLanguage %s, %d elements, %ld bytes each.\n",
767 exp->language_defn->la_name, exp->nelts,
768 (long) sizeof (union exp_element));
769 fprintf_filtered (stream, "\t%5s %20s %16s %s\n", "Index", "Opcode",
770 "Hex Value", "String Value");
771 for (elt = 0; elt < exp->nelts; elt++)
773 fprintf_filtered (stream, "\t%5d ", elt);
774 opcode_name = op_name (exp, exp->elts[elt].opcode);
776 fprintf_filtered (stream, "%20s ", opcode_name);
777 print_longest (stream, 'd', 0, exp->elts[elt].longconst);
778 fprintf_filtered (stream, " ");
780 for (eltscan = (char *) &exp->elts[elt],
781 eltsize = sizeof (union exp_element);
785 fprintf_filtered (stream, "%c",
786 isprint (*eltscan) ? (*eltscan & 0xFF) : '.');
788 fprintf_filtered (stream, "\n");
792 /* Dump the subexpression of prefix expression EXP whose operator is at
793 position ELT onto STREAM. Returns the position of the next
794 subexpression in EXP. */
797 dump_subexp (struct expression *exp, struct ui_file *stream, int elt)
799 static int indent = 0;
802 fprintf_filtered (stream, "\n");
803 fprintf_filtered (stream, "\t%5d ", elt);
805 for (i = 1; i <= indent; i++)
806 fprintf_filtered (stream, " ");
809 fprintf_filtered (stream, "%-20s ", op_name (exp, exp->elts[elt].opcode));
811 elt = dump_subexp_body (exp, stream, elt);
818 /* Dump the operands of prefix expression EXP whose opcode is at
819 position ELT onto STREAM. Returns the position of the next
820 subexpression in EXP. */
823 dump_subexp_body (struct expression *exp, struct ui_file *stream, int elt)
825 return exp->language_defn->la_exp_desc->dump_subexp_body (exp, stream, elt);
828 /* Default value for subexp_body in exp_descriptor vector. */
831 dump_subexp_body_standard (struct expression *exp,
832 struct ui_file *stream, int elt)
834 int opcode = exp->elts[elt++].opcode;
840 case TERNOP_SLICE_COUNT:
841 elt = dump_subexp (exp, stream, elt);
850 case BINOP_LOGICAL_AND:
851 case BINOP_LOGICAL_OR:
852 case BINOP_BITWISE_AND:
853 case BINOP_BITWISE_IOR:
854 case BINOP_BITWISE_XOR:
864 case BINOP_SUBSCRIPT:
869 case BINOP_ASSIGN_MODIFY:
877 elt = dump_subexp (exp, stream, elt);
879 case UNOP_LOGICAL_NOT:
880 case UNOP_COMPLEMENT:
883 case UNOP_PREINCREMENT:
884 case UNOP_POSTINCREMENT:
885 case UNOP_PREDECREMENT:
886 case UNOP_POSTDECREMENT:
905 elt = dump_subexp (exp, stream, elt);
908 fprintf_filtered (stream, "Type @");
909 gdb_print_host_address (exp->elts[elt].type, stream);
910 fprintf_filtered (stream, " (");
911 type_print (exp->elts[elt].type, NULL, stream, 0);
912 fprintf_filtered (stream, "), value %ld (0x%lx)",
913 (long) exp->elts[elt + 1].longconst,
914 (long) exp->elts[elt + 1].longconst);
918 fprintf_filtered (stream, "Type @");
919 gdb_print_host_address (exp->elts[elt].type, stream);
920 fprintf_filtered (stream, " (");
921 type_print (exp->elts[elt].type, NULL, stream, 0);
922 fprintf_filtered (stream, "), value %g",
923 (double) exp->elts[elt + 1].doubleconst);
927 fprintf_filtered (stream, "Block @");
928 gdb_print_host_address (exp->elts[elt].block, stream);
929 fprintf_filtered (stream, ", symbol @");
930 gdb_print_host_address (exp->elts[elt + 1].symbol, stream);
931 fprintf_filtered (stream, " (%s)",
932 DEPRECATED_SYMBOL_NAME (exp->elts[elt + 1].symbol));
936 fprintf_filtered (stream, "History element %ld",
937 (long) exp->elts[elt].longconst);
941 fprintf_filtered (stream, "Register %ld",
942 (long) exp->elts[elt].longconst);
946 fprintf_filtered (stream, "Internal var @");
947 gdb_print_host_address (exp->elts[elt].internalvar, stream);
948 fprintf_filtered (stream, " (%s)",
949 exp->elts[elt].internalvar->name);
956 nargs = longest_to_int (exp->elts[elt].longconst);
958 fprintf_filtered (stream, "Number of args: %d", nargs);
961 for (i = 1; i <= nargs + 1; i++)
962 elt = dump_subexp (exp, stream, elt);
970 lower = longest_to_int (exp->elts[elt].longconst);
971 upper = longest_to_int (exp->elts[elt + 1].longconst);
973 fprintf_filtered (stream, "Bounds [%d:%d]", lower, upper);
976 for (i = 1; i <= upper - lower + 1; i++)
977 elt = dump_subexp (exp, stream, elt);
982 fprintf_filtered (stream, "Type @");
983 gdb_print_host_address (exp->elts[elt].type, stream);
984 fprintf_filtered (stream, " (");
985 type_print (exp->elts[elt].type, NULL, stream, 0);
986 fprintf_filtered (stream, ")");
987 elt = dump_subexp (exp, stream, elt + 2);
990 fprintf_filtered (stream, "Type @");
991 gdb_print_host_address (exp->elts[elt].type, stream);
992 fprintf_filtered (stream, " (");
993 type_print (exp->elts[elt].type, NULL, stream, 0);
994 fprintf_filtered (stream, ")");
997 case STRUCTOP_STRUCT:
1003 len = longest_to_int (exp->elts[elt].longconst);
1004 elem_name = &exp->elts[elt + 1].string;
1006 fprintf_filtered (stream, "Element name: `%.*s'", len, elem_name);
1007 elt = dump_subexp (exp, stream, elt + 3 + BYTES_TO_EXP_ELEM (len + 1));
1015 fprintf_filtered (stream, "Type @");
1016 gdb_print_host_address (exp->elts[elt].type, stream);
1017 fprintf_filtered (stream, " (");
1018 type_print (exp->elts[elt].type, NULL, stream, 0);
1019 fprintf_filtered (stream, ") ");
1021 len = longest_to_int (exp->elts[elt + 1].longconst);
1022 elem_name = &exp->elts[elt + 2].string;
1024 fprintf_filtered (stream, "Field name: `%.*s'", len, elem_name);
1025 elt += 4 + BYTES_TO_EXP_ELEM (len + 1);
1030 case STRUCTOP_MEMBER:
1032 case MULTI_SUBSCRIPT:
1033 case OP_F77_UNDETERMINED_ARGLIST:
1043 fprintf_filtered (stream, "Unknown format");
1050 dump_prefix_expression (struct expression *exp, struct ui_file *stream)
1054 fprintf_filtered (stream, "Dump of expression @ ");
1055 gdb_print_host_address (exp, stream);
1056 fputs_filtered (", after conversion to prefix form:\nExpression: `", stream);
1057 if (exp->elts[0].opcode != OP_TYPE)
1058 print_expression (exp, stream);
1060 fputs_filtered ("Type printing not yet supported....", stream);
1061 fprintf_filtered (stream, "'\n\tLanguage %s, %d elements, %ld bytes each.\n",
1062 exp->language_defn->la_name, exp->nelts,
1063 (long) sizeof (union exp_element));
1064 fputs_filtered ("\n", stream);
1066 for (elt = 0; elt < exp->nelts;)
1067 elt = dump_subexp (exp, stream, elt);
1068 fputs_filtered ("\n", stream);