Change value::m_lazy to bool
authorTom Tromey <tom@tromey.com>
Tue, 14 Feb 2023 16:37:47 +0000 (09:37 -0700)
committerTom Tromey <tom@tromey.com>
Wed, 15 Feb 2023 22:07:07 +0000 (15:07 -0700)
This changes value::m_lazy to be a bool and updates the various uses.

Reviewed-By: Bruno Larsen <blarsen@redhat.com>
gdb/dwarf2/loc.c
gdb/gnu-v2-abi.c
gdb/valops.c
gdb/value.c
gdb/value.h

index 27c4b7ce31a646e22c9e2e8dea9793c1982be388..0ab54abea9a34567cfbd0228f34c822baa5f7e75 100644 (file)
@@ -1366,7 +1366,7 @@ value_of_dwarf_reg_entry (struct type *type, frame_info_ptr frame,
   memcpy (val->contents_raw ().data (),
          outer_val->contents_raw ().data (),
          checked_type->length ());
-  val->set_lazy (0);
+  val->set_lazy (false);
 
   return val;
 }
index fa46d474914f836e96efb3e645c15dddcd6afe5a..6afa1795ebd6ec724a763affaa3e982cbd36619e 100644 (file)
@@ -163,7 +163,7 @@ gnuv2_virtual_fn_field (struct value **arg1p, struct fn_field * f, int j,
 
       if (!arg1->lazy ())
        {
-         arg1->set_lazy (1);
+         arg1->set_lazy (true);
          arg1->fetch_lazy ();
        }
 
index 3901053c7d563c94069fab105aa62693395e5b0e..90f7b8c55321c22b792ae6d3926b42300aee84ef 100644 (file)
@@ -1343,7 +1343,7 @@ value_assign (struct value *toval, struct value *fromval)
      information, but its contents are updated from FROMVAL.  This
      implies the returned value is not lazy, even if TOVAL was.  */
   val = toval->copy ();
-  val->set_lazy (0);
+  val->set_lazy (false);
   copy (fromval->contents (), val->contents_raw ());
 
   /* We copy over the enclosing type and pointed-to offset from FROMVAL
index 2dc2dabd790d28c61f6e31450e11e62237a12274..ee35f70522857b7c4b8108971258a974a25f2628 100644 (file)
@@ -939,7 +939,7 @@ value::allocate (struct type *type, bool check_size)
   struct value *val = value::allocate_lazy (type);
 
   val->allocate_contents (check_size);
-  val->m_lazy = 0;
+  val->m_lazy = false;
   return val;
 }
 
@@ -991,7 +991,7 @@ value::allocate_optimized_out (struct type *type)
   struct value *retval = value::allocate_lazy (type);
 
   retval->mark_bytes_optimized_out (0, type->length ());
-  retval->set_lazy (0);
+  retval->set_lazy (false);
   return retval;
 }
 
@@ -3815,7 +3815,7 @@ value::fetch_lazy_register ()
 
   /* Copy the contents and the unavailability/optimized-out
      meta-data from NEW_VAL to VAL.  */
-  set_lazy (0);
+  set_lazy (false);
   new_val->contents_copy (this, embedded_offset (),
                          new_val->embedded_offset (),
                          type_length_units (type));
@@ -3899,7 +3899,7 @@ value::fetch_lazy ()
   else
     internal_error (_("Unexpected lazy value type."));
 
-  set_lazy (0);
+  set_lazy (false);
 }
 
 /* Implementation of the convenience function $_isvoid.  */
index 92247185cd092ebfab928976dc1e8862a993195b..233f42d32a05615bed6375c9a8944427490e0556 100644 (file)
@@ -133,7 +133,7 @@ private:
   /* Values can only be created via "static constructors".  */
   explicit value (struct type *type_)
     : m_modifiable (true),
-      m_lazy (1),
+      m_lazy (true),
       m_initialized (1),
       m_stack (0),
       m_is_zero (false),
@@ -247,8 +247,8 @@ public:
   void set_embedded_offset (LONGEST val)
   { m_embedded_offset = val; }
 
-  /* If zero, contents of this value are in the contents field.  If
-     nonzero, contents are in inferior.  If the lval field is lval_memory,
+  /* If false, contents of this value are in the contents field.  If
+     true, contents are in inferior.  If the lval field is lval_memory,
      the contents are in inferior memory at location.address plus offset.
      The lval field may also be lval_register.
 
@@ -262,10 +262,10 @@ public:
      element.  If you ever change the way lazy flag is set and reset, be
      sure to consider this use as well!  */
 
-  int lazy () const
+  bool lazy () const
   { return m_lazy; }
 
-  void set_lazy (int val)
+  void set_lazy (bool val)
   { m_lazy = val; }
 
   /* If a value represents a C++ object, then the `type' field gives the
@@ -621,8 +621,8 @@ private:
   /* Is it modifiable?  Only relevant if lval != not_lval.  */
   bool m_modifiable : 1;
 
-  /* If zero, contents of this value are in the contents field.  If
-     nonzero, contents are in inferior.  If the lval field is lval_memory,
+  /* If false, contents of this value are in the contents field.  If
+     true, contents are in inferior.  If the lval field is lval_memory,
      the contents are in inferior memory at location.address plus offset.
      The lval field may also be lval_register.
 
@@ -635,7 +635,7 @@ private:
      or array when the user wants to watch a single struct member or
      array element.  If you ever change the way lazy flag is set and
      reset, be sure to consider this use as well!  */
-  unsigned int m_lazy : 1;
+  bool m_lazy : 1;
 
   /* If value is a variable, is it initialized or not.  */
   unsigned int m_initialized : 1;