* gdb.threads/gcore-thread.exp: Use gdb_gcore_cmd.
[deliverable/binutils-gdb.git] / gdb / ax-gdb.c
CommitLineData
1bac305b
AC
1/* GDB-specific functions for operating on agent expressions.
2
0b302171
JB
3 Copyright (C) 1998-2001, 2003, 2007-2012 Free Software Foundation,
4 Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
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
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
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.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c 20
c906108c
SS
21#include "defs.h"
22#include "symtab.h"
23#include "symfile.h"
24#include "gdbtypes.h"
b97aedf3 25#include "language.h"
c906108c
SS
26#include "value.h"
27#include "expression.h"
28#include "command.h"
29#include "gdbcmd.h"
30#include "frame.h"
31#include "target.h"
32#include "ax.h"
33#include "ax-gdb.h"
309367d4 34#include "gdb_string.h"
fe898f56 35#include "block.h"
7b83296f 36#include "regcache.h"
029a67e4 37#include "user-regs.h"
f7c79c41 38#include "language.h"
6c228b9c 39#include "dictionary.h"
00bf0b85 40#include "breakpoint.h"
f61e138d 41#include "tracepoint.h"
b6e7192f 42#include "cp-support.h"
6710bf39 43#include "arch-utils.h"
d3ce09f5 44#include "cli/cli-utils.h"
34b536a8 45#include "linespec.h"
c906108c 46
3065dfb6
SS
47#include "valprint.h"
48#include "c-lang.h"
49
d3ce09f5
SS
50#include "format.h"
51
6426a772
JM
52/* To make sense of this file, you should read doc/agentexpr.texi.
53 Then look at the types and enums in ax-gdb.h. For the code itself,
54 look at gen_expr, towards the bottom; that's the main function that
55 looks at the GDB expressions and calls everything else to generate
56 code.
c906108c
SS
57
58 I'm beginning to wonder whether it wouldn't be nicer to internally
59 generate trees, with types, and then spit out the bytecode in
60 linear form afterwards; we could generate fewer `swap', `ext', and
61 `zero_ext' bytecodes that way; it would make good constant folding
62 easier, too. But at the moment, I think we should be willing to
63 pay for the simplicity of this code with less-than-optimal bytecode
64 strings.
65
c5aa993b
JM
66 Remember, "GBD" stands for "Great Britain, Dammit!" So be careful. */
67\f
c906108c
SS
68
69
0e2de366 70/* Prototypes for local functions. */
c906108c
SS
71
72/* There's a standard order to the arguments of these functions:
73 union exp_element ** --- pointer into expression
74 struct agent_expr * --- agent expression buffer to generate code into
75 struct axs_value * --- describes value left on top of stack */
c5aa993b 76
a14ed312
KB
77static struct value *const_var_ref (struct symbol *var);
78static struct value *const_expr (union exp_element **pc);
79static struct value *maybe_const_expr (union exp_element **pc);
80
3e43a32a
MS
81static void gen_traced_pop (struct gdbarch *, struct agent_expr *,
82 struct axs_value *);
a14ed312
KB
83
84static void gen_sign_extend (struct agent_expr *, struct type *);
85static void gen_extend (struct agent_expr *, struct type *);
86static void gen_fetch (struct agent_expr *, struct type *);
87static void gen_left_shift (struct agent_expr *, int);
88
89
f7c79c41
UW
90static void gen_frame_args_address (struct gdbarch *, struct agent_expr *);
91static void gen_frame_locals_address (struct gdbarch *, struct agent_expr *);
a14ed312
KB
92static void gen_offset (struct agent_expr *ax, int offset);
93static void gen_sym_offset (struct agent_expr *, struct symbol *);
f7c79c41 94static void gen_var_ref (struct gdbarch *, struct agent_expr *ax,
a14ed312
KB
95 struct axs_value *value, struct symbol *var);
96
97
98static void gen_int_literal (struct agent_expr *ax,
99 struct axs_value *value,
100 LONGEST k, struct type *type);
101
f7c79c41
UW
102static void gen_usual_unary (struct expression *exp, struct agent_expr *ax,
103 struct axs_value *value);
a14ed312
KB
104static int type_wider_than (struct type *type1, struct type *type2);
105static struct type *max_type (struct type *type1, struct type *type2);
106static void gen_conversion (struct agent_expr *ax,
107 struct type *from, struct type *to);
108static int is_nontrivial_conversion (struct type *from, struct type *to);
f7c79c41
UW
109static void gen_usual_arithmetic (struct expression *exp,
110 struct agent_expr *ax,
a14ed312
KB
111 struct axs_value *value1,
112 struct axs_value *value2);
f7c79c41
UW
113static void gen_integral_promotions (struct expression *exp,
114 struct agent_expr *ax,
a14ed312
KB
115 struct axs_value *value);
116static void gen_cast (struct agent_expr *ax,
117 struct axs_value *value, struct type *type);
118static void gen_scale (struct agent_expr *ax,
119 enum agent_op op, struct type *type);
f7c79c41
UW
120static void gen_ptradd (struct agent_expr *ax, struct axs_value *value,
121 struct axs_value *value1, struct axs_value *value2);
122static void gen_ptrsub (struct agent_expr *ax, struct axs_value *value,
123 struct axs_value *value1, struct axs_value *value2);
124static void gen_ptrdiff (struct agent_expr *ax, struct axs_value *value,
125 struct axs_value *value1, struct axs_value *value2,
126 struct type *result_type);
a14ed312
KB
127static void gen_binop (struct agent_expr *ax,
128 struct axs_value *value,
129 struct axs_value *value1,
130 struct axs_value *value2,
131 enum agent_op op,
132 enum agent_op op_unsigned, int may_carry, char *name);
f7c79c41
UW
133static void gen_logical_not (struct agent_expr *ax, struct axs_value *value,
134 struct type *result_type);
a14ed312
KB
135static void gen_complement (struct agent_expr *ax, struct axs_value *value);
136static void gen_deref (struct agent_expr *, struct axs_value *);
137static void gen_address_of (struct agent_expr *, struct axs_value *);
505e835d 138static void gen_bitfield_ref (struct expression *exp, struct agent_expr *ax,
a14ed312
KB
139 struct axs_value *value,
140 struct type *type, int start, int end);
b6e7192f
SS
141static void gen_primitive_field (struct expression *exp,
142 struct agent_expr *ax,
143 struct axs_value *value,
144 int offset, int fieldno, struct type *type);
145static int gen_struct_ref_recursive (struct expression *exp,
146 struct agent_expr *ax,
147 struct axs_value *value,
148 char *field, int offset,
149 struct type *type);
505e835d 150static void gen_struct_ref (struct expression *exp, struct agent_expr *ax,
a14ed312
KB
151 struct axs_value *value,
152 char *field,
153 char *operator_name, char *operand_name);
400c6af0 154static void gen_static_field (struct gdbarch *gdbarch,
b6e7192f
SS
155 struct agent_expr *ax, struct axs_value *value,
156 struct type *type, int fieldno);
f7c79c41 157static void gen_repeat (struct expression *exp, union exp_element **pc,
a14ed312 158 struct agent_expr *ax, struct axs_value *value);
f7c79c41
UW
159static void gen_sizeof (struct expression *exp, union exp_element **pc,
160 struct agent_expr *ax, struct axs_value *value,
161 struct type *size_type);
f61e138d
SS
162static void gen_expr_binop_rest (struct expression *exp,
163 enum exp_opcode op, union exp_element **pc,
164 struct agent_expr *ax,
165 struct axs_value *value,
166 struct axs_value *value1,
167 struct axs_value *value2);
c5aa993b 168
a14ed312 169static void agent_command (char *exp, int from_tty);
c906108c 170\f
c5aa993b 171
c906108c
SS
172/* Detecting constant expressions. */
173
174/* If the variable reference at *PC is a constant, return its value.
175 Otherwise, return zero.
176
177 Hey, Wally! How can a variable reference be a constant?
178
179 Well, Beav, this function really handles the OP_VAR_VALUE operator,
180 not specifically variable references. GDB uses OP_VAR_VALUE to
181 refer to any kind of symbolic reference: function names, enum
182 elements, and goto labels are all handled through the OP_VAR_VALUE
183 operator, even though they're constants. It makes sense given the
184 situation.
185
186 Gee, Wally, don'cha wonder sometimes if data representations that
187 subvert commonly accepted definitions of terms in favor of heavily
188 context-specific interpretations are really just a tool of the
189 programming hegemony to preserve their power and exclude the
190 proletariat? */
191
192static struct value *
fba45db2 193const_var_ref (struct symbol *var)
c906108c
SS
194{
195 struct type *type = SYMBOL_TYPE (var);
196
197 switch (SYMBOL_CLASS (var))
198 {
199 case LOC_CONST:
200 return value_from_longest (type, (LONGEST) SYMBOL_VALUE (var));
201
202 case LOC_LABEL:
4478b372 203 return value_from_pointer (type, (CORE_ADDR) SYMBOL_VALUE_ADDRESS (var));
c906108c
SS
204
205 default:
206 return 0;
207 }
208}
209
210
211/* If the expression starting at *PC has a constant value, return it.
212 Otherwise, return zero. If we return a value, then *PC will be
213 advanced to the end of it. If we return zero, *PC could be
214 anywhere. */
215static struct value *
fba45db2 216const_expr (union exp_element **pc)
c906108c
SS
217{
218 enum exp_opcode op = (*pc)->opcode;
219 struct value *v1;
220
221 switch (op)
222 {
223 case OP_LONG:
224 {
225 struct type *type = (*pc)[1].type;
226 LONGEST k = (*pc)[2].longconst;
5b4ee69b 227
c906108c
SS
228 (*pc) += 4;
229 return value_from_longest (type, k);
230 }
231
232 case OP_VAR_VALUE:
233 {
234 struct value *v = const_var_ref ((*pc)[2].symbol);
5b4ee69b 235
c906108c
SS
236 (*pc) += 4;
237 return v;
238 }
239
c5aa993b 240 /* We could add more operators in here. */
c906108c
SS
241
242 case UNOP_NEG:
243 (*pc)++;
244 v1 = const_expr (pc);
245 if (v1)
246 return value_neg (v1);
247 else
248 return 0;
249
250 default:
251 return 0;
252 }
253}
254
255
256/* Like const_expr, but guarantee also that *PC is undisturbed if the
257 expression is not constant. */
258static struct value *
fba45db2 259maybe_const_expr (union exp_element **pc)
c906108c
SS
260{
261 union exp_element *tentative_pc = *pc;
262 struct value *v = const_expr (&tentative_pc);
263
264 /* If we got a value, then update the real PC. */
265 if (v)
266 *pc = tentative_pc;
c5aa993b 267
c906108c
SS
268 return v;
269}
c906108c 270\f
c5aa993b 271
c906108c
SS
272/* Generating bytecode from GDB expressions: general assumptions */
273
274/* Here are a few general assumptions made throughout the code; if you
275 want to make a change that contradicts one of these, then you'd
276 better scan things pretty thoroughly.
277
278 - We assume that all values occupy one stack element. For example,
c5aa993b
JM
279 sometimes we'll swap to get at the left argument to a binary
280 operator. If we decide that void values should occupy no stack
281 elements, or that synthetic arrays (whose size is determined at
282 run time, created by the `@' operator) should occupy two stack
283 elements (address and length), then this will cause trouble.
c906108c
SS
284
285 - We assume the stack elements are infinitely wide, and that we
c5aa993b
JM
286 don't have to worry what happens if the user requests an
287 operation that is wider than the actual interpreter's stack.
288 That is, it's up to the interpreter to handle directly all the
289 integer widths the user has access to. (Woe betide the language
290 with bignums!)
c906108c
SS
291
292 - We don't support side effects. Thus, we don't have to worry about
c5aa993b 293 GCC's generalized lvalues, function calls, etc.
c906108c
SS
294
295 - We don't support floating point. Many places where we switch on
c5aa993b
JM
296 some type don't bother to include cases for floating point; there
297 may be even more subtle ways this assumption exists. For
298 example, the arguments to % must be integers.
c906108c
SS
299
300 - We assume all subexpressions have a static, unchanging type. If
c5aa993b
JM
301 we tried to support convenience variables, this would be a
302 problem.
c906108c
SS
303
304 - All values on the stack should always be fully zero- or
c5aa993b
JM
305 sign-extended.
306
307 (I wasn't sure whether to choose this or its opposite --- that
308 only addresses are assumed extended --- but it turns out that
309 neither convention completely eliminates spurious extend
310 operations (if everything is always extended, then you have to
311 extend after add, because it could overflow; if nothing is
312 extended, then you end up producing extends whenever you change
313 sizes), and this is simpler.) */
c906108c 314\f
c5aa993b 315
c906108c
SS
316/* Generating bytecode from GDB expressions: the `trace' kludge */
317
318/* The compiler in this file is a general-purpose mechanism for
319 translating GDB expressions into bytecode. One ought to be able to
320 find a million and one uses for it.
321
322 However, at the moment it is HOPELESSLY BRAIN-DAMAGED for the sake
323 of expediency. Let he who is without sin cast the first stone.
324
325 For the data tracing facility, we need to insert `trace' bytecodes
326 before each data fetch; this records all the memory that the
327 expression touches in the course of evaluation, so that memory will
328 be available when the user later tries to evaluate the expression
329 in GDB.
330
331 This should be done (I think) in a post-processing pass, that walks
332 an arbitrary agent expression and inserts `trace' operations at the
333 appropriate points. But it's much faster to just hack them
334 directly into the code. And since we're in a crunch, that's what
335 I've done.
336
337 Setting the flag trace_kludge to non-zero enables the code that
338 emits the trace bytecodes at the appropriate points. */
08922a10 339int trace_kludge;
c906108c 340
3065dfb6
SS
341/* Inspired by trace_kludge, this indicates that pointers to chars
342 should get an added tracenz bytecode to record nonzero bytes, up to
343 a length that is the value of trace_string_kludge. */
344int trace_string_kludge;
345
400c6af0
SS
346/* Scan for all static fields in the given class, including any base
347 classes, and generate tracing bytecodes for each. */
348
349static void
350gen_trace_static_fields (struct gdbarch *gdbarch,
351 struct agent_expr *ax,
352 struct type *type)
353{
354 int i, nbases = TYPE_N_BASECLASSES (type);
355 struct axs_value value;
356
357 CHECK_TYPEDEF (type);
358
359 for (i = TYPE_NFIELDS (type) - 1; i >= nbases; i--)
360 {
361 if (field_is_static (&TYPE_FIELD (type, i)))
362 {
363 gen_static_field (gdbarch, ax, &value, type, i);
364 if (value.optimized_out)
365 continue;
366 switch (value.kind)
367 {
368 case axs_lvalue_memory:
369 {
744a8059
SP
370 /* Initialize the TYPE_LENGTH if it is a typedef. */
371 check_typedef (value.type);
372 ax_const_l (ax, TYPE_LENGTH (value.type));
400c6af0
SS
373 ax_simple (ax, aop_trace);
374 }
375 break;
376
377 case axs_lvalue_register:
35c9c7ba
SS
378 /* We don't actually need the register's value to be pushed,
379 just note that we need it to be collected. */
380 ax_reg_mask (ax, value.u.reg);
400c6af0
SS
381
382 default:
383 break;
384 }
385 }
386 }
387
388 /* Now scan through base classes recursively. */
389 for (i = 0; i < nbases; i++)
390 {
391 struct type *basetype = check_typedef (TYPE_BASECLASS (type, i));
392
393 gen_trace_static_fields (gdbarch, ax, basetype);
394 }
395}
396
c906108c
SS
397/* Trace the lvalue on the stack, if it needs it. In either case, pop
398 the value. Useful on the left side of a comma, and at the end of
399 an expression being used for tracing. */
400static void
400c6af0
SS
401gen_traced_pop (struct gdbarch *gdbarch,
402 struct agent_expr *ax, struct axs_value *value)
c906108c 403{
3065dfb6
SS
404 int string_trace = 0;
405 if (trace_string_kludge
406 && TYPE_CODE (value->type) == TYPE_CODE_PTR
407 && c_textual_element_type (check_typedef (TYPE_TARGET_TYPE (value->type)),
408 's'))
409 string_trace = 1;
410
c906108c
SS
411 if (trace_kludge)
412 switch (value->kind)
413 {
414 case axs_rvalue:
3065dfb6
SS
415 if (string_trace)
416 {
417 ax_const_l (ax, trace_string_kludge);
418 ax_simple (ax, aop_tracenz);
419 }
420 else
421 /* We don't trace rvalues, just the lvalues necessary to
422 produce them. So just dispose of this value. */
423 ax_simple (ax, aop_pop);
c906108c
SS
424 break;
425
426 case axs_lvalue_memory:
427 {
3065dfb6
SS
428 if (string_trace)
429 ax_simple (ax, aop_dup);
430
744a8059
SP
431 /* Initialize the TYPE_LENGTH if it is a typedef. */
432 check_typedef (value->type);
433
c906108c
SS
434 /* There's no point in trying to use a trace_quick bytecode
435 here, since "trace_quick SIZE pop" is three bytes, whereas
436 "const8 SIZE trace" is also three bytes, does the same
437 thing, and the simplest code which generates that will also
438 work correctly for objects with large sizes. */
744a8059 439 ax_const_l (ax, TYPE_LENGTH (value->type));
c906108c 440 ax_simple (ax, aop_trace);
3065dfb6
SS
441
442 if (string_trace)
443 {
444 ax_simple (ax, aop_ref32);
445 ax_const_l (ax, trace_string_kludge);
446 ax_simple (ax, aop_tracenz);
447 }
c906108c 448 }
c5aa993b 449 break;
c906108c
SS
450
451 case axs_lvalue_register:
35c9c7ba
SS
452 /* We don't actually need the register's value to be on the
453 stack, and the target will get heartburn if the register is
454 larger than will fit in a stack, so just mark it for
455 collection and be done with it. */
456 ax_reg_mask (ax, value->u.reg);
3065dfb6
SS
457
458 /* But if the register points to a string, assume the value
459 will fit on the stack and push it anyway. */
460 if (string_trace)
461 {
462 ax_reg (ax, value->u.reg);
463 ax_const_l (ax, trace_string_kludge);
464 ax_simple (ax, aop_tracenz);
465 }
c906108c
SS
466 break;
467 }
468 else
469 /* If we're not tracing, just pop the value. */
470 ax_simple (ax, aop_pop);
400c6af0
SS
471
472 /* To trace C++ classes with static fields stored elsewhere. */
473 if (trace_kludge
474 && (TYPE_CODE (value->type) == TYPE_CODE_STRUCT
475 || TYPE_CODE (value->type) == TYPE_CODE_UNION))
476 gen_trace_static_fields (gdbarch, ax, value->type);
c906108c 477}
c5aa993b 478\f
c906108c
SS
479
480
c906108c
SS
481/* Generating bytecode from GDB expressions: helper functions */
482
483/* Assume that the lower bits of the top of the stack is a value of
484 type TYPE, and the upper bits are zero. Sign-extend if necessary. */
485static void
fba45db2 486gen_sign_extend (struct agent_expr *ax, struct type *type)
c906108c
SS
487{
488 /* Do we need to sign-extend this? */
c5aa993b 489 if (!TYPE_UNSIGNED (type))
0004e5a2 490 ax_ext (ax, TYPE_LENGTH (type) * TARGET_CHAR_BIT);
c906108c
SS
491}
492
493
494/* Assume the lower bits of the top of the stack hold a value of type
495 TYPE, and the upper bits are garbage. Sign-extend or truncate as
496 needed. */
497static void
fba45db2 498gen_extend (struct agent_expr *ax, struct type *type)
c906108c 499{
0004e5a2 500 int bits = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
5b4ee69b 501
c906108c
SS
502 /* I just had to. */
503 ((TYPE_UNSIGNED (type) ? ax_zero_ext : ax_ext) (ax, bits));
504}
505
506
507/* Assume that the top of the stack contains a value of type "pointer
508 to TYPE"; generate code to fetch its value. Note that TYPE is the
509 target type, not the pointer type. */
510static void
fba45db2 511gen_fetch (struct agent_expr *ax, struct type *type)
c906108c
SS
512{
513 if (trace_kludge)
514 {
515 /* Record the area of memory we're about to fetch. */
516 ax_trace_quick (ax, TYPE_LENGTH (type));
517 }
518
af381b8c
JB
519 if (TYPE_CODE (type) == TYPE_CODE_RANGE)
520 type = TYPE_TARGET_TYPE (type);
521
0004e5a2 522 switch (TYPE_CODE (type))
c906108c
SS
523 {
524 case TYPE_CODE_PTR:
b97aedf3 525 case TYPE_CODE_REF:
c906108c
SS
526 case TYPE_CODE_ENUM:
527 case TYPE_CODE_INT:
528 case TYPE_CODE_CHAR:
3b11a015 529 case TYPE_CODE_BOOL:
c906108c
SS
530 /* It's a scalar value, so we know how to dereference it. How
531 many bytes long is it? */
0004e5a2 532 switch (TYPE_LENGTH (type))
c906108c 533 {
c5aa993b
JM
534 case 8 / TARGET_CHAR_BIT:
535 ax_simple (ax, aop_ref8);
536 break;
537 case 16 / TARGET_CHAR_BIT:
538 ax_simple (ax, aop_ref16);
539 break;
540 case 32 / TARGET_CHAR_BIT:
541 ax_simple (ax, aop_ref32);
542 break;
543 case 64 / TARGET_CHAR_BIT:
544 ax_simple (ax, aop_ref64);
545 break;
c906108c
SS
546
547 /* Either our caller shouldn't have asked us to dereference
548 that pointer (other code's fault), or we're not
549 implementing something we should be (this code's fault).
550 In any case, it's a bug the user shouldn't see. */
551 default:
8e65ff28 552 internal_error (__FILE__, __LINE__,
3d263c1d 553 _("gen_fetch: strange size"));
c906108c
SS
554 }
555
556 gen_sign_extend (ax, type);
557 break;
558
559 default:
52323be9
LM
560 /* Our caller requested us to dereference a pointer from an unsupported
561 type. Error out and give callers a chance to handle the failure
562 gracefully. */
563 error (_("gen_fetch: Unsupported type code `%s'."),
564 TYPE_NAME (type));
c906108c
SS
565 }
566}
567
568
569/* Generate code to left shift the top of the stack by DISTANCE bits, or
570 right shift it by -DISTANCE bits if DISTANCE < 0. This generates
571 unsigned (logical) right shifts. */
572static void
fba45db2 573gen_left_shift (struct agent_expr *ax, int distance)
c906108c
SS
574{
575 if (distance > 0)
576 {
577 ax_const_l (ax, distance);
578 ax_simple (ax, aop_lsh);
579 }
580 else if (distance < 0)
581 {
582 ax_const_l (ax, -distance);
583 ax_simple (ax, aop_rsh_unsigned);
584 }
585}
c5aa993b 586\f
c906108c
SS
587
588
c906108c
SS
589/* Generating bytecode from GDB expressions: symbol references */
590
591/* Generate code to push the base address of the argument portion of
592 the top stack frame. */
593static void
f7c79c41 594gen_frame_args_address (struct gdbarch *gdbarch, struct agent_expr *ax)
c906108c 595{
39d4ef09
AC
596 int frame_reg;
597 LONGEST frame_offset;
c906108c 598
f7c79c41 599 gdbarch_virtual_frame_pointer (gdbarch,
c7bb205c 600 ax->scope, &frame_reg, &frame_offset);
c5aa993b 601 ax_reg (ax, frame_reg);
c906108c
SS
602 gen_offset (ax, frame_offset);
603}
604
605
606/* Generate code to push the base address of the locals portion of the
607 top stack frame. */
608static void
f7c79c41 609gen_frame_locals_address (struct gdbarch *gdbarch, struct agent_expr *ax)
c906108c 610{
39d4ef09
AC
611 int frame_reg;
612 LONGEST frame_offset;
c906108c 613
f7c79c41 614 gdbarch_virtual_frame_pointer (gdbarch,
c7bb205c 615 ax->scope, &frame_reg, &frame_offset);
c5aa993b 616 ax_reg (ax, frame_reg);
c906108c
SS
617 gen_offset (ax, frame_offset);
618}
619
620
621/* Generate code to add OFFSET to the top of the stack. Try to
622 generate short and readable code. We use this for getting to
623 variables on the stack, and structure members. If we were
624 programming in ML, it would be clearer why these are the same
625 thing. */
626static void
fba45db2 627gen_offset (struct agent_expr *ax, int offset)
c906108c
SS
628{
629 /* It would suffice to simply push the offset and add it, but this
630 makes it easier to read positive and negative offsets in the
631 bytecode. */
632 if (offset > 0)
633 {
634 ax_const_l (ax, offset);
635 ax_simple (ax, aop_add);
636 }
637 else if (offset < 0)
638 {
639 ax_const_l (ax, -offset);
640 ax_simple (ax, aop_sub);
641 }
642}
643
644
645/* In many cases, a symbol's value is the offset from some other
646 address (stack frame, base register, etc.) Generate code to add
647 VAR's value to the top of the stack. */
648static void
fba45db2 649gen_sym_offset (struct agent_expr *ax, struct symbol *var)
c906108c
SS
650{
651 gen_offset (ax, SYMBOL_VALUE (var));
652}
653
654
655/* Generate code for a variable reference to AX. The variable is the
656 symbol VAR. Set VALUE to describe the result. */
657
658static void
f7c79c41
UW
659gen_var_ref (struct gdbarch *gdbarch, struct agent_expr *ax,
660 struct axs_value *value, struct symbol *var)
c906108c 661{
0e2de366 662 /* Dereference any typedefs. */
c906108c 663 value->type = check_typedef (SYMBOL_TYPE (var));
400c6af0 664 value->optimized_out = 0;
c906108c
SS
665
666 /* I'm imitating the code in read_var_value. */
667 switch (SYMBOL_CLASS (var))
668 {
669 case LOC_CONST: /* A constant, like an enum value. */
670 ax_const_l (ax, (LONGEST) SYMBOL_VALUE (var));
671 value->kind = axs_rvalue;
672 break;
673
674 case LOC_LABEL: /* A goto label, being used as a value. */
675 ax_const_l (ax, (LONGEST) SYMBOL_VALUE_ADDRESS (var));
676 value->kind = axs_rvalue;
677 break;
678
679 case LOC_CONST_BYTES:
8e65ff28 680 internal_error (__FILE__, __LINE__,
3e43a32a
MS
681 _("gen_var_ref: LOC_CONST_BYTES "
682 "symbols are not supported"));
c906108c
SS
683
684 /* Variable at a fixed location in memory. Easy. */
685 case LOC_STATIC:
686 /* Push the address of the variable. */
687 ax_const_l (ax, SYMBOL_VALUE_ADDRESS (var));
688 value->kind = axs_lvalue_memory;
689 break;
690
691 case LOC_ARG: /* var lives in argument area of frame */
f7c79c41 692 gen_frame_args_address (gdbarch, ax);
c906108c
SS
693 gen_sym_offset (ax, var);
694 value->kind = axs_lvalue_memory;
695 break;
696
697 case LOC_REF_ARG: /* As above, but the frame slot really
698 holds the address of the variable. */
f7c79c41 699 gen_frame_args_address (gdbarch, ax);
c906108c
SS
700 gen_sym_offset (ax, var);
701 /* Don't assume any particular pointer size. */
f7c79c41 702 gen_fetch (ax, builtin_type (gdbarch)->builtin_data_ptr);
c906108c
SS
703 value->kind = axs_lvalue_memory;
704 break;
705
706 case LOC_LOCAL: /* var lives in locals area of frame */
f7c79c41 707 gen_frame_locals_address (gdbarch, ax);
c906108c
SS
708 gen_sym_offset (ax, var);
709 value->kind = axs_lvalue_memory;
710 break;
711
c906108c 712 case LOC_TYPEDEF:
3d263c1d 713 error (_("Cannot compute value of typedef `%s'."),
de5ad195 714 SYMBOL_PRINT_NAME (var));
c906108c
SS
715 break;
716
717 case LOC_BLOCK:
718 ax_const_l (ax, BLOCK_START (SYMBOL_BLOCK_VALUE (var)));
719 value->kind = axs_rvalue;
720 break;
721
722 case LOC_REGISTER:
c906108c
SS
723 /* Don't generate any code at all; in the process of treating
724 this as an lvalue or rvalue, the caller will generate the
725 right code. */
726 value->kind = axs_lvalue_register;
768a979c 727 value->u.reg = SYMBOL_REGISTER_OPS (var)->register_number (var, gdbarch);
c906108c
SS
728 break;
729
730 /* A lot like LOC_REF_ARG, but the pointer lives directly in a
2a2d4dc3
AS
731 register, not on the stack. Simpler than LOC_REGISTER
732 because it's just like any other case where the thing
733 has a real address. */
c906108c 734 case LOC_REGPARM_ADDR:
768a979c 735 ax_reg (ax, SYMBOL_REGISTER_OPS (var)->register_number (var, gdbarch));
c906108c
SS
736 value->kind = axs_lvalue_memory;
737 break;
738
739 case LOC_UNRESOLVED:
740 {
c5aa993b 741 struct minimal_symbol *msym
3567439c 742 = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (var), NULL, NULL);
5b4ee69b 743
c5aa993b 744 if (!msym)
3d263c1d 745 error (_("Couldn't resolve symbol `%s'."), SYMBOL_PRINT_NAME (var));
c5aa993b 746
c906108c
SS
747 /* Push the address of the variable. */
748 ax_const_l (ax, SYMBOL_VALUE_ADDRESS (msym));
749 value->kind = axs_lvalue_memory;
750 }
c5aa993b 751 break;
c906108c 752
a55cc764 753 case LOC_COMPUTED:
a67af2b9 754 /* FIXME: cagney/2004-01-26: It should be possible to
768a979c 755 unconditionally call the SYMBOL_COMPUTED_OPS method when available.
d3efc286 756 Unfortunately DWARF 2 stores the frame-base (instead of the
a67af2b9
AC
757 function) location in a function's symbol. Oops! For the
758 moment enable this when/where applicable. */
505e835d 759 SYMBOL_COMPUTED_OPS (var)->tracepoint_var_ref (var, gdbarch, ax, value);
a55cc764
DJ
760 break;
761
c906108c 762 case LOC_OPTIMIZED_OUT:
400c6af0
SS
763 /* Flag this, but don't say anything; leave it up to callers to
764 warn the user. */
765 value->optimized_out = 1;
c906108c
SS
766 break;
767
768 default:
3d263c1d 769 error (_("Cannot find value of botched symbol `%s'."),
de5ad195 770 SYMBOL_PRINT_NAME (var));
c906108c
SS
771 break;
772 }
773}
c5aa993b 774\f
c906108c
SS
775
776
c906108c
SS
777/* Generating bytecode from GDB expressions: literals */
778
779static void
fba45db2
KB
780gen_int_literal (struct agent_expr *ax, struct axs_value *value, LONGEST k,
781 struct type *type)
c906108c
SS
782{
783 ax_const_l (ax, k);
784 value->kind = axs_rvalue;
648027cc 785 value->type = check_typedef (type);
c906108c 786}
c5aa993b 787\f
c906108c
SS
788
789
c906108c
SS
790/* Generating bytecode from GDB expressions: unary conversions, casts */
791
792/* Take what's on the top of the stack (as described by VALUE), and
793 try to make an rvalue out of it. Signal an error if we can't do
794 that. */
55aa24fb 795void
fba45db2 796require_rvalue (struct agent_expr *ax, struct axs_value *value)
c906108c 797{
3a96536b
SS
798 /* Only deal with scalars, structs and such may be too large
799 to fit in a stack entry. */
800 value->type = check_typedef (value->type);
801 if (TYPE_CODE (value->type) == TYPE_CODE_ARRAY
802 || TYPE_CODE (value->type) == TYPE_CODE_STRUCT
803 || TYPE_CODE (value->type) == TYPE_CODE_UNION
804 || TYPE_CODE (value->type) == TYPE_CODE_FUNC)
1c40aa62 805 error (_("Value not scalar: cannot be an rvalue."));
3a96536b 806
c906108c
SS
807 switch (value->kind)
808 {
809 case axs_rvalue:
810 /* It's already an rvalue. */
811 break;
812
813 case axs_lvalue_memory:
814 /* The top of stack is the address of the object. Dereference. */
815 gen_fetch (ax, value->type);
816 break;
817
818 case axs_lvalue_register:
819 /* There's nothing on the stack, but value->u.reg is the
820 register number containing the value.
821
c5aa993b
JM
822 When we add floating-point support, this is going to have to
823 change. What about SPARC register pairs, for example? */
c906108c
SS
824 ax_reg (ax, value->u.reg);
825 gen_extend (ax, value->type);
826 break;
827 }
828
829 value->kind = axs_rvalue;
830}
831
832
833/* Assume the top of the stack is described by VALUE, and perform the
834 usual unary conversions. This is motivated by ANSI 6.2.2, but of
835 course GDB expressions are not ANSI; they're the mishmash union of
836 a bunch of languages. Rah.
837
838 NOTE! This function promises to produce an rvalue only when the
839 incoming value is of an appropriate type. In other words, the
840 consumer of the value this function produces may assume the value
841 is an rvalue only after checking its type.
842
843 The immediate issue is that if the user tries to use a structure or
844 union as an operand of, say, the `+' operator, we don't want to try
845 to convert that structure to an rvalue; require_rvalue will bomb on
846 structs and unions. Rather, we want to simply pass the struct
847 lvalue through unchanged, and let `+' raise an error. */
848
849static void
f7c79c41
UW
850gen_usual_unary (struct expression *exp, struct agent_expr *ax,
851 struct axs_value *value)
c906108c
SS
852{
853 /* We don't have to generate any code for the usual integral
854 conversions, since values are always represented as full-width on
855 the stack. Should we tweak the type? */
856
857 /* Some types require special handling. */
0004e5a2 858 switch (TYPE_CODE (value->type))
c906108c
SS
859 {
860 /* Functions get converted to a pointer to the function. */
861 case TYPE_CODE_FUNC:
862 value->type = lookup_pointer_type (value->type);
863 value->kind = axs_rvalue; /* Should always be true, but just in case. */
864 break;
865
866 /* Arrays get converted to a pointer to their first element, and
c5aa993b 867 are no longer an lvalue. */
c906108c
SS
868 case TYPE_CODE_ARRAY:
869 {
870 struct type *elements = TYPE_TARGET_TYPE (value->type);
5b4ee69b 871
c906108c
SS
872 value->type = lookup_pointer_type (elements);
873 value->kind = axs_rvalue;
874 /* We don't need to generate any code; the address of the array
875 is also the address of its first element. */
876 }
c5aa993b 877 break;
c906108c 878
c5aa993b
JM
879 /* Don't try to convert structures and unions to rvalues. Let the
880 consumer signal an error. */
c906108c
SS
881 case TYPE_CODE_STRUCT:
882 case TYPE_CODE_UNION:
883 return;
c906108c
SS
884 }
885
886 /* If the value is an lvalue, dereference it. */
887 require_rvalue (ax, value);
888}
889
890
891/* Return non-zero iff the type TYPE1 is considered "wider" than the
892 type TYPE2, according to the rules described in gen_usual_arithmetic. */
893static int
fba45db2 894type_wider_than (struct type *type1, struct type *type2)
c906108c
SS
895{
896 return (TYPE_LENGTH (type1) > TYPE_LENGTH (type2)
897 || (TYPE_LENGTH (type1) == TYPE_LENGTH (type2)
898 && TYPE_UNSIGNED (type1)
c5aa993b 899 && !TYPE_UNSIGNED (type2)));
c906108c
SS
900}
901
902
903/* Return the "wider" of the two types TYPE1 and TYPE2. */
904static struct type *
fba45db2 905max_type (struct type *type1, struct type *type2)
c906108c
SS
906{
907 return type_wider_than (type1, type2) ? type1 : type2;
908}
909
910
911/* Generate code to convert a scalar value of type FROM to type TO. */
912static void
fba45db2 913gen_conversion (struct agent_expr *ax, struct type *from, struct type *to)
c906108c
SS
914{
915 /* Perhaps there is a more graceful way to state these rules. */
916
917 /* If we're converting to a narrower type, then we need to clear out
918 the upper bits. */
919 if (TYPE_LENGTH (to) < TYPE_LENGTH (from))
920 gen_extend (ax, from);
921
922 /* If the two values have equal width, but different signednesses,
923 then we need to extend. */
924 else if (TYPE_LENGTH (to) == TYPE_LENGTH (from))
925 {
926 if (TYPE_UNSIGNED (from) != TYPE_UNSIGNED (to))
927 gen_extend (ax, to);
928 }
929
930 /* If we're converting to a wider type, and becoming unsigned, then
931 we need to zero out any possible sign bits. */
932 else if (TYPE_LENGTH (to) > TYPE_LENGTH (from))
933 {
934 if (TYPE_UNSIGNED (to))
935 gen_extend (ax, to);
936 }
937}
938
939
940/* Return non-zero iff the type FROM will require any bytecodes to be
941 emitted to be converted to the type TO. */
942static int
fba45db2 943is_nontrivial_conversion (struct type *from, struct type *to)
c906108c 944{
35c9c7ba 945 struct agent_expr *ax = new_agent_expr (NULL, 0);
c906108c
SS
946 int nontrivial;
947
948 /* Actually generate the code, and see if anything came out. At the
949 moment, it would be trivial to replicate the code in
950 gen_conversion here, but in the future, when we're supporting
951 floating point and the like, it may not be. Doing things this
952 way allows this function to be independent of the logic in
953 gen_conversion. */
954 gen_conversion (ax, from, to);
955 nontrivial = ax->len > 0;
956 free_agent_expr (ax);
957 return nontrivial;
958}
959
960
961/* Generate code to perform the "usual arithmetic conversions" (ANSI C
962 6.2.1.5) for the two operands of an arithmetic operator. This
963 effectively finds a "least upper bound" type for the two arguments,
964 and promotes each argument to that type. *VALUE1 and *VALUE2
965 describe the values as they are passed in, and as they are left. */
966static void
f7c79c41
UW
967gen_usual_arithmetic (struct expression *exp, struct agent_expr *ax,
968 struct axs_value *value1, struct axs_value *value2)
c906108c
SS
969{
970 /* Do the usual binary conversions. */
971 if (TYPE_CODE (value1->type) == TYPE_CODE_INT
972 && TYPE_CODE (value2->type) == TYPE_CODE_INT)
973 {
974 /* The ANSI integral promotions seem to work this way: Order the
c5aa993b
JM
975 integer types by size, and then by signedness: an n-bit
976 unsigned type is considered "wider" than an n-bit signed
977 type. Promote to the "wider" of the two types, and always
978 promote at least to int. */
f7c79c41 979 struct type *target = max_type (builtin_type (exp->gdbarch)->builtin_int,
c906108c
SS
980 max_type (value1->type, value2->type));
981
982 /* Deal with value2, on the top of the stack. */
983 gen_conversion (ax, value2->type, target);
984
985 /* Deal with value1, not on the top of the stack. Don't
986 generate the `swap' instructions if we're not actually going
987 to do anything. */
988 if (is_nontrivial_conversion (value1->type, target))
989 {
990 ax_simple (ax, aop_swap);
991 gen_conversion (ax, value1->type, target);
992 ax_simple (ax, aop_swap);
993 }
994
648027cc 995 value1->type = value2->type = check_typedef (target);
c906108c
SS
996 }
997}
998
999
1000/* Generate code to perform the integral promotions (ANSI 6.2.1.1) on
1001 the value on the top of the stack, as described by VALUE. Assume
1002 the value has integral type. */
1003static void
f7c79c41
UW
1004gen_integral_promotions (struct expression *exp, struct agent_expr *ax,
1005 struct axs_value *value)
c906108c 1006{
f7c79c41
UW
1007 const struct builtin_type *builtin = builtin_type (exp->gdbarch);
1008
1009 if (!type_wider_than (value->type, builtin->builtin_int))
c906108c 1010 {
f7c79c41
UW
1011 gen_conversion (ax, value->type, builtin->builtin_int);
1012 value->type = builtin->builtin_int;
c906108c 1013 }
f7c79c41 1014 else if (!type_wider_than (value->type, builtin->builtin_unsigned_int))
c906108c 1015 {
f7c79c41
UW
1016 gen_conversion (ax, value->type, builtin->builtin_unsigned_int);
1017 value->type = builtin->builtin_unsigned_int;
c906108c
SS
1018 }
1019}
1020
1021
1022/* Generate code for a cast to TYPE. */
1023static void
fba45db2 1024gen_cast (struct agent_expr *ax, struct axs_value *value, struct type *type)
c906108c
SS
1025{
1026 /* GCC does allow casts to yield lvalues, so this should be fixed
1027 before merging these changes into the trunk. */
1028 require_rvalue (ax, value);
0e2de366 1029 /* Dereference typedefs. */
c906108c
SS
1030 type = check_typedef (type);
1031
0004e5a2 1032 switch (TYPE_CODE (type))
c906108c
SS
1033 {
1034 case TYPE_CODE_PTR:
b97aedf3 1035 case TYPE_CODE_REF:
c906108c
SS
1036 /* It's implementation-defined, and I'll bet this is what GCC
1037 does. */
1038 break;
1039
1040 case TYPE_CODE_ARRAY:
1041 case TYPE_CODE_STRUCT:
1042 case TYPE_CODE_UNION:
1043 case TYPE_CODE_FUNC:
3d263c1d 1044 error (_("Invalid type cast: intended type must be scalar."));
c906108c
SS
1045
1046 case TYPE_CODE_ENUM:
3b11a015 1047 case TYPE_CODE_BOOL:
c906108c
SS
1048 /* We don't have to worry about the size of the value, because
1049 all our integral values are fully sign-extended, and when
1050 casting pointers we can do anything we like. Is there any
74b35824
JB
1051 way for us to know what GCC actually does with a cast like
1052 this? */
c906108c 1053 break;
c5aa993b 1054
c906108c
SS
1055 case TYPE_CODE_INT:
1056 gen_conversion (ax, value->type, type);
1057 break;
1058
1059 case TYPE_CODE_VOID:
1060 /* We could pop the value, and rely on everyone else to check
c5aa993b
JM
1061 the type and notice that this value doesn't occupy a stack
1062 slot. But for now, leave the value on the stack, and
1063 preserve the "value == stack element" assumption. */
c906108c
SS
1064 break;
1065
1066 default:
3d263c1d 1067 error (_("Casts to requested type are not yet implemented."));
c906108c
SS
1068 }
1069
1070 value->type = type;
1071}
c5aa993b 1072\f
c906108c
SS
1073
1074
c906108c
SS
1075/* Generating bytecode from GDB expressions: arithmetic */
1076
1077/* Scale the integer on the top of the stack by the size of the target
1078 of the pointer type TYPE. */
1079static void
fba45db2 1080gen_scale (struct agent_expr *ax, enum agent_op op, struct type *type)
c906108c
SS
1081{
1082 struct type *element = TYPE_TARGET_TYPE (type);
1083
0004e5a2 1084 if (TYPE_LENGTH (element) != 1)
c906108c 1085 {
0004e5a2 1086 ax_const_l (ax, TYPE_LENGTH (element));
c906108c
SS
1087 ax_simple (ax, op);
1088 }
1089}
1090
1091
f7c79c41 1092/* Generate code for pointer arithmetic PTR + INT. */
c906108c 1093static void
f7c79c41
UW
1094gen_ptradd (struct agent_expr *ax, struct axs_value *value,
1095 struct axs_value *value1, struct axs_value *value2)
c906108c 1096{
b97aedf3 1097 gdb_assert (pointer_type (value1->type));
f7c79c41 1098 gdb_assert (TYPE_CODE (value2->type) == TYPE_CODE_INT);
c906108c 1099
f7c79c41
UW
1100 gen_scale (ax, aop_mul, value1->type);
1101 ax_simple (ax, aop_add);
1102 gen_extend (ax, value1->type); /* Catch overflow. */
1103 value->type = value1->type;
1104 value->kind = axs_rvalue;
1105}
c906108c 1106
c906108c 1107
f7c79c41
UW
1108/* Generate code for pointer arithmetic PTR - INT. */
1109static void
1110gen_ptrsub (struct agent_expr *ax, struct axs_value *value,
1111 struct axs_value *value1, struct axs_value *value2)
1112{
b97aedf3 1113 gdb_assert (pointer_type (value1->type));
f7c79c41 1114 gdb_assert (TYPE_CODE (value2->type) == TYPE_CODE_INT);
c906108c 1115
f7c79c41
UW
1116 gen_scale (ax, aop_mul, value1->type);
1117 ax_simple (ax, aop_sub);
1118 gen_extend (ax, value1->type); /* Catch overflow. */
1119 value->type = value1->type;
c906108c
SS
1120 value->kind = axs_rvalue;
1121}
1122
1123
f7c79c41 1124/* Generate code for pointer arithmetic PTR - PTR. */
c906108c 1125static void
f7c79c41
UW
1126gen_ptrdiff (struct agent_expr *ax, struct axs_value *value,
1127 struct axs_value *value1, struct axs_value *value2,
1128 struct type *result_type)
c906108c 1129{
b97aedf3
SS
1130 gdb_assert (pointer_type (value1->type));
1131 gdb_assert (pointer_type (value2->type));
c906108c 1132
f7c79c41
UW
1133 if (TYPE_LENGTH (TYPE_TARGET_TYPE (value1->type))
1134 != TYPE_LENGTH (TYPE_TARGET_TYPE (value2->type)))
ac74f770
MS
1135 error (_("\
1136First argument of `-' is a pointer, but second argument is neither\n\
1137an integer nor a pointer of the same type."));
c906108c 1138
f7c79c41
UW
1139 ax_simple (ax, aop_sub);
1140 gen_scale (ax, aop_div_unsigned, value1->type);
1141 value->type = result_type;
c906108c
SS
1142 value->kind = axs_rvalue;
1143}
1144
3b11a015
SS
1145static void
1146gen_equal (struct agent_expr *ax, struct axs_value *value,
1147 struct axs_value *value1, struct axs_value *value2,
1148 struct type *result_type)
1149{
1150 if (pointer_type (value1->type) || pointer_type (value2->type))
1151 ax_simple (ax, aop_equal);
1152 else
1153 gen_binop (ax, value, value1, value2,
1154 aop_equal, aop_equal, 0, "equal");
1155 value->type = result_type;
1156 value->kind = axs_rvalue;
1157}
1158
1159static void
1160gen_less (struct agent_expr *ax, struct axs_value *value,
1161 struct axs_value *value1, struct axs_value *value2,
1162 struct type *result_type)
1163{
1164 if (pointer_type (value1->type) || pointer_type (value2->type))
1165 ax_simple (ax, aop_less_unsigned);
1166 else
1167 gen_binop (ax, value, value1, value2,
1168 aop_less_signed, aop_less_unsigned, 0, "less than");
1169 value->type = result_type;
1170 value->kind = axs_rvalue;
1171}
f7c79c41 1172
c906108c
SS
1173/* Generate code for a binary operator that doesn't do pointer magic.
1174 We set VALUE to describe the result value; we assume VALUE1 and
1175 VALUE2 describe the two operands, and that they've undergone the
1176 usual binary conversions. MAY_CARRY should be non-zero iff the
1177 result needs to be extended. NAME is the English name of the
1178 operator, used in error messages */
1179static void
fba45db2 1180gen_binop (struct agent_expr *ax, struct axs_value *value,
3e43a32a
MS
1181 struct axs_value *value1, struct axs_value *value2,
1182 enum agent_op op, enum agent_op op_unsigned,
1183 int may_carry, char *name)
c906108c
SS
1184{
1185 /* We only handle INT op INT. */
0004e5a2
DJ
1186 if ((TYPE_CODE (value1->type) != TYPE_CODE_INT)
1187 || (TYPE_CODE (value2->type) != TYPE_CODE_INT))
3d263c1d 1188 error (_("Invalid combination of types in %s."), name);
c5aa993b 1189
c906108c
SS
1190 ax_simple (ax,
1191 TYPE_UNSIGNED (value1->type) ? op_unsigned : op);
1192 if (may_carry)
c5aa993b 1193 gen_extend (ax, value1->type); /* catch overflow */
c906108c
SS
1194 value->type = value1->type;
1195 value->kind = axs_rvalue;
1196}
1197
1198
1199static void
f7c79c41
UW
1200gen_logical_not (struct agent_expr *ax, struct axs_value *value,
1201 struct type *result_type)
c906108c
SS
1202{
1203 if (TYPE_CODE (value->type) != TYPE_CODE_INT
1204 && TYPE_CODE (value->type) != TYPE_CODE_PTR)
3d263c1d 1205 error (_("Invalid type of operand to `!'."));
c906108c 1206
c906108c 1207 ax_simple (ax, aop_log_not);
f7c79c41 1208 value->type = result_type;
c906108c
SS
1209}
1210
1211
1212static void
fba45db2 1213gen_complement (struct agent_expr *ax, struct axs_value *value)
c906108c
SS
1214{
1215 if (TYPE_CODE (value->type) != TYPE_CODE_INT)
3d263c1d 1216 error (_("Invalid type of operand to `~'."));
c906108c 1217
c906108c
SS
1218 ax_simple (ax, aop_bit_not);
1219 gen_extend (ax, value->type);
1220}
c5aa993b 1221\f
c906108c
SS
1222
1223
c906108c
SS
1224/* Generating bytecode from GDB expressions: * & . -> @ sizeof */
1225
1226/* Dereference the value on the top of the stack. */
1227static void
fba45db2 1228gen_deref (struct agent_expr *ax, struct axs_value *value)
c906108c
SS
1229{
1230 /* The caller should check the type, because several operators use
1231 this, and we don't know what error message to generate. */
b97aedf3 1232 if (!pointer_type (value->type))
8e65ff28 1233 internal_error (__FILE__, __LINE__,
3d263c1d 1234 _("gen_deref: expected a pointer"));
c906108c
SS
1235
1236 /* We've got an rvalue now, which is a pointer. We want to yield an
1237 lvalue, whose address is exactly that pointer. So we don't
1238 actually emit any code; we just change the type from "Pointer to
1239 T" to "T", and mark the value as an lvalue in memory. Leave it
1240 to the consumer to actually dereference it. */
1241 value->type = check_typedef (TYPE_TARGET_TYPE (value->type));
b1028c8e
PA
1242 if (TYPE_CODE (value->type) == TYPE_CODE_VOID)
1243 error (_("Attempt to dereference a generic pointer."));
0004e5a2 1244 value->kind = ((TYPE_CODE (value->type) == TYPE_CODE_FUNC)
c906108c
SS
1245 ? axs_rvalue : axs_lvalue_memory);
1246}
1247
1248
1249/* Produce the address of the lvalue on the top of the stack. */
1250static void
fba45db2 1251gen_address_of (struct agent_expr *ax, struct axs_value *value)
c906108c
SS
1252{
1253 /* Special case for taking the address of a function. The ANSI
1254 standard describes this as a special case, too, so this
1255 arrangement is not without motivation. */
0004e5a2 1256 if (TYPE_CODE (value->type) == TYPE_CODE_FUNC)
c906108c
SS
1257 /* The value's already an rvalue on the stack, so we just need to
1258 change the type. */
1259 value->type = lookup_pointer_type (value->type);
1260 else
1261 switch (value->kind)
1262 {
1263 case axs_rvalue:
3d263c1d 1264 error (_("Operand of `&' is an rvalue, which has no address."));
c906108c
SS
1265
1266 case axs_lvalue_register:
3d263c1d 1267 error (_("Operand of `&' is in a register, and has no address."));
c906108c
SS
1268
1269 case axs_lvalue_memory:
1270 value->kind = axs_rvalue;
1271 value->type = lookup_pointer_type (value->type);
1272 break;
1273 }
1274}
1275
c906108c
SS
1276/* Generate code to push the value of a bitfield of a structure whose
1277 address is on the top of the stack. START and END give the
1278 starting and one-past-ending *bit* numbers of the field within the
1279 structure. */
1280static void
505e835d
UW
1281gen_bitfield_ref (struct expression *exp, struct agent_expr *ax,
1282 struct axs_value *value, struct type *type,
1283 int start, int end)
c906108c
SS
1284{
1285 /* Note that ops[i] fetches 8 << i bits. */
1286 static enum agent_op ops[]
5b4ee69b 1287 = {aop_ref8, aop_ref16, aop_ref32, aop_ref64};
c906108c
SS
1288 static int num_ops = (sizeof (ops) / sizeof (ops[0]));
1289
1290 /* We don't want to touch any byte that the bitfield doesn't
1291 actually occupy; we shouldn't make any accesses we're not
1292 explicitly permitted to. We rely here on the fact that the
1293 bytecode `ref' operators work on unaligned addresses.
1294
1295 It takes some fancy footwork to get the stack to work the way
1296 we'd like. Say we're retrieving a bitfield that requires three
1297 fetches. Initially, the stack just contains the address:
c5aa993b 1298 addr
c906108c 1299 For the first fetch, we duplicate the address
c5aa993b 1300 addr addr
c906108c
SS
1301 then add the byte offset, do the fetch, and shift and mask as
1302 needed, yielding a fragment of the value, properly aligned for
1303 the final bitwise or:
c5aa993b 1304 addr frag1
c906108c 1305 then we swap, and repeat the process:
c5aa993b
JM
1306 frag1 addr --- address on top
1307 frag1 addr addr --- duplicate it
1308 frag1 addr frag2 --- get second fragment
1309 frag1 frag2 addr --- swap again
1310 frag1 frag2 frag3 --- get third fragment
c906108c
SS
1311 Notice that, since the third fragment is the last one, we don't
1312 bother duplicating the address this time. Now we have all the
1313 fragments on the stack, and we can simply `or' them together,
1314 yielding the final value of the bitfield. */
1315
1316 /* The first and one-after-last bits in the field, but rounded down
1317 and up to byte boundaries. */
1318 int bound_start = (start / TARGET_CHAR_BIT) * TARGET_CHAR_BIT;
c5aa993b
JM
1319 int bound_end = (((end + TARGET_CHAR_BIT - 1)
1320 / TARGET_CHAR_BIT)
1321 * TARGET_CHAR_BIT);
c906108c
SS
1322
1323 /* current bit offset within the structure */
1324 int offset;
1325
1326 /* The index in ops of the opcode we're considering. */
1327 int op;
1328
1329 /* The number of fragments we generated in the process. Probably
1330 equal to the number of `one' bits in bytesize, but who cares? */
1331 int fragment_count;
1332
0e2de366 1333 /* Dereference any typedefs. */
c906108c
SS
1334 type = check_typedef (type);
1335
1336 /* Can we fetch the number of bits requested at all? */
1337 if ((end - start) > ((1 << num_ops) * 8))
8e65ff28 1338 internal_error (__FILE__, __LINE__,
3d263c1d 1339 _("gen_bitfield_ref: bitfield too wide"));
c906108c
SS
1340
1341 /* Note that we know here that we only need to try each opcode once.
1342 That may not be true on machines with weird byte sizes. */
1343 offset = bound_start;
1344 fragment_count = 0;
1345 for (op = num_ops - 1; op >= 0; op--)
1346 {
1347 /* number of bits that ops[op] would fetch */
1348 int op_size = 8 << op;
1349
1350 /* The stack at this point, from bottom to top, contains zero or
c5aa993b
JM
1351 more fragments, then the address. */
1352
c906108c
SS
1353 /* Does this fetch fit within the bitfield? */
1354 if (offset + op_size <= bound_end)
1355 {
1356 /* Is this the last fragment? */
1357 int last_frag = (offset + op_size == bound_end);
1358
c5aa993b
JM
1359 if (!last_frag)
1360 ax_simple (ax, aop_dup); /* keep a copy of the address */
1361
c906108c
SS
1362 /* Add the offset. */
1363 gen_offset (ax, offset / TARGET_CHAR_BIT);
1364
1365 if (trace_kludge)
1366 {
1367 /* Record the area of memory we're about to fetch. */
1368 ax_trace_quick (ax, op_size / TARGET_CHAR_BIT);
1369 }
1370
1371 /* Perform the fetch. */
1372 ax_simple (ax, ops[op]);
c5aa993b
JM
1373
1374 /* Shift the bits we have to their proper position.
c906108c
SS
1375 gen_left_shift will generate right shifts when the operand
1376 is negative.
1377
c5aa993b
JM
1378 A big-endian field diagram to ponder:
1379 byte 0 byte 1 byte 2 byte 3 byte 4 byte 5 byte 6 byte 7
1380 +------++------++------++------++------++------++------++------+
1381 xxxxAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBCCCCCxxxxxxxxxxx
1382 ^ ^ ^ ^
1383 bit number 16 32 48 53
c906108c
SS
1384 These are bit numbers as supplied by GDB. Note that the
1385 bit numbers run from right to left once you've fetched the
1386 value!
1387
c5aa993b
JM
1388 A little-endian field diagram to ponder:
1389 byte 7 byte 6 byte 5 byte 4 byte 3 byte 2 byte 1 byte 0
1390 +------++------++------++------++------++------++------++------+
1391 xxxxxxxxxxxAAAAABBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCxxxx
1392 ^ ^ ^ ^ ^
1393 bit number 48 32 16 4 0
1394
1395 In both cases, the most significant end is on the left
1396 (i.e. normal numeric writing order), which means that you
1397 don't go crazy thinking about `left' and `right' shifts.
1398
1399 We don't have to worry about masking yet:
1400 - If they contain garbage off the least significant end, then we
1401 must be looking at the low end of the field, and the right
1402 shift will wipe them out.
1403 - If they contain garbage off the most significant end, then we
1404 must be looking at the most significant end of the word, and
1405 the sign/zero extension will wipe them out.
1406 - If we're in the interior of the word, then there is no garbage
1407 on either end, because the ref operators zero-extend. */
505e835d 1408 if (gdbarch_byte_order (exp->gdbarch) == BFD_ENDIAN_BIG)
c906108c 1409 gen_left_shift (ax, end - (offset + op_size));
c5aa993b 1410 else
c906108c
SS
1411 gen_left_shift (ax, offset - start);
1412
c5aa993b 1413 if (!last_frag)
c906108c
SS
1414 /* Bring the copy of the address up to the top. */
1415 ax_simple (ax, aop_swap);
1416
1417 offset += op_size;
1418 fragment_count++;
1419 }
1420 }
1421
1422 /* Generate enough bitwise `or' operations to combine all the
1423 fragments we left on the stack. */
1424 while (fragment_count-- > 1)
1425 ax_simple (ax, aop_bit_or);
1426
1427 /* Sign- or zero-extend the value as appropriate. */
1428 ((TYPE_UNSIGNED (type) ? ax_zero_ext : ax_ext) (ax, end - start));
1429
1430 /* This is *not* an lvalue. Ugh. */
1431 value->kind = axs_rvalue;
1432 value->type = type;
1433}
1434
b6e7192f
SS
1435/* Generate bytecodes for field number FIELDNO of type TYPE. OFFSET
1436 is an accumulated offset (in bytes), will be nonzero for objects
1437 embedded in other objects, like C++ base classes. Behavior should
1438 generally follow value_primitive_field. */
1439
1440static void
1441gen_primitive_field (struct expression *exp,
1442 struct agent_expr *ax, struct axs_value *value,
1443 int offset, int fieldno, struct type *type)
1444{
1445 /* Is this a bitfield? */
1446 if (TYPE_FIELD_PACKED (type, fieldno))
1447 gen_bitfield_ref (exp, ax, value, TYPE_FIELD_TYPE (type, fieldno),
1448 (offset * TARGET_CHAR_BIT
1449 + TYPE_FIELD_BITPOS (type, fieldno)),
1450 (offset * TARGET_CHAR_BIT
1451 + TYPE_FIELD_BITPOS (type, fieldno)
1452 + TYPE_FIELD_BITSIZE (type, fieldno)));
1453 else
1454 {
1455 gen_offset (ax, offset
1456 + TYPE_FIELD_BITPOS (type, fieldno) / TARGET_CHAR_BIT);
1457 value->kind = axs_lvalue_memory;
1458 value->type = TYPE_FIELD_TYPE (type, fieldno);
1459 }
1460}
1461
1462/* Search for the given field in either the given type or one of its
1463 base classes. Return 1 if found, 0 if not. */
1464
1465static int
1466gen_struct_ref_recursive (struct expression *exp, struct agent_expr *ax,
1467 struct axs_value *value,
1468 char *field, int offset, struct type *type)
1469{
1470 int i, rslt;
1471 int nbases = TYPE_N_BASECLASSES (type);
1472
1473 CHECK_TYPEDEF (type);
1474
1475 for (i = TYPE_NFIELDS (type) - 1; i >= nbases; i--)
1476 {
0d5cff50 1477 const char *this_name = TYPE_FIELD_NAME (type, i);
b6e7192f
SS
1478
1479 if (this_name)
1480 {
1481 if (strcmp (field, this_name) == 0)
1482 {
1483 /* Note that bytecodes for the struct's base (aka
1484 "this") will have been generated already, which will
1485 be unnecessary but not harmful if the static field is
1486 being handled as a global. */
1487 if (field_is_static (&TYPE_FIELD (type, i)))
1488 {
400c6af0
SS
1489 gen_static_field (exp->gdbarch, ax, value, type, i);
1490 if (value->optimized_out)
3e43a32a
MS
1491 error (_("static field `%s' has been "
1492 "optimized out, cannot use"),
400c6af0 1493 field);
b6e7192f
SS
1494 return 1;
1495 }
1496
1497 gen_primitive_field (exp, ax, value, offset, i, type);
1498 return 1;
1499 }
1500#if 0 /* is this right? */
1501 if (this_name[0] == '\0')
1502 internal_error (__FILE__, __LINE__,
1503 _("find_field: anonymous unions not supported"));
1504#endif
1505 }
1506 }
1507
1508 /* Now scan through base classes recursively. */
1509 for (i = 0; i < nbases; i++)
1510 {
1511 struct type *basetype = check_typedef (TYPE_BASECLASS (type, i));
1512
1513 rslt = gen_struct_ref_recursive (exp, ax, value, field,
3e43a32a
MS
1514 offset + TYPE_BASECLASS_BITPOS (type, i)
1515 / TARGET_CHAR_BIT,
b6e7192f
SS
1516 basetype);
1517 if (rslt)
1518 return 1;
1519 }
1520
1521 /* Not found anywhere, flag so caller can complain. */
1522 return 0;
1523}
c906108c
SS
1524
1525/* Generate code to reference the member named FIELD of a structure or
1526 union. The top of the stack, as described by VALUE, should have
1527 type (pointer to a)* struct/union. OPERATOR_NAME is the name of
1528 the operator being compiled, and OPERAND_NAME is the kind of thing
1529 it operates on; we use them in error messages. */
1530static void
505e835d
UW
1531gen_struct_ref (struct expression *exp, struct agent_expr *ax,
1532 struct axs_value *value, char *field,
fba45db2 1533 char *operator_name, char *operand_name)
c906108c
SS
1534{
1535 struct type *type;
b6e7192f 1536 int found;
c906108c
SS
1537
1538 /* Follow pointers until we reach a non-pointer. These aren't the C
1539 semantics, but they're what the normal GDB evaluator does, so we
1540 should at least be consistent. */
b97aedf3 1541 while (pointer_type (value->type))
c906108c 1542 {
f7c79c41 1543 require_rvalue (ax, value);
c906108c
SS
1544 gen_deref (ax, value);
1545 }
e8860ec2 1546 type = check_typedef (value->type);
c906108c
SS
1547
1548 /* This must yield a structure or a union. */
1549 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1550 && TYPE_CODE (type) != TYPE_CODE_UNION)
3d263c1d 1551 error (_("The left operand of `%s' is not a %s."),
c906108c
SS
1552 operator_name, operand_name);
1553
1554 /* And it must be in memory; we don't deal with structure rvalues,
1555 or structures living in registers. */
1556 if (value->kind != axs_lvalue_memory)
3d263c1d 1557 error (_("Structure does not live in memory."));
c906108c 1558
b6e7192f
SS
1559 /* Search through fields and base classes recursively. */
1560 found = gen_struct_ref_recursive (exp, ax, value, field, 0, type);
1561
1562 if (!found)
1563 error (_("Couldn't find member named `%s' in struct/union/class `%s'"),
1564 field, TYPE_TAG_NAME (type));
1565}
c5aa993b 1566
b6e7192f
SS
1567static int
1568gen_namespace_elt (struct expression *exp,
1569 struct agent_expr *ax, struct axs_value *value,
1570 const struct type *curtype, char *name);
1571static int
1572gen_maybe_namespace_elt (struct expression *exp,
1573 struct agent_expr *ax, struct axs_value *value,
1574 const struct type *curtype, char *name);
1575
1576static void
400c6af0 1577gen_static_field (struct gdbarch *gdbarch,
b6e7192f
SS
1578 struct agent_expr *ax, struct axs_value *value,
1579 struct type *type, int fieldno)
1580{
1581 if (TYPE_FIELD_LOC_KIND (type, fieldno) == FIELD_LOC_KIND_PHYSADDR)
c906108c 1582 {
b6e7192f 1583 ax_const_l (ax, TYPE_FIELD_STATIC_PHYSADDR (type, fieldno));
c906108c 1584 value->kind = axs_lvalue_memory;
b6e7192f 1585 value->type = TYPE_FIELD_TYPE (type, fieldno);
400c6af0 1586 value->optimized_out = 0;
b6e7192f
SS
1587 }
1588 else
1589 {
ff355380 1590 const char *phys_name = TYPE_FIELD_STATIC_PHYSNAME (type, fieldno);
b6e7192f 1591 struct symbol *sym = lookup_symbol (phys_name, 0, VAR_DOMAIN, 0);
b6e7192f 1592
400c6af0
SS
1593 if (sym)
1594 {
1595 gen_var_ref (gdbarch, ax, value, sym);
1596
1597 /* Don't error if the value was optimized out, we may be
1598 scanning all static fields and just want to pass over this
1599 and continue with the rest. */
1600 }
1601 else
1602 {
1603 /* Silently assume this was optimized out; class printing
1604 will let the user know why the data is missing. */
1605 value->optimized_out = 1;
1606 }
b6e7192f
SS
1607 }
1608}
1609
1610static int
1611gen_struct_elt_for_reference (struct expression *exp,
1612 struct agent_expr *ax, struct axs_value *value,
1613 struct type *type, char *fieldname)
1614{
1615 struct type *t = type;
1616 int i;
b6e7192f
SS
1617
1618 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
1619 && TYPE_CODE (t) != TYPE_CODE_UNION)
1620 internal_error (__FILE__, __LINE__,
1621 _("non-aggregate type to gen_struct_elt_for_reference"));
1622
1623 for (i = TYPE_NFIELDS (t) - 1; i >= TYPE_N_BASECLASSES (t); i--)
1624 {
0d5cff50 1625 const char *t_field_name = TYPE_FIELD_NAME (t, i);
b6e7192f
SS
1626
1627 if (t_field_name && strcmp (t_field_name, fieldname) == 0)
1628 {
1629 if (field_is_static (&TYPE_FIELD (t, i)))
1630 {
400c6af0
SS
1631 gen_static_field (exp->gdbarch, ax, value, t, i);
1632 if (value->optimized_out)
3e43a32a
MS
1633 error (_("static field `%s' has been "
1634 "optimized out, cannot use"),
400c6af0 1635 fieldname);
b6e7192f
SS
1636 return 1;
1637 }
1638 if (TYPE_FIELD_PACKED (t, i))
1639 error (_("pointers to bitfield members not allowed"));
1640
1641 /* FIXME we need a way to do "want_address" equivalent */
1642
1643 error (_("Cannot reference non-static field \"%s\""), fieldname);
1644 }
c906108c 1645 }
b6e7192f
SS
1646
1647 /* FIXME add other scoped-reference cases here */
1648
1649 /* Do a last-ditch lookup. */
1650 return gen_maybe_namespace_elt (exp, ax, value, type, fieldname);
c906108c
SS
1651}
1652
b6e7192f
SS
1653/* C++: Return the member NAME of the namespace given by the type
1654 CURTYPE. */
1655
1656static int
1657gen_namespace_elt (struct expression *exp,
1658 struct agent_expr *ax, struct axs_value *value,
1659 const struct type *curtype, char *name)
1660{
1661 int found = gen_maybe_namespace_elt (exp, ax, value, curtype, name);
1662
1663 if (!found)
1664 error (_("No symbol \"%s\" in namespace \"%s\"."),
1665 name, TYPE_TAG_NAME (curtype));
1666
1667 return found;
1668}
1669
1670/* A helper function used by value_namespace_elt and
1671 value_struct_elt_for_reference. It looks up NAME inside the
1672 context CURTYPE; this works if CURTYPE is a namespace or if CURTYPE
1673 is a class and NAME refers to a type in CURTYPE itself (as opposed
1674 to, say, some base class of CURTYPE). */
1675
1676static int
1677gen_maybe_namespace_elt (struct expression *exp,
1678 struct agent_expr *ax, struct axs_value *value,
1679 const struct type *curtype, char *name)
1680{
1681 const char *namespace_name = TYPE_TAG_NAME (curtype);
1682 struct symbol *sym;
1683
1684 sym = cp_lookup_symbol_namespace (namespace_name, name,
1685 block_for_pc (ax->scope),
ac0cd78b 1686 VAR_DOMAIN);
b6e7192f
SS
1687
1688 if (sym == NULL)
1689 return 0;
1690
1691 gen_var_ref (exp->gdbarch, ax, value, sym);
1692
400c6af0
SS
1693 if (value->optimized_out)
1694 error (_("`%s' has been optimized out, cannot use"),
1695 SYMBOL_PRINT_NAME (sym));
1696
b6e7192f
SS
1697 return 1;
1698}
1699
1700
1701static int
1702gen_aggregate_elt_ref (struct expression *exp,
1703 struct agent_expr *ax, struct axs_value *value,
1704 struct type *type, char *field,
1705 char *operator_name, char *operand_name)
1706{
1707 switch (TYPE_CODE (type))
1708 {
1709 case TYPE_CODE_STRUCT:
1710 case TYPE_CODE_UNION:
1711 return gen_struct_elt_for_reference (exp, ax, value, type, field);
1712 break;
1713 case TYPE_CODE_NAMESPACE:
1714 return gen_namespace_elt (exp, ax, value, type, field);
1715 break;
1716 default:
1717 internal_error (__FILE__, __LINE__,
1718 _("non-aggregate type in gen_aggregate_elt_ref"));
1719 }
1720
1721 return 0;
1722}
c906108c 1723
0e2de366 1724/* Generate code for GDB's magical `repeat' operator.
c906108c
SS
1725 LVALUE @ INT creates an array INT elements long, and whose elements
1726 have the same type as LVALUE, located in memory so that LVALUE is
1727 its first element. For example, argv[0]@argc gives you the array
1728 of command-line arguments.
1729
1730 Unfortunately, because we have to know the types before we actually
1731 have a value for the expression, we can't implement this perfectly
1732 without changing the type system, having values that occupy two
1733 stack slots, doing weird things with sizeof, etc. So we require
1734 the right operand to be a constant expression. */
1735static void
f7c79c41
UW
1736gen_repeat (struct expression *exp, union exp_element **pc,
1737 struct agent_expr *ax, struct axs_value *value)
c906108c
SS
1738{
1739 struct axs_value value1;
5b4ee69b 1740
c906108c
SS
1741 /* We don't want to turn this into an rvalue, so no conversions
1742 here. */
f7c79c41 1743 gen_expr (exp, pc, ax, &value1);
c906108c 1744 if (value1.kind != axs_lvalue_memory)
3d263c1d 1745 error (_("Left operand of `@' must be an object in memory."));
c906108c
SS
1746
1747 /* Evaluate the length; it had better be a constant. */
1748 {
1749 struct value *v = const_expr (pc);
1750 int length;
1751
c5aa993b 1752 if (!v)
3e43a32a
MS
1753 error (_("Right operand of `@' must be a "
1754 "constant, in agent expressions."));
04624583 1755 if (TYPE_CODE (value_type (v)) != TYPE_CODE_INT)
3d263c1d 1756 error (_("Right operand of `@' must be an integer."));
c906108c
SS
1757 length = value_as_long (v);
1758 if (length <= 0)
3d263c1d 1759 error (_("Right operand of `@' must be positive."));
c906108c
SS
1760
1761 /* The top of the stack is already the address of the object, so
1762 all we need to do is frob the type of the lvalue. */
1763 {
1764 /* FIXME-type-allocation: need a way to free this type when we are
c5aa993b 1765 done with it. */
e3506a9f
UW
1766 struct type *array
1767 = lookup_array_range_type (value1.type, 0, length - 1);
c906108c
SS
1768
1769 value->kind = axs_lvalue_memory;
1770 value->type = array;
1771 }
1772 }
1773}
1774
1775
1776/* Emit code for the `sizeof' operator.
1777 *PC should point at the start of the operand expression; we advance it
1778 to the first instruction after the operand. */
1779static void
f7c79c41
UW
1780gen_sizeof (struct expression *exp, union exp_element **pc,
1781 struct agent_expr *ax, struct axs_value *value,
1782 struct type *size_type)
c906108c
SS
1783{
1784 /* We don't care about the value of the operand expression; we only
1785 care about its type. However, in the current arrangement, the
1786 only way to find an expression's type is to generate code for it.
1787 So we generate code for the operand, and then throw it away,
1788 replacing it with code that simply pushes its size. */
1789 int start = ax->len;
5b4ee69b 1790
f7c79c41 1791 gen_expr (exp, pc, ax, value);
c906108c
SS
1792
1793 /* Throw away the code we just generated. */
1794 ax->len = start;
c5aa993b 1795
c906108c
SS
1796 ax_const_l (ax, TYPE_LENGTH (value->type));
1797 value->kind = axs_rvalue;
f7c79c41 1798 value->type = size_type;
c906108c 1799}
c906108c 1800\f
c5aa993b 1801
c906108c
SS
1802/* Generating bytecode from GDB expressions: general recursive thingy */
1803
3d263c1d 1804/* XXX: i18n */
c906108c
SS
1805/* A gen_expr function written by a Gen-X'er guy.
1806 Append code for the subexpression of EXPR starting at *POS_P to AX. */
55aa24fb 1807void
f7c79c41
UW
1808gen_expr (struct expression *exp, union exp_element **pc,
1809 struct agent_expr *ax, struct axs_value *value)
c906108c
SS
1810{
1811 /* Used to hold the descriptions of operand expressions. */
09d559e4 1812 struct axs_value value1, value2, value3;
f61e138d 1813 enum exp_opcode op = (*pc)[0].opcode, op2;
09d559e4 1814 int if1, go1, if2, go2, end;
3b11a015 1815 struct type *int_type = builtin_type (exp->gdbarch)->builtin_int;
c906108c
SS
1816
1817 /* If we're looking at a constant expression, just push its value. */
1818 {
1819 struct value *v = maybe_const_expr (pc);
c5aa993b 1820
c906108c
SS
1821 if (v)
1822 {
1823 ax_const_l (ax, value_as_long (v));
1824 value->kind = axs_rvalue;
df407dfe 1825 value->type = check_typedef (value_type (v));
c906108c
SS
1826 return;
1827 }
1828 }
1829
1830 /* Otherwise, go ahead and generate code for it. */
1831 switch (op)
1832 {
1833 /* Binary arithmetic operators. */
1834 case BINOP_ADD:
1835 case BINOP_SUB:
1836 case BINOP_MUL:
1837 case BINOP_DIV:
1838 case BINOP_REM:
948103cf
SS
1839 case BINOP_LSH:
1840 case BINOP_RSH:
c906108c
SS
1841 case BINOP_SUBSCRIPT:
1842 case BINOP_BITWISE_AND:
1843 case BINOP_BITWISE_IOR:
1844 case BINOP_BITWISE_XOR:
782b2b07
SS
1845 case BINOP_EQUAL:
1846 case BINOP_NOTEQUAL:
1847 case BINOP_LESS:
1848 case BINOP_GTR:
1849 case BINOP_LEQ:
1850 case BINOP_GEQ:
c906108c 1851 (*pc)++;
f7c79c41
UW
1852 gen_expr (exp, pc, ax, &value1);
1853 gen_usual_unary (exp, ax, &value1);
f61e138d
SS
1854 gen_expr_binop_rest (exp, op, pc, ax, value, &value1, &value2);
1855 break;
1856
09d559e4
SS
1857 case BINOP_LOGICAL_AND:
1858 (*pc)++;
1859 /* Generate the obvious sequence of tests and jumps. */
1860 gen_expr (exp, pc, ax, &value1);
1861 gen_usual_unary (exp, ax, &value1);
1862 if1 = ax_goto (ax, aop_if_goto);
1863 go1 = ax_goto (ax, aop_goto);
1864 ax_label (ax, if1, ax->len);
1865 gen_expr (exp, pc, ax, &value2);
1866 gen_usual_unary (exp, ax, &value2);
1867 if2 = ax_goto (ax, aop_if_goto);
1868 go2 = ax_goto (ax, aop_goto);
1869 ax_label (ax, if2, ax->len);
1870 ax_const_l (ax, 1);
1871 end = ax_goto (ax, aop_goto);
1872 ax_label (ax, go1, ax->len);
1873 ax_label (ax, go2, ax->len);
1874 ax_const_l (ax, 0);
1875 ax_label (ax, end, ax->len);
1876 value->kind = axs_rvalue;
3b11a015 1877 value->type = int_type;
09d559e4
SS
1878 break;
1879
1880 case BINOP_LOGICAL_OR:
1881 (*pc)++;
1882 /* Generate the obvious sequence of tests and jumps. */
1883 gen_expr (exp, pc, ax, &value1);
1884 gen_usual_unary (exp, ax, &value1);
1885 if1 = ax_goto (ax, aop_if_goto);
1886 gen_expr (exp, pc, ax, &value2);
1887 gen_usual_unary (exp, ax, &value2);
1888 if2 = ax_goto (ax, aop_if_goto);
1889 ax_const_l (ax, 0);
1890 end = ax_goto (ax, aop_goto);
1891 ax_label (ax, if1, ax->len);
1892 ax_label (ax, if2, ax->len);
1893 ax_const_l (ax, 1);
1894 ax_label (ax, end, ax->len);
1895 value->kind = axs_rvalue;
3b11a015 1896 value->type = int_type;
09d559e4
SS
1897 break;
1898
1899 case TERNOP_COND:
1900 (*pc)++;
1901 gen_expr (exp, pc, ax, &value1);
1902 gen_usual_unary (exp, ax, &value1);
1903 /* For (A ? B : C), it's easiest to generate subexpression
1904 bytecodes in order, but if_goto jumps on true, so we invert
1905 the sense of A. Then we can do B by dropping through, and
1906 jump to do C. */
3b11a015 1907 gen_logical_not (ax, &value1, int_type);
09d559e4
SS
1908 if1 = ax_goto (ax, aop_if_goto);
1909 gen_expr (exp, pc, ax, &value2);
1910 gen_usual_unary (exp, ax, &value2);
1911 end = ax_goto (ax, aop_goto);
1912 ax_label (ax, if1, ax->len);
1913 gen_expr (exp, pc, ax, &value3);
1914 gen_usual_unary (exp, ax, &value3);
1915 ax_label (ax, end, ax->len);
1916 /* This is arbitary - what if B and C are incompatible types? */
1917 value->type = value2.type;
1918 value->kind = value2.kind;
1919 break;
1920
f61e138d
SS
1921 case BINOP_ASSIGN:
1922 (*pc)++;
1923 if ((*pc)[0].opcode == OP_INTERNALVAR)
c906108c 1924 {
f61e138d
SS
1925 char *name = internalvar_name ((*pc)[1].internalvar);
1926 struct trace_state_variable *tsv;
5b4ee69b 1927
f61e138d
SS
1928 (*pc) += 3;
1929 gen_expr (exp, pc, ax, value);
1930 tsv = find_trace_state_variable (name);
1931 if (tsv)
f7c79c41 1932 {
f61e138d
SS
1933 ax_tsv (ax, aop_setv, tsv->number);
1934 if (trace_kludge)
1935 ax_tsv (ax, aop_tracev, tsv->number);
f7c79c41 1936 }
f7c79c41 1937 else
3e43a32a
MS
1938 error (_("$%s is not a trace state variable, "
1939 "may not assign to it"), name);
f61e138d
SS
1940 }
1941 else
1942 error (_("May only assign to trace state variables"));
1943 break;
782b2b07 1944
f61e138d
SS
1945 case BINOP_ASSIGN_MODIFY:
1946 (*pc)++;
1947 op2 = (*pc)[0].opcode;
1948 (*pc)++;
1949 (*pc)++;
1950 if ((*pc)[0].opcode == OP_INTERNALVAR)
1951 {
1952 char *name = internalvar_name ((*pc)[1].internalvar);
1953 struct trace_state_variable *tsv;
5b4ee69b 1954
f61e138d
SS
1955 (*pc) += 3;
1956 tsv = find_trace_state_variable (name);
1957 if (tsv)
1958 {
1959 /* The tsv will be the left half of the binary operation. */
1960 ax_tsv (ax, aop_getv, tsv->number);
1961 if (trace_kludge)
1962 ax_tsv (ax, aop_tracev, tsv->number);
1963 /* Trace state variables are always 64-bit integers. */
1964 value1.kind = axs_rvalue;
1965 value1.type = builtin_type (exp->gdbarch)->builtin_long_long;
1966 /* Now do right half of expression. */
1967 gen_expr_binop_rest (exp, op2, pc, ax, value, &value1, &value2);
1968 /* We have a result of the binary op, set the tsv. */
1969 ax_tsv (ax, aop_setv, tsv->number);
1970 if (trace_kludge)
1971 ax_tsv (ax, aop_tracev, tsv->number);
1972 }
1973 else
3e43a32a
MS
1974 error (_("$%s is not a trace state variable, "
1975 "may not assign to it"), name);
c906108c 1976 }
f61e138d
SS
1977 else
1978 error (_("May only assign to trace state variables"));
c906108c
SS
1979 break;
1980
1981 /* Note that we need to be a little subtle about generating code
c5aa993b
JM
1982 for comma. In C, we can do some optimizations here because
1983 we know the left operand is only being evaluated for effect.
1984 However, if the tracing kludge is in effect, then we always
1985 need to evaluate the left hand side fully, so that all the
1986 variables it mentions get traced. */
c906108c
SS
1987 case BINOP_COMMA:
1988 (*pc)++;
f7c79c41 1989 gen_expr (exp, pc, ax, &value1);
c906108c 1990 /* Don't just dispose of the left operand. We might be tracing,
c5aa993b
JM
1991 in which case we want to emit code to trace it if it's an
1992 lvalue. */
400c6af0 1993 gen_traced_pop (exp->gdbarch, ax, &value1);
f7c79c41 1994 gen_expr (exp, pc, ax, value);
c906108c
SS
1995 /* It's the consumer's responsibility to trace the right operand. */
1996 break;
c5aa993b 1997
c906108c
SS
1998 case OP_LONG: /* some integer constant */
1999 {
2000 struct type *type = (*pc)[1].type;
2001 LONGEST k = (*pc)[2].longconst;
5b4ee69b 2002
c906108c
SS
2003 (*pc) += 4;
2004 gen_int_literal (ax, value, k, type);
2005 }
c5aa993b 2006 break;
c906108c
SS
2007
2008 case OP_VAR_VALUE:
f7c79c41 2009 gen_var_ref (exp->gdbarch, ax, value, (*pc)[2].symbol);
400c6af0
SS
2010
2011 if (value->optimized_out)
2012 error (_("`%s' has been optimized out, cannot use"),
2013 SYMBOL_PRINT_NAME ((*pc)[2].symbol));
2014
c906108c
SS
2015 (*pc) += 4;
2016 break;
2017
2018 case OP_REGISTER:
2019 {
67f3407f
DJ
2020 const char *name = &(*pc)[2].string;
2021 int reg;
5b4ee69b 2022
67f3407f 2023 (*pc) += 4 + BYTES_TO_EXP_ELEM ((*pc)[1].longconst + 1);
f7c79c41 2024 reg = user_reg_map_name_to_regnum (exp->gdbarch, name, strlen (name));
67f3407f
DJ
2025 if (reg == -1)
2026 internal_error (__FILE__, __LINE__,
2027 _("Register $%s not available"), name);
6ab12e0f
PA
2028 /* No support for tracing user registers yet. */
2029 if (reg >= gdbarch_num_regs (exp->gdbarch)
2030 + gdbarch_num_pseudo_regs (exp->gdbarch))
abc1f4cd
HZ
2031 error (_("'%s' is a user-register; "
2032 "GDB cannot yet trace user-register contents."),
6ab12e0f 2033 name);
c906108c
SS
2034 value->kind = axs_lvalue_register;
2035 value->u.reg = reg;
f7c79c41 2036 value->type = register_type (exp->gdbarch, reg);
c906108c 2037 }
c5aa993b 2038 break;
c906108c
SS
2039
2040 case OP_INTERNALVAR:
f61e138d 2041 {
22d2b532
SDJ
2042 struct internalvar *var = (*pc)[1].internalvar;
2043 const char *name = internalvar_name (var);
f61e138d 2044 struct trace_state_variable *tsv;
5b4ee69b 2045
f61e138d
SS
2046 (*pc) += 3;
2047 tsv = find_trace_state_variable (name);
2048 if (tsv)
2049 {
2050 ax_tsv (ax, aop_getv, tsv->number);
2051 if (trace_kludge)
2052 ax_tsv (ax, aop_tracev, tsv->number);
2053 /* Trace state variables are always 64-bit integers. */
2054 value->kind = axs_rvalue;
2055 value->type = builtin_type (exp->gdbarch)->builtin_long_long;
2056 }
22d2b532 2057 else if (! compile_internalvar_to_ax (var, ax, value))
3e43a32a
MS
2058 error (_("$%s is not a trace state variable; GDB agent "
2059 "expressions cannot use convenience variables."), name);
f61e138d
SS
2060 }
2061 break;
c906108c 2062
c5aa993b 2063 /* Weirdo operator: see comments for gen_repeat for details. */
c906108c
SS
2064 case BINOP_REPEAT:
2065 /* Note that gen_repeat handles its own argument evaluation. */
2066 (*pc)++;
f7c79c41 2067 gen_repeat (exp, pc, ax, value);
c906108c
SS
2068 break;
2069
2070 case UNOP_CAST:
2071 {
2072 struct type *type = (*pc)[1].type;
5b4ee69b 2073
c906108c 2074 (*pc) += 3;
f7c79c41 2075 gen_expr (exp, pc, ax, value);
c906108c
SS
2076 gen_cast (ax, value, type);
2077 }
c5aa993b 2078 break;
c906108c 2079
9eaf6705
TT
2080 case UNOP_CAST_TYPE:
2081 {
2082 int offset;
2083 struct value *val;
2084 struct type *type;
2085
2086 ++*pc;
2087 offset = *pc - exp->elts;
2088 val = evaluate_subexp (NULL, exp, &offset, EVAL_AVOID_SIDE_EFFECTS);
2089 type = value_type (val);
2090 *pc = &exp->elts[offset];
2091
2092 gen_expr (exp, pc, ax, value);
2093 gen_cast (ax, value, type);
2094 }
2095 break;
2096
c906108c
SS
2097 case UNOP_MEMVAL:
2098 {
2099 struct type *type = check_typedef ((*pc)[1].type);
5b4ee69b 2100
c906108c 2101 (*pc) += 3;
f7c79c41 2102 gen_expr (exp, pc, ax, value);
a0c78a73
PA
2103
2104 /* If we have an axs_rvalue or an axs_lvalue_memory, then we
2105 already have the right value on the stack. For
2106 axs_lvalue_register, we must convert. */
2107 if (value->kind == axs_lvalue_register)
2108 require_rvalue (ax, value);
2109
c906108c
SS
2110 value->type = type;
2111 value->kind = axs_lvalue_memory;
2112 }
c5aa993b 2113 break;
c906108c 2114
9eaf6705
TT
2115 case UNOP_MEMVAL_TYPE:
2116 {
2117 int offset;
2118 struct value *val;
2119 struct type *type;
2120
2121 ++*pc;
2122 offset = *pc - exp->elts;
2123 val = evaluate_subexp (NULL, exp, &offset, EVAL_AVOID_SIDE_EFFECTS);
2124 type = value_type (val);
2125 *pc = &exp->elts[offset];
2126
2127 gen_expr (exp, pc, ax, value);
2128
2129 /* If we have an axs_rvalue or an axs_lvalue_memory, then we
2130 already have the right value on the stack. For
2131 axs_lvalue_register, we must convert. */
2132 if (value->kind == axs_lvalue_register)
2133 require_rvalue (ax, value);
2134
2135 value->type = type;
2136 value->kind = axs_lvalue_memory;
2137 }
2138 break;
2139
36e9969c
NS
2140 case UNOP_PLUS:
2141 (*pc)++;
0e2de366 2142 /* + FOO is equivalent to 0 + FOO, which can be optimized. */
f7c79c41
UW
2143 gen_expr (exp, pc, ax, value);
2144 gen_usual_unary (exp, ax, value);
36e9969c
NS
2145 break;
2146
c906108c
SS
2147 case UNOP_NEG:
2148 (*pc)++;
2149 /* -FOO is equivalent to 0 - FOO. */
22601c15
UW
2150 gen_int_literal (ax, &value1, 0,
2151 builtin_type (exp->gdbarch)->builtin_int);
f7c79c41
UW
2152 gen_usual_unary (exp, ax, &value1); /* shouldn't do much */
2153 gen_expr (exp, pc, ax, &value2);
2154 gen_usual_unary (exp, ax, &value2);
2155 gen_usual_arithmetic (exp, ax, &value1, &value2);
2156 gen_binop (ax, value, &value1, &value2, aop_sub, aop_sub, 1, "negation");
c906108c
SS
2157 break;
2158
2159 case UNOP_LOGICAL_NOT:
2160 (*pc)++;
f7c79c41
UW
2161 gen_expr (exp, pc, ax, value);
2162 gen_usual_unary (exp, ax, value);
3b11a015 2163 gen_logical_not (ax, value, int_type);
c906108c
SS
2164 break;
2165
2166 case UNOP_COMPLEMENT:
2167 (*pc)++;
f7c79c41
UW
2168 gen_expr (exp, pc, ax, value);
2169 gen_usual_unary (exp, ax, value);
2170 gen_integral_promotions (exp, ax, value);
c906108c
SS
2171 gen_complement (ax, value);
2172 break;
2173
2174 case UNOP_IND:
2175 (*pc)++;
f7c79c41
UW
2176 gen_expr (exp, pc, ax, value);
2177 gen_usual_unary (exp, ax, value);
b97aedf3 2178 if (!pointer_type (value->type))
3d263c1d 2179 error (_("Argument of unary `*' is not a pointer."));
c906108c
SS
2180 gen_deref (ax, value);
2181 break;
2182
2183 case UNOP_ADDR:
2184 (*pc)++;
f7c79c41 2185 gen_expr (exp, pc, ax, value);
c906108c
SS
2186 gen_address_of (ax, value);
2187 break;
2188
2189 case UNOP_SIZEOF:
2190 (*pc)++;
2191 /* Notice that gen_sizeof handles its own operand, unlike most
c5aa993b
JM
2192 of the other unary operator functions. This is because we
2193 have to throw away the code we generate. */
f7c79c41
UW
2194 gen_sizeof (exp, pc, ax, value,
2195 builtin_type (exp->gdbarch)->builtin_int);
c906108c
SS
2196 break;
2197
2198 case STRUCTOP_STRUCT:
2199 case STRUCTOP_PTR:
2200 {
2201 int length = (*pc)[1].longconst;
2202 char *name = &(*pc)[2].string;
2203
2204 (*pc) += 4 + BYTES_TO_EXP_ELEM (length + 1);
f7c79c41 2205 gen_expr (exp, pc, ax, value);
c906108c 2206 if (op == STRUCTOP_STRUCT)
505e835d 2207 gen_struct_ref (exp, ax, value, name, ".", "structure or union");
c906108c 2208 else if (op == STRUCTOP_PTR)
505e835d 2209 gen_struct_ref (exp, ax, value, name, "->",
c906108c
SS
2210 "pointer to a structure or union");
2211 else
2212 /* If this `if' chain doesn't handle it, then the case list
c5aa993b 2213 shouldn't mention it, and we shouldn't be here. */
8e65ff28 2214 internal_error (__FILE__, __LINE__,
3d263c1d 2215 _("gen_expr: unhandled struct case"));
c906108c 2216 }
c5aa993b 2217 break;
c906108c 2218
6c228b9c
SS
2219 case OP_THIS:
2220 {
66a17cb6 2221 struct symbol *sym, *func;
6c228b9c 2222 struct block *b;
66a17cb6 2223 const struct language_defn *lang;
6c228b9c 2224
66a17cb6
TT
2225 b = block_for_pc (ax->scope);
2226 func = block_linkage_function (b);
2227 lang = language_def (SYMBOL_LANGUAGE (func));
6c228b9c 2228
66a17cb6 2229 sym = lookup_language_this (lang, b);
6c228b9c 2230 if (!sym)
66a17cb6 2231 error (_("no `%s' found"), lang->la_name_of_this);
6c228b9c
SS
2232
2233 gen_var_ref (exp->gdbarch, ax, value, sym);
400c6af0
SS
2234
2235 if (value->optimized_out)
2236 error (_("`%s' has been optimized out, cannot use"),
2237 SYMBOL_PRINT_NAME (sym));
2238
6c228b9c
SS
2239 (*pc) += 2;
2240 }
2241 break;
2242
b6e7192f
SS
2243 case OP_SCOPE:
2244 {
2245 struct type *type = (*pc)[1].type;
2246 int length = longest_to_int ((*pc)[2].longconst);
2247 char *name = &(*pc)[3].string;
2248 int found;
2249
2250 found = gen_aggregate_elt_ref (exp, ax, value, type, name,
2251 "?", "??");
2252 if (!found)
2253 error (_("There is no field named %s"), name);
2254 (*pc) += 5 + BYTES_TO_EXP_ELEM (length + 1);
2255 }
2256 break;
2257
c906108c 2258 case OP_TYPE:
608b4967
TT
2259 case OP_TYPEOF:
2260 case OP_DECLTYPE:
3d263c1d 2261 error (_("Attempt to use a type name as an expression."));
c906108c
SS
2262
2263 default:
b6e7192f 2264 error (_("Unsupported operator %s (%d) in expression."),
bd0b9f9e 2265 op_name (exp, op), op);
c906108c
SS
2266 }
2267}
f61e138d
SS
2268
2269/* This handles the middle-to-right-side of code generation for binary
2270 expressions, which is shared between regular binary operations and
2271 assign-modify (+= and friends) expressions. */
2272
2273static void
2274gen_expr_binop_rest (struct expression *exp,
2275 enum exp_opcode op, union exp_element **pc,
2276 struct agent_expr *ax, struct axs_value *value,
2277 struct axs_value *value1, struct axs_value *value2)
2278{
3b11a015
SS
2279 struct type *int_type = builtin_type (exp->gdbarch)->builtin_int;
2280
f61e138d
SS
2281 gen_expr (exp, pc, ax, value2);
2282 gen_usual_unary (exp, ax, value2);
2283 gen_usual_arithmetic (exp, ax, value1, value2);
2284 switch (op)
2285 {
2286 case BINOP_ADD:
2287 if (TYPE_CODE (value1->type) == TYPE_CODE_INT
b97aedf3 2288 && pointer_type (value2->type))
f61e138d
SS
2289 {
2290 /* Swap the values and proceed normally. */
2291 ax_simple (ax, aop_swap);
2292 gen_ptradd (ax, value, value2, value1);
2293 }
b97aedf3 2294 else if (pointer_type (value1->type)
f61e138d
SS
2295 && TYPE_CODE (value2->type) == TYPE_CODE_INT)
2296 gen_ptradd (ax, value, value1, value2);
2297 else
2298 gen_binop (ax, value, value1, value2,
2299 aop_add, aop_add, 1, "addition");
2300 break;
2301 case BINOP_SUB:
b97aedf3 2302 if (pointer_type (value1->type)
f61e138d
SS
2303 && TYPE_CODE (value2->type) == TYPE_CODE_INT)
2304 gen_ptrsub (ax,value, value1, value2);
b97aedf3
SS
2305 else if (pointer_type (value1->type)
2306 && pointer_type (value2->type))
f61e138d
SS
2307 /* FIXME --- result type should be ptrdiff_t */
2308 gen_ptrdiff (ax, value, value1, value2,
2309 builtin_type (exp->gdbarch)->builtin_long);
2310 else
2311 gen_binop (ax, value, value1, value2,
2312 aop_sub, aop_sub, 1, "subtraction");
2313 break;
2314 case BINOP_MUL:
2315 gen_binop (ax, value, value1, value2,
2316 aop_mul, aop_mul, 1, "multiplication");
2317 break;
2318 case BINOP_DIV:
2319 gen_binop (ax, value, value1, value2,
2320 aop_div_signed, aop_div_unsigned, 1, "division");
2321 break;
2322 case BINOP_REM:
2323 gen_binop (ax, value, value1, value2,
2324 aop_rem_signed, aop_rem_unsigned, 1, "remainder");
2325 break;
948103cf
SS
2326 case BINOP_LSH:
2327 gen_binop (ax, value, value1, value2,
2328 aop_lsh, aop_lsh, 1, "left shift");
2329 break;
2330 case BINOP_RSH:
2331 gen_binop (ax, value, value1, value2,
2332 aop_rsh_signed, aop_rsh_unsigned, 1, "right shift");
2333 break;
f61e138d 2334 case BINOP_SUBSCRIPT:
be636754
PA
2335 {
2336 struct type *type;
2337
2338 if (binop_types_user_defined_p (op, value1->type, value2->type))
2339 {
3e43a32a
MS
2340 error (_("cannot subscript requested type: "
2341 "cannot call user defined functions"));
be636754
PA
2342 }
2343 else
2344 {
2345 /* If the user attempts to subscript something that is not
2346 an array or pointer type (like a plain int variable for
2347 example), then report this as an error. */
2348 type = check_typedef (value1->type);
2349 if (TYPE_CODE (type) != TYPE_CODE_ARRAY
2350 && TYPE_CODE (type) != TYPE_CODE_PTR)
2351 {
2352 if (TYPE_NAME (type))
2353 error (_("cannot subscript something of type `%s'"),
2354 TYPE_NAME (type));
2355 else
2356 error (_("cannot subscript requested type"));
2357 }
2358 }
2359
5d5b640e 2360 if (!is_integral_type (value2->type))
3e43a32a
MS
2361 error (_("Argument to arithmetic operation "
2362 "not a number or boolean."));
5d5b640e 2363
be636754
PA
2364 gen_ptradd (ax, value, value1, value2);
2365 gen_deref (ax, value);
2366 break;
2367 }
f61e138d
SS
2368 case BINOP_BITWISE_AND:
2369 gen_binop (ax, value, value1, value2,
2370 aop_bit_and, aop_bit_and, 0, "bitwise and");
2371 break;
2372
2373 case BINOP_BITWISE_IOR:
2374 gen_binop (ax, value, value1, value2,
2375 aop_bit_or, aop_bit_or, 0, "bitwise or");
2376 break;
2377
2378 case BINOP_BITWISE_XOR:
2379 gen_binop (ax, value, value1, value2,
2380 aop_bit_xor, aop_bit_xor, 0, "bitwise exclusive-or");
2381 break;
2382
2383 case BINOP_EQUAL:
3b11a015 2384 gen_equal (ax, value, value1, value2, int_type);
f61e138d
SS
2385 break;
2386
2387 case BINOP_NOTEQUAL:
3b11a015
SS
2388 gen_equal (ax, value, value1, value2, int_type);
2389 gen_logical_not (ax, value, int_type);
f61e138d
SS
2390 break;
2391
2392 case BINOP_LESS:
3b11a015 2393 gen_less (ax, value, value1, value2, int_type);
f61e138d
SS
2394 break;
2395
2396 case BINOP_GTR:
2397 ax_simple (ax, aop_swap);
3b11a015 2398 gen_less (ax, value, value1, value2, int_type);
f61e138d
SS
2399 break;
2400
2401 case BINOP_LEQ:
2402 ax_simple (ax, aop_swap);
3b11a015
SS
2403 gen_less (ax, value, value1, value2, int_type);
2404 gen_logical_not (ax, value, int_type);
f61e138d
SS
2405 break;
2406
2407 case BINOP_GEQ:
3b11a015
SS
2408 gen_less (ax, value, value1, value2, int_type);
2409 gen_logical_not (ax, value, int_type);
f61e138d
SS
2410 break;
2411
2412 default:
2413 /* We should only list operators in the outer case statement
2414 that we actually handle in the inner case statement. */
2415 internal_error (__FILE__, __LINE__,
2416 _("gen_expr: op case sets don't match"));
2417 }
2418}
c906108c 2419\f
c5aa993b 2420
0936ad1d
SS
2421/* Given a single variable and a scope, generate bytecodes to trace
2422 its value. This is for use in situations where we have only a
2423 variable's name, and no parsed expression; for instance, when the
2424 name comes from a list of local variables of a function. */
2425
2426struct agent_expr *
400c6af0
SS
2427gen_trace_for_var (CORE_ADDR scope, struct gdbarch *gdbarch,
2428 struct symbol *var)
0936ad1d
SS
2429{
2430 struct cleanup *old_chain = 0;
35c9c7ba 2431 struct agent_expr *ax = new_agent_expr (gdbarch, scope);
0936ad1d
SS
2432 struct axs_value value;
2433
2434 old_chain = make_cleanup_free_agent_expr (ax);
2435
2436 trace_kludge = 1;
400c6af0
SS
2437 gen_var_ref (gdbarch, ax, &value, var);
2438
2439 /* If there is no actual variable to trace, flag it by returning
2440 an empty agent expression. */
2441 if (value.optimized_out)
2442 {
2443 do_cleanups (old_chain);
2444 return NULL;
2445 }
0936ad1d
SS
2446
2447 /* Make sure we record the final object, and get rid of it. */
400c6af0 2448 gen_traced_pop (gdbarch, ax, &value);
0936ad1d
SS
2449
2450 /* Oh, and terminate. */
2451 ax_simple (ax, aop_end);
2452
2453 /* We have successfully built the agent expr, so cancel the cleanup
2454 request. If we add more cleanups that we always want done, this
2455 will have to get more complicated. */
2456 discard_cleanups (old_chain);
2457 return ax;
2458}
c5aa993b 2459
c906108c
SS
2460/* Generating bytecode from GDB expressions: driver */
2461
c906108c
SS
2462/* Given a GDB expression EXPR, return bytecode to trace its value.
2463 The result will use the `trace' and `trace_quick' bytecodes to
2464 record the value of all memory touched by the expression. The
2465 caller can then use the ax_reqs function to discover which
2466 registers it relies upon. */
2467struct agent_expr *
fba45db2 2468gen_trace_for_expr (CORE_ADDR scope, struct expression *expr)
c906108c
SS
2469{
2470 struct cleanup *old_chain = 0;
35c9c7ba 2471 struct agent_expr *ax = new_agent_expr (expr->gdbarch, scope);
c906108c
SS
2472 union exp_element *pc;
2473 struct axs_value value;
2474
f23d52e0 2475 old_chain = make_cleanup_free_agent_expr (ax);
c906108c
SS
2476
2477 pc = expr->elts;
2478 trace_kludge = 1;
35c9c7ba 2479 value.optimized_out = 0;
f7c79c41 2480 gen_expr (expr, &pc, ax, &value);
c906108c
SS
2481
2482 /* Make sure we record the final object, and get rid of it. */
400c6af0 2483 gen_traced_pop (expr->gdbarch, ax, &value);
c906108c
SS
2484
2485 /* Oh, and terminate. */
2486 ax_simple (ax, aop_end);
2487
2488 /* We have successfully built the agent expr, so cancel the cleanup
2489 request. If we add more cleanups that we always want done, this
2490 will have to get more complicated. */
2491 discard_cleanups (old_chain);
2492 return ax;
2493}
c906108c 2494
782b2b07
SS
2495/* Given a GDB expression EXPR, return a bytecode sequence that will
2496 evaluate and return a result. The bytecodes will do a direct
2497 evaluation, using the current data on the target, rather than
2498 recording blocks of memory and registers for later use, as
2499 gen_trace_for_expr does. The generated bytecode sequence leaves
2500 the result of expression evaluation on the top of the stack. */
2501
2502struct agent_expr *
2503gen_eval_for_expr (CORE_ADDR scope, struct expression *expr)
2504{
2505 struct cleanup *old_chain = 0;
35c9c7ba 2506 struct agent_expr *ax = new_agent_expr (expr->gdbarch, scope);
782b2b07
SS
2507 union exp_element *pc;
2508 struct axs_value value;
2509
2510 old_chain = make_cleanup_free_agent_expr (ax);
2511
2512 pc = expr->elts;
2513 trace_kludge = 0;
35c9c7ba 2514 value.optimized_out = 0;
782b2b07
SS
2515 gen_expr (expr, &pc, ax, &value);
2516
35c9c7ba
SS
2517 require_rvalue (ax, &value);
2518
782b2b07
SS
2519 /* Oh, and terminate. */
2520 ax_simple (ax, aop_end);
2521
2522 /* We have successfully built the agent expr, so cancel the cleanup
2523 request. If we add more cleanups that we always want done, this
2524 will have to get more complicated. */
2525 discard_cleanups (old_chain);
2526 return ax;
2527}
2528
6710bf39
SS
2529struct agent_expr *
2530gen_trace_for_return_address (CORE_ADDR scope, struct gdbarch *gdbarch)
2531{
2532 struct cleanup *old_chain = 0;
2533 struct agent_expr *ax = new_agent_expr (gdbarch, scope);
2534 struct axs_value value;
2535
2536 old_chain = make_cleanup_free_agent_expr (ax);
2537
2538 trace_kludge = 1;
2539
2540 gdbarch_gen_return_address (gdbarch, ax, &value, scope);
2541
2542 /* Make sure we record the final object, and get rid of it. */
2543 gen_traced_pop (gdbarch, ax, &value);
2544
2545 /* Oh, and terminate. */
2546 ax_simple (ax, aop_end);
2547
2548 /* We have successfully built the agent expr, so cancel the cleanup
2549 request. If we add more cleanups that we always want done, this
2550 will have to get more complicated. */
2551 discard_cleanups (old_chain);
2552 return ax;
2553}
2554
d3ce09f5
SS
2555/* Given a collection of printf-style arguments, generate code to
2556 evaluate the arguments and pass everything to a special
2557 bytecode. */
2558
2559struct agent_expr *
2560gen_printf (CORE_ADDR scope, struct gdbarch *gdbarch,
2561 CORE_ADDR function, LONGEST channel,
2562 char *format, int fmtlen,
2563 struct format_piece *frags,
2564 int nargs, struct expression **exprs)
2565{
2566 struct expression *expr;
2567 struct cleanup *old_chain = 0;
2568 struct agent_expr *ax = new_agent_expr (gdbarch, scope);
2569 union exp_element *pc;
2570 struct axs_value value;
2571 int i, tem, bot, fr, flen;
2572 char *fmt;
2573
2574 old_chain = make_cleanup_free_agent_expr (ax);
2575
2576 /* Evaluate and push the args on the stack in reverse order,
2577 for simplicity of collecting them on the target side. */
2578 for (tem = nargs - 1; tem >= 0; --tem)
2579 {
2580 pc = exprs[tem]->elts;
2581 /* We're computing values, not doing side effects. */
2582 trace_kludge = 0;
2583 value.optimized_out = 0;
2584 gen_expr (exprs[tem], &pc, ax, &value);
2585 require_rvalue (ax, &value);
2586 }
2587
2588 /* Push function and channel. */
2589 ax_const_l (ax, channel);
2590 ax_const_l (ax, function);
2591
2592 /* Issue the printf bytecode proper. */
2593 ax_simple (ax, aop_printf);
2594 ax_simple (ax, nargs);
2595 ax_string (ax, format, fmtlen);
2596
2597 /* And terminate. */
2598 ax_simple (ax, aop_end);
2599
2600 /* We have successfully built the agent expr, so cancel the cleanup
2601 request. If we add more cleanups that we always want done, this
2602 will have to get more complicated. */
2603 discard_cleanups (old_chain);
2604
2605 return ax;
2606}
2607
c906108c 2608static void
34b536a8 2609agent_eval_command_one (char *exp, int eval, CORE_ADDR pc)
c906108c
SS
2610{
2611 struct cleanup *old_chain = 0;
2612 struct expression *expr;
2613 struct agent_expr *agent;
c906108c 2614
34b536a8
HZ
2615 if (!eval)
2616 {
2617 trace_string_kludge = 0;
2618 if (*exp == '/')
2619 exp = decode_agent_options (exp);
2620 }
3065dfb6 2621
34b536a8 2622 if (!eval && strcmp (exp, "$_ret") == 0)
6710bf39 2623 {
34b536a8 2624 agent = gen_trace_for_return_address (pc, get_current_arch ());
6710bf39
SS
2625 old_chain = make_cleanup_free_agent_expr (agent);
2626 }
2627 else
2628 {
34b536a8 2629 expr = parse_exp_1 (&exp, pc, block_for_pc (pc), 0);
6710bf39 2630 old_chain = make_cleanup (free_current_contents, &expr);
34b536a8
HZ
2631 if (eval)
2632 agent = gen_eval_for_expr (pc, expr);
2633 else
2634 agent = gen_trace_for_expr (pc, expr);
6710bf39
SS
2635 make_cleanup_free_agent_expr (agent);
2636 }
2637
35c9c7ba 2638 ax_reqs (agent);
c906108c 2639 ax_print (gdb_stdout, agent);
085dd6e6
JM
2640
2641 /* It would be nice to call ax_reqs here to gather some general info
2642 about the expression, and then print out the result. */
c906108c
SS
2643
2644 do_cleanups (old_chain);
2645 dont_repeat ();
2646}
782b2b07 2647
782b2b07 2648static void
34b536a8 2649agent_command_1 (char *exp, int eval)
782b2b07 2650{
782b2b07
SS
2651 /* We don't deal with overlay debugging at the moment. We need to
2652 think more carefully about this. If you copy this code into
2653 another command, change the error message; the user shouldn't
2654 have to know anything about agent expressions. */
2655 if (overlay_debugging)
2656 error (_("GDB can't do agent expression translation with overlays."));
2657
2658 if (exp == 0)
2659 error_no_arg (_("expression to translate"));
2660
34b536a8
HZ
2661 if (check_for_argument (&exp, "-at", sizeof ("-at") - 1))
2662 {
2663 struct linespec_result canonical;
2664 int ix;
2665 struct linespec_sals *iter;
2666 struct cleanup *old_chain;
2667
2668 exp = skip_spaces (exp);
2669 init_linespec_result (&canonical);
2670 decode_line_full (&exp, DECODE_LINE_FUNFIRSTLINE,
2671 (struct symtab *) NULL, 0, &canonical,
2672 NULL, NULL);
2673 old_chain = make_cleanup_destroy_linespec_result (&canonical);
2674 exp = skip_spaces (exp);
2675 if (exp[0] == ',')
2676 {
2677 exp++;
2678 exp = skip_spaces (exp);
2679 }
2680 for (ix = 0; VEC_iterate (linespec_sals, canonical.sals, ix, iter); ++ix)
2681 {
2682 int i;
782b2b07 2683
34b536a8
HZ
2684 for (i = 0; i < iter->sals.nelts; i++)
2685 agent_eval_command_one (exp, eval, iter->sals.sals[i].pc);
2686 }
2687 do_cleanups (old_chain);
2688 }
2689 else
2690 agent_eval_command_one (exp, eval, get_frame_pc (get_current_frame ()));
782b2b07 2691
782b2b07
SS
2692 dont_repeat ();
2693}
34b536a8
HZ
2694
2695static void
2696agent_command (char *exp, int from_tty)
2697{
2698 agent_command_1 (exp, 0);
2699}
2700
2701/* Parse the given expression, compile it into an agent expression
2702 that does direct evaluation, and display the resulting
2703 expression. */
2704
2705static void
2706agent_eval_command (char *exp, int from_tty)
2707{
2708 agent_command_1 (exp, 1);
2709}
2710
d3ce09f5
SS
2711/* Parse the given expression, compile it into an agent expression
2712 that does a printf, and display the resulting expression. */
2713
2714static void
2715maint_agent_printf_command (char *exp, int from_tty)
2716{
2717 struct cleanup *old_chain = 0;
2718 struct expression *expr;
2719 struct expression *argvec[100];
2720 struct agent_expr *agent;
2721 struct frame_info *fi = get_current_frame (); /* need current scope */
2722 char *cmdrest;
2723 char *format_start, *format_end;
2724 struct format_piece *fpieces;
2725 int nargs;
2726
2727 /* We don't deal with overlay debugging at the moment. We need to
2728 think more carefully about this. If you copy this code into
2729 another command, change the error message; the user shouldn't
2730 have to know anything about agent expressions. */
2731 if (overlay_debugging)
2732 error (_("GDB can't do agent expression translation with overlays."));
2733
2734 if (exp == 0)
2735 error_no_arg (_("expression to translate"));
2736
2737 cmdrest = exp;
2738
2739 cmdrest = skip_spaces (cmdrest);
2740
2741 if (*cmdrest++ != '"')
2742 error (_("Must start with a format string."));
2743
2744 format_start = cmdrest;
2745
2746 fpieces = parse_format_string (&cmdrest);
2747
2748 old_chain = make_cleanup (free_format_pieces_cleanup, &fpieces);
2749
2750 format_end = cmdrest;
2751
2752 if (*cmdrest++ != '"')
2753 error (_("Bad format string, non-terminated '\"'."));
2754
2755 cmdrest = skip_spaces (cmdrest);
2756
2757 if (*cmdrest != ',' && *cmdrest != 0)
2758 error (_("Invalid argument syntax"));
2759
2760 if (*cmdrest == ',')
2761 cmdrest++;
2762 cmdrest = skip_spaces (cmdrest);
2763
2764 nargs = 0;
2765 while (*cmdrest != '\0')
2766 {
2767 char *cmd1;
2768
2769 cmd1 = cmdrest;
2770 expr = parse_exp_1 (&cmd1, 0, (struct block *) 0, 1);
2771 argvec[nargs] = expr;
2772 ++nargs;
2773 cmdrest = cmd1;
2774 if (*cmdrest == ',')
2775 ++cmdrest;
2776 /* else complain? */
2777 }
2778
2779
2780 agent = gen_printf (get_frame_pc (fi), get_current_arch (), 0, 0,
2781 format_start, format_end - format_start,
2782 fpieces, nargs, argvec);
2783 make_cleanup_free_agent_expr (agent);
2784 ax_reqs (agent);
2785 ax_print (gdb_stdout, agent);
2786
2787 /* It would be nice to call ax_reqs here to gather some general info
2788 about the expression, and then print out the result. */
2789
2790 do_cleanups (old_chain);
2791 dont_repeat ();
2792}
c906108c 2793\f
c5aa993b 2794
c906108c
SS
2795/* Initialization code. */
2796
a14ed312 2797void _initialize_ax_gdb (void);
c906108c 2798void
fba45db2 2799_initialize_ax_gdb (void)
c906108c 2800{
c906108c 2801 add_cmd ("agent", class_maintenance, agent_command,
34b536a8
HZ
2802 _("\
2803Translate an expression into remote agent bytecode for tracing.\n\
2804Usage: maint agent [-at location,] EXPRESSION\n\
2805If -at is given, generate remote agent bytecode for this location.\n\
2806If not, generate remote agent bytecode for current frame pc address."),
782b2b07
SS
2807 &maintenancelist);
2808
2809 add_cmd ("agent-eval", class_maintenance, agent_eval_command,
34b536a8
HZ
2810 _("\
2811Translate an expression into remote agent bytecode for evaluation.\n\
2812Usage: maint agent-eval [-at location,] EXPRESSION\n\
2813If -at is given, generate remote agent bytecode for this location.\n\
2814If not, generate remote agent bytecode for current frame pc address."),
c906108c 2815 &maintenancelist);
d3ce09f5
SS
2816
2817 add_cmd ("agent-printf", class_maintenance, maint_agent_printf_command,
2818 _("Translate an expression into remote "
2819 "agent bytecode for evaluation and display the bytecodes."),
2820 &maintenancelist);
c906108c 2821}
This page took 0.965365 seconds and 4 git commands to generate.