X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fd-valprint.c;h=6d58ecaa6222b3f5dd5fe8265e423c3218cfe331;hb=d55e5aa6b29906346c51ad00e6a9b112590aa294;hp=527c08784ed437b191bec3057953810c8be89e22;hpb=0b30217134add051e159a192066a1e568ebd837f;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/d-valprint.c b/gdb/d-valprint.c index 527c08784e..6d58ecaa62 100644 --- a/gdb/d-valprint.c +++ b/gdb/d-valprint.c @@ -1,6 +1,6 @@ /* Support for printing D values for GDB, the GNU debugger. - Copyright (C) 2008-2012 Free Software Foundation, Inc. + Copyright (C) 2008-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -18,28 +18,31 @@ along with this program. If not, see . */ #include "defs.h" -#include "gdbtypes.h" -#include "gdbcore.h" -#include "d-lang.h" + +/* Local non-gdb includes. */ #include "c-lang.h" +#include "d-lang.h" +#include "gdbcore.h" +#include "gdbtypes.h" + +/* Assuming that TYPE is a TYPE_CODE_STRUCT, verify that TYPE is a + dynamic array, and then print its value to STREAM. Return zero if + TYPE is a dynamic array, non-zero otherwise. */ -/* Assuming that TYPE is a TYPE_CODE_STRUCT, verify that TYPE is - a dynamic array, and then print its value to STREAM. Return - the number of string characters printed, or -1 if TYPE is not - a dynamic array. */ static int -dynamic_array_type (struct type *type, const gdb_byte *valaddr, - int embedded_offset, CORE_ADDR address, +dynamic_array_type (struct type *type, + LONGEST embedded_offset, CORE_ADDR address, struct ui_file *stream, int recurse, - const struct value *val, + struct value *val, const struct value_print_options *options) { if (TYPE_NFIELDS (type) == 2 && TYPE_CODE (TYPE_FIELD_TYPE (type, 0)) == TYPE_CODE_INT && strcmp (TYPE_FIELD_NAME (type, 0), "length") == 0 && strcmp (TYPE_FIELD_NAME (type, 1), "ptr") == 0 - && value_bits_valid (val, TARGET_CHAR_BIT * embedded_offset, - TARGET_CHAR_BIT * TYPE_LENGTH (type))) + && !value_bits_any_optimized_out (val, + TARGET_CHAR_BIT * embedded_offset, + TARGET_CHAR_BIT * TYPE_LENGTH (type))) { CORE_ADDR addr; struct type *elttype; @@ -47,6 +50,7 @@ dynamic_array_type (struct type *type, const gdb_byte *valaddr, struct type *ptr_type; struct value *ival; int length; + const gdb_byte *valaddr = value_contents_for_printing (val); length = unpack_field_as_long (type, valaddr + embedded_offset, 0); @@ -59,36 +63,36 @@ dynamic_array_type (struct type *type, const gdb_byte *valaddr, true_type = lookup_array_range_type (true_type, 0, length - 1); ival = value_at (true_type, addr); + true_type = value_type (ival); - return d_val_print (true_type, - value_contents_for_printing (ival), - value_embedded_offset (ival), addr, - stream, recurse + 1, ival, options); + d_val_print (true_type, + value_embedded_offset (ival), addr, + stream, recurse + 1, ival, options); + return 0; } - return -1; + return 1; } /* Implements the la_val_print routine for language D. */ -int -d_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset, +void +d_val_print (struct type *type, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int recurse, - const struct value *val, + struct value *val, const struct value_print_options *options) { int ret; - CHECK_TYPEDEF (type); + type = check_typedef (type); switch (TYPE_CODE (type)) { case TYPE_CODE_STRUCT: - ret = dynamic_array_type (type, valaddr, embedded_offset, address, + ret = dynamic_array_type (type, embedded_offset, address, stream, recurse, val, options); - if (ret != -1) - break; + if (ret == 0) + break; + /* Fall through. */ default: - ret = c_val_print (type, valaddr, embedded_offset, address, stream, - recurse, val, options); + c_val_print (type, embedded_offset, address, stream, + recurse, val, options); } - - return ret; }