From: Tom Tromey Date: Mon, 8 Mar 2021 14:27:57 +0000 (-0700) Subject: Introduce structop_operation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=808b22cfd7e1afdcba7dea700a76401e2f68f2c6;p=binutils-gdb.git 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 * expop.h (class structop_base_operation) (class structop_operation): New. * eval.c (eval_op_structop_struct): No longer static. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cd7ec19365f..72c3df2b280 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2021-03-08 Tom Tromey + + * expop.h (class structop_base_operation) + (class structop_operation): New. + * eval.c (eval_op_structop_struct): No longer static. + 2021-03-08 Tom Tromey * expop.h (class complex_operation): New. diff --git a/gdb/eval.c b/gdb/eval.c index 3307c74aa63..74aa9703c49 100644 --- a/gdb/eval.c +++ b/gdb/eval.c @@ -1342,7 +1342,7 @@ eval_op_ternop (struct type *expect_type, struct expression *exp, /* A helper function for STRUCTOP_STRUCT. */ -static struct value * +struct value * eval_op_structop_struct (struct type *expect_type, struct expression *exp, enum noside noside, struct value *arg1, const char *string) diff --git a/gdb/expop.h b/gdb/expop.h index 9c63f129594..9f1625ca7f7 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 +{ +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 */