}
set_value_component_location (result, val);
result->set_bitsize (val->bitsize ());
- set_value_bitpos (result, value_bitpos (val));
+ result->set_bitpos (val->bitpos ());
if (VALUE_LVAL (result) == lval_memory)
set_value_address (result, value_address (val));
return result;
long new_offset = offset;
set_value_component_location (v, obj);
- set_value_bitpos (v, bit_offset + value_bitpos (obj));
+ v->set_bitpos (bit_offset + obj->bitpos ());
v->set_bitsize (bit_size);
- if (value_bitpos (v) >= HOST_CHAR_BIT)
+ if (v->bitpos () >= HOST_CHAR_BIT)
{
++new_offset;
- set_value_bitpos (v, value_bitpos (v) - HOST_CHAR_BIT);
+ v->set_bitpos (v->bitpos () - HOST_CHAR_BIT);
}
set_value_offset (v, new_offset);
&& (type->code () == TYPE_CODE_FLT
|| type->code () == TYPE_CODE_STRUCT))
{
- int len = (value_bitpos (toval)
+ int len = (toval->bitpos ()
+ bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
int from_size;
gdb_byte *buffer = (gdb_byte *) alloca (len);
ULONGEST from_offset = 0;
if (is_big_endian && is_scalar_type (fromval->type ()))
from_offset = from_size - bits;
- copy_bitwise (buffer, value_bitpos (toval),
+ copy_bitwise (buffer, toval->bitpos (),
value_contents (fromval).data (), from_offset,
bits, is_big_endian);
write_memory_with_notification (to_addr, buffer, len);
LONGEST offset_in_container =
(LONGEST) (value_address (component) - value_address (container));
int bit_offset_in_container =
- value_bitpos (component) - value_bitpos (container);
+ component->bitpos () - container->bitpos ();
int bits;
val = value_cast (component->type (), val);
src_offset = 0;
copy_bitwise ((value_contents_writeable (container).data ()
+ offset_in_container),
- value_bitpos (container) + bit_offset_in_container,
+ container->bitpos () + bit_offset_in_container,
value_contents (val).data (), src_offset, bits, 1);
}
else
copy_bitwise ((value_contents_writeable (container).data ()
+ offset_in_container),
- value_bitpos (container) + bit_offset_in_container,
+ container->bitpos () + bit_offset_in_container,
value_contents (val).data (), 0, bits, 0);
}
/* Handle packed fields. It might be that the field is not packed
relative to its containing structure, but the structure itself is
packed; in this case we must take the bit-field path. */
- if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0 || value_bitpos (arg1) != 0)
+ if (TYPE_FIELD_BITSIZE (arg_type, fieldno) != 0 || arg1->bitpos () != 0)
{
int bit_pos = arg_type->field (fieldno).loc_bitpos ();
int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno);
{
/* Extract the bit parameters out from the bitfield
sub-expression. */
- bitpos = value_bitpos (v);
+ bitpos = v->bitpos ();
bitsize = v->bitsize ();
}
else if (v == result && b->val_bitsize != 0)
if (val_as_value != NULL && just_location)
{
- saved_bitpos = value_bitpos (val_as_value);
+ saved_bitpos = val_as_value->bitpos ();
saved_bitsize = val_as_value->bitsize ();
}
if (v->bitsize ())
{
bits_to_skip += (8 * value_offset (value_parent (v))
- + value_bitpos (v));
+ + v->bitpos ());
if (from != nullptr
&& (type_byte_order (from->type ())
== BFD_ENDIAN_BIG))
bit_offset += 8 * value_offset (value);
if (value->bitsize ())
- bit_offset += value_bitpos (value);
+ bit_offset += value->bitpos ();
for (i = 0; i < c->pieces.size () && bit_length > 0; i++)
{
int bit_length = 8 * type->length ();
LONGEST bit_offset = 8 * value_offset (value);
if (value->bitsize ())
- bit_offset += value_bitpos (value);
+ bit_offset += value->bitpos ();
for (i = 0; i < c->pieces.size () && bit_length > 0; i++)
{
set_internalvar_component (VALUE_INTERNALVAR (toval),
offset,
- value_bitpos (toval),
+ toval->bitpos (),
toval->bitsize (),
fromval);
}
struct value *parent = value_parent (toval);
changed_addr = value_address (parent) + value_offset (toval);
- changed_len = (value_bitpos (toval)
+ changed_len = (toval->bitpos ()
+ toval->bitsize ()
+ HOST_CHAR_BIT - 1)
/ HOST_CHAR_BIT;
read_memory (changed_addr, buffer, changed_len);
modify_field (type, buffer, value_as_long (fromval),
- value_bitpos (toval), toval->bitsize ());
+ toval->bitpos (), toval->bitsize ());
dest_buffer = buffer;
}
else
gdb_byte buffer[sizeof (LONGEST)];
int optim, unavail;
- changed_len = (value_bitpos (toval)
+ changed_len = (toval->bitpos ()
+ toval->bitsize ()
+ HOST_CHAR_BIT - 1)
/ HOST_CHAR_BIT;
}
modify_field (type, buffer, value_as_long (fromval),
- value_bitpos (toval), toval->bitsize ());
+ toval->bitpos (), toval->bitsize ());
put_frame_register_bytes (frame, value_reg, offset,
{buffer, changed_len});
value->m_offset = offset;
}
-LONGEST
-value_bitpos (const struct value *value)
-{
- return value->m_bitpos;
-}
-void
-set_value_bitpos (struct value *value, LONGEST bit)
-{
- value->m_bitpos = bit;
-}
-
struct value *
value_parent (const struct value *value)
{
if (value_lazy (parent))
value_fetch_lazy (parent);
- unpack_value_bitfield (val, value_bitpos (val), val->bitsize (),
+ unpack_value_bitfield (val, val->bitpos (), val->bitsize (),
value_contents_for_printing (parent).data (),
value_offset (val), parent);
}
void set_bitsize (LONGEST bit)
{ m_bitsize = bit; }
+ /* Only used for bitfields; position of start of field. For
+ little-endian targets, it is the position of the LSB. For
+ big-endian targets, it is the position of the MSB. */
+ LONGEST bitpos () const
+ { return m_bitpos; }
+
+ void set_bitpos (LONGEST bit)
+ { m_bitpos = bit; }
+
/* Type of value; either not an lval, or one of the various
different possible kinds of lval. */
ULONGEST m_limited_length = 0;
};
-/* Only used for bitfields; position of start of field. For
- little-endian targets, it is the position of the LSB. For
- big-endian targets, it is the position of the MSB. */
-
-extern LONGEST value_bitpos (const struct value *);
-extern void set_value_bitpos (struct value *, LONGEST bit);
-
/* Only used for bitfields; the containing value. This allows a
single read from the target when displaying multiple
bitfields. */