public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Tom Tromey <tom@tromey.com>
To: gdb-patches@sourceware.org
Subject: [PATCH v3 162/206] Introduce ada_var_value_operation
Date: Sat, 20 Feb 2021 13:15:25 -0700	[thread overview]
Message-ID: <20210220201609.838264-163-tom@tromey.com> (raw)
In-Reply-To: <20210220201609.838264-1-tom@tromey.com>

This adds class ada_var_value_operation, which implements OP_VAR_VALUE
for Ada.

gdb/ChangeLog
2021-02-20  Tom Tromey  <tom@tromey.com>

	* ada-lang.c (ada_var_value_operation::evaluate_for_cast)
	(ada_var_value_operation::evaluate): New methods.
	* ada-exp.h (class ada_var_value_operation): New.
---
 gdb/ChangeLog  |   6 +++
 gdb/ada-exp.h  |  21 ++++++++++
 gdb/ada-lang.c | 112 +++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 139 insertions(+)

diff --git a/gdb/ada-exp.h b/gdb/ada-exp.h
index e92ae469b63..0f2f62f5978 100644
--- a/gdb/ada-exp.h
+++ b/gdb/ada-exp.h
@@ -283,6 +283,27 @@ class ada_unop_atr_operation
   { return std::get<1> (m_storage); }
 };
 
+/* Variant of var_value_operation for Ada.  */
+class ada_var_value_operation
+  : public var_value_operation
+{
+public:
+
+  using var_value_operation::var_value_operation;
+
+  value *evaluate (struct type *expect_type,
+		   struct expression *exp,
+		   enum noside noside) override;
+
+  value *evaluate_for_cast (struct type *expect_type,
+			    struct expression *exp,
+			    enum noside noside) override;
+
+protected:
+
+  using operation::do_generate_ax;
+};
+
 } /* namespace expr */
 
 #endif /* ADA_EXP_H */
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index 51a2a8d1112..b05a8ab275e 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -10724,6 +10724,118 @@ ada_unop_atr_operation::evaluate (struct type *expect_type,
 		       val, type_arg, std::get<2> (m_storage));
 }
 
+value *
+ada_var_value_operation::evaluate_for_cast (struct type *expect_type,
+					    struct expression *exp,
+					    enum noside noside)
+{
+  value *val = evaluate_var_value (noside,
+				   std::get<1> (m_storage),
+				   std::get<0> (m_storage));
+
+  val = ada_value_cast (expect_type, val);
+
+  /* Follow the Ada language semantics that do not allow taking
+     an address of the result of a cast (view conversion in Ada).  */
+  if (VALUE_LVAL (val) == lval_memory)
+    {
+      if (value_lazy (val))
+	value_fetch_lazy (val);
+      VALUE_LVAL (val) = not_lval;
+    }
+  return val;
+}
+
+value *
+ada_var_value_operation::evaluate (struct type *expect_type,
+				   struct expression *exp,
+				   enum noside noside)
+{
+  symbol *sym = std::get<0> (m_storage);
+
+  if (SYMBOL_DOMAIN (sym) == UNDEF_DOMAIN)
+    /* Only encountered when an unresolved symbol occurs in a
+       context other than a function call, in which case, it is
+       invalid.  */
+    error (_("Unexpected unresolved symbol, %s, during evaluation"),
+	   sym->print_name ());
+
+  if (noside == EVAL_AVOID_SIDE_EFFECTS)
+    {
+      struct type *type = static_unwrap_type (SYMBOL_TYPE (sym));
+      /* Check to see if this is a tagged type.  We also need to handle
+	 the case where the type is a reference to a tagged type, but
+	 we have to be careful to exclude pointers to tagged types.
+	 The latter should be shown as usual (as a pointer), whereas
+	 a reference should mostly be transparent to the user.  */
+      if (ada_is_tagged_type (type, 0)
+	  || (type->code () == TYPE_CODE_REF
+	      && ada_is_tagged_type (TYPE_TARGET_TYPE (type), 0)))
+	{
+	  /* Tagged types are a little special in the fact that the real
+	     type is dynamic and can only be determined by inspecting the
+	     object's tag.  This means that we need to get the object's
+	     value first (EVAL_NORMAL) and then extract the actual object
+	     type from its tag.
+
+	     Note that we cannot skip the final step where we extract
+	     the object type from its tag, because the EVAL_NORMAL phase
+	     results in dynamic components being resolved into fixed ones.
+	     This can cause problems when trying to print the type
+	     description of tagged types whose parent has a dynamic size:
+	     We use the type name of the "_parent" component in order
+	     to print the name of the ancestor type in the type description.
+	     If that component had a dynamic size, the resolution into
+	     a fixed type would result in the loss of that type name,
+	     thus preventing us from printing the name of the ancestor
+	     type in the type description.  */
+	  value *arg1 = var_value_operation::evaluate (nullptr, exp,
+						       EVAL_NORMAL);
+
+	  if (type->code () != TYPE_CODE_REF)
+	    {
+	      struct type *actual_type;
+
+	      actual_type = type_from_tag (ada_value_tag (arg1));
+	      if (actual_type == NULL)
+		/* If, for some reason, we were unable to determine
+		   the actual type from the tag, then use the static
+		   approximation that we just computed as a fallback.
+		   This can happen if the debugging information is
+		   incomplete, for instance.  */
+		actual_type = type;
+	      return value_zero (actual_type, not_lval);
+	    }
+	  else
+	    {
+	      /* In the case of a ref, ada_coerce_ref takes care
+		 of determining the actual type.  But the evaluation
+		 should return a ref as it should be valid to ask
+		 for its address; so rebuild a ref after coerce.  */
+	      arg1 = ada_coerce_ref (arg1);
+	      return value_ref (arg1, TYPE_CODE_REF);
+	    }
+	}
+
+      /* Records and unions for which GNAT encodings have been
+	 generated need to be statically fixed as well.
+	 Otherwise, non-static fixing produces a type where
+	 all dynamic properties are removed, which prevents "ptype"
+	 from being able to completely describe the type.
+	 For instance, a case statement in a variant record would be
+	 replaced by the relevant components based on the actual
+	 value of the discriminants.  */
+      if ((type->code () == TYPE_CODE_STRUCT
+	   && dynamic_template_type (type) != NULL)
+	  || (type->code () == TYPE_CODE_UNION
+	      && ada_find_parallel_type (type, "___XVU") != NULL))
+	return value_zero (to_static_fixed_type (type), not_lval);
+    }
+
+  value *arg1 = var_value_operation::evaluate (expect_type, exp, noside);
+  return ada_to_fixed_value (arg1);
+}
+
 }
 
 /* Implement the evaluate_exp routine in the exp_descriptor structure
-- 
2.26.2


  parent reply	other threads:[~2021-02-20 20:16 UTC|newest]

Thread overview: 208+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-20 20:12 [PATCH v3 000/206] Refactor expressions Tom Tromey
2021-02-20 20:12 ` [PATCH v3 001/206] Split out eval_op_scope Tom Tromey
2021-02-20 20:12 ` [PATCH v3 002/206] Split out eval_op_var_entry_value Tom Tromey
2021-02-20 20:12 ` [PATCH v3 003/206] Split out eval_op_var_msym_value Tom Tromey
2021-02-20 20:12 ` [PATCH v3 004/206] Split out eval_op_func_static_var Tom Tromey
2021-02-20 20:12 ` [PATCH v3 005/206] Split out eval_op_register Tom Tromey
2021-02-20 20:12 ` [PATCH v3 006/206] Split out eval_op_string Tom Tromey
2021-02-20 20:12 ` [PATCH v3 007/206] Split out eval_op_objc_selector Tom Tromey
2021-02-20 20:12 ` [PATCH v3 008/206] Split out eval_op_concat Tom Tromey
2021-02-20 20:12 ` [PATCH v3 009/206] Split out eval_op_ternop Tom Tromey
2021-02-20 20:12 ` [PATCH v3 010/206] Split out eval_op_structop_struct Tom Tromey
2021-02-20 20:12 ` [PATCH v3 011/206] Split out eval_op_structop_ptr Tom Tromey
2021-02-20 20:12 ` [PATCH v3 012/206] Split out eval_op_member Tom Tromey
2021-02-20 20:12 ` [PATCH v3 013/206] Split out eval_op_add Tom Tromey
2021-02-20 20:12 ` [PATCH v3 014/206] Split out eval_op_sub Tom Tromey
2021-02-20 20:12 ` [PATCH v3 015/206] Split out eval_op_binary Tom Tromey
2021-02-20 20:12 ` [PATCH v3 016/206] Split out eval_op_subscript Tom Tromey
2021-02-20 20:13 ` [PATCH v3 017/206] Split out eval_op_equal Tom Tromey
2021-02-20 20:13 ` [PATCH v3 018/206] Split out eval_op_notequal Tom Tromey
2021-02-20 20:13 ` [PATCH v3 019/206] Split out eval_op_less Tom Tromey
2021-02-20 20:13 ` [PATCH v3 020/206] Split out eval_op_gtr Tom Tromey
2021-02-20 20:13 ` [PATCH v3 021/206] Split out eval_op_geq Tom Tromey
2021-02-20 20:13 ` [PATCH v3 022/206] Split out eval_op_leq Tom Tromey
2021-02-20 20:13 ` [PATCH v3 023/206] Split out eval_op_repeat Tom Tromey
2021-02-20 20:13 ` [PATCH v3 024/206] Split out eval_op_plus Tom Tromey
2021-02-20 20:13 ` [PATCH v3 025/206] Split out eval_op_neg Tom Tromey
2021-02-20 20:13 ` [PATCH v3 026/206] Split out eval_op_complement Tom Tromey
2021-02-20 20:13 ` [PATCH v3 027/206] Split out eval_op_lognot Tom Tromey
2021-02-20 20:13 ` [PATCH v3 028/206] Split out eval_op_ind Tom Tromey
2021-02-20 20:13 ` [PATCH v3 029/206] Split out eval_op_alignof Tom Tromey
2021-02-20 20:13 ` [PATCH v3 030/206] Split out eval_op_memval Tom Tromey
2021-02-20 20:13 ` [PATCH v3 031/206] Split out eval_op_preinc Tom Tromey
2021-02-20 20:13 ` [PATCH v3 032/206] Split out eval_op_predec Tom Tromey
2021-02-20 20:13 ` [PATCH v3 033/206] Split out eval_op_postinc Tom Tromey
2021-02-20 20:13 ` [PATCH v3 034/206] Split out eval_op_postdec Tom Tromey
2021-02-20 20:13 ` [PATCH v3 035/206] Split out eval_op_type Tom Tromey
2021-02-20 20:13 ` [PATCH v3 036/206] Split out eval_op_f_abs Tom Tromey
2021-02-20 20:13 ` [PATCH v3 037/206] Split out eval_op_f_mod Tom Tromey
2021-02-20 20:13 ` [PATCH v3 038/206] Split out eval_op_f_ceil Tom Tromey
2021-02-20 20:13 ` [PATCH v3 039/206] Split out eval_op_f_floor Tom Tromey
2021-02-20 20:13 ` [PATCH v3 040/206] Split out eval_op_f_modulo Tom Tromey
2021-02-20 20:13 ` [PATCH v3 041/206] Split out eval_op_f_cmplx Tom Tromey
2021-02-20 20:13 ` [PATCH v3 042/206] Split out eval_op_f_kind Tom Tromey
2021-02-20 20:13 ` [PATCH v3 043/206] Split ot fortran_require_array Tom Tromey
2021-02-20 20:13 ` [PATCH v3 044/206] Split out eval_op_f_allocated Tom Tromey
2021-02-20 20:13 ` [PATCH v3 045/206] Change parameters to rust_range Tom Tromey
2021-02-20 20:13 ` [PATCH v3 046/206] Change parameters to rust_subscript Tom Tromey
2021-02-20 20:13 ` [PATCH v3 047/206] Split out eval_op_rust_ind Tom Tromey
2021-02-20 20:13 ` [PATCH v3 048/206] Split out eval_op_rust_complement Tom Tromey
2021-02-20 20:13 ` [PATCH v3 049/206] Split out eval_op_rust_array Tom Tromey
2021-02-20 20:13 ` [PATCH v3 050/206] Split out eval_op_rust_struct_anon Tom Tromey
2021-02-20 20:13 ` [PATCH v3 051/206] Split out eval_op_rust_structop Tom Tromey
2021-02-20 20:13 ` [PATCH v3 052/206] Split helper functions Tom Tromey
2021-02-20 20:13 ` [PATCH v3 053/206] Split out eval_op_m2_high Tom Tromey
2021-02-20 20:13 ` [PATCH v3 054/206] Split out eval_op_m2_subscript Tom Tromey
2021-02-20 20:13 ` [PATCH v3 055/206] Split out eval_binop_assign_modify Tom Tromey
2021-02-20 20:13 ` [PATCH v3 056/206] Split out eval_op_objc_msgcall Tom Tromey
2021-02-20 20:13 ` [PATCH v3 057/206] Split out eval_opencl_assign Tom Tromey
2021-02-20 20:13 ` [PATCH v3 058/206] Split out eval_ternop_in_range Tom Tromey
2021-02-20 20:13 ` [PATCH v3 059/206] Split out ada_unop_neg Tom Tromey
2021-02-20 20:13 ` [PATCH v3 060/206] Split out ada_unop_in_range Tom Tromey
2021-02-20 20:13 ` [PATCH v3 061/206] Split out ada_atr_tag Tom Tromey
2021-02-20 20:13 ` [PATCH v3 062/206] Split out ada_atr_size Tom Tromey
2021-02-20 20:13 ` [PATCH v3 063/206] Split out ada_abs Tom Tromey
2021-02-20 20:13 ` [PATCH v3 064/206] Split out ada_mult_binop Tom Tromey
2021-02-20 20:13 ` [PATCH v3 065/206] Split out ada_equal_binop Tom Tromey
2021-02-20 20:13 ` [PATCH v3 066/206] Split out ada_ternop_slice Tom Tromey
2021-02-20 20:13 ` [PATCH v3 067/206] Split out ada_binop_in_bounds Tom Tromey
2021-02-20 20:13 ` [PATCH v3 068/206] Split out ada_unop_atr Tom Tromey
2021-02-20 20:13 ` [PATCH v3 069/206] Split out ada_binop_minmax Tom Tromey
2021-02-20 20:13 ` [PATCH v3 070/206] Change value_val_atr to ada_val_atr Tom Tromey
2021-02-20 20:13 ` [PATCH v3 071/206] Split out ada_binop_exp Tom Tromey
2021-02-20 20:13 ` [PATCH v3 072/206] Split out eval_multi_subscript Tom Tromey
2021-02-20 20:13 ` [PATCH v3 073/206] Split gen_expr_binop_rest Tom Tromey
2021-02-20 20:13 ` [PATCH v3 074/206] Introduce class operation Tom Tromey
2021-02-20 20:13 ` [PATCH v3 075/206] Implement dumping Tom Tromey
2021-02-20 20:13 ` [PATCH v3 076/206] Add two agent expression helper functions Tom Tromey
2021-02-20 20:14 ` [PATCH v3 077/206] Introduce float_const_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 078/206] Introduce scope_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 079/206] Introduce long_const_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 080/206] Introduce var_msym_value_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 081/206] Introduce var_entry_value_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 082/206] Introduce func_static_var_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 083/206] Introduce last_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 084/206] Introduce register_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 085/206] Introduce bool_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 086/206] Introduce internalvar_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 087/206] Introduce string_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 088/206] Introduce ternop_slice_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 089/206] Introduce ternop_cond_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 090/206] Add c-exp.h and c_string_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 091/206] Introduce objc_nsstring_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 092/206] Introduce objc_selector_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 093/206] Introduce complex_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 094/206] Introduce structop_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 095/206] Introduce structop_ptr_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 096/206] Introduce structop_member_operation and structop_mptr_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 097/206] Introduce concat_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 098/206] Introduce add_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 099/206] Introduce sub_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 100/206] Introduce binop_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 101/206] Introduce subscript_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 102/206] Implement binary comparison operations Tom Tromey
2021-02-20 20:14 ` [PATCH v3 103/206] Introduce repeat_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 104/206] Introduce comma_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 105/206] Implement some unary operations Tom Tromey
2021-02-20 20:14 ` [PATCH v3 106/206] Implement unary increment and decrement operations Tom Tromey
2021-02-20 20:14 ` [PATCH v3 107/206] Introduce unop_ind_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 108/206] Introduce type_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 109/206] Introduce typeof_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 110/206] Introduce decltype_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 111/206] Introduce typeid_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 112/206] Introduce unop_addr_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 113/206] Introduce unop_sizeof_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 114/206] Introduce unop_alignof_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 115/206] Implement UNOP_MEMVAL and UNOP_MEMVAL_TYPE Tom Tromey
2021-02-20 20:14 ` [PATCH v3 116/206] Introduce op_this_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 117/206] Introduce type_instance_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 118/206] Introduce assign_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 119/206] Introduce assign_modify_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 120/206] Introduce unop_cast_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 121/206] Introduce unop_cast_type_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 122/206] Implement C++ cast operations Tom Tromey
2021-02-20 20:14 ` [PATCH v3 123/206] Introduce var_value_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 124/206] Introduce objc_msgcall_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 125/206] Introduce multi_subscript_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 126/206] Introduce ada_wrapped_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 127/206] Introduce ada_string_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 128/206] Introduce ada_qual_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 129/206] Introduce ada_ternop_range_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 130/206] Implement several Fortran operations Tom Tromey
2021-02-20 20:14 ` [PATCH v3 131/206] Implement some Rust operations Tom Tromey
2021-02-20 20:14 ` [PATCH v3 132/206] Introduce rust_unop_ind_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 133/206] Introduce rust_subscript_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 134/206] Introduce rust_range_operation Tom Tromey
2021-02-20 20:14 ` [PATCH v3 135/206] Implement Rust field operations Tom Tromey
2021-02-20 20:14 ` [PATCH v3 136/206] Introduce rust_aggregate_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 137/206] Add two simple Modula-2 operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 138/206] Implement the "&&" and "||" operators Tom Tromey
2021-02-20 20:15 ` [PATCH v3 139/206] Implement some Ada unary operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 140/206] Introduce ada_unop_range_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 141/206] Introduce class adl_func_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 142/206] Introduce array_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 143/206] Implement function call operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 144/206] Implement Rust funcall operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 145/206] Introduce fortran_undetermined Tom Tromey
2021-02-20 20:15 ` [PATCH v3 146/206] Introduce classes for Fortran bound intrinsics Tom Tromey
2021-02-20 20:15 ` [PATCH v3 147/206] Implement fortran_allocated_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 148/206] Introduce opencl_cast_type_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 149/206] Implement OpenCL binary operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 150/206] Introduce opencl_notequal_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 151/206] Introduce opencl_structop_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 152/206] Implement OpenCL logical binary operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 153/206] Implement OpenCL ternary conditional operator Tom Tromey
2021-02-20 20:15 ` [PATCH v3 154/206] Split out some Ada type resolution code Tom Tromey
2021-02-20 20:15 ` [PATCH v3 155/206] Introduce ada_binop_addsub_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 156/206] Implement Ada multiplicative operators Tom Tromey
2021-02-20 20:15 ` [PATCH v3 157/206] Implement Ada equality operators Tom Tromey
2021-02-20 20:15 ` [PATCH v3 158/206] Introduce ada_bitwise_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 159/206] Introduce ada_ternop_slice Tom Tromey
2021-02-20 20:15 ` [PATCH v3 160/206] Introduce ada_binop_in_bounds Tom Tromey
2021-02-20 20:15 ` [PATCH v3 161/206] Implement some Ada OP_ATR_ operations Tom Tromey
2021-02-20 20:15 ` Tom Tromey [this message]
2021-02-20 20:15 ` [PATCH v3 163/206] Introduce ada_var_msym_value_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 164/206] Implement Ada min and max operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 165/206] Refactor value_pos_atr Tom Tromey
2021-02-20 20:15 ` [PATCH v3 166/206] Introduce ada_pos_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 167/206] Introduce ada_atr_val_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 168/206] Introduce ada_binop_exp_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 169/206] Introduce ada_unop_ind_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 170/206] Introduce ada_structop_operation Tom Tromey
2021-02-20 20:15 ` [PATCH v3 171/206] Implement function calls for Ada Tom Tromey
2021-02-20 20:15 ` [PATCH v3 172/206] Implement Ada resolution Tom Tromey
2021-02-20 20:15 ` [PATCH v3 173/206] Implement Ada assignment Tom Tromey
2021-02-20 20:15 ` [PATCH v3 174/206] Remove use of op_string Tom Tromey
2021-02-20 20:15 ` [PATCH v3 175/206] Add an expr::operation_up to struct expression Tom Tromey
2021-02-20 20:15 ` [PATCH v3 176/206] Add completion for operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 177/206] Add operation-related methods to parser_state Tom Tromey
2021-02-20 20:15 ` [PATCH v3 178/206] Convert dtrace probes to use operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 179/206] Convert stap probes to create operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 180/206] Convert rust-exp.y to use operations Tom Tromey
2021-02-20 20:15 ` [PATCH v3 181/206] Convert c-exp.y " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 182/206] Convert go-exp.y " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 183/206] Convert d-exp.y " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 184/206] Convert p-exp.y " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 185/206] Convert m2-exp.y " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 186/206] Convert f-exp.y " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 187/206] Convert ada-exp.y " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 188/206] Remove now-unused Rust evaluator code Tom Tromey
2021-02-20 20:15 ` [PATCH v3 189/206] Remove now-unused Fortran " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 190/206] Remove now-unused Modula-2 " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 191/206] Remove now-unused Ada " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 192/206] Remove now-unused C " Tom Tromey
2021-02-20 20:15 ` [PATCH v3 193/206] Remove union exp_element Tom Tromey
2021-02-20 20:15 ` [PATCH v3 194/206] Remove two Ada opcodes Tom Tromey
2021-02-20 20:15 ` [PATCH v3 195/206] Remove unused Modula-2 opcodes Tom Tromey
2021-02-20 20:15 ` [PATCH v3 196/206] Remove unused Ada opcodes Tom Tromey
2021-02-20 20:16 ` [PATCH v3 197/206] Remove OP_EXTENDED0 Tom Tromey
2021-02-20 20:16 ` [PATCH v3 198/206] Remove OP_UNUSED_LAST Tom Tromey
2021-02-20 20:16 ` [PATCH v3 199/206] Remove BINOP_END Tom Tromey
2021-02-20 20:16 ` [PATCH v3 200/206] Inline expression constructor Tom Tromey
2021-02-20 20:16 ` [PATCH v3 201/206] Inline expr_builder methods Tom Tromey
2021-02-20 20:16 ` [PATCH v3 202/206] Merge namespace scopes in eval.c Tom Tromey
2021-02-20 20:16 ` [PATCH v3 203/206] Remove EVAL_SKIP Tom Tromey
2021-02-20 20:16 ` [PATCH v3 204/206] Change exp_uses_objfile to return bool Tom Tromey
2021-02-20 20:16 ` [PATCH v3 205/206] Use bound_minimal_symbol in var_msym_value_operation Tom Tromey
2021-02-20 20:16 ` [PATCH v3 206/206] Remove some null checks Tom Tromey
2021-03-02 18:45 ` [PATCH v3 000/206] Refactor expressions Tom Tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210220201609.838264-163-tom@tromey.com \
    --to=tom@tromey.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).