diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-11-12 21:45:08 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-11-12 21:45:08 +0000 |
commit | df407dfe2e8452c0a3edfcf50d55942ff0273433 (patch) | |
tree | 11b770a7071b50d36d54f0e817d8c8c4f60ce076 /gdb/jv-valprint.c | |
parent | 69e5711542042a5b591907f8f96d28fd8d2c3c17 (diff) | |
download | gdb-df407dfe2e8452c0a3edfcf50d55942ff0273433.zip gdb-df407dfe2e8452c0a3edfcf50d55942ff0273433.tar.gz gdb-df407dfe2e8452c0a3edfcf50d55942ff0273433.tar.bz2 |
2004-11-12 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_TYPE, VALUE_NEXT, VALUE_OFFSET, VALUE_BITSIZE)
(VALUE_BITPOS): Delete.
(value_type, value_offset, value_bitsize, value_bitpos): Declare.
* value.c (value_type, value_offset, value_bitpos)
(value_bitsize): New functions. Update references.
* arm-tdep.c, gnu-v3-abi.c, hpacc-abi.c, gnu-v2-abi.c: Update.
* f-valprint.c, cp-valprint.c, c-valprint.c: Update.
* ada-valprint.c, typeprint.c, scm-valprint.c, scm-exp.c: Update.
* p-valprint.c, jv-valprint.c, jv-lang.c, varobj.c: Update.
* objc-lang.c, ada-lang.c, std-regs.c, stack.c: Update.
* infcall.c, linespec.c, printcmd.c, valarith.c: Update.
* valops.c, eval.c, findvar.c, breakpoint.c: Update.
* tracepoint.c, ax-gdb.c, mi/mi-main.c, cli/cli-dump.c:
* rs6000-tdep.c, ppc-sysv-tdep.c: Update.
Diffstat (limited to 'gdb/jv-valprint.c')
-rw-r--r-- | gdb/jv-valprint.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/jv-valprint.c b/gdb/jv-valprint.c index 03e5cdd..3de15ec 100644 --- a/gdb/jv-valprint.c +++ b/gdb/jv-valprint.c @@ -52,8 +52,8 @@ java_value_print (struct value *val, struct ui_file *stream, int format, int i; char *name; - type = VALUE_TYPE (val); - address = VALUE_ADDRESS (val) + VALUE_OFFSET (val); + type = value_type (val); + address = VALUE_ADDRESS (val) + value_offset (val); if (is_object_type (type)) { @@ -170,15 +170,15 @@ java_value_print (struct value *val, struct ui_file *stream, int format, else { VALUE_LAZY (v) = 1; - VALUE_OFFSET (v) = 0; + v->offset = 0; } - VALUE_OFFSET (next_v) = VALUE_OFFSET (v); + next_v->offset = value_offset (v); for (reps = 1; i + reps < length; reps++) { VALUE_LAZY (next_v) = 1; - VALUE_OFFSET (next_v) += TYPE_LENGTH (el_type); + next_v->offset += TYPE_LENGTH (el_type); if (memcmp (VALUE_CONTENTS (v), VALUE_CONTENTS (next_v), TYPE_LENGTH (el_type)) != 0) break; @@ -189,7 +189,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format, else fprintf_filtered (stream, "%d..%d: ", i, i + reps - 1); - val_print (VALUE_TYPE (v), VALUE_CONTENTS (v), 0, 0, + val_print (value_type (v), VALUE_CONTENTS (v), 0, 0, stream, format, 2, 1, pretty); things_printed++; @@ -408,10 +408,10 @@ java_print_value_fields (struct type *type, char *valaddr, CORE_ADDR address, fputs_filtered ("<optimized out>", stream); else { - struct type *t = check_typedef (VALUE_TYPE (v)); + struct type *t = check_typedef (value_type (v)); if (TYPE_CODE (t) == TYPE_CODE_STRUCT) v = value_addr (v); - val_print (VALUE_TYPE (v), + val_print (value_type (v), VALUE_CONTENTS (v), 0, VALUE_ADDRESS (v), stream, format, 0, recurse + 1, pretty); } |