Introduce structop_ptr_operation
authorTom Tromey <tom@tromey.com>
Mon, 8 Mar 2021 14:27:57 +0000 (07:27 -0700)
committerTom Tromey <tom@tromey.com>
Mon, 8 Mar 2021 14:28:18 +0000 (07:28 -0700)
This adds class structop_ptr_operation, which implements STRUCTOP_PTR.

gdb/ChangeLog
2021-03-08  Tom Tromey  <tom@tromey.com>

* expop.h (class structop_ptr_operation): New.
* eval.c (eval_op_structop_ptr): No longer static.  Remove "op"
parameter.

gdb/ChangeLog
gdb/eval.c
gdb/expop.h

index 72c3df2b28020be3282d6e896ab94773b5df778d..0a985a2fce542e41dd0da82aa8789dde732d19dd 100644 (file)
@@ -1,3 +1,9 @@
+2021-03-08  Tom Tromey  <tom@tromey.com>
+
+       * expop.h (class structop_ptr_operation): New.
+       * eval.c (eval_op_structop_ptr): No longer static.  Remove "op"
+       parameter.
+
 2021-03-08  Tom Tromey  <tom@tromey.com>
 
        * expop.h (class structop_base_operation)
index 74aa9703c4904072e130d0b94864cf4092d5a285..1962777cc6d118117d039661f1b5cb04323a8b8b 100644 (file)
@@ -1358,9 +1358,9 @@ eval_op_structop_struct (struct type *expect_type, struct expression *exp,
 
 /* A helper function for STRUCTOP_PTR.  */
 
-static struct value *
+struct value *
 eval_op_structop_ptr (struct type *expect_type, struct expression *exp,
-                     enum noside noside, enum exp_opcode op,
+                     enum noside noside,
                      struct value *arg1, const char *string)
 {
   if (noside == EVAL_SKIP)
@@ -1368,12 +1368,12 @@ eval_op_structop_ptr (struct type *expect_type, struct expression *exp,
 
   /* Check to see if operator '->' has been overloaded.  If so replace
      arg1 with the value returned by evaluating operator->().  */
-  while (unop_user_defined_p (op, arg1))
+  while (unop_user_defined_p (STRUCTOP_PTR, arg1))
     {
       struct value *value = NULL;
       try
        {
-         value = value_x_unop (arg1, op, noside);
+         value = value_x_unop (arg1, STRUCTOP_PTR, noside);
        }
 
       catch (const gdb_exception_error &except)
@@ -2759,7 +2759,7 @@ evaluate_subexp_standard (struct type *expect_type,
       tem = longest_to_int (exp->elts[pc + 1].longconst);
       (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
       arg1 = evaluate_subexp (nullptr, exp, pos, noside);
-      return eval_op_structop_ptr (expect_type, exp, noside, op, arg1,
+      return eval_op_structop_ptr (expect_type, exp, noside, arg1,
                                   &exp->elts[pc + 2].string);
 
     case STRUCTOP_MEMBER:
index 9f1625ca7f70f97cd9e9d1224f8ba9d508b651a2..38f3ffb5aef5bd0af8761067629a6e1a19920572 100644 (file)
@@ -75,6 +75,11 @@ extern struct value *eval_op_structop_struct (struct type *expect_type,
                                              enum noside noside,
                                              struct value *arg1,
                                              const char *string);
+extern struct value *eval_op_structop_ptr (struct type *expect_type,
+                                          struct expression *exp,
+                                          enum noside noside,
+                                          struct value *arg1,
+                                          const char *string);
 
 namespace expr
 {
@@ -848,6 +853,40 @@ protected:
   }
 };
 
+class structop_ptr_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_ptr (expect_type, exp, noside, val,
+                                std::get<1> (m_storage).c_str ());
+  }
+
+  enum exp_opcode opcode () const override
+  { return STRUCTOP_PTR; }
+
+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_PTR,
+                      std::get<0> (this->m_storage).get (),
+                      std::get<1> (this->m_storage).c_str (),
+                      ax, value);
+  }
+};
+
 } /* namespace expr */
 
 #endif /* EXPOP_H */