]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/expprint.c
d71a1c0b23047c0ca7edcfef518915d027571063
[thirdparty/binutils-gdb.git] / gdb / expprint.c
1 /* Print in infix form a struct expression.
2 Copyright (C) 1986, 1989, 1991 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
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
28 /* Prototypes for local functions */
29
30 static void
31 print_subexp PARAMS ((struct expression *, int *, FILE *, enum precedence));
32
33 static void
34 print_simple_m2_func PARAMS ((char *, struct expression *, int *, FILE *));
35
36 void
37 print_expression (exp, stream)
38 struct expression *exp;
39 FILE *stream;
40 {
41 int pc = 0;
42 print_subexp (exp, &pc, stream, PREC_NULL);
43 }
44
45 /* Print the subexpression of EXP that starts in position POS, on STREAM.
46 PREC is the precedence of the surrounding operator;
47 if the precedence of the main operator of this subexpression is less,
48 parentheses are needed here. */
49
50 static void
51 print_subexp (exp, pos, stream, prec)
52 register struct expression *exp;
53 register int *pos;
54 FILE *stream;
55 enum precedence prec;
56 {
57 register unsigned tem;
58 register const struct op_print *op_print_tab;
59 register int pc;
60 unsigned nargs;
61 register char *op_str;
62 int assign_modify = 0;
63 enum exp_opcode opcode;
64 enum precedence myprec;
65 /* Set to 1 for a right-associative operator. */
66 int assoc;
67 value val;
68
69 op_print_tab = exp->language_defn->la_op_print_tab;
70 pc = (*pos)++;
71 opcode = exp->elts[pc].opcode;
72 switch (opcode)
73 {
74 /* Common ops */
75
76 case OP_SCOPE:
77 myprec = PREC_PREFIX;
78 assoc = 0;
79 (*pos) += 2;
80 print_subexp (exp, pos, stream,
81 (enum precedence) ((int) myprec + assoc));
82 fputs_filtered (" :: ", stream);
83 nargs = strlen (&exp->elts[pc + 2].string);
84 (*pos) += 1 + (nargs + sizeof (union exp_element)) / sizeof (union exp_element);
85
86 fputs_filtered (&exp->elts[pc + 2].string, stream);
87 return;
88
89 case OP_LONG:
90 (*pos) += 3;
91 value_print (value_from_longest (exp->elts[pc + 1].type,
92 exp->elts[pc + 2].longconst),
93 stream, 0, Val_no_prettyprint);
94 return;
95
96 case OP_DOUBLE:
97 (*pos) += 3;
98 value_print (value_from_double (exp->elts[pc + 1].type,
99 exp->elts[pc + 2].doubleconst),
100 stream, 0, Val_no_prettyprint);
101 return;
102
103 case OP_VAR_VALUE:
104 (*pos) += 2;
105 fputs_filtered (SYMBOL_NAME (exp->elts[pc + 1].symbol), stream);
106 return;
107
108 case OP_LAST:
109 (*pos) += 2;
110 fprintf_filtered (stream, "$%d",
111 longest_to_int (exp->elts[pc + 1].longconst));
112 return;
113
114 case OP_REGISTER:
115 (*pos) += 2;
116 fprintf_filtered (stream, "$%s",
117 reg_names[longest_to_int (exp->elts[pc + 1].longconst)]);
118 return;
119
120 case OP_BOOL:
121 (*pos) += 2;
122 fprintf_filtered (stream, "%s",
123 longest_to_int (exp->elts[pc + 1].longconst)
124 ? "TRUE" : "FALSE");
125 return;
126
127 case OP_INTERNALVAR:
128 (*pos) += 2;
129 fprintf_filtered (stream, "$%s",
130 internalvar_name (exp->elts[pc + 1].internalvar));
131 return;
132
133 case OP_FUNCALL:
134 (*pos) += 2;
135 nargs = longest_to_int (exp->elts[pc + 1].longconst);
136 print_subexp (exp, pos, stream, PREC_SUFFIX);
137 fputs_filtered (" (", stream);
138 for (tem = 0; tem < nargs; tem++)
139 {
140 if (tem != 0)
141 fputs_filtered (", ", stream);
142 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
143 }
144 fputs_filtered (")", stream);
145 return;
146
147 case OP_STRING:
148 nargs = strlen (&exp->elts[pc + 1].string);
149 (*pos) += 2 + (nargs + sizeof (union exp_element)) / sizeof (union exp_element);
150 /* local_printstr will print using the current repeat count threshold.
151 If necessary, we can temporarily set it to zero, or pass it as an
152 additional parameter to local_printstr. -fnf */
153 local_printstr (stream, &exp->elts[pc + 1].string, nargs, 0);
154 return;
155
156 case TERNOP_COND:
157 if ((int) prec > (int) PREC_COMMA)
158 fputs_filtered ("(", stream);
159 /* Print the subexpressions, forcing parentheses
160 around any binary operations within them.
161 This is more parentheses than are strictly necessary,
162 but it looks clearer. */
163 print_subexp (exp, pos, stream, PREC_HYPER);
164 fputs_filtered (" ? ", stream);
165 print_subexp (exp, pos, stream, PREC_HYPER);
166 fputs_filtered (" : ", stream);
167 print_subexp (exp, pos, stream, PREC_HYPER);
168 if ((int) prec > (int) PREC_COMMA)
169 fputs_filtered (")", stream);
170 return;
171
172 case STRUCTOP_STRUCT:
173 tem = strlen (&exp->elts[pc + 1].string);
174 (*pos) += 2 + (tem + sizeof (union exp_element)) / sizeof (union exp_element);
175 print_subexp (exp, pos, stream, PREC_SUFFIX);
176 fputs_filtered (".", stream);
177 fputs_filtered (&exp->elts[pc + 1].string, stream);
178 return;
179
180 /* Will not occur for Modula-2 */
181 case STRUCTOP_PTR:
182 tem = strlen (&exp->elts[pc + 1].string);
183 (*pos) += 2 + (tem + sizeof (union exp_element)) / sizeof (union exp_element);
184 print_subexp (exp, pos, stream, PREC_SUFFIX);
185 fputs_filtered ("->", stream);
186 fputs_filtered (&exp->elts[pc + 1].string, stream);
187 return;
188
189 case BINOP_SUBSCRIPT:
190 print_subexp (exp, pos, stream, PREC_SUFFIX);
191 fputs_filtered ("[", stream);
192 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
193 fputs_filtered ("]", stream);
194 return;
195
196 case UNOP_POSTINCREMENT:
197 print_subexp (exp, pos, stream, PREC_SUFFIX);
198 fputs_filtered ("++", stream);
199 return;
200
201 case UNOP_POSTDECREMENT:
202 print_subexp (exp, pos, stream, PREC_SUFFIX);
203 fputs_filtered ("--", stream);
204 return;
205
206 case UNOP_CAST:
207 (*pos) += 2;
208 if ((int) prec > (int) PREC_PREFIX)
209 fputs_filtered ("(", stream);
210 fputs_filtered ("(", stream);
211 type_print (exp->elts[pc + 1].type, "", stream, 0);
212 fputs_filtered (") ", stream);
213 print_subexp (exp, pos, stream, PREC_PREFIX);
214 if ((int) prec > (int) PREC_PREFIX)
215 fputs_filtered (")", stream);
216 return;
217
218 case UNOP_MEMVAL:
219 (*pos) += 2;
220 if ((int) prec > (int) PREC_PREFIX)
221 fputs_filtered ("(", stream);
222 if (exp->elts[pc + 1].type->code == TYPE_CODE_FUNC &&
223 exp->elts[pc + 3].opcode == OP_LONG) {
224 /* We have a minimal symbol fn, probably. It's encoded
225 as a UNOP_MEMVAL (function-type) of an OP_LONG (int, address).
226 Swallow the OP_LONG (including both its opcodes); ignore
227 its type; print the value in the type of the MEMVAL. */
228 (*pos) += 4;
229 val = value_at_lazy (exp->elts[pc + 1].type,
230 (CORE_ADDR) exp->elts[pc + 5].longconst);
231 value_print (val, stream, 0, Val_no_prettyprint);
232 } else {
233 fputs_filtered ("{", stream);
234 type_print (exp->elts[pc + 1].type, "", stream, 0);
235 fputs_filtered ("} ", stream);
236 print_subexp (exp, pos, stream, PREC_PREFIX);
237 }
238 if ((int) prec > (int) PREC_PREFIX)
239 fputs_filtered (")", stream);
240 return;
241
242 case BINOP_ASSIGN_MODIFY:
243 opcode = exp->elts[pc + 1].opcode;
244 (*pos) += 2;
245 myprec = PREC_ASSIGN;
246 assoc = 1;
247 assign_modify = 1;
248 op_str = "???";
249 for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
250 if (op_print_tab[tem].opcode == opcode)
251 {
252 op_str = op_print_tab[tem].string;
253 break;
254 }
255 break;
256
257 /* C++ ops */
258
259 case OP_THIS:
260 ++(*pos);
261 fputs_filtered ("this", stream);
262 return;
263
264 /* Modula-2 ops */
265
266 case BINOP_MULTI_SUBSCRIPT:
267 (*pos) += 2;
268 nargs = longest_to_int (exp->elts[pc + 1].longconst);
269 print_subexp (exp, pos, stream, PREC_SUFFIX);
270 fprintf (stream, " [");
271 for (tem = 0; tem < nargs; tem++)
272 {
273 if (tem != 0)
274 fprintf (stream, ", ");
275 print_subexp (exp, pos, stream, PREC_ABOVE_COMMA);
276 }
277 fprintf (stream, "]");
278 return;
279
280 case BINOP_VAL:
281 (*pos)+=2;
282 fprintf(stream,"VAL(");
283 type_print(exp->elts[pc+1].type,"",stream,0);
284 fprintf(stream,",");
285 print_subexp(exp,pos,stream,PREC_PREFIX);
286 fprintf(stream,")");
287 return;
288
289 case UNOP_CAP:
290 print_simple_m2_func("CAP",exp,pos,stream);
291 return;
292
293 case UNOP_CHR:
294 print_simple_m2_func("CHR",exp,pos,stream);
295 return;
296
297 case UNOP_ORD:
298 print_simple_m2_func("ORD",exp,pos,stream);
299 return;
300
301 case UNOP_ABS:
302 print_simple_m2_func("ABS",exp,pos,stream);
303 return;
304
305 case UNOP_FLOAT:
306 print_simple_m2_func("FLOAT",exp,pos,stream);
307 return;
308
309 case UNOP_HIGH:
310 print_simple_m2_func("HIGH",exp,pos,stream);
311 return;
312
313 case UNOP_MAX:
314 print_simple_m2_func("MAX",exp,pos,stream);
315 return;
316
317 case UNOP_MIN:
318 print_simple_m2_func("MIN",exp,pos,stream);
319 return;
320
321 case UNOP_ODD:
322 print_simple_m2_func("ODD",exp,pos,stream);
323 return;
324
325 case UNOP_TRUNC:
326 print_simple_m2_func("TRUNC",exp,pos,stream);
327 return;
328
329 case BINOP_INCL:
330 case BINOP_EXCL:
331 error("print_subexp: Not implemented.");
332
333 /* Default ops */
334
335 default:
336 op_str = "???";
337 for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
338 if (op_print_tab[tem].opcode == opcode)
339 {
340 op_str = op_print_tab[tem].string;
341 myprec = op_print_tab[tem].precedence;
342 assoc = op_print_tab[tem].right_assoc;
343 break;
344 }
345 }
346
347 if ((int) myprec < (int) prec)
348 fputs_filtered ("(", stream);
349 if ((int) opcode > (int) BINOP_END)
350 {
351 /* Unary prefix operator. */
352 fputs_filtered (op_str, stream);
353 print_subexp (exp, pos, stream, PREC_PREFIX);
354 }
355 else
356 {
357 /* Binary operator. */
358 /* Print left operand.
359 If operator is right-associative,
360 increment precedence for this operand. */
361 print_subexp (exp, pos, stream,
362 (enum precedence) ((int) myprec + assoc));
363 /* Print the operator itself. */
364 if (assign_modify)
365 fprintf_filtered (stream, " %s= ", op_str);
366 else if (op_str[0] == ',')
367 fprintf_filtered (stream, "%s ", op_str);
368 else
369 fprintf_filtered (stream, " %s ", op_str);
370 /* Print right operand.
371 If operator is left-associative,
372 increment precedence for this operand. */
373 print_subexp (exp, pos, stream,
374 (enum precedence) ((int) myprec + !assoc));
375 }
376
377 if ((int) myprec < (int) prec)
378 fputs_filtered (")", stream);
379 }
380
381 /* Print out something of the form <s>(<arg>).
382 This is used to print out some builtin Modula-2
383 functions.
384 FIXME: There is probably some way to get the precedence
385 rules to do this (print a unary operand with parens around it). */
386 static void
387 print_simple_m2_func(s,exp,pos,stream)
388 char *s;
389 register struct expression *exp;
390 register int *pos;
391 FILE *stream;
392 {
393 fprintf(stream,"%s(",s);
394 print_subexp(exp,pos,stream,PREC_PREFIX);
395 fprintf(stream,")");
396 }
397
398 /* Return the operator corresponding to opcode OP as
399 a string. NULL indicates that the opcode was not found in the
400 current language table. */
401 char *
402 op_string(op)
403 enum exp_opcode op;
404 {
405 int tem;
406 register const struct op_print *op_print_tab;
407
408 op_print_tab = current_language->la_op_print_tab;
409 for (tem = 0; op_print_tab[tem].opcode != OP_NULL; tem++)
410 if (op_print_tab[tem].opcode == op)
411 return op_print_tab[tem].string;
412 return NULL;
413 }