diff options
author | Sanimir Agovic <sanimir.agovic@intel.com> | 2013-10-09 15:28:22 +0100 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2014-04-14 09:10:44 -0700 |
commit | 80180f796d366d230822c07a15aa68971abf9d77 (patch) | |
tree | 469ba38c588846007714261c6985f6f7866e2688 /gdb/value.c | |
parent | 41f1ada5d2d4cff7a235644661ec30de156fd038 (diff) | |
download | gdb-80180f796d366d230822c07a15aa68971abf9d77.zip gdb-80180f796d366d230822c07a15aa68971abf9d77.tar.gz gdb-80180f796d366d230822c07a15aa68971abf9d77.tar.bz2 |
type: add c99 variable length array support
The dwarf standard allow certain attributes to be expressed as dwarf
expressions rather than constants. For instance upper-/lowerbound attributes.
In case of a c99 variable length array the upperbound is a dynamic attribute.
With this change c99 vla behave the same as with static arrays.
1| void foo (size_t n) {
2| int ary[n];
3| memset(ary, 0, sizeof(ary));
4| }
(gdb) print ary
$1 = {0 <repeats 42 times>}
gdb/ChangeLog:
* dwarf2loc.c (dwarf2_locexpr_baton_eval): New function.
(dwarf2_evaluate_property): New function.
* dwarf2loc.h (dwarf2_evaluate_property): New function prototype.
* dwarf2read.c (attr_to_dynamic_prop): New function.
(read_subrange_type): Use attr_to_dynamic_prop to read high bound
attribute.
* gdbtypes.c: Include dwarf2loc.h.
(is_dynamic_type): New function.
(resolve_dynamic_type): New function.
(resolve_dynamic_bounds): New function.
(get_type_length): New function.
(check_typedef): Use get_type_length to compute type length.
* gdbtypes.h (TYPE_HIGH_BOUND_KIND): New macro.
(TYPE_LOW_BOUND_KIND): New macro.
(is_dynamic_type): New function prototype.
* value.c (value_from_contents_and_address): Call resolve_dynamic_type
to resolve dynamic properties of the type. Update comment.
* valops.c (get_value_at, value_at, value_at_lazy): Update comment.
Diffstat (limited to 'gdb/value.c')
-rw-r--r-- | gdb/value.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/gdb/value.c b/gdb/value.c index 27043ee..9cc5e44 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -3319,32 +3319,39 @@ value_from_ulongest (struct type *type, ULONGEST num) /* Create a value representing a pointer of type TYPE to the address - ADDR. */ + ADDR. The type of the created value may differ from the passed + type TYPE. Make sure to retrieve the returned values's new type + after this call e.g. in case of an variable length array. */ + struct value * value_from_pointer (struct type *type, CORE_ADDR addr) { - struct value *val = allocate_value (type); + struct type *resolved_type = resolve_dynamic_type (type, addr); + struct value *val = allocate_value (resolved_type); - store_typed_address (value_contents_raw (val), check_typedef (type), addr); + store_typed_address (value_contents_raw (val), + check_typedef (resolved_type), addr); return val; } /* Create a value of type TYPE whose contents come from VALADDR, if it is non-null, and whose memory address (in the inferior) is - ADDRESS. */ + ADDRESS. The type of the created value may differ from the passed + type TYPE. Make sure to retrieve values new type after this call. */ struct value * value_from_contents_and_address (struct type *type, const gdb_byte *valaddr, CORE_ADDR address) { + struct type *resolved_type = resolve_dynamic_type (type, address); struct value *v; if (valaddr == NULL) - v = allocate_value_lazy (type); + v = allocate_value_lazy (resolved_type); else - v = value_from_contents (type, valaddr); + v = value_from_contents (resolved_type, valaddr); set_value_address (v, address); VALUE_LVAL (v) = lval_memory; return v; |