Remove the byte order parameter to target_read_string
authorTom Tromey <tromey@adacore.com>
Wed, 13 Apr 2022 12:32:28 +0000 (06:32 -0600)
committerTom Tromey <tromey@adacore.com>
Thu, 14 Apr 2022 18:12:34 +0000 (12:12 -0600)
target_read_string takes a byte order parameter, but only uses this to
check whether a given character is zero.  This is readily done without
requiring the parameter, so remove it.

gdb/c-lang.c
gdb/target.c
gdb/valprint.c
gdb/valprint.h

index a7ecf8f91da3e15ae7b23a873645df682f20eae9..be9ee073f58ff6f75b732bb8c30d589a8c75e891 100644 (file)
@@ -353,7 +353,7 @@ c_get_string (struct value *value, gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
        fetchlimit = UINT_MAX;
 
       err = target_read_string (addr, *length, width, fetchlimit,
-                               byte_order, buffer, length);
+                               buffer, length);
       if (err != 0)
        memory_error (TARGET_XFER_E_IO, addr);
     }
index 6542305f0d05a7de1f7ff4359ea20b762b592818..5a416d5ee3a24415991b5c331fe76fafb1f62b67 100644 (file)
@@ -1406,8 +1406,7 @@ target_read_string (CORE_ADDR memaddr, int len, int *bytes_read)
     bytes_read = &ignore;
 
   /* Note that the endian-ness does not matter here.  */
-  int errcode = target_read_string (memaddr, -1, 1, len, BFD_ENDIAN_LITTLE,
-                                   &buffer, bytes_read);
+  int errcode = target_read_string (memaddr, -1, 1, len, &buffer, bytes_read);
   if (errcode != 0)
     return {};
 
index a4c0f7b343d9663858c4fcb7d15657c6ee165ffc..8f9954778c5fdd45ffebeedf63317fb86bc782ef 100644 (file)
@@ -2052,7 +2052,6 @@ partial_memory_read (CORE_ADDR memaddr, gdb_byte *myaddr,
 int
 target_read_string (CORE_ADDR addr, int len, int width,
                    unsigned int fetchlimit,
-                   enum bfd_endian byte_order,
                    gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
                    int *bytes_read)
 {
@@ -2122,12 +2121,15 @@ target_read_string (CORE_ADDR addr, int len, int width,
          limit = bufptr + nfetch * width;
          while (bufptr < limit)
            {
-             unsigned long c;
+             bool found_nonzero = false;
+
+             for (int i = 0; !found_nonzero && i < width; ++i)
+               if (bufptr[i] != 0)
+                 found_nonzero = true;
 
-             c = extract_unsigned_integer (bufptr, width, byte_order);
              addr += width;
              bufptr += width;
-             if (c == 0)
+             if (!found_nonzero)
                {
                  /* We don't care about any error which happened after
                     the NUL terminator.  */
@@ -2733,7 +2735,7 @@ val_print_string (struct type *elttype, const char *encoding,
   fetchlimit = (len == -1 ? options->print_max : std::min ((unsigned) len,
                                                           options->print_max));
 
-  err = target_read_string (addr, len, width, fetchlimit, byte_order,
+  err = target_read_string (addr, len, width, fetchlimit,
                            &buffer, &bytes_read);
 
   addr += bytes_read;
index 2f4a5022b3ee074f25e768c9574b459730022cf0..b12495b10c17628cf1f4ae7cf9d3b12d3148d47f 100644 (file)
@@ -167,7 +167,6 @@ extern void print_function_pointer_address (const struct value_print_options *op
 
 extern int target_read_string (CORE_ADDR addr, int len, int width,
                               unsigned int fetchlimit,
-                              enum bfd_endian byte_order,
                               gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
                               int *bytes_read);