+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.
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
{ 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 */