asintl.h/bucomm.h/ld.h: Prevent the inclusion of <libintl.h> from the Solaris
[binutils-gdb.git] / gdb / jv-valprint.c
index 040b3038000e9a99004a1972b4e6a85169f2e4b9..7e24e566cbb09d539eb43f97eda06a93514486d0 100644 (file)
@@ -72,7 +72,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format,
   if (TYPE_CODE (type) == TYPE_CODE_STRUCT && name != NULL
       && (i = strlen (name), name[i - 1] == ']'))
     {
-      char buf4[4];
+      gdb_byte buf4[4];
       long length;
       unsigned int things_printed = 0;
       int reps;
@@ -93,7 +93,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format,
 
          while (i < length && things_printed < print_max)
            {
-             char *buf;
+             gdb_byte *buf;
 
              buf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT);
              fputs_filtered (", ", stream);
@@ -162,16 +162,16 @@ java_value_print (struct value *val, struct ui_file *stream, int format,
                }
              else
                {
-                 VALUE_LAZY (v) = 1;
-                 v->offset = 0;
+                 set_value_lazy (v, 1);
+                 set_value_offset (v, 0);
                }
 
-             next_v->offset = value_offset (v);
+             set_value_offset (next_v, value_offset (v));
 
              for (reps = 1; i + reps < length; reps++)
                {
-                 VALUE_LAZY (next_v) = 1;
-                 next_v->offset += TYPE_LENGTH (el_type);
+                 set_value_lazy (next_v, 1);
+                 set_value_offset (next_v, value_offset (next_v) + TYPE_LENGTH (el_type));
                  if (memcmp (value_contents (v), value_contents (next_v),
                              TYPE_LENGTH (el_type)) != 0)
                    break;
@@ -182,8 +182,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,
-                        stream, format, 2, 1, pretty);
+             common_val_print (v, stream, format, 2, 1, pretty);
 
              things_printed++;
              i += reps;
@@ -235,8 +234,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format,
       return 0;
     }
 
-  return (val_print (type, value_contents (val), 0, address,
-                    stream, format, 1, 0, pretty));
+  return common_val_print (val, stream, format, 1, 0, pretty);
 }
 
 /* TYPE, VALADDR, ADDRESS, STREAM, RECURSE, and PRETTY have the
@@ -246,7 +244,7 @@ java_value_print (struct value *val, struct ui_file *stream, int format,
    should not print, or zero if called from top level.  */
 
 static void
-java_print_value_fields (struct type *type, const bfd_byte *valaddr,
+java_print_value_fields (struct type *type, const gdb_byte *valaddr,
                         CORE_ADDR address, struct ui_file *stream,
                         int format, int recurse, enum val_prettyprint pretty)
 {
@@ -267,7 +265,7 @@ java_print_value_fields (struct type *type, const bfd_byte *valaddr,
          int boffset;
          struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
          char *basename = TYPE_NAME (baseclass);
-         const bfd_byte *base_valaddr;
+         const gdb_byte *base_valaddr;
 
          if (BASETYPE_VIA_VIRTUAL (type, i))
            continue;
@@ -384,8 +382,7 @@ java_print_value_fields (struct type *type, const bfd_byte *valaddr,
                  v = value_from_longest (TYPE_FIELD_TYPE (type, i),
                                   unpack_field_as_long (type, valaddr, i));
 
-                 val_print (TYPE_FIELD_TYPE (type, i), value_contents (v), 0,
-                            0, stream, format, 0, recurse + 1, pretty);
+                 common_val_print (v, stream, format, 0, recurse + 1, pretty);
                }
            }
          else
@@ -404,9 +401,8 @@ java_print_value_fields (struct type *type, const bfd_byte *valaddr,
                      struct type *t = check_typedef (value_type (v));
                      if (TYPE_CODE (t) == TYPE_CODE_STRUCT)
                        v = value_addr (v);
-                     val_print (value_type (v),
-                                value_contents (v), 0, VALUE_ADDRESS (v),
-                                stream, format, 0, recurse + 1, pretty);
+                     common_val_print (v, stream, format, 0, recurse + 1,
+                                       pretty);
                    }
                }
              else if (TYPE_FIELD_TYPE (type, i) == NULL)
@@ -445,7 +441,7 @@ java_print_value_fields (struct type *type, const bfd_byte *valaddr,
    The PRETTY parameter controls prettyprinting.  */
 
 int
-java_val_print (struct type *type, const bfd_byte *valaddr,
+java_val_print (struct type *type, const gdb_byte *valaddr,
                int embedded_offset, CORE_ADDR address,
                struct ui_file *stream, int format, int deref_ref,
                int recurse, enum val_prettyprint pretty)