Turn some value_contents functions into methods
This turns value_contents_raw, value_contents_writeable, and value_contents_all_raw into methods on value. The remaining functions will be changed later in the series; they were a bit trickier and so I didn't include them in this patch. Approved-By: Simon Marchi <simon.marchi@efficios.com>
This commit is contained in:
parent
ee7bb2944b
commit
bbe912ba88
32 changed files with 142 additions and 145 deletions
|
@ -164,7 +164,7 @@ rw_pieced_value (value *v, value *from, bool check_optimized)
|
|||
if (check_optimized)
|
||||
v_contents = nullptr;
|
||||
else
|
||||
v_contents = value_contents_raw (v).data ();
|
||||
v_contents = v->contents_raw ().data ();
|
||||
from_contents = nullptr;
|
||||
}
|
||||
|
||||
|
@ -1026,7 +1026,7 @@ dwarf_expr_context::fetch_result (struct type *type, struct type *subobj_type,
|
|||
subobj_offset += n - max;
|
||||
|
||||
copy (value_contents_all (val).slice (subobj_offset, len),
|
||||
value_contents_raw (retval));
|
||||
retval->contents_raw ());
|
||||
}
|
||||
break;
|
||||
|
||||
|
@ -1038,7 +1038,7 @@ dwarf_expr_context::fetch_result (struct type *type, struct type *subobj_type,
|
|||
invalid_synthetic_pointer ();
|
||||
|
||||
retval = value::allocate (subobj_type);
|
||||
bfd_byte *contents = value_contents_raw (retval).data ();
|
||||
bfd_byte *contents = retval->contents_raw ().data ();
|
||||
memcpy (contents, this->m_data + subobj_offset, n);
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue