Introduce ada_structop_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:35 +0000 (07:28 -0700)
This adds class ada_structop_operation, which implements
STRUCTOP_STRUCT for Ada.

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

* ada-lang.c (ada_structop_operation::evaluate): New method.
* ada-exp.h (class ada_structop_operation): New.

gdb/ChangeLog
gdb/ada-exp.h
gdb/ada-lang.c

index 5f6dcfbf389523f630b274305b5066575595829d..781fa8bf70365909bc422f11af73bb50d68c9d23 100644 (file)
@@ -1,3 +1,8 @@
+2021-03-08  Tom Tromey  <tom@tromey.com>
+
+       * ada-lang.c (ada_structop_operation::evaluate): New method.
+       * ada-exp.h (class ada_structop_operation): New.
+
 2021-03-08  Tom Tromey  <tom@tromey.com>
 
        * ada-lang.c (ada_unop_ind_operation::evaluate): New method.
index c87036e2d19ad129bbe5e8353e090136e2ac236b..34b9c1d166da0fba7f37b14ae632555dd827bc74 100644 (file)
@@ -371,6 +371,22 @@ public:
                   enum noside noside) override;
 };
 
+/* Implement STRUCTOP_STRUCT for Ada.  */
+class ada_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;
+
+  enum exp_opcode opcode () const override
+  { return STRUCTOP_STRUCT; }
+};
+
 } /* namespace expr */
 
 #endif /* ADA_EXP_H */
index 5998ae7096e6eba0844c51a6370ba67588fef4e5..915fbe36f8c3d6635123701acb90fdd190a4d7a8 100644 (file)
@@ -10788,6 +10788,48 @@ ada_unop_ind_operation::evaluate (struct type *expect_type,
     return ada_value_ind (arg1);
 }
 
+value *
+ada_structop_operation::evaluate (struct type *expect_type,
+                                 struct expression *exp,
+                                 enum noside noside)
+{
+  value *arg1 = std::get<0> (m_storage)->evaluate (nullptr, exp, noside);
+  const char *str = std::get<1> (m_storage).c_str ();
+  if (noside == EVAL_AVOID_SIDE_EFFECTS)
+    {
+      struct type *type;
+      struct type *type1 = value_type (arg1);
+
+      if (ada_is_tagged_type (type1, 1))
+       {
+         type = ada_lookup_struct_elt_type (type1, str, 1, 1);
+
+         /* If the field is not found, check if it exists in the
+            extension of this object's type. This means that we
+            need to evaluate completely the expression.  */
+
+         if (type == NULL)
+           {
+             arg1 = std::get<0> (m_storage)->evaluate (nullptr, exp,
+                                                       EVAL_NORMAL);
+             arg1 = ada_value_struct_elt (arg1, str, 0);
+             arg1 = unwrap_value (arg1);
+             type = value_type (ada_to_fixed_value (arg1));
+           }
+       }
+      else
+       type = ada_lookup_struct_elt_type (type1, str, 1, 0);
+
+      return value_zero (ada_aligned_type (type), lval_memory);
+    }
+  else
+    {
+      arg1 = ada_value_struct_elt (arg1, str, 0);
+      arg1 = unwrap_value (arg1);
+      return ada_to_fixed_value (arg1);
+    }
+}
+
 }
 
 /* Implement the evaluate_exp routine in the exp_descriptor structure