1 /* GDB-specific functions for operating on agent expressions.
3 Copyright (C) 1998-2001, 2003, 2007-2012 Free Software Foundation,
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
27 #include "expression.h"
34 #include "gdb_string.h"
37 #include "user-regs.h"
39 #include "dictionary.h"
40 #include "breakpoint.h"
41 #include "tracepoint.h"
42 #include "cp-support.h"
43 #include "arch-utils.h"
48 /* To make sense of this file, you should read doc/agentexpr.texi.
49 Then look at the types and enums in ax-gdb.h. For the code itself,
50 look at gen_expr, towards the bottom; that's the main function that
51 looks at the GDB expressions and calls everything else to generate
54 I'm beginning to wonder whether it wouldn't be nicer to internally
55 generate trees, with types, and then spit out the bytecode in
56 linear form afterwards; we could generate fewer `swap', `ext', and
57 `zero_ext' bytecodes that way; it would make good constant folding
58 easier, too. But at the moment, I think we should be willing to
59 pay for the simplicity of this code with less-than-optimal bytecode
62 Remember, "GBD" stands for "Great Britain, Dammit!" So be careful. */
66 /* Prototypes for local functions. */
68 /* There's a standard order to the arguments of these functions:
69 union exp_element ** --- pointer into expression
70 struct agent_expr * --- agent expression buffer to generate code into
71 struct axs_value * --- describes value left on top of stack */
73 static struct value
*const_var_ref (struct symbol
*var
);
74 static struct value
*const_expr (union exp_element
**pc
);
75 static struct value
*maybe_const_expr (union exp_element
**pc
);
77 static void gen_traced_pop (struct gdbarch
*, struct agent_expr
*,
80 static void gen_sign_extend (struct agent_expr
*, struct type
*);
81 static void gen_extend (struct agent_expr
*, struct type
*);
82 static void gen_fetch (struct agent_expr
*, struct type
*);
83 static void gen_left_shift (struct agent_expr
*, int);
86 static void gen_frame_args_address (struct gdbarch
*, struct agent_expr
*);
87 static void gen_frame_locals_address (struct gdbarch
*, struct agent_expr
*);
88 static void gen_offset (struct agent_expr
*ax
, int offset
);
89 static void gen_sym_offset (struct agent_expr
*, struct symbol
*);
90 static void gen_var_ref (struct gdbarch
*, struct agent_expr
*ax
,
91 struct axs_value
*value
, struct symbol
*var
);
94 static void gen_int_literal (struct agent_expr
*ax
,
95 struct axs_value
*value
,
96 LONGEST k
, struct type
*type
);
98 static void gen_usual_unary (struct expression
*exp
, struct agent_expr
*ax
,
99 struct axs_value
*value
);
100 static int type_wider_than (struct type
*type1
, struct type
*type2
);
101 static struct type
*max_type (struct type
*type1
, struct type
*type2
);
102 static void gen_conversion (struct agent_expr
*ax
,
103 struct type
*from
, struct type
*to
);
104 static int is_nontrivial_conversion (struct type
*from
, struct type
*to
);
105 static void gen_usual_arithmetic (struct expression
*exp
,
106 struct agent_expr
*ax
,
107 struct axs_value
*value1
,
108 struct axs_value
*value2
);
109 static void gen_integral_promotions (struct expression
*exp
,
110 struct agent_expr
*ax
,
111 struct axs_value
*value
);
112 static void gen_cast (struct agent_expr
*ax
,
113 struct axs_value
*value
, struct type
*type
);
114 static void gen_scale (struct agent_expr
*ax
,
115 enum agent_op op
, struct type
*type
);
116 static void gen_ptradd (struct agent_expr
*ax
, struct axs_value
*value
,
117 struct axs_value
*value1
, struct axs_value
*value2
);
118 static void gen_ptrsub (struct agent_expr
*ax
, struct axs_value
*value
,
119 struct axs_value
*value1
, struct axs_value
*value2
);
120 static void gen_ptrdiff (struct agent_expr
*ax
, struct axs_value
*value
,
121 struct axs_value
*value1
, struct axs_value
*value2
,
122 struct type
*result_type
);
123 static void gen_binop (struct agent_expr
*ax
,
124 struct axs_value
*value
,
125 struct axs_value
*value1
,
126 struct axs_value
*value2
,
128 enum agent_op op_unsigned
, int may_carry
, char *name
);
129 static void gen_logical_not (struct agent_expr
*ax
, struct axs_value
*value
,
130 struct type
*result_type
);
131 static void gen_complement (struct agent_expr
*ax
, struct axs_value
*value
);
132 static void gen_deref (struct agent_expr
*, struct axs_value
*);
133 static void gen_address_of (struct agent_expr
*, struct axs_value
*);
134 static void gen_bitfield_ref (struct expression
*exp
, struct agent_expr
*ax
,
135 struct axs_value
*value
,
136 struct type
*type
, int start
, int end
);
137 static void gen_primitive_field (struct expression
*exp
,
138 struct agent_expr
*ax
,
139 struct axs_value
*value
,
140 int offset
, int fieldno
, struct type
*type
);
141 static int gen_struct_ref_recursive (struct expression
*exp
,
142 struct agent_expr
*ax
,
143 struct axs_value
*value
,
144 char *field
, int offset
,
146 static void gen_struct_ref (struct expression
*exp
, struct agent_expr
*ax
,
147 struct axs_value
*value
,
149 char *operator_name
, char *operand_name
);
150 static void gen_static_field (struct gdbarch
*gdbarch
,
151 struct agent_expr
*ax
, struct axs_value
*value
,
152 struct type
*type
, int fieldno
);
153 static void gen_repeat (struct expression
*exp
, union exp_element
**pc
,
154 struct agent_expr
*ax
, struct axs_value
*value
);
155 static void gen_sizeof (struct expression
*exp
, union exp_element
**pc
,
156 struct agent_expr
*ax
, struct axs_value
*value
,
157 struct type
*size_type
);
158 static void gen_expr_binop_rest (struct expression
*exp
,
159 enum exp_opcode op
, union exp_element
**pc
,
160 struct agent_expr
*ax
,
161 struct axs_value
*value
,
162 struct axs_value
*value1
,
163 struct axs_value
*value2
);
165 static void agent_command (char *exp
, int from_tty
);
168 /* Detecting constant expressions. */
170 /* If the variable reference at *PC is a constant, return its value.
171 Otherwise, return zero.
173 Hey, Wally! How can a variable reference be a constant?
175 Well, Beav, this function really handles the OP_VAR_VALUE operator,
176 not specifically variable references. GDB uses OP_VAR_VALUE to
177 refer to any kind of symbolic reference: function names, enum
178 elements, and goto labels are all handled through the OP_VAR_VALUE
179 operator, even though they're constants. It makes sense given the
182 Gee, Wally, don'cha wonder sometimes if data representations that
183 subvert commonly accepted definitions of terms in favor of heavily
184 context-specific interpretations are really just a tool of the
185 programming hegemony to preserve their power and exclude the
188 static struct value
*
189 const_var_ref (struct symbol
*var
)
191 struct type
*type
= SYMBOL_TYPE (var
);
193 switch (SYMBOL_CLASS (var
))
196 return value_from_longest (type
, (LONGEST
) SYMBOL_VALUE (var
));
199 return value_from_pointer (type
, (CORE_ADDR
) SYMBOL_VALUE_ADDRESS (var
));
207 /* If the expression starting at *PC has a constant value, return it.
208 Otherwise, return zero. If we return a value, then *PC will be
209 advanced to the end of it. If we return zero, *PC could be
211 static struct value
*
212 const_expr (union exp_element
**pc
)
214 enum exp_opcode op
= (*pc
)->opcode
;
221 struct type
*type
= (*pc
)[1].type
;
222 LONGEST k
= (*pc
)[2].longconst
;
225 return value_from_longest (type
, k
);
230 struct value
*v
= const_var_ref ((*pc
)[2].symbol
);
236 /* We could add more operators in here. */
240 v1
= const_expr (pc
);
242 return value_neg (v1
);
252 /* Like const_expr, but guarantee also that *PC is undisturbed if the
253 expression is not constant. */
254 static struct value
*
255 maybe_const_expr (union exp_element
**pc
)
257 union exp_element
*tentative_pc
= *pc
;
258 struct value
*v
= const_expr (&tentative_pc
);
260 /* If we got a value, then update the real PC. */
268 /* Generating bytecode from GDB expressions: general assumptions */
270 /* Here are a few general assumptions made throughout the code; if you
271 want to make a change that contradicts one of these, then you'd
272 better scan things pretty thoroughly.
274 - We assume that all values occupy one stack element. For example,
275 sometimes we'll swap to get at the left argument to a binary
276 operator. If we decide that void values should occupy no stack
277 elements, or that synthetic arrays (whose size is determined at
278 run time, created by the `@' operator) should occupy two stack
279 elements (address and length), then this will cause trouble.
281 - We assume the stack elements are infinitely wide, and that we
282 don't have to worry what happens if the user requests an
283 operation that is wider than the actual interpreter's stack.
284 That is, it's up to the interpreter to handle directly all the
285 integer widths the user has access to. (Woe betide the language
288 - We don't support side effects. Thus, we don't have to worry about
289 GCC's generalized lvalues, function calls, etc.
291 - We don't support floating point. Many places where we switch on
292 some type don't bother to include cases for floating point; there
293 may be even more subtle ways this assumption exists. For
294 example, the arguments to % must be integers.
296 - We assume all subexpressions have a static, unchanging type. If
297 we tried to support convenience variables, this would be a
300 - All values on the stack should always be fully zero- or
303 (I wasn't sure whether to choose this or its opposite --- that
304 only addresses are assumed extended --- but it turns out that
305 neither convention completely eliminates spurious extend
306 operations (if everything is always extended, then you have to
307 extend after add, because it could overflow; if nothing is
308 extended, then you end up producing extends whenever you change
309 sizes), and this is simpler.) */
312 /* Generating bytecode from GDB expressions: the `trace' kludge */
314 /* The compiler in this file is a general-purpose mechanism for
315 translating GDB expressions into bytecode. One ought to be able to
316 find a million and one uses for it.
318 However, at the moment it is HOPELESSLY BRAIN-DAMAGED for the sake
319 of expediency. Let he who is without sin cast the first stone.
321 For the data tracing facility, we need to insert `trace' bytecodes
322 before each data fetch; this records all the memory that the
323 expression touches in the course of evaluation, so that memory will
324 be available when the user later tries to evaluate the expression
327 This should be done (I think) in a post-processing pass, that walks
328 an arbitrary agent expression and inserts `trace' operations at the
329 appropriate points. But it's much faster to just hack them
330 directly into the code. And since we're in a crunch, that's what
333 Setting the flag trace_kludge to non-zero enables the code that
334 emits the trace bytecodes at the appropriate points. */
337 /* Inspired by trace_kludge, this indicates that pointers to chars
338 should get an added tracenz bytecode to record nonzero bytes, up to
339 a length that is the value of trace_string_kludge. */
340 int trace_string_kludge
;
342 /* Scan for all static fields in the given class, including any base
343 classes, and generate tracing bytecodes for each. */
346 gen_trace_static_fields (struct gdbarch
*gdbarch
,
347 struct agent_expr
*ax
,
350 int i
, nbases
= TYPE_N_BASECLASSES (type
);
351 struct axs_value value
;
353 CHECK_TYPEDEF (type
);
355 for (i
= TYPE_NFIELDS (type
) - 1; i
>= nbases
; i
--)
357 if (field_is_static (&TYPE_FIELD (type
, i
)))
359 gen_static_field (gdbarch
, ax
, &value
, type
, i
);
360 if (value
.optimized_out
)
364 case axs_lvalue_memory
:
366 int length
= TYPE_LENGTH (check_typedef (value
.type
));
368 ax_const_l (ax
, length
);
369 ax_simple (ax
, aop_trace
);
373 case axs_lvalue_register
:
374 /* We don't actually need the register's value to be pushed,
375 just note that we need it to be collected. */
376 ax_reg_mask (ax
, value
.u
.reg
);
384 /* Now scan through base classes recursively. */
385 for (i
= 0; i
< nbases
; i
++)
387 struct type
*basetype
= check_typedef (TYPE_BASECLASS (type
, i
));
389 gen_trace_static_fields (gdbarch
, ax
, basetype
);
393 /* Trace the lvalue on the stack, if it needs it. In either case, pop
394 the value. Useful on the left side of a comma, and at the end of
395 an expression being used for tracing. */
397 gen_traced_pop (struct gdbarch
*gdbarch
,
398 struct agent_expr
*ax
, struct axs_value
*value
)
400 int string_trace
= 0;
401 if (trace_string_kludge
402 && TYPE_CODE (value
->type
) == TYPE_CODE_PTR
403 && c_textual_element_type (check_typedef (TYPE_TARGET_TYPE (value
->type
)),
413 ax_const_l (ax
, trace_string_kludge
);
414 ax_simple (ax
, aop_tracenz
);
417 /* We don't trace rvalues, just the lvalues necessary to
418 produce them. So just dispose of this value. */
419 ax_simple (ax
, aop_pop
);
422 case axs_lvalue_memory
:
424 int length
= TYPE_LENGTH (check_typedef (value
->type
));
427 ax_simple (ax
, aop_dup
);
429 /* There's no point in trying to use a trace_quick bytecode
430 here, since "trace_quick SIZE pop" is three bytes, whereas
431 "const8 SIZE trace" is also three bytes, does the same
432 thing, and the simplest code which generates that will also
433 work correctly for objects with large sizes. */
434 ax_const_l (ax
, length
);
435 ax_simple (ax
, aop_trace
);
439 ax_simple (ax
, aop_ref32
);
440 ax_const_l (ax
, trace_string_kludge
);
441 ax_simple (ax
, aop_tracenz
);
446 case axs_lvalue_register
:
447 /* We don't actually need the register's value to be on the
448 stack, and the target will get heartburn if the register is
449 larger than will fit in a stack, so just mark it for
450 collection and be done with it. */
451 ax_reg_mask (ax
, value
->u
.reg
);
453 /* But if the register points to a string, assume the value
454 will fit on the stack and push it anyway. */
457 ax_reg (ax
, value
->u
.reg
);
458 ax_const_l (ax
, trace_string_kludge
);
459 ax_simple (ax
, aop_tracenz
);
464 /* If we're not tracing, just pop the value. */
465 ax_simple (ax
, aop_pop
);
467 /* To trace C++ classes with static fields stored elsewhere. */
469 && (TYPE_CODE (value
->type
) == TYPE_CODE_STRUCT
470 || TYPE_CODE (value
->type
) == TYPE_CODE_UNION
))
471 gen_trace_static_fields (gdbarch
, ax
, value
->type
);
476 /* Generating bytecode from GDB expressions: helper functions */
478 /* Assume that the lower bits of the top of the stack is a value of
479 type TYPE, and the upper bits are zero. Sign-extend if necessary. */
481 gen_sign_extend (struct agent_expr
*ax
, struct type
*type
)
483 /* Do we need to sign-extend this? */
484 if (!TYPE_UNSIGNED (type
))
485 ax_ext (ax
, TYPE_LENGTH (type
) * TARGET_CHAR_BIT
);
489 /* Assume the lower bits of the top of the stack hold a value of type
490 TYPE, and the upper bits are garbage. Sign-extend or truncate as
493 gen_extend (struct agent_expr
*ax
, struct type
*type
)
495 int bits
= TYPE_LENGTH (type
) * TARGET_CHAR_BIT
;
498 ((TYPE_UNSIGNED (type
) ? ax_zero_ext
: ax_ext
) (ax
, bits
));
502 /* Assume that the top of the stack contains a value of type "pointer
503 to TYPE"; generate code to fetch its value. Note that TYPE is the
504 target type, not the pointer type. */
506 gen_fetch (struct agent_expr
*ax
, struct type
*type
)
510 /* Record the area of memory we're about to fetch. */
511 ax_trace_quick (ax
, TYPE_LENGTH (type
));
514 if (TYPE_CODE (type
) == TYPE_CODE_RANGE
)
515 type
= TYPE_TARGET_TYPE (type
);
517 switch (TYPE_CODE (type
))
525 /* It's a scalar value, so we know how to dereference it. How
526 many bytes long is it? */
527 switch (TYPE_LENGTH (type
))
529 case 8 / TARGET_CHAR_BIT
:
530 ax_simple (ax
, aop_ref8
);
532 case 16 / TARGET_CHAR_BIT
:
533 ax_simple (ax
, aop_ref16
);
535 case 32 / TARGET_CHAR_BIT
:
536 ax_simple (ax
, aop_ref32
);
538 case 64 / TARGET_CHAR_BIT
:
539 ax_simple (ax
, aop_ref64
);
542 /* Either our caller shouldn't have asked us to dereference
543 that pointer (other code's fault), or we're not
544 implementing something we should be (this code's fault).
545 In any case, it's a bug the user shouldn't see. */
547 internal_error (__FILE__
, __LINE__
,
548 _("gen_fetch: strange size"));
551 gen_sign_extend (ax
, type
);
555 /* Our caller requested us to dereference a pointer from an unsupported
556 type. Error out and give callers a chance to handle the failure
558 error (_("gen_fetch: Unsupported type code `%s'."),
564 /* Generate code to left shift the top of the stack by DISTANCE bits, or
565 right shift it by -DISTANCE bits if DISTANCE < 0. This generates
566 unsigned (logical) right shifts. */
568 gen_left_shift (struct agent_expr
*ax
, int distance
)
572 ax_const_l (ax
, distance
);
573 ax_simple (ax
, aop_lsh
);
575 else if (distance
< 0)
577 ax_const_l (ax
, -distance
);
578 ax_simple (ax
, aop_rsh_unsigned
);
584 /* Generating bytecode from GDB expressions: symbol references */
586 /* Generate code to push the base address of the argument portion of
587 the top stack frame. */
589 gen_frame_args_address (struct gdbarch
*gdbarch
, struct agent_expr
*ax
)
592 LONGEST frame_offset
;
594 gdbarch_virtual_frame_pointer (gdbarch
,
595 ax
->scope
, &frame_reg
, &frame_offset
);
596 ax_reg (ax
, frame_reg
);
597 gen_offset (ax
, frame_offset
);
601 /* Generate code to push the base address of the locals portion of the
604 gen_frame_locals_address (struct gdbarch
*gdbarch
, struct agent_expr
*ax
)
607 LONGEST frame_offset
;
609 gdbarch_virtual_frame_pointer (gdbarch
,
610 ax
->scope
, &frame_reg
, &frame_offset
);
611 ax_reg (ax
, frame_reg
);
612 gen_offset (ax
, frame_offset
);
616 /* Generate code to add OFFSET to the top of the stack. Try to
617 generate short and readable code. We use this for getting to
618 variables on the stack, and structure members. If we were
619 programming in ML, it would be clearer why these are the same
622 gen_offset (struct agent_expr
*ax
, int offset
)
624 /* It would suffice to simply push the offset and add it, but this
625 makes it easier to read positive and negative offsets in the
629 ax_const_l (ax
, offset
);
630 ax_simple (ax
, aop_add
);
634 ax_const_l (ax
, -offset
);
635 ax_simple (ax
, aop_sub
);
640 /* In many cases, a symbol's value is the offset from some other
641 address (stack frame, base register, etc.) Generate code to add
642 VAR's value to the top of the stack. */
644 gen_sym_offset (struct agent_expr
*ax
, struct symbol
*var
)
646 gen_offset (ax
, SYMBOL_VALUE (var
));
650 /* Generate code for a variable reference to AX. The variable is the
651 symbol VAR. Set VALUE to describe the result. */
654 gen_var_ref (struct gdbarch
*gdbarch
, struct agent_expr
*ax
,
655 struct axs_value
*value
, struct symbol
*var
)
657 /* Dereference any typedefs. */
658 value
->type
= check_typedef (SYMBOL_TYPE (var
));
659 value
->optimized_out
= 0;
661 /* I'm imitating the code in read_var_value. */
662 switch (SYMBOL_CLASS (var
))
664 case LOC_CONST
: /* A constant, like an enum value. */
665 ax_const_l (ax
, (LONGEST
) SYMBOL_VALUE (var
));
666 value
->kind
= axs_rvalue
;
669 case LOC_LABEL
: /* A goto label, being used as a value. */
670 ax_const_l (ax
, (LONGEST
) SYMBOL_VALUE_ADDRESS (var
));
671 value
->kind
= axs_rvalue
;
674 case LOC_CONST_BYTES
:
675 internal_error (__FILE__
, __LINE__
,
676 _("gen_var_ref: LOC_CONST_BYTES "
677 "symbols are not supported"));
679 /* Variable at a fixed location in memory. Easy. */
681 /* Push the address of the variable. */
682 ax_const_l (ax
, SYMBOL_VALUE_ADDRESS (var
));
683 value
->kind
= axs_lvalue_memory
;
686 case LOC_ARG
: /* var lives in argument area of frame */
687 gen_frame_args_address (gdbarch
, ax
);
688 gen_sym_offset (ax
, var
);
689 value
->kind
= axs_lvalue_memory
;
692 case LOC_REF_ARG
: /* As above, but the frame slot really
693 holds the address of the variable. */
694 gen_frame_args_address (gdbarch
, ax
);
695 gen_sym_offset (ax
, var
);
696 /* Don't assume any particular pointer size. */
697 gen_fetch (ax
, builtin_type (gdbarch
)->builtin_data_ptr
);
698 value
->kind
= axs_lvalue_memory
;
701 case LOC_LOCAL
: /* var lives in locals area of frame */
702 gen_frame_locals_address (gdbarch
, ax
);
703 gen_sym_offset (ax
, var
);
704 value
->kind
= axs_lvalue_memory
;
708 error (_("Cannot compute value of typedef `%s'."),
709 SYMBOL_PRINT_NAME (var
));
713 ax_const_l (ax
, BLOCK_START (SYMBOL_BLOCK_VALUE (var
)));
714 value
->kind
= axs_rvalue
;
718 /* Don't generate any code at all; in the process of treating
719 this as an lvalue or rvalue, the caller will generate the
721 value
->kind
= axs_lvalue_register
;
722 value
->u
.reg
= SYMBOL_REGISTER_OPS (var
)->register_number (var
, gdbarch
);
725 /* A lot like LOC_REF_ARG, but the pointer lives directly in a
726 register, not on the stack. Simpler than LOC_REGISTER
727 because it's just like any other case where the thing
728 has a real address. */
729 case LOC_REGPARM_ADDR
:
730 ax_reg (ax
, SYMBOL_REGISTER_OPS (var
)->register_number (var
, gdbarch
));
731 value
->kind
= axs_lvalue_memory
;
736 struct minimal_symbol
*msym
737 = lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (var
), NULL
, NULL
);
740 error (_("Couldn't resolve symbol `%s'."), SYMBOL_PRINT_NAME (var
));
742 /* Push the address of the variable. */
743 ax_const_l (ax
, SYMBOL_VALUE_ADDRESS (msym
));
744 value
->kind
= axs_lvalue_memory
;
749 /* FIXME: cagney/2004-01-26: It should be possible to
750 unconditionally call the SYMBOL_COMPUTED_OPS method when available.
751 Unfortunately DWARF 2 stores the frame-base (instead of the
752 function) location in a function's symbol. Oops! For the
753 moment enable this when/where applicable. */
754 SYMBOL_COMPUTED_OPS (var
)->tracepoint_var_ref (var
, gdbarch
, ax
, value
);
757 case LOC_OPTIMIZED_OUT
:
758 /* Flag this, but don't say anything; leave it up to callers to
760 value
->optimized_out
= 1;
764 error (_("Cannot find value of botched symbol `%s'."),
765 SYMBOL_PRINT_NAME (var
));
772 /* Generating bytecode from GDB expressions: literals */
775 gen_int_literal (struct agent_expr
*ax
, struct axs_value
*value
, LONGEST k
,
779 value
->kind
= axs_rvalue
;
780 value
->type
= check_typedef (type
);
785 /* Generating bytecode from GDB expressions: unary conversions, casts */
787 /* Take what's on the top of the stack (as described by VALUE), and
788 try to make an rvalue out of it. Signal an error if we can't do
791 require_rvalue (struct agent_expr
*ax
, struct axs_value
*value
)
793 /* Only deal with scalars, structs and such may be too large
794 to fit in a stack entry. */
795 value
->type
= check_typedef (value
->type
);
796 if (TYPE_CODE (value
->type
) == TYPE_CODE_ARRAY
797 || TYPE_CODE (value
->type
) == TYPE_CODE_STRUCT
798 || TYPE_CODE (value
->type
) == TYPE_CODE_UNION
799 || TYPE_CODE (value
->type
) == TYPE_CODE_FUNC
)
800 error (_("Value not scalar: cannot be an rvalue."));
805 /* It's already an rvalue. */
808 case axs_lvalue_memory
:
809 /* The top of stack is the address of the object. Dereference. */
810 gen_fetch (ax
, value
->type
);
813 case axs_lvalue_register
:
814 /* There's nothing on the stack, but value->u.reg is the
815 register number containing the value.
817 When we add floating-point support, this is going to have to
818 change. What about SPARC register pairs, for example? */
819 ax_reg (ax
, value
->u
.reg
);
820 gen_extend (ax
, value
->type
);
824 value
->kind
= axs_rvalue
;
828 /* Assume the top of the stack is described by VALUE, and perform the
829 usual unary conversions. This is motivated by ANSI 6.2.2, but of
830 course GDB expressions are not ANSI; they're the mishmash union of
831 a bunch of languages. Rah.
833 NOTE! This function promises to produce an rvalue only when the
834 incoming value is of an appropriate type. In other words, the
835 consumer of the value this function produces may assume the value
836 is an rvalue only after checking its type.
838 The immediate issue is that if the user tries to use a structure or
839 union as an operand of, say, the `+' operator, we don't want to try
840 to convert that structure to an rvalue; require_rvalue will bomb on
841 structs and unions. Rather, we want to simply pass the struct
842 lvalue through unchanged, and let `+' raise an error. */
845 gen_usual_unary (struct expression
*exp
, struct agent_expr
*ax
,
846 struct axs_value
*value
)
848 /* We don't have to generate any code for the usual integral
849 conversions, since values are always represented as full-width on
850 the stack. Should we tweak the type? */
852 /* Some types require special handling. */
853 switch (TYPE_CODE (value
->type
))
855 /* Functions get converted to a pointer to the function. */
857 value
->type
= lookup_pointer_type (value
->type
);
858 value
->kind
= axs_rvalue
; /* Should always be true, but just in case. */
861 /* Arrays get converted to a pointer to their first element, and
862 are no longer an lvalue. */
863 case TYPE_CODE_ARRAY
:
865 struct type
*elements
= TYPE_TARGET_TYPE (value
->type
);
867 value
->type
= lookup_pointer_type (elements
);
868 value
->kind
= axs_rvalue
;
869 /* We don't need to generate any code; the address of the array
870 is also the address of its first element. */
874 /* Don't try to convert structures and unions to rvalues. Let the
875 consumer signal an error. */
876 case TYPE_CODE_STRUCT
:
877 case TYPE_CODE_UNION
:
881 /* If the value is an lvalue, dereference it. */
882 require_rvalue (ax
, value
);
886 /* Return non-zero iff the type TYPE1 is considered "wider" than the
887 type TYPE2, according to the rules described in gen_usual_arithmetic. */
889 type_wider_than (struct type
*type1
, struct type
*type2
)
891 return (TYPE_LENGTH (type1
) > TYPE_LENGTH (type2
)
892 || (TYPE_LENGTH (type1
) == TYPE_LENGTH (type2
)
893 && TYPE_UNSIGNED (type1
)
894 && !TYPE_UNSIGNED (type2
)));
898 /* Return the "wider" of the two types TYPE1 and TYPE2. */
900 max_type (struct type
*type1
, struct type
*type2
)
902 return type_wider_than (type1
, type2
) ? type1
: type2
;
906 /* Generate code to convert a scalar value of type FROM to type TO. */
908 gen_conversion (struct agent_expr
*ax
, struct type
*from
, struct type
*to
)
910 /* Perhaps there is a more graceful way to state these rules. */
912 /* If we're converting to a narrower type, then we need to clear out
914 if (TYPE_LENGTH (to
) < TYPE_LENGTH (from
))
915 gen_extend (ax
, from
);
917 /* If the two values have equal width, but different signednesses,
918 then we need to extend. */
919 else if (TYPE_LENGTH (to
) == TYPE_LENGTH (from
))
921 if (TYPE_UNSIGNED (from
) != TYPE_UNSIGNED (to
))
925 /* If we're converting to a wider type, and becoming unsigned, then
926 we need to zero out any possible sign bits. */
927 else if (TYPE_LENGTH (to
) > TYPE_LENGTH (from
))
929 if (TYPE_UNSIGNED (to
))
935 /* Return non-zero iff the type FROM will require any bytecodes to be
936 emitted to be converted to the type TO. */
938 is_nontrivial_conversion (struct type
*from
, struct type
*to
)
940 struct agent_expr
*ax
= new_agent_expr (NULL
, 0);
943 /* Actually generate the code, and see if anything came out. At the
944 moment, it would be trivial to replicate the code in
945 gen_conversion here, but in the future, when we're supporting
946 floating point and the like, it may not be. Doing things this
947 way allows this function to be independent of the logic in
949 gen_conversion (ax
, from
, to
);
950 nontrivial
= ax
->len
> 0;
951 free_agent_expr (ax
);
956 /* Generate code to perform the "usual arithmetic conversions" (ANSI C
957 6.2.1.5) for the two operands of an arithmetic operator. This
958 effectively finds a "least upper bound" type for the two arguments,
959 and promotes each argument to that type. *VALUE1 and *VALUE2
960 describe the values as they are passed in, and as they are left. */
962 gen_usual_arithmetic (struct expression
*exp
, struct agent_expr
*ax
,
963 struct axs_value
*value1
, struct axs_value
*value2
)
965 /* Do the usual binary conversions. */
966 if (TYPE_CODE (value1
->type
) == TYPE_CODE_INT
967 && TYPE_CODE (value2
->type
) == TYPE_CODE_INT
)
969 /* The ANSI integral promotions seem to work this way: Order the
970 integer types by size, and then by signedness: an n-bit
971 unsigned type is considered "wider" than an n-bit signed
972 type. Promote to the "wider" of the two types, and always
973 promote at least to int. */
974 struct type
*target
= max_type (builtin_type (exp
->gdbarch
)->builtin_int
,
975 max_type (value1
->type
, value2
->type
));
977 /* Deal with value2, on the top of the stack. */
978 gen_conversion (ax
, value2
->type
, target
);
980 /* Deal with value1, not on the top of the stack. Don't
981 generate the `swap' instructions if we're not actually going
983 if (is_nontrivial_conversion (value1
->type
, target
))
985 ax_simple (ax
, aop_swap
);
986 gen_conversion (ax
, value1
->type
, target
);
987 ax_simple (ax
, aop_swap
);
990 value1
->type
= value2
->type
= check_typedef (target
);
995 /* Generate code to perform the integral promotions (ANSI 6.2.1.1) on
996 the value on the top of the stack, as described by VALUE. Assume
997 the value has integral type. */
999 gen_integral_promotions (struct expression
*exp
, struct agent_expr
*ax
,
1000 struct axs_value
*value
)
1002 const struct builtin_type
*builtin
= builtin_type (exp
->gdbarch
);
1004 if (!type_wider_than (value
->type
, builtin
->builtin_int
))
1006 gen_conversion (ax
, value
->type
, builtin
->builtin_int
);
1007 value
->type
= builtin
->builtin_int
;
1009 else if (!type_wider_than (value
->type
, builtin
->builtin_unsigned_int
))
1011 gen_conversion (ax
, value
->type
, builtin
->builtin_unsigned_int
);
1012 value
->type
= builtin
->builtin_unsigned_int
;
1017 /* Generate code for a cast to TYPE. */
1019 gen_cast (struct agent_expr
*ax
, struct axs_value
*value
, struct type
*type
)
1021 /* GCC does allow casts to yield lvalues, so this should be fixed
1022 before merging these changes into the trunk. */
1023 require_rvalue (ax
, value
);
1024 /* Dereference typedefs. */
1025 type
= check_typedef (type
);
1027 switch (TYPE_CODE (type
))
1031 /* It's implementation-defined, and I'll bet this is what GCC
1035 case TYPE_CODE_ARRAY
:
1036 case TYPE_CODE_STRUCT
:
1037 case TYPE_CODE_UNION
:
1038 case TYPE_CODE_FUNC
:
1039 error (_("Invalid type cast: intended type must be scalar."));
1041 case TYPE_CODE_ENUM
:
1042 case TYPE_CODE_BOOL
:
1043 /* We don't have to worry about the size of the value, because
1044 all our integral values are fully sign-extended, and when
1045 casting pointers we can do anything we like. Is there any
1046 way for us to know what GCC actually does with a cast like
1051 gen_conversion (ax
, value
->type
, type
);
1054 case TYPE_CODE_VOID
:
1055 /* We could pop the value, and rely on everyone else to check
1056 the type and notice that this value doesn't occupy a stack
1057 slot. But for now, leave the value on the stack, and
1058 preserve the "value == stack element" assumption. */
1062 error (_("Casts to requested type are not yet implemented."));
1070 /* Generating bytecode from GDB expressions: arithmetic */
1072 /* Scale the integer on the top of the stack by the size of the target
1073 of the pointer type TYPE. */
1075 gen_scale (struct agent_expr
*ax
, enum agent_op op
, struct type
*type
)
1077 struct type
*element
= TYPE_TARGET_TYPE (type
);
1079 if (TYPE_LENGTH (element
) != 1)
1081 ax_const_l (ax
, TYPE_LENGTH (element
));
1087 /* Generate code for pointer arithmetic PTR + INT. */
1089 gen_ptradd (struct agent_expr
*ax
, struct axs_value
*value
,
1090 struct axs_value
*value1
, struct axs_value
*value2
)
1092 gdb_assert (pointer_type (value1
->type
));
1093 gdb_assert (TYPE_CODE (value2
->type
) == TYPE_CODE_INT
);
1095 gen_scale (ax
, aop_mul
, value1
->type
);
1096 ax_simple (ax
, aop_add
);
1097 gen_extend (ax
, value1
->type
); /* Catch overflow. */
1098 value
->type
= value1
->type
;
1099 value
->kind
= axs_rvalue
;
1103 /* Generate code for pointer arithmetic PTR - INT. */
1105 gen_ptrsub (struct agent_expr
*ax
, struct axs_value
*value
,
1106 struct axs_value
*value1
, struct axs_value
*value2
)
1108 gdb_assert (pointer_type (value1
->type
));
1109 gdb_assert (TYPE_CODE (value2
->type
) == TYPE_CODE_INT
);
1111 gen_scale (ax
, aop_mul
, value1
->type
);
1112 ax_simple (ax
, aop_sub
);
1113 gen_extend (ax
, value1
->type
); /* Catch overflow. */
1114 value
->type
= value1
->type
;
1115 value
->kind
= axs_rvalue
;
1119 /* Generate code for pointer arithmetic PTR - PTR. */
1121 gen_ptrdiff (struct agent_expr
*ax
, struct axs_value
*value
,
1122 struct axs_value
*value1
, struct axs_value
*value2
,
1123 struct type
*result_type
)
1125 gdb_assert (pointer_type (value1
->type
));
1126 gdb_assert (pointer_type (value2
->type
));
1128 if (TYPE_LENGTH (TYPE_TARGET_TYPE (value1
->type
))
1129 != TYPE_LENGTH (TYPE_TARGET_TYPE (value2
->type
)))
1131 First argument of `-' is a pointer, but second argument is neither\n\
1132 an integer nor a pointer of the same type."));
1134 ax_simple (ax
, aop_sub
);
1135 gen_scale (ax
, aop_div_unsigned
, value1
->type
);
1136 value
->type
= result_type
;
1137 value
->kind
= axs_rvalue
;
1141 gen_equal (struct agent_expr
*ax
, struct axs_value
*value
,
1142 struct axs_value
*value1
, struct axs_value
*value2
,
1143 struct type
*result_type
)
1145 if (pointer_type (value1
->type
) || pointer_type (value2
->type
))
1146 ax_simple (ax
, aop_equal
);
1148 gen_binop (ax
, value
, value1
, value2
,
1149 aop_equal
, aop_equal
, 0, "equal");
1150 value
->type
= result_type
;
1151 value
->kind
= axs_rvalue
;
1155 gen_less (struct agent_expr
*ax
, struct axs_value
*value
,
1156 struct axs_value
*value1
, struct axs_value
*value2
,
1157 struct type
*result_type
)
1159 if (pointer_type (value1
->type
) || pointer_type (value2
->type
))
1160 ax_simple (ax
, aop_less_unsigned
);
1162 gen_binop (ax
, value
, value1
, value2
,
1163 aop_less_signed
, aop_less_unsigned
, 0, "less than");
1164 value
->type
= result_type
;
1165 value
->kind
= axs_rvalue
;
1168 /* Generate code for a binary operator that doesn't do pointer magic.
1169 We set VALUE to describe the result value; we assume VALUE1 and
1170 VALUE2 describe the two operands, and that they've undergone the
1171 usual binary conversions. MAY_CARRY should be non-zero iff the
1172 result needs to be extended. NAME is the English name of the
1173 operator, used in error messages */
1175 gen_binop (struct agent_expr
*ax
, struct axs_value
*value
,
1176 struct axs_value
*value1
, struct axs_value
*value2
,
1177 enum agent_op op
, enum agent_op op_unsigned
,
1178 int may_carry
, char *name
)
1180 /* We only handle INT op INT. */
1181 if ((TYPE_CODE (value1
->type
) != TYPE_CODE_INT
)
1182 || (TYPE_CODE (value2
->type
) != TYPE_CODE_INT
))
1183 error (_("Invalid combination of types in %s."), name
);
1186 TYPE_UNSIGNED (value1
->type
) ? op_unsigned
: op
);
1188 gen_extend (ax
, value1
->type
); /* catch overflow */
1189 value
->type
= value1
->type
;
1190 value
->kind
= axs_rvalue
;
1195 gen_logical_not (struct agent_expr
*ax
, struct axs_value
*value
,
1196 struct type
*result_type
)
1198 if (TYPE_CODE (value
->type
) != TYPE_CODE_INT
1199 && TYPE_CODE (value
->type
) != TYPE_CODE_PTR
)
1200 error (_("Invalid type of operand to `!'."));
1202 ax_simple (ax
, aop_log_not
);
1203 value
->type
= result_type
;
1208 gen_complement (struct agent_expr
*ax
, struct axs_value
*value
)
1210 if (TYPE_CODE (value
->type
) != TYPE_CODE_INT
)
1211 error (_("Invalid type of operand to `~'."));
1213 ax_simple (ax
, aop_bit_not
);
1214 gen_extend (ax
, value
->type
);
1219 /* Generating bytecode from GDB expressions: * & . -> @ sizeof */
1221 /* Dereference the value on the top of the stack. */
1223 gen_deref (struct agent_expr
*ax
, struct axs_value
*value
)
1225 /* The caller should check the type, because several operators use
1226 this, and we don't know what error message to generate. */
1227 if (!pointer_type (value
->type
))
1228 internal_error (__FILE__
, __LINE__
,
1229 _("gen_deref: expected a pointer"));
1231 /* We've got an rvalue now, which is a pointer. We want to yield an
1232 lvalue, whose address is exactly that pointer. So we don't
1233 actually emit any code; we just change the type from "Pointer to
1234 T" to "T", and mark the value as an lvalue in memory. Leave it
1235 to the consumer to actually dereference it. */
1236 value
->type
= check_typedef (TYPE_TARGET_TYPE (value
->type
));
1237 if (TYPE_CODE (value
->type
) == TYPE_CODE_VOID
)
1238 error (_("Attempt to dereference a generic pointer."));
1239 value
->kind
= ((TYPE_CODE (value
->type
) == TYPE_CODE_FUNC
)
1240 ? axs_rvalue
: axs_lvalue_memory
);
1244 /* Produce the address of the lvalue on the top of the stack. */
1246 gen_address_of (struct agent_expr
*ax
, struct axs_value
*value
)
1248 /* Special case for taking the address of a function. The ANSI
1249 standard describes this as a special case, too, so this
1250 arrangement is not without motivation. */
1251 if (TYPE_CODE (value
->type
) == TYPE_CODE_FUNC
)
1252 /* The value's already an rvalue on the stack, so we just need to
1254 value
->type
= lookup_pointer_type (value
->type
);
1256 switch (value
->kind
)
1259 error (_("Operand of `&' is an rvalue, which has no address."));
1261 case axs_lvalue_register
:
1262 error (_("Operand of `&' is in a register, and has no address."));
1264 case axs_lvalue_memory
:
1265 value
->kind
= axs_rvalue
;
1266 value
->type
= lookup_pointer_type (value
->type
);
1271 /* Generate code to push the value of a bitfield of a structure whose
1272 address is on the top of the stack. START and END give the
1273 starting and one-past-ending *bit* numbers of the field within the
1276 gen_bitfield_ref (struct expression
*exp
, struct agent_expr
*ax
,
1277 struct axs_value
*value
, struct type
*type
,
1280 /* Note that ops[i] fetches 8 << i bits. */
1281 static enum agent_op ops
[]
1282 = {aop_ref8
, aop_ref16
, aop_ref32
, aop_ref64
};
1283 static int num_ops
= (sizeof (ops
) / sizeof (ops
[0]));
1285 /* We don't want to touch any byte that the bitfield doesn't
1286 actually occupy; we shouldn't make any accesses we're not
1287 explicitly permitted to. We rely here on the fact that the
1288 bytecode `ref' operators work on unaligned addresses.
1290 It takes some fancy footwork to get the stack to work the way
1291 we'd like. Say we're retrieving a bitfield that requires three
1292 fetches. Initially, the stack just contains the address:
1294 For the first fetch, we duplicate the address
1296 then add the byte offset, do the fetch, and shift and mask as
1297 needed, yielding a fragment of the value, properly aligned for
1298 the final bitwise or:
1300 then we swap, and repeat the process:
1301 frag1 addr --- address on top
1302 frag1 addr addr --- duplicate it
1303 frag1 addr frag2 --- get second fragment
1304 frag1 frag2 addr --- swap again
1305 frag1 frag2 frag3 --- get third fragment
1306 Notice that, since the third fragment is the last one, we don't
1307 bother duplicating the address this time. Now we have all the
1308 fragments on the stack, and we can simply `or' them together,
1309 yielding the final value of the bitfield. */
1311 /* The first and one-after-last bits in the field, but rounded down
1312 and up to byte boundaries. */
1313 int bound_start
= (start
/ TARGET_CHAR_BIT
) * TARGET_CHAR_BIT
;
1314 int bound_end
= (((end
+ TARGET_CHAR_BIT
- 1)
1318 /* current bit offset within the structure */
1321 /* The index in ops of the opcode we're considering. */
1324 /* The number of fragments we generated in the process. Probably
1325 equal to the number of `one' bits in bytesize, but who cares? */
1328 /* Dereference any typedefs. */
1329 type
= check_typedef (type
);
1331 /* Can we fetch the number of bits requested at all? */
1332 if ((end
- start
) > ((1 << num_ops
) * 8))
1333 internal_error (__FILE__
, __LINE__
,
1334 _("gen_bitfield_ref: bitfield too wide"));
1336 /* Note that we know here that we only need to try each opcode once.
1337 That may not be true on machines with weird byte sizes. */
1338 offset
= bound_start
;
1340 for (op
= num_ops
- 1; op
>= 0; op
--)
1342 /* number of bits that ops[op] would fetch */
1343 int op_size
= 8 << op
;
1345 /* The stack at this point, from bottom to top, contains zero or
1346 more fragments, then the address. */
1348 /* Does this fetch fit within the bitfield? */
1349 if (offset
+ op_size
<= bound_end
)
1351 /* Is this the last fragment? */
1352 int last_frag
= (offset
+ op_size
== bound_end
);
1355 ax_simple (ax
, aop_dup
); /* keep a copy of the address */
1357 /* Add the offset. */
1358 gen_offset (ax
, offset
/ TARGET_CHAR_BIT
);
1362 /* Record the area of memory we're about to fetch. */
1363 ax_trace_quick (ax
, op_size
/ TARGET_CHAR_BIT
);
1366 /* Perform the fetch. */
1367 ax_simple (ax
, ops
[op
]);
1369 /* Shift the bits we have to their proper position.
1370 gen_left_shift will generate right shifts when the operand
1373 A big-endian field diagram to ponder:
1374 byte 0 byte 1 byte 2 byte 3 byte 4 byte 5 byte 6 byte 7
1375 +------++------++------++------++------++------++------++------+
1376 xxxxAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBCCCCCxxxxxxxxxxx
1378 bit number 16 32 48 53
1379 These are bit numbers as supplied by GDB. Note that the
1380 bit numbers run from right to left once you've fetched the
1383 A little-endian field diagram to ponder:
1384 byte 7 byte 6 byte 5 byte 4 byte 3 byte 2 byte 1 byte 0
1385 +------++------++------++------++------++------++------++------+
1386 xxxxxxxxxxxAAAAABBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCCCCCCCCCCCCxxxx
1388 bit number 48 32 16 4 0
1390 In both cases, the most significant end is on the left
1391 (i.e. normal numeric writing order), which means that you
1392 don't go crazy thinking about `left' and `right' shifts.
1394 We don't have to worry about masking yet:
1395 - If they contain garbage off the least significant end, then we
1396 must be looking at the low end of the field, and the right
1397 shift will wipe them out.
1398 - If they contain garbage off the most significant end, then we
1399 must be looking at the most significant end of the word, and
1400 the sign/zero extension will wipe them out.
1401 - If we're in the interior of the word, then there is no garbage
1402 on either end, because the ref operators zero-extend. */
1403 if (gdbarch_byte_order (exp
->gdbarch
) == BFD_ENDIAN_BIG
)
1404 gen_left_shift (ax
, end
- (offset
+ op_size
));
1406 gen_left_shift (ax
, offset
- start
);
1409 /* Bring the copy of the address up to the top. */
1410 ax_simple (ax
, aop_swap
);
1417 /* Generate enough bitwise `or' operations to combine all the
1418 fragments we left on the stack. */
1419 while (fragment_count
-- > 1)
1420 ax_simple (ax
, aop_bit_or
);
1422 /* Sign- or zero-extend the value as appropriate. */
1423 ((TYPE_UNSIGNED (type
) ? ax_zero_ext
: ax_ext
) (ax
, end
- start
));
1425 /* This is *not* an lvalue. Ugh. */
1426 value
->kind
= axs_rvalue
;
1430 /* Generate bytecodes for field number FIELDNO of type TYPE. OFFSET
1431 is an accumulated offset (in bytes), will be nonzero for objects
1432 embedded in other objects, like C++ base classes. Behavior should
1433 generally follow value_primitive_field. */
1436 gen_primitive_field (struct expression
*exp
,
1437 struct agent_expr
*ax
, struct axs_value
*value
,
1438 int offset
, int fieldno
, struct type
*type
)
1440 /* Is this a bitfield? */
1441 if (TYPE_FIELD_PACKED (type
, fieldno
))
1442 gen_bitfield_ref (exp
, ax
, value
, TYPE_FIELD_TYPE (type
, fieldno
),
1443 (offset
* TARGET_CHAR_BIT
1444 + TYPE_FIELD_BITPOS (type
, fieldno
)),
1445 (offset
* TARGET_CHAR_BIT
1446 + TYPE_FIELD_BITPOS (type
, fieldno
)
1447 + TYPE_FIELD_BITSIZE (type
, fieldno
)));
1450 gen_offset (ax
, offset
1451 + TYPE_FIELD_BITPOS (type
, fieldno
) / TARGET_CHAR_BIT
);
1452 value
->kind
= axs_lvalue_memory
;
1453 value
->type
= TYPE_FIELD_TYPE (type
, fieldno
);
1457 /* Search for the given field in either the given type or one of its
1458 base classes. Return 1 if found, 0 if not. */
1461 gen_struct_ref_recursive (struct expression
*exp
, struct agent_expr
*ax
,
1462 struct axs_value
*value
,
1463 char *field
, int offset
, struct type
*type
)
1466 int nbases
= TYPE_N_BASECLASSES (type
);
1468 CHECK_TYPEDEF (type
);
1470 for (i
= TYPE_NFIELDS (type
) - 1; i
>= nbases
; i
--)
1472 const char *this_name
= TYPE_FIELD_NAME (type
, i
);
1476 if (strcmp (field
, this_name
) == 0)
1478 /* Note that bytecodes for the struct's base (aka
1479 "this") will have been generated already, which will
1480 be unnecessary but not harmful if the static field is
1481 being handled as a global. */
1482 if (field_is_static (&TYPE_FIELD (type
, i
)))
1484 gen_static_field (exp
->gdbarch
, ax
, value
, type
, i
);
1485 if (value
->optimized_out
)
1486 error (_("static field `%s' has been "
1487 "optimized out, cannot use"),
1492 gen_primitive_field (exp
, ax
, value
, offset
, i
, type
);
1495 #if 0 /* is this right? */
1496 if (this_name
[0] == '\0')
1497 internal_error (__FILE__
, __LINE__
,
1498 _("find_field: anonymous unions not supported"));
1503 /* Now scan through base classes recursively. */
1504 for (i
= 0; i
< nbases
; i
++)
1506 struct type
*basetype
= check_typedef (TYPE_BASECLASS (type
, i
));
1508 rslt
= gen_struct_ref_recursive (exp
, ax
, value
, field
,
1509 offset
+ TYPE_BASECLASS_BITPOS (type
, i
)
1516 /* Not found anywhere, flag so caller can complain. */
1520 /* Generate code to reference the member named FIELD of a structure or
1521 union. The top of the stack, as described by VALUE, should have
1522 type (pointer to a)* struct/union. OPERATOR_NAME is the name of
1523 the operator being compiled, and OPERAND_NAME is the kind of thing
1524 it operates on; we use them in error messages. */
1526 gen_struct_ref (struct expression
*exp
, struct agent_expr
*ax
,
1527 struct axs_value
*value
, char *field
,
1528 char *operator_name
, char *operand_name
)
1533 /* Follow pointers until we reach a non-pointer. These aren't the C
1534 semantics, but they're what the normal GDB evaluator does, so we
1535 should at least be consistent. */
1536 while (pointer_type (value
->type
))
1538 require_rvalue (ax
, value
);
1539 gen_deref (ax
, value
);
1541 type
= check_typedef (value
->type
);
1543 /* This must yield a structure or a union. */
1544 if (TYPE_CODE (type
) != TYPE_CODE_STRUCT
1545 && TYPE_CODE (type
) != TYPE_CODE_UNION
)
1546 error (_("The left operand of `%s' is not a %s."),
1547 operator_name
, operand_name
);
1549 /* And it must be in memory; we don't deal with structure rvalues,
1550 or structures living in registers. */
1551 if (value
->kind
!= axs_lvalue_memory
)
1552 error (_("Structure does not live in memory."));
1554 /* Search through fields and base classes recursively. */
1555 found
= gen_struct_ref_recursive (exp
, ax
, value
, field
, 0, type
);
1558 error (_("Couldn't find member named `%s' in struct/union/class `%s'"),
1559 field
, TYPE_TAG_NAME (type
));
1563 gen_namespace_elt (struct expression
*exp
,
1564 struct agent_expr
*ax
, struct axs_value
*value
,
1565 const struct type
*curtype
, char *name
);
1567 gen_maybe_namespace_elt (struct expression
*exp
,
1568 struct agent_expr
*ax
, struct axs_value
*value
,
1569 const struct type
*curtype
, char *name
);
1572 gen_static_field (struct gdbarch
*gdbarch
,
1573 struct agent_expr
*ax
, struct axs_value
*value
,
1574 struct type
*type
, int fieldno
)
1576 if (TYPE_FIELD_LOC_KIND (type
, fieldno
) == FIELD_LOC_KIND_PHYSADDR
)
1578 ax_const_l (ax
, TYPE_FIELD_STATIC_PHYSADDR (type
, fieldno
));
1579 value
->kind
= axs_lvalue_memory
;
1580 value
->type
= TYPE_FIELD_TYPE (type
, fieldno
);
1581 value
->optimized_out
= 0;
1585 const char *phys_name
= TYPE_FIELD_STATIC_PHYSNAME (type
, fieldno
);
1586 struct symbol
*sym
= lookup_symbol (phys_name
, 0, VAR_DOMAIN
, 0);
1590 gen_var_ref (gdbarch
, ax
, value
, sym
);
1592 /* Don't error if the value was optimized out, we may be
1593 scanning all static fields and just want to pass over this
1594 and continue with the rest. */
1598 /* Silently assume this was optimized out; class printing
1599 will let the user know why the data is missing. */
1600 value
->optimized_out
= 1;
1606 gen_struct_elt_for_reference (struct expression
*exp
,
1607 struct agent_expr
*ax
, struct axs_value
*value
,
1608 struct type
*type
, char *fieldname
)
1610 struct type
*t
= type
;
1613 if (TYPE_CODE (t
) != TYPE_CODE_STRUCT
1614 && TYPE_CODE (t
) != TYPE_CODE_UNION
)
1615 internal_error (__FILE__
, __LINE__
,
1616 _("non-aggregate type to gen_struct_elt_for_reference"));
1618 for (i
= TYPE_NFIELDS (t
) - 1; i
>= TYPE_N_BASECLASSES (t
); i
--)
1620 const char *t_field_name
= TYPE_FIELD_NAME (t
, i
);
1622 if (t_field_name
&& strcmp (t_field_name
, fieldname
) == 0)
1624 if (field_is_static (&TYPE_FIELD (t
, i
)))
1626 gen_static_field (exp
->gdbarch
, ax
, value
, t
, i
);
1627 if (value
->optimized_out
)
1628 error (_("static field `%s' has been "
1629 "optimized out, cannot use"),
1633 if (TYPE_FIELD_PACKED (t
, i
))
1634 error (_("pointers to bitfield members not allowed"));
1636 /* FIXME we need a way to do "want_address" equivalent */
1638 error (_("Cannot reference non-static field \"%s\""), fieldname
);
1642 /* FIXME add other scoped-reference cases here */
1644 /* Do a last-ditch lookup. */
1645 return gen_maybe_namespace_elt (exp
, ax
, value
, type
, fieldname
);
1648 /* C++: Return the member NAME of the namespace given by the type
1652 gen_namespace_elt (struct expression
*exp
,
1653 struct agent_expr
*ax
, struct axs_value
*value
,
1654 const struct type
*curtype
, char *name
)
1656 int found
= gen_maybe_namespace_elt (exp
, ax
, value
, curtype
, name
);
1659 error (_("No symbol \"%s\" in namespace \"%s\"."),
1660 name
, TYPE_TAG_NAME (curtype
));
1665 /* A helper function used by value_namespace_elt and
1666 value_struct_elt_for_reference. It looks up NAME inside the
1667 context CURTYPE; this works if CURTYPE is a namespace or if CURTYPE
1668 is a class and NAME refers to a type in CURTYPE itself (as opposed
1669 to, say, some base class of CURTYPE). */
1672 gen_maybe_namespace_elt (struct expression
*exp
,
1673 struct agent_expr
*ax
, struct axs_value
*value
,
1674 const struct type
*curtype
, char *name
)
1676 const char *namespace_name
= TYPE_TAG_NAME (curtype
);
1679 sym
= cp_lookup_symbol_namespace (namespace_name
, name
,
1680 block_for_pc (ax
->scope
),
1686 gen_var_ref (exp
->gdbarch
, ax
, value
, sym
);
1688 if (value
->optimized_out
)
1689 error (_("`%s' has been optimized out, cannot use"),
1690 SYMBOL_PRINT_NAME (sym
));
1697 gen_aggregate_elt_ref (struct expression
*exp
,
1698 struct agent_expr
*ax
, struct axs_value
*value
,
1699 struct type
*type
, char *field
,
1700 char *operator_name
, char *operand_name
)
1702 switch (TYPE_CODE (type
))
1704 case TYPE_CODE_STRUCT
:
1705 case TYPE_CODE_UNION
:
1706 return gen_struct_elt_for_reference (exp
, ax
, value
, type
, field
);
1708 case TYPE_CODE_NAMESPACE
:
1709 return gen_namespace_elt (exp
, ax
, value
, type
, field
);
1712 internal_error (__FILE__
, __LINE__
,
1713 _("non-aggregate type in gen_aggregate_elt_ref"));
1719 /* Generate code for GDB's magical `repeat' operator.
1720 LVALUE @ INT creates an array INT elements long, and whose elements
1721 have the same type as LVALUE, located in memory so that LVALUE is
1722 its first element. For example, argv[0]@argc gives you the array
1723 of command-line arguments.
1725 Unfortunately, because we have to know the types before we actually
1726 have a value for the expression, we can't implement this perfectly
1727 without changing the type system, having values that occupy two
1728 stack slots, doing weird things with sizeof, etc. So we require
1729 the right operand to be a constant expression. */
1731 gen_repeat (struct expression
*exp
, union exp_element
**pc
,
1732 struct agent_expr
*ax
, struct axs_value
*value
)
1734 struct axs_value value1
;
1736 /* We don't want to turn this into an rvalue, so no conversions
1738 gen_expr (exp
, pc
, ax
, &value1
);
1739 if (value1
.kind
!= axs_lvalue_memory
)
1740 error (_("Left operand of `@' must be an object in memory."));
1742 /* Evaluate the length; it had better be a constant. */
1744 struct value
*v
= const_expr (pc
);
1748 error (_("Right operand of `@' must be a "
1749 "constant, in agent expressions."));
1750 if (TYPE_CODE (value_type (v
)) != TYPE_CODE_INT
)
1751 error (_("Right operand of `@' must be an integer."));
1752 length
= value_as_long (v
);
1754 error (_("Right operand of `@' must be positive."));
1756 /* The top of the stack is already the address of the object, so
1757 all we need to do is frob the type of the lvalue. */
1759 /* FIXME-type-allocation: need a way to free this type when we are
1762 = lookup_array_range_type (value1
.type
, 0, length
- 1);
1764 value
->kind
= axs_lvalue_memory
;
1765 value
->type
= array
;
1771 /* Emit code for the `sizeof' operator.
1772 *PC should point at the start of the operand expression; we advance it
1773 to the first instruction after the operand. */
1775 gen_sizeof (struct expression
*exp
, union exp_element
**pc
,
1776 struct agent_expr
*ax
, struct axs_value
*value
,
1777 struct type
*size_type
)
1779 /* We don't care about the value of the operand expression; we only
1780 care about its type. However, in the current arrangement, the
1781 only way to find an expression's type is to generate code for it.
1782 So we generate code for the operand, and then throw it away,
1783 replacing it with code that simply pushes its size. */
1784 int start
= ax
->len
;
1786 gen_expr (exp
, pc
, ax
, value
);
1788 /* Throw away the code we just generated. */
1791 ax_const_l (ax
, TYPE_LENGTH (value
->type
));
1792 value
->kind
= axs_rvalue
;
1793 value
->type
= size_type
;
1797 /* Generating bytecode from GDB expressions: general recursive thingy */
1800 /* A gen_expr function written by a Gen-X'er guy.
1801 Append code for the subexpression of EXPR starting at *POS_P to AX. */
1803 gen_expr (struct expression
*exp
, union exp_element
**pc
,
1804 struct agent_expr
*ax
, struct axs_value
*value
)
1806 /* Used to hold the descriptions of operand expressions. */
1807 struct axs_value value1
, value2
, value3
;
1808 enum exp_opcode op
= (*pc
)[0].opcode
, op2
;
1809 int if1
, go1
, if2
, go2
, end
;
1810 struct type
*int_type
= builtin_type (exp
->gdbarch
)->builtin_int
;
1812 /* If we're looking at a constant expression, just push its value. */
1814 struct value
*v
= maybe_const_expr (pc
);
1818 ax_const_l (ax
, value_as_long (v
));
1819 value
->kind
= axs_rvalue
;
1820 value
->type
= check_typedef (value_type (v
));
1825 /* Otherwise, go ahead and generate code for it. */
1828 /* Binary arithmetic operators. */
1836 case BINOP_SUBSCRIPT
:
1837 case BINOP_BITWISE_AND
:
1838 case BINOP_BITWISE_IOR
:
1839 case BINOP_BITWISE_XOR
:
1841 case BINOP_NOTEQUAL
:
1847 gen_expr (exp
, pc
, ax
, &value1
);
1848 gen_usual_unary (exp
, ax
, &value1
);
1849 gen_expr_binop_rest (exp
, op
, pc
, ax
, value
, &value1
, &value2
);
1852 case BINOP_LOGICAL_AND
:
1854 /* Generate the obvious sequence of tests and jumps. */
1855 gen_expr (exp
, pc
, ax
, &value1
);
1856 gen_usual_unary (exp
, ax
, &value1
);
1857 if1
= ax_goto (ax
, aop_if_goto
);
1858 go1
= ax_goto (ax
, aop_goto
);
1859 ax_label (ax
, if1
, ax
->len
);
1860 gen_expr (exp
, pc
, ax
, &value2
);
1861 gen_usual_unary (exp
, ax
, &value2
);
1862 if2
= ax_goto (ax
, aop_if_goto
);
1863 go2
= ax_goto (ax
, aop_goto
);
1864 ax_label (ax
, if2
, ax
->len
);
1866 end
= ax_goto (ax
, aop_goto
);
1867 ax_label (ax
, go1
, ax
->len
);
1868 ax_label (ax
, go2
, ax
->len
);
1870 ax_label (ax
, end
, ax
->len
);
1871 value
->kind
= axs_rvalue
;
1872 value
->type
= int_type
;
1875 case BINOP_LOGICAL_OR
:
1877 /* Generate the obvious sequence of tests and jumps. */
1878 gen_expr (exp
, pc
, ax
, &value1
);
1879 gen_usual_unary (exp
, ax
, &value1
);
1880 if1
= ax_goto (ax
, aop_if_goto
);
1881 gen_expr (exp
, pc
, ax
, &value2
);
1882 gen_usual_unary (exp
, ax
, &value2
);
1883 if2
= ax_goto (ax
, aop_if_goto
);
1885 end
= ax_goto (ax
, aop_goto
);
1886 ax_label (ax
, if1
, ax
->len
);
1887 ax_label (ax
, if2
, ax
->len
);
1889 ax_label (ax
, end
, ax
->len
);
1890 value
->kind
= axs_rvalue
;
1891 value
->type
= int_type
;
1896 gen_expr (exp
, pc
, ax
, &value1
);
1897 gen_usual_unary (exp
, ax
, &value1
);
1898 /* For (A ? B : C), it's easiest to generate subexpression
1899 bytecodes in order, but if_goto jumps on true, so we invert
1900 the sense of A. Then we can do B by dropping through, and
1902 gen_logical_not (ax
, &value1
, int_type
);
1903 if1
= ax_goto (ax
, aop_if_goto
);
1904 gen_expr (exp
, pc
, ax
, &value2
);
1905 gen_usual_unary (exp
, ax
, &value2
);
1906 end
= ax_goto (ax
, aop_goto
);
1907 ax_label (ax
, if1
, ax
->len
);
1908 gen_expr (exp
, pc
, ax
, &value3
);
1909 gen_usual_unary (exp
, ax
, &value3
);
1910 ax_label (ax
, end
, ax
->len
);
1911 /* This is arbitary - what if B and C are incompatible types? */
1912 value
->type
= value2
.type
;
1913 value
->kind
= value2
.kind
;
1918 if ((*pc
)[0].opcode
== OP_INTERNALVAR
)
1920 char *name
= internalvar_name ((*pc
)[1].internalvar
);
1921 struct trace_state_variable
*tsv
;
1924 gen_expr (exp
, pc
, ax
, value
);
1925 tsv
= find_trace_state_variable (name
);
1928 ax_tsv (ax
, aop_setv
, tsv
->number
);
1930 ax_tsv (ax
, aop_tracev
, tsv
->number
);
1933 error (_("$%s is not a trace state variable, "
1934 "may not assign to it"), name
);
1937 error (_("May only assign to trace state variables"));
1940 case BINOP_ASSIGN_MODIFY
:
1942 op2
= (*pc
)[0].opcode
;
1945 if ((*pc
)[0].opcode
== OP_INTERNALVAR
)
1947 char *name
= internalvar_name ((*pc
)[1].internalvar
);
1948 struct trace_state_variable
*tsv
;
1951 tsv
= find_trace_state_variable (name
);
1954 /* The tsv will be the left half of the binary operation. */
1955 ax_tsv (ax
, aop_getv
, tsv
->number
);
1957 ax_tsv (ax
, aop_tracev
, tsv
->number
);
1958 /* Trace state variables are always 64-bit integers. */
1959 value1
.kind
= axs_rvalue
;
1960 value1
.type
= builtin_type (exp
->gdbarch
)->builtin_long_long
;
1961 /* Now do right half of expression. */
1962 gen_expr_binop_rest (exp
, op2
, pc
, ax
, value
, &value1
, &value2
);
1963 /* We have a result of the binary op, set the tsv. */
1964 ax_tsv (ax
, aop_setv
, tsv
->number
);
1966 ax_tsv (ax
, aop_tracev
, tsv
->number
);
1969 error (_("$%s is not a trace state variable, "
1970 "may not assign to it"), name
);
1973 error (_("May only assign to trace state variables"));
1976 /* Note that we need to be a little subtle about generating code
1977 for comma. In C, we can do some optimizations here because
1978 we know the left operand is only being evaluated for effect.
1979 However, if the tracing kludge is in effect, then we always
1980 need to evaluate the left hand side fully, so that all the
1981 variables it mentions get traced. */
1984 gen_expr (exp
, pc
, ax
, &value1
);
1985 /* Don't just dispose of the left operand. We might be tracing,
1986 in which case we want to emit code to trace it if it's an
1988 gen_traced_pop (exp
->gdbarch
, ax
, &value1
);
1989 gen_expr (exp
, pc
, ax
, value
);
1990 /* It's the consumer's responsibility to trace the right operand. */
1993 case OP_LONG
: /* some integer constant */
1995 struct type
*type
= (*pc
)[1].type
;
1996 LONGEST k
= (*pc
)[2].longconst
;
1999 gen_int_literal (ax
, value
, k
, type
);
2004 gen_var_ref (exp
->gdbarch
, ax
, value
, (*pc
)[2].symbol
);
2006 if (value
->optimized_out
)
2007 error (_("`%s' has been optimized out, cannot use"),
2008 SYMBOL_PRINT_NAME ((*pc
)[2].symbol
));
2015 const char *name
= &(*pc
)[2].string
;
2018 (*pc
) += 4 + BYTES_TO_EXP_ELEM ((*pc
)[1].longconst
+ 1);
2019 reg
= user_reg_map_name_to_regnum (exp
->gdbarch
, name
, strlen (name
));
2021 internal_error (__FILE__
, __LINE__
,
2022 _("Register $%s not available"), name
);
2023 /* No support for tracing user registers yet. */
2024 if (reg
>= gdbarch_num_regs (exp
->gdbarch
)
2025 + gdbarch_num_pseudo_regs (exp
->gdbarch
))
2026 error (_("'%s' is a user-register; "
2027 "GDB cannot yet trace user-register contents."),
2029 value
->kind
= axs_lvalue_register
;
2031 value
->type
= register_type (exp
->gdbarch
, reg
);
2035 case OP_INTERNALVAR
:
2037 struct internalvar
*var
= (*pc
)[1].internalvar
;
2038 const char *name
= internalvar_name (var
);
2039 struct trace_state_variable
*tsv
;
2042 tsv
= find_trace_state_variable (name
);
2045 ax_tsv (ax
, aop_getv
, tsv
->number
);
2047 ax_tsv (ax
, aop_tracev
, tsv
->number
);
2048 /* Trace state variables are always 64-bit integers. */
2049 value
->kind
= axs_rvalue
;
2050 value
->type
= builtin_type (exp
->gdbarch
)->builtin_long_long
;
2052 else if (! compile_internalvar_to_ax (var
, ax
, value
))
2053 error (_("$%s is not a trace state variable; GDB agent "
2054 "expressions cannot use convenience variables."), name
);
2058 /* Weirdo operator: see comments for gen_repeat for details. */
2060 /* Note that gen_repeat handles its own argument evaluation. */
2062 gen_repeat (exp
, pc
, ax
, value
);
2067 struct type
*type
= (*pc
)[1].type
;
2070 gen_expr (exp
, pc
, ax
, value
);
2071 gen_cast (ax
, value
, type
);
2077 struct type
*type
= check_typedef ((*pc
)[1].type
);
2080 gen_expr (exp
, pc
, ax
, value
);
2082 /* If we have an axs_rvalue or an axs_lvalue_memory, then we
2083 already have the right value on the stack. For
2084 axs_lvalue_register, we must convert. */
2085 if (value
->kind
== axs_lvalue_register
)
2086 require_rvalue (ax
, value
);
2089 value
->kind
= axs_lvalue_memory
;
2095 /* + FOO is equivalent to 0 + FOO, which can be optimized. */
2096 gen_expr (exp
, pc
, ax
, value
);
2097 gen_usual_unary (exp
, ax
, value
);
2102 /* -FOO is equivalent to 0 - FOO. */
2103 gen_int_literal (ax
, &value1
, 0,
2104 builtin_type (exp
->gdbarch
)->builtin_int
);
2105 gen_usual_unary (exp
, ax
, &value1
); /* shouldn't do much */
2106 gen_expr (exp
, pc
, ax
, &value2
);
2107 gen_usual_unary (exp
, ax
, &value2
);
2108 gen_usual_arithmetic (exp
, ax
, &value1
, &value2
);
2109 gen_binop (ax
, value
, &value1
, &value2
, aop_sub
, aop_sub
, 1, "negation");
2112 case UNOP_LOGICAL_NOT
:
2114 gen_expr (exp
, pc
, ax
, value
);
2115 gen_usual_unary (exp
, ax
, value
);
2116 gen_logical_not (ax
, value
, int_type
);
2119 case UNOP_COMPLEMENT
:
2121 gen_expr (exp
, pc
, ax
, value
);
2122 gen_usual_unary (exp
, ax
, value
);
2123 gen_integral_promotions (exp
, ax
, value
);
2124 gen_complement (ax
, value
);
2129 gen_expr (exp
, pc
, ax
, value
);
2130 gen_usual_unary (exp
, ax
, value
);
2131 if (!pointer_type (value
->type
))
2132 error (_("Argument of unary `*' is not a pointer."));
2133 gen_deref (ax
, value
);
2138 gen_expr (exp
, pc
, ax
, value
);
2139 gen_address_of (ax
, value
);
2144 /* Notice that gen_sizeof handles its own operand, unlike most
2145 of the other unary operator functions. This is because we
2146 have to throw away the code we generate. */
2147 gen_sizeof (exp
, pc
, ax
, value
,
2148 builtin_type (exp
->gdbarch
)->builtin_int
);
2151 case STRUCTOP_STRUCT
:
2154 int length
= (*pc
)[1].longconst
;
2155 char *name
= &(*pc
)[2].string
;
2157 (*pc
) += 4 + BYTES_TO_EXP_ELEM (length
+ 1);
2158 gen_expr (exp
, pc
, ax
, value
);
2159 if (op
== STRUCTOP_STRUCT
)
2160 gen_struct_ref (exp
, ax
, value
, name
, ".", "structure or union");
2161 else if (op
== STRUCTOP_PTR
)
2162 gen_struct_ref (exp
, ax
, value
, name
, "->",
2163 "pointer to a structure or union");
2165 /* If this `if' chain doesn't handle it, then the case list
2166 shouldn't mention it, and we shouldn't be here. */
2167 internal_error (__FILE__
, __LINE__
,
2168 _("gen_expr: unhandled struct case"));
2174 struct symbol
*sym
, *func
;
2176 const struct language_defn
*lang
;
2178 b
= block_for_pc (ax
->scope
);
2179 func
= block_linkage_function (b
);
2180 lang
= language_def (SYMBOL_LANGUAGE (func
));
2182 sym
= lookup_language_this (lang
, b
);
2184 error (_("no `%s' found"), lang
->la_name_of_this
);
2186 gen_var_ref (exp
->gdbarch
, ax
, value
, sym
);
2188 if (value
->optimized_out
)
2189 error (_("`%s' has been optimized out, cannot use"),
2190 SYMBOL_PRINT_NAME (sym
));
2198 struct type
*type
= (*pc
)[1].type
;
2199 int length
= longest_to_int ((*pc
)[2].longconst
);
2200 char *name
= &(*pc
)[3].string
;
2203 found
= gen_aggregate_elt_ref (exp
, ax
, value
, type
, name
,
2206 error (_("There is no field named %s"), name
);
2207 (*pc
) += 5 + BYTES_TO_EXP_ELEM (length
+ 1);
2212 error (_("Attempt to use a type name as an expression."));
2215 error (_("Unsupported operator %s (%d) in expression."),
2216 op_name (exp
, op
), op
);
2220 /* This handles the middle-to-right-side of code generation for binary
2221 expressions, which is shared between regular binary operations and
2222 assign-modify (+= and friends) expressions. */
2225 gen_expr_binop_rest (struct expression
*exp
,
2226 enum exp_opcode op
, union exp_element
**pc
,
2227 struct agent_expr
*ax
, struct axs_value
*value
,
2228 struct axs_value
*value1
, struct axs_value
*value2
)
2230 struct type
*int_type
= builtin_type (exp
->gdbarch
)->builtin_int
;
2232 gen_expr (exp
, pc
, ax
, value2
);
2233 gen_usual_unary (exp
, ax
, value2
);
2234 gen_usual_arithmetic (exp
, ax
, value1
, value2
);
2238 if (TYPE_CODE (value1
->type
) == TYPE_CODE_INT
2239 && pointer_type (value2
->type
))
2241 /* Swap the values and proceed normally. */
2242 ax_simple (ax
, aop_swap
);
2243 gen_ptradd (ax
, value
, value2
, value1
);
2245 else if (pointer_type (value1
->type
)
2246 && TYPE_CODE (value2
->type
) == TYPE_CODE_INT
)
2247 gen_ptradd (ax
, value
, value1
, value2
);
2249 gen_binop (ax
, value
, value1
, value2
,
2250 aop_add
, aop_add
, 1, "addition");
2253 if (pointer_type (value1
->type
)
2254 && TYPE_CODE (value2
->type
) == TYPE_CODE_INT
)
2255 gen_ptrsub (ax
,value
, value1
, value2
);
2256 else if (pointer_type (value1
->type
)
2257 && pointer_type (value2
->type
))
2258 /* FIXME --- result type should be ptrdiff_t */
2259 gen_ptrdiff (ax
, value
, value1
, value2
,
2260 builtin_type (exp
->gdbarch
)->builtin_long
);
2262 gen_binop (ax
, value
, value1
, value2
,
2263 aop_sub
, aop_sub
, 1, "subtraction");
2266 gen_binop (ax
, value
, value1
, value2
,
2267 aop_mul
, aop_mul
, 1, "multiplication");
2270 gen_binop (ax
, value
, value1
, value2
,
2271 aop_div_signed
, aop_div_unsigned
, 1, "division");
2274 gen_binop (ax
, value
, value1
, value2
,
2275 aop_rem_signed
, aop_rem_unsigned
, 1, "remainder");
2278 gen_binop (ax
, value
, value1
, value2
,
2279 aop_lsh
, aop_lsh
, 1, "left shift");
2282 gen_binop (ax
, value
, value1
, value2
,
2283 aop_rsh_signed
, aop_rsh_unsigned
, 1, "right shift");
2285 case BINOP_SUBSCRIPT
:
2289 if (binop_types_user_defined_p (op
, value1
->type
, value2
->type
))
2291 error (_("cannot subscript requested type: "
2292 "cannot call user defined functions"));
2296 /* If the user attempts to subscript something that is not
2297 an array or pointer type (like a plain int variable for
2298 example), then report this as an error. */
2299 type
= check_typedef (value1
->type
);
2300 if (TYPE_CODE (type
) != TYPE_CODE_ARRAY
2301 && TYPE_CODE (type
) != TYPE_CODE_PTR
)
2303 if (TYPE_NAME (type
))
2304 error (_("cannot subscript something of type `%s'"),
2307 error (_("cannot subscript requested type"));
2311 if (!is_integral_type (value2
->type
))
2312 error (_("Argument to arithmetic operation "
2313 "not a number or boolean."));
2315 gen_ptradd (ax
, value
, value1
, value2
);
2316 gen_deref (ax
, value
);
2319 case BINOP_BITWISE_AND
:
2320 gen_binop (ax
, value
, value1
, value2
,
2321 aop_bit_and
, aop_bit_and
, 0, "bitwise and");
2324 case BINOP_BITWISE_IOR
:
2325 gen_binop (ax
, value
, value1
, value2
,
2326 aop_bit_or
, aop_bit_or
, 0, "bitwise or");
2329 case BINOP_BITWISE_XOR
:
2330 gen_binop (ax
, value
, value1
, value2
,
2331 aop_bit_xor
, aop_bit_xor
, 0, "bitwise exclusive-or");
2335 gen_equal (ax
, value
, value1
, value2
, int_type
);
2338 case BINOP_NOTEQUAL
:
2339 gen_equal (ax
, value
, value1
, value2
, int_type
);
2340 gen_logical_not (ax
, value
, int_type
);
2344 gen_less (ax
, value
, value1
, value2
, int_type
);
2348 ax_simple (ax
, aop_swap
);
2349 gen_less (ax
, value
, value1
, value2
, int_type
);
2353 ax_simple (ax
, aop_swap
);
2354 gen_less (ax
, value
, value1
, value2
, int_type
);
2355 gen_logical_not (ax
, value
, int_type
);
2359 gen_less (ax
, value
, value1
, value2
, int_type
);
2360 gen_logical_not (ax
, value
, int_type
);
2364 /* We should only list operators in the outer case statement
2365 that we actually handle in the inner case statement. */
2366 internal_error (__FILE__
, __LINE__
,
2367 _("gen_expr: op case sets don't match"));
2372 /* Given a single variable and a scope, generate bytecodes to trace
2373 its value. This is for use in situations where we have only a
2374 variable's name, and no parsed expression; for instance, when the
2375 name comes from a list of local variables of a function. */
2378 gen_trace_for_var (CORE_ADDR scope
, struct gdbarch
*gdbarch
,
2381 struct cleanup
*old_chain
= 0;
2382 struct agent_expr
*ax
= new_agent_expr (gdbarch
, scope
);
2383 struct axs_value value
;
2385 old_chain
= make_cleanup_free_agent_expr (ax
);
2388 gen_var_ref (gdbarch
, ax
, &value
, var
);
2390 /* If there is no actual variable to trace, flag it by returning
2391 an empty agent expression. */
2392 if (value
.optimized_out
)
2394 do_cleanups (old_chain
);
2398 /* Make sure we record the final object, and get rid of it. */
2399 gen_traced_pop (gdbarch
, ax
, &value
);
2401 /* Oh, and terminate. */
2402 ax_simple (ax
, aop_end
);
2404 /* We have successfully built the agent expr, so cancel the cleanup
2405 request. If we add more cleanups that we always want done, this
2406 will have to get more complicated. */
2407 discard_cleanups (old_chain
);
2411 /* Generating bytecode from GDB expressions: driver */
2413 /* Given a GDB expression EXPR, return bytecode to trace its value.
2414 The result will use the `trace' and `trace_quick' bytecodes to
2415 record the value of all memory touched by the expression. The
2416 caller can then use the ax_reqs function to discover which
2417 registers it relies upon. */
2419 gen_trace_for_expr (CORE_ADDR scope
, struct expression
*expr
)
2421 struct cleanup
*old_chain
= 0;
2422 struct agent_expr
*ax
= new_agent_expr (expr
->gdbarch
, scope
);
2423 union exp_element
*pc
;
2424 struct axs_value value
;
2426 old_chain
= make_cleanup_free_agent_expr (ax
);
2430 value
.optimized_out
= 0;
2431 gen_expr (expr
, &pc
, ax
, &value
);
2433 /* Make sure we record the final object, and get rid of it. */
2434 gen_traced_pop (expr
->gdbarch
, ax
, &value
);
2436 /* Oh, and terminate. */
2437 ax_simple (ax
, aop_end
);
2439 /* We have successfully built the agent expr, so cancel the cleanup
2440 request. If we add more cleanups that we always want done, this
2441 will have to get more complicated. */
2442 discard_cleanups (old_chain
);
2446 /* Given a GDB expression EXPR, return a bytecode sequence that will
2447 evaluate and return a result. The bytecodes will do a direct
2448 evaluation, using the current data on the target, rather than
2449 recording blocks of memory and registers for later use, as
2450 gen_trace_for_expr does. The generated bytecode sequence leaves
2451 the result of expression evaluation on the top of the stack. */
2454 gen_eval_for_expr (CORE_ADDR scope
, struct expression
*expr
)
2456 struct cleanup
*old_chain
= 0;
2457 struct agent_expr
*ax
= new_agent_expr (expr
->gdbarch
, scope
);
2458 union exp_element
*pc
;
2459 struct axs_value value
;
2461 old_chain
= make_cleanup_free_agent_expr (ax
);
2465 value
.optimized_out
= 0;
2466 gen_expr (expr
, &pc
, ax
, &value
);
2468 require_rvalue (ax
, &value
);
2470 /* Oh, and terminate. */
2471 ax_simple (ax
, aop_end
);
2473 /* We have successfully built the agent expr, so cancel the cleanup
2474 request. If we add more cleanups that we always want done, this
2475 will have to get more complicated. */
2476 discard_cleanups (old_chain
);
2481 gen_trace_for_return_address (CORE_ADDR scope
, struct gdbarch
*gdbarch
)
2483 struct cleanup
*old_chain
= 0;
2484 struct agent_expr
*ax
= new_agent_expr (gdbarch
, scope
);
2485 struct axs_value value
;
2487 old_chain
= make_cleanup_free_agent_expr (ax
);
2491 gdbarch_gen_return_address (gdbarch
, ax
, &value
, scope
);
2493 /* Make sure we record the final object, and get rid of it. */
2494 gen_traced_pop (gdbarch
, ax
, &value
);
2496 /* Oh, and terminate. */
2497 ax_simple (ax
, aop_end
);
2499 /* We have successfully built the agent expr, so cancel the cleanup
2500 request. If we add more cleanups that we always want done, this
2501 will have to get more complicated. */
2502 discard_cleanups (old_chain
);
2507 agent_command (char *exp
, int from_tty
)
2509 struct cleanup
*old_chain
= 0;
2510 struct expression
*expr
;
2511 struct agent_expr
*agent
;
2512 struct frame_info
*fi
= get_current_frame (); /* need current scope */
2514 /* We don't deal with overlay debugging at the moment. We need to
2515 think more carefully about this. If you copy this code into
2516 another command, change the error message; the user shouldn't
2517 have to know anything about agent expressions. */
2518 if (overlay_debugging
)
2519 error (_("GDB can't do agent expression translation with overlays."));
2522 error_no_arg (_("expression to translate"));
2524 trace_string_kludge
= 0;
2526 exp
= decode_agent_options (exp
);
2528 /* Recognize the return address collection directive specially. Note
2529 that it is not really an expression of any sort. */
2530 if (strcmp (exp
, "$_ret") == 0)
2532 agent
= gen_trace_for_return_address (get_frame_pc (fi
),
2533 get_current_arch ());
2534 old_chain
= make_cleanup_free_agent_expr (agent
);
2538 expr
= parse_expression (exp
);
2539 old_chain
= make_cleanup (free_current_contents
, &expr
);
2540 agent
= gen_trace_for_expr (get_frame_pc (fi
), expr
);
2541 make_cleanup_free_agent_expr (agent
);
2545 ax_print (gdb_stdout
, agent
);
2547 /* It would be nice to call ax_reqs here to gather some general info
2548 about the expression, and then print out the result. */
2550 do_cleanups (old_chain
);
2554 /* Parse the given expression, compile it into an agent expression
2555 that does direct evaluation, and display the resulting
2559 agent_eval_command (char *exp
, int from_tty
)
2561 struct cleanup
*old_chain
= 0;
2562 struct expression
*expr
;
2563 struct agent_expr
*agent
;
2564 struct frame_info
*fi
= get_current_frame (); /* need current scope */
2566 /* We don't deal with overlay debugging at the moment. We need to
2567 think more carefully about this. If you copy this code into
2568 another command, change the error message; the user shouldn't
2569 have to know anything about agent expressions. */
2570 if (overlay_debugging
)
2571 error (_("GDB can't do agent expression translation with overlays."));
2574 error_no_arg (_("expression to translate"));
2576 expr
= parse_expression (exp
);
2577 old_chain
= make_cleanup (free_current_contents
, &expr
);
2578 agent
= gen_eval_for_expr (get_frame_pc (fi
), expr
);
2579 make_cleanup_free_agent_expr (agent
);
2581 ax_print (gdb_stdout
, agent
);
2583 /* It would be nice to call ax_reqs here to gather some general info
2584 about the expression, and then print out the result. */
2586 do_cleanups (old_chain
);
2591 /* Initialization code. */
2593 void _initialize_ax_gdb (void);
2595 _initialize_ax_gdb (void)
2597 add_cmd ("agent", class_maintenance
, agent_command
,
2598 _("Translate an expression into "
2599 "remote agent bytecode for tracing."),
2602 add_cmd ("agent-eval", class_maintenance
, agent_eval_command
,
2603 _("Translate an expression into remote "
2604 "agent bytecode for evaluation."),
This page took 0.081938 seconds and 4 git commands to generate.