aboutsummaryrefslogtreecommitdiff
path: root/gdb/expop.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2021-03-08 07:27:57 -0700
committerTom Tromey <tom@tromey.com>2021-03-08 07:28:18 -0700
commit808b22cfd7e1afdcba7dea700a76401e2f68f2c6 (patch)
tree0ea409776e9dbef65870525a3cb2ca6a0bbffd72 /gdb/expop.h
parent8cfd3e95b7624785a47e08b430d49b3d0329a0ee (diff)
downloadgdb-808b22cfd7e1afdcba7dea700a76401e2f68f2c6.zip
gdb-808b22cfd7e1afdcba7dea700a76401e2f68f2c6.tar.gz
gdb-808b22cfd7e1afdcba7dea700a76401e2f68f2c6.tar.bz2
Introduce structop_operation
This adds class structop_base_operation and structop_operation, which implement STRUCTOP_STRUCT. The base class exists to unify the completion code between STRUCTOP_STRUCT and STRUCTOP_PTR. gdb/ChangeLog 2021-03-08 Tom Tromey <tom@tromey.com> * expop.h (class structop_base_operation) (class structop_operation): New. * eval.c (eval_op_structop_struct): No longer static.
Diffstat (limited to 'gdb/expop.h')
-rw-r--r--gdb/expop.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/gdb/expop.h b/gdb/expop.h
index 9c63f12..9f1625c 100644
--- a/gdb/expop.h
+++ b/gdb/expop.h
@@ -70,6 +70,11 @@ extern struct value *eval_op_ternop (struct type *expect_type,
enum noside noside,
struct value *array, struct value *low,
struct value *upper);
+extern struct value *eval_op_structop_struct (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside,
+ struct value *arg1,
+ const char *string);
namespace expr
{
@@ -786,6 +791,63 @@ public:
{ return OP_COMPLEX; }
};
+class structop_base_operation
+ : public tuple_holding_operation<operation_up, std::string>
+{
+public:
+
+ /* Used for completion. Return the field name. */
+ const std::string &get_string () const
+ {
+ return std::get<1> (m_storage);
+ }
+
+ /* Used for completion. Evaluate the LHS for type. */
+ value *evaluate_lhs (struct expression *exp)
+ {
+ return std::get<0> (m_storage)->evaluate (nullptr, exp,
+ EVAL_AVOID_SIDE_EFFECTS);
+ }
+
+protected:
+
+ using tuple_holding_operation::tuple_holding_operation;
+};
+
+class structop_operation
+ : public structop_base_operation
+{
+public:
+
+ using structop_base_operation::structop_base_operation;
+
+ value *evaluate (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside) override
+ {
+ value *val =std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
+ return eval_op_structop_struct (expect_type, exp, noside, val,
+ std::get<1> (m_storage).c_str ());
+ }
+
+ enum exp_opcode opcode () const override
+ { return STRUCTOP_STRUCT; }
+
+protected:
+
+ void do_generate_ax (struct expression *exp,
+ struct agent_expr *ax,
+ struct axs_value *value,
+ struct type *cast_type)
+ override
+ {
+ gen_expr_structop (exp, STRUCTOP_STRUCT,
+ std::get<0> (this->m_storage).get (),
+ std::get<1> (this->m_storage).c_str (),
+ ax, value);
+ }
+};
+
} /* namespace expr */
#endif /* EXPOP_H */