]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Add dynamic_prop::is_constant
authorTom Tromey <tromey@adacore.com>
Wed, 19 Apr 2023 15:40:20 +0000 (09:40 -0600)
committerTom Tromey <tromey@adacore.com>
Fri, 12 May 2023 18:30:28 +0000 (12:30 -0600)
I noticed many spots checking whether a dynamic property's kind is
PROP_CONST.  Some spots, I think, are doing a slightly incorrect check
-- checking for != PROP_UNDEFINED where == PROP_CONST is actually
required, the key thing being that const_val may only be called for
PROP_CONST properties.

This patch adds dynamic::is_constant and then updates these checks to
use it.

Regression tested on x86-64 Fedora 36.

14 files changed:
gdb/ada-lang.c
gdb/ada-tasks.c
gdb/compile/compile-c-types.c
gdb/compile/compile-cplus-types.c
gdb/dwarf2/read.c
gdb/f-typeprint.c
gdb/f-valprint.c
gdb/gdbtypes.c
gdb/gdbtypes.h
gdb/guile/scm-type.c
gdb/m2-typeprint.c
gdb/p-typeprint.c
gdb/python/py-type.c
gdb/value.c

index df5fd80414d2e86155a1ea70d1203299d6886162..a67ecc09f95d59a83268616c5d7a69709db09283 100644 (file)
@@ -673,7 +673,7 @@ ada_discrete_type_high_bound (struct type *type)
       {
        const dynamic_prop &high = type->bounds ()->high;
 
-       if (high.kind () == PROP_CONST)
+       if (high.is_constant ())
          return high.const_val ();
        else
          {
@@ -708,7 +708,7 @@ ada_discrete_type_low_bound (struct type *type)
       {
        const dynamic_prop &low = type->bounds ()->low;
 
-       if (low.kind () == PROP_CONST)
+       if (low.is_constant ())
          return low.const_val ();
        else
          {
@@ -11576,7 +11576,7 @@ ada_modulus (struct type *type)
 {
   const dynamic_prop &high = type->bounds ()->high;
 
-  if (high.kind () == PROP_CONST)
+  if (high.is_constant ())
     return (ULONGEST) high.const_val () + 1;
 
   /* If TYPE is unresolved, the high bound might be a location list.  Return
index f107d4e4c2863af77b42a834f595a9fb6d0fa4de..8d0dec30485da7f9f01905eeb1b5f79e19b55057 100644 (file)
@@ -943,8 +943,8 @@ ada_tasks_inferior_data_sniffer (struct ada_tasks_inferior_data *data)
              && eltype->code () == TYPE_CODE_PTR)
            idxtype = check_typedef (type->index_type ());
          if (idxtype != NULL
-             && idxtype->bounds ()->low.kind () != PROP_UNDEFINED
-             && idxtype->bounds ()->high.kind () != PROP_UNDEFINED)
+             && idxtype->bounds ()->low.is_constant ()
+             && idxtype->bounds ()->high.is_constant ())
            {
              data->known_tasks_element = eltype;
              data->known_tasks_length =
index f48eca2152a89cd78a34fd79ec02612fd6bafe5b..4853c3f78b12f49d9e75838d6f9a3dbb83a9cfa2 100644 (file)
@@ -44,7 +44,7 @@ convert_array (compile_c_instance *context, struct type *type)
 
   element_type = context->convert_type (type->target_type ());
 
-  if (range->bounds ()->low.kind () != PROP_CONST)
+  if (!range->bounds ()->low.is_constant ())
     return context->plugin ().error (_("array type with non-constant"
                                       " lower bound is not supported"));
   if (range->bounds ()->low.const_val () != 0)
index 2f87ad865faa7eeb8b490e5fafac2b5660c36a2a..d8e305f237a40e0fcfc4eb1644d8d0652853dd1e 100644 (file)
@@ -455,7 +455,7 @@ compile_cplus_convert_array (compile_cplus_instance *instance,
   struct type *range = type->index_type ();
   gcc_type element_type = instance->convert_type (type->target_type ());
 
-  if (range->bounds ()->low.kind () != PROP_CONST)
+  if (!range->bounds ()->low.is_constant ())
     {
       const char *s = _("array type with non-constant"
                        " lower bound is not supported");
index e91efe853b7ca4cc69936cd6b44024ff1152602f..fc645e9d8f80176505fa433fb62641fa8632962d 100644 (file)
@@ -12424,8 +12424,8 @@ rewrite_array_type (struct type *type)
   if (new_target == nullptr)
     {
       /* Maybe we don't need to rewrite this array.  */
-      if (current_bounds->low.kind () == PROP_CONST
-         && current_bounds->high.kind () == PROP_CONST)
+      if (current_bounds->low.is_constant ()
+         && current_bounds->high.is_constant ())
        return nullptr;
     }
 
@@ -15673,7 +15673,7 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
       if (attr_to_dynamic_prop (attr, die, cu, &high, base_type))
        {
          /* If bounds are constant do the final calculation here.  */
-         if (low.kind () == PROP_CONST && high.kind () == PROP_CONST)
+         if (low.is_constant () && high.is_constant ())
            high.set_const_val (low.const_val () + high.const_val () - 1);
          else
            high_bound_is_count = 1;
@@ -15715,11 +15715,11 @@ read_subrange_type (struct die_info *die, struct dwarf2_cu *cu)
       ULONGEST negative_mask
        = -((ULONGEST) 1 << (base_type->length () * TARGET_CHAR_BIT - 1));
 
-      if (low.kind () == PROP_CONST
+      if (low.is_constant ()
          && !base_type->is_unsigned () && (low.const_val () & negative_mask))
        low.set_const_val (low.const_val () | negative_mask);
 
-      if (high.kind () == PROP_CONST
+      if (high.is_constant ()
          && !base_type->is_unsigned () && (high.const_val () & negative_mask))
        high.set_const_val (high.const_val () | negative_mask);
     }
index 41862a2b353de12d311ef78f0db7518e844ac47f..882696c9394cb2cb8eeaef8489044310f1784c42 100644 (file)
@@ -176,11 +176,11 @@ f_language::f_type_print_varspec_suffix (struct type *type,
       else if (type_not_allocated (type))
        print_rank_only = true;
       else if ((TYPE_ASSOCIATED_PROP (type)
-               && PROP_CONST != TYPE_ASSOCIATED_PROP (type)->kind ())
+               && !TYPE_ASSOCIATED_PROP (type)->is_constant ())
               || (TYPE_ALLOCATED_PROP (type)
-                  && PROP_CONST != TYPE_ALLOCATED_PROP (type)->kind ())
+                  && !TYPE_ALLOCATED_PROP (type)->is_constant ())
               || (TYPE_DATA_LOCATION (type)
-                  && PROP_CONST != TYPE_DATA_LOCATION (type)->kind ()))
+                  && !TYPE_DATA_LOCATION (type)->is_constant ()))
        {
          /* This case exist when we ptype a typename which has the dynamic
             properties but cannot be resolved as there is no object.  */
@@ -395,7 +395,7 @@ f_language::f_type_print_base (struct type *type, struct ui_file *stream,
         asked to print the type of a value with a dynamic type then the
         bounds will not have been resolved.  */
 
-      if (type->bounds ()->high.kind () == PROP_CONST)
+      if (type->bounds ()->high.is_constant ())
        {
          LONGEST upper_bound = f77_get_upperbound (type);
 
index 52bebae17fe9d150055f61b2860bc4e303d5d216..e3b45dd4a93dd93541af19dcbf0e08f06161570c 100644 (file)
@@ -43,7 +43,7 @@ static void f77_get_dynamic_length_of_aggregate (struct type *);
 LONGEST
 f77_get_lowerbound (struct type *type)
 {
-  if (type->bounds ()->low.kind () != PROP_CONST)
+  if (!type->bounds ()->low.is_constant ())
     error (_("Lower bound may not be '*' in F77"));
 
   return type->bounds ()->low.const_val ();
@@ -52,7 +52,7 @@ f77_get_lowerbound (struct type *type)
 LONGEST
 f77_get_upperbound (struct type *type)
 {
-  if (type->bounds ()->high.kind () != PROP_CONST)
+  if (!type->bounds ()->high.is_constant ())
     {
       /* We have an assumed size array on our hands.  Assume that
         upper_bound == lower_bound so that we show at least 1 element.
index 75fd4bf19d8931b833fd53a853ae3496353823a3..10e585066f7ad7cf7f5a5ef126aec8ef254a3a70 100644 (file)
@@ -974,14 +974,14 @@ create_range_type (type_allocator &alloc, struct type *index_type,
      case, if we copy the underlying type's sign, then reading some
      range values will cause an unwanted sign extension.  So, we have
      some heuristics here instead.  */
-  else if (low_bound->kind () == PROP_CONST && low_bound->const_val () >= 0)
+  else if (low_bound->is_constant () && low_bound->const_val () >= 0)
     {
       result_type->set_is_unsigned (true);
       /* Ada allows the declaration of range types whose upper bound is
         less than the lower bound, so checking the lower bound is not
         enough.  Make sure we do not mark a range type whose upper bound
         is negative as unsigned.  */
-      if (high_bound->kind () == PROP_CONST && high_bound->const_val () < 0)
+      if (high_bound->is_constant () && high_bound->const_val () < 0)
        result_type->set_is_unsigned (false);
     }
 
@@ -1037,9 +1037,9 @@ has_static_range (const struct range_bounds *bounds)
 {
   /* If the range doesn't have a defined stride then its stride field will
      be initialized to the constant 0.  */
-  return (bounds->low.kind () == PROP_CONST
-         && bounds->high.kind () == PROP_CONST
-         && bounds->stride.kind () == PROP_CONST);
+  return (bounds->low.is_constant ()
+         && bounds->high.is_constant ()
+         && bounds->stride.is_constant ());
 }
 
 /* See gdbtypes.h.  */
@@ -1053,7 +1053,7 @@ get_discrete_low_bound (struct type *type)
     case TYPE_CODE_RANGE:
       {
        /* This function only works for ranges with a constant low bound.  */
-       if (type->bounds ()->low.kind () != PROP_CONST)
+       if (!type->bounds ()->low.is_constant ())
          return {};
 
        LONGEST low = type->bounds ()->low.const_val ();
@@ -1120,7 +1120,7 @@ get_discrete_high_bound (struct type *type)
     case TYPE_CODE_RANGE:
       {
        /* This function only works for ranges with a constant high bound.  */
-       if (type->bounds ()->high.kind () != PROP_CONST)
+       if (!type->bounds ()->high.is_constant ())
          return {};
 
        LONGEST high = type->bounds ()->high.const_val ();
@@ -1341,8 +1341,7 @@ create_array_type_with_stride (type_allocator &alloc,
                               struct dynamic_prop *byte_stride_prop,
                               unsigned int bit_stride)
 {
-  if (byte_stride_prop != NULL
-      && byte_stride_prop->kind () == PROP_CONST)
+  if (byte_stride_prop != nullptr && byte_stride_prop->is_constant ())
     {
       /* The byte stride is actually not dynamic.  Pretend we were
         called with bit_stride set instead of byte_stride_prop.
@@ -2033,7 +2032,7 @@ array_type_has_dynamic_stride (struct type *type)
 {
   struct dynamic_prop *prop = type->dyn_prop (DYN_PROP_BYTE_STRIDE);
 
-  return (prop != NULL && prop->kind () != PROP_CONST);
+  return prop != nullptr && prop->is_constant ();
 }
 
 /* Worker for is_dynamic_type.  */
@@ -4377,8 +4376,7 @@ type_not_allocated (const struct type *type)
 {
   struct dynamic_prop *prop = TYPE_ALLOCATED_PROP (type);
 
-  return (prop != nullptr && prop->kind () == PROP_CONST
-         && prop->const_val () == 0);
+  return prop != nullptr && prop->is_constant () && prop->const_val () == 0;
 }
 
 /* Associated status of type TYPE.  Return zero if type TYPE is associated.
@@ -4389,8 +4387,7 @@ type_not_associated (const struct type *type)
 {
   struct dynamic_prop *prop = TYPE_ASSOCIATED_PROP (type);
 
-  return (prop != nullptr && prop->kind () == PROP_CONST
-         && prop->const_val () == 0);
+  return prop != nullptr && prop->is_constant () && prop->const_val () == 0;
 }
 
 /* rank_one_type helper for when PARM's type code is TYPE_CODE_PTR.  */
index 9254ec994e3e19805435fabf8325321bf7ef2ffd..319a7731bca1b7eb9110cc54299252ca3861820c 100644 (file)
@@ -340,6 +340,11 @@ struct dynamic_prop
     m_data.const_val = const_val;
   }
 
+  /* Return true if this property has a constant value, false
+     otherwise.  */
+  bool is_constant () const
+  { return m_kind == PROP_CONST; }
+
   const dwarf2_property_baton *baton () const
   {
     gdb_assert (m_kind == PROP_LOCEXPR
index 008e792cc34102fce08e9816d499929f9996bfb4..033b800d8b0abfa8bc8d8337895bab7335ce9093 100644 (file)
@@ -827,12 +827,12 @@ gdbscm_type_range (SCM self)
     case TYPE_CODE_ARRAY:
     case TYPE_CODE_STRING:
     case TYPE_CODE_RANGE:
-      if (type->bounds ()->low.kind () == PROP_CONST)
+      if (type->bounds ()->low.is_constant ())
        low = type->bounds ()->low.const_val ();
       else
        low = 0;
 
-      if (type->bounds ()->high.kind () == PROP_CONST)
+      if (type->bounds ()->high.is_constant ())
        high = type->bounds ()->high.const_val ();
       else
        high = 0;
index 00a328852e9e8fa8f8f80945ef17a4b21d09755f..2eea410bcd3c12ee6cc4da62e414e6c7d7072c56 100644 (file)
@@ -227,7 +227,7 @@ static void m2_array (struct type *type, struct ui_file *stream,
 {
   gdb_printf (stream, "ARRAY [");
   if (type->target_type ()->length () > 0
-      && type->bounds ()->high.kind () != PROP_UNDEFINED)
+      && type->bounds ()->high.is_constant ())
     {
       if (type->index_type () != 0)
        {
index 563f619425b3f1e8317cb54c7d6eb7c93df94e74..a3c2ef897d664658103e737e6f0026969138c376 100644 (file)
@@ -238,7 +238,7 @@ pascal_language::type_print_varspec_prefix (struct type *type,
        gdb_printf (stream, "(");
       gdb_printf (stream, "array ");
       if (type->target_type ()->length () > 0
-         && type->bounds ()->high.kind () != PROP_UNDEFINED)
+         && type->bounds ()->high.is_constant ())
        gdb_printf (stream, "[%s..%s] ",
                    plongest (type->bounds ()->low.const_val ()),
                    plongest (type->bounds ()->high.const_val ()));
index 1088ee39d96e96cc010338bff21fcec65f1f377f..b9fa741177f87118cf277b57a6d9ae4d906429d3 100644 (file)
@@ -609,12 +609,12 @@ typy_range (PyObject *self, PyObject *args)
     case TYPE_CODE_ARRAY:
     case TYPE_CODE_STRING:
     case TYPE_CODE_RANGE:
-      if (type->bounds ()->low.kind () == PROP_CONST)
+      if (type->bounds ()->low.is_constant ())
        low = type->bounds ()->low.const_val ();
       else
        low = 0;
 
-      if (type->bounds ()->high.kind () == PROP_CONST)
+      if (type->bounds ()->high.is_constant ())
        high = type->bounds ()->high.const_val ();
       else
        high = 0;
index 01c30eb3f93f4cc134f6d95d6d00f571fccdaef9..980722a6dd77882167e02ab7db9620bdfe59c00f 100644 (file)
@@ -1362,7 +1362,7 @@ value::address () const
     return m_parent->address () + m_offset;
   if (NULL != TYPE_DATA_LOCATION (type ()))
     {
-      gdb_assert (PROP_CONST == TYPE_DATA_LOCATION_KIND (type ()));
+      gdb_assert (TYPE_DATA_LOCATION (type ())->is_constant ());
       return TYPE_DATA_LOCATION_ADDR (type ());
     }
 
@@ -1612,14 +1612,14 @@ value::set_component_location (const struct value *whole)
      update the address of the COMPONENT.  */
   type = whole->type ();
   if (NULL != TYPE_DATA_LOCATION (type)
-      && TYPE_DATA_LOCATION_KIND (type) == PROP_CONST)
+      && TYPE_DATA_LOCATION (type)->is_constant ())
     set_address (TYPE_DATA_LOCATION_ADDR (type));
 
   /* Similarly, if the COMPONENT value has a dynamically resolved location
      property then update its address.  */
   type = this->type ();
   if (NULL != TYPE_DATA_LOCATION (type)
-      && TYPE_DATA_LOCATION_KIND (type) == PROP_CONST)
+      && TYPE_DATA_LOCATION (type)->is_constant ())
     {
       /* If the COMPONENT has a dynamic location, and is an
         lval_internalvar_component, then we change it to a lval_memory.
@@ -3005,7 +3005,7 @@ value::primitive_field (LONGEST offset, int fieldno, struct type *arg_type)
 
       gdb_assert (0 == offset);
       /* We expect an already resolved data location.  */
-      gdb_assert (PROP_CONST == TYPE_DATA_LOCATION_KIND (type));
+      gdb_assert (TYPE_DATA_LOCATION (type)->is_constant ());
       /* For dynamic data types defer memory allocation
         until we actual access the value.  */
       v = value::allocate_lazy (type);
@@ -3558,7 +3558,7 @@ value_from_contents_and_address (struct type *type,
   else
     v = value_from_contents (resolved_type, valaddr);
   if (TYPE_DATA_LOCATION (resolved_type_no_typedef) != NULL
-      && TYPE_DATA_LOCATION_KIND (resolved_type_no_typedef) == PROP_CONST)
+      && TYPE_DATA_LOCATION (resolved_type_no_typedef)->is_constant ())
     address = TYPE_DATA_LOCATION_ADDR (resolved_type_no_typedef);
   v->set_lval (lval_memory);
   v->set_address (address);