mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:54:41 +08:00
Introduce internalvar_operation
This adds class internalvar_operation, which implements OP_INTERNALVAR. gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * expop.h (class internalvar_operation): New. * ax-gdb.c (internalvar_operation::do_generate_ax): New method.
This commit is contained in:
parent
e6985c5e45
commit
e6e01e16c5
@ -1,3 +1,8 @@
|
||||
2021-03-08 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* expop.h (class internalvar_operation): New.
|
||||
* ax-gdb.c (internalvar_operation::do_generate_ax): New method.
|
||||
|
||||
2021-03-08 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* expop.h (class bool_operation): New.
|
||||
|
25
gdb/ax-gdb.c
25
gdb/ax-gdb.c
@ -2365,6 +2365,31 @@ register_operation::do_generate_ax (struct expression *exp,
|
||||
value->type = register_type (ax->gdbarch, reg);
|
||||
}
|
||||
|
||||
void
|
||||
internalvar_operation::do_generate_ax (struct expression *exp,
|
||||
struct agent_expr *ax,
|
||||
struct axs_value *value,
|
||||
struct type *cast_type)
|
||||
{
|
||||
struct internalvar *var = std::get<0> (m_storage);
|
||||
const char *name = internalvar_name (var);
|
||||
struct trace_state_variable *tsv;
|
||||
|
||||
tsv = find_trace_state_variable (name);
|
||||
if (tsv)
|
||||
{
|
||||
ax_tsv (ax, aop_getv, tsv->number);
|
||||
if (ax->tracing)
|
||||
ax_tsv (ax, aop_tracev, tsv->number);
|
||||
/* Trace state variables are always 64-bit integers. */
|
||||
value->kind = axs_rvalue;
|
||||
value->type = builtin_type (ax->gdbarch)->builtin_long_long;
|
||||
}
|
||||
else if (! compile_internalvar_to_ax (var, ax, value))
|
||||
error (_("$%s is not a trace state variable; GDB agent "
|
||||
"expressions cannot use convenience variables."), name);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* This handles the middle-to-right-side of code generation for binary
|
||||
|
32
gdb/expop.h
32
gdb/expop.h
@ -649,6 +649,38 @@ public:
|
||||
{ return true; }
|
||||
};
|
||||
|
||||
class internalvar_operation
|
||||
: public tuple_holding_operation<internalvar *>
|
||||
{
|
||||
public:
|
||||
|
||||
using tuple_holding_operation::tuple_holding_operation;
|
||||
|
||||
value *evaluate (struct type *expect_type,
|
||||
struct expression *exp,
|
||||
enum noside noside) override
|
||||
{
|
||||
return value_of_internalvar (exp->gdbarch,
|
||||
std::get<0> (m_storage));
|
||||
}
|
||||
|
||||
internalvar *get_internalvar () const
|
||||
{
|
||||
return std::get<0> (m_storage);
|
||||
}
|
||||
|
||||
enum exp_opcode opcode () const override
|
||||
{ return OP_INTERNALVAR; }
|
||||
|
||||
protected:
|
||||
|
||||
void do_generate_ax (struct expression *exp,
|
||||
struct agent_expr *ax,
|
||||
struct axs_value *value,
|
||||
struct type *cast_type)
|
||||
override;
|
||||
};
|
||||
|
||||
} /* namespace expr */
|
||||
|
||||
#endif /* EXPOP_H */
|
||||
|
Loading…
Reference in New Issue
Block a user