* valprint.c (val_print_string): If errcode is set, always print
authorJim Kingdon <jkingdon@engr.sgi.com>
Mon, 28 Feb 1994 22:44:21 +0000 (22:44 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Mon, 28 Feb 1994 22:44:21 +0000 (22:44 +0000)
an error, regardless of force_ellipsis.  In the non-EIO case,
just print the error message rather than calling error().  Don't
access *(bufptr-1) if bufptr points to the start of the buffer.
When looking for '\0', don't increment bufptr and addr if bufptr
started out already at limit.  If an error happens on fetching the
first character, don't print the string.

gdb/ChangeLog
gdb/valprint.c

index 3fec61e0a84c172f865430fcfa1cf5a69464f5e5..d0c30b31245b28d8db01eb2eeca1799cead4c57c 100644 (file)
@@ -1,3 +1,13 @@
+Mon Feb 28 12:40:46 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
+
+       * valprint.c (val_print_string): If errcode is set, always print
+       an error, regardless of force_ellipsis.  In the non-EIO case,
+       just print the error message rather than calling error().  Don't
+       access *(bufptr-1) if bufptr points to the start of the buffer.
+       When looking for '\0', don't increment bufptr and addr if bufptr
+       started out already at limit.  If an error happens on fetching the
+       first character, don't print the string.
+
 Sun Feb 27 21:05:06 1994  Jim Kingdon  (kingdon@deneb.cygnus.com)
 
        * config/m68k/tm-apollo68b.h: Remove HAVE_68881 define; it is
index c5bd039db585223c799e769a94ac7aef9e7c3ea2..7db3e3da62b23c901b834f31862bf8843fa682a1 100644 (file)
@@ -332,7 +332,7 @@ print_longest (stream, format, use_local, val_long)
   vbot = (long) val_long;
 
   if ((format == 'd' && (val_long < INT_MIN || val_long > INT_MAX))
-      || ((format == 'u' || format == 'x') && val_long > UINT_MAX))
+      || ((format == 'u' || format == 'x') && (unsigned long long)val_long > UINT_MAX))
     {
       fprintf_filtered (stream, "0x%lx%08lx", vtop, vbot);
       return;
@@ -728,6 +728,10 @@ val_print_string (addr, len, stream)
   struct cleanup *old_chain = NULL; /* Top of the old cleanup chain. */
   char peekchar;               /* Place into which we can read one char. */
 
+  /* If errcode is non-zero, this is the address which failed to read
+     successfully.  */
+  CORE_ADDR err_addr;
+
   /* First we need to figure out the limit on the number of characters we are
      going to attempt to fetch and print.  This is actually pretty simple.  If
      LEN is nonzero, then the limit is the minimum of LEN and print_max.  If
@@ -773,6 +777,7 @@ val_print_string (addr, len, stream)
 
     /* Read as much as we can. */
     nfetch = target_read_memory_partial (addr, bufptr, nfetch, &errcode);
+    err_addr = addr + nfetch;
     if (len != 0)
       {
        addr += nfetch;
@@ -786,24 +791,30 @@ val_print_string (addr, len, stream)
           after the null byte, or at the next character after the end of
           the buffer. */
        limit = bufptr + nfetch;
-       do {
-         addr++;
-         bufptr++;
-       } while (bufptr < limit && *(bufptr - 1) != '\0');
+       while (bufptr < limit)
+         {
+           ++addr;
+           ++bufptr;
+           if (bufptr[-1] == '\0')
+             break;
+         }
       }
   } while (errcode == 0                                        /* no error */
           && bufsize < fetchlimit                      /* no overrun */
           && !(len == 0 && *(bufptr - 1) == '\0'));    /* no null term */
 
+  /* bufptr and addr now point immediately beyond the last byte which we
+     consider part of the string (including a '\0' which ends the string).  */
+
   /* We now have either successfully filled the buffer to fetchlimit, or
      terminated early due to an error or finding a null byte when LEN is
-     zero. */
+     zero.  */
 
-  if (len == 0 && *(bufptr - 1) != '\0')
+  if (len == 0 && bufptr > buffer && *(bufptr - 1) != '\0')
     {
       /* We didn't find a null terminator we were looking for.  Attempt
         to peek at the next character.  If not successful, or it is not
-        a null byte, then force ellipsis to be printed. */
+        a null byte, then force ellipsis to be printed.  */
       if (target_read_memory (addr, &peekchar, 1) != 0 || peekchar != '\0')
        {
          force_ellipsis = 1;
@@ -818,14 +829,20 @@ val_print_string (addr, len, stream)
     }
 
   QUIT;
-  
-  if (addressprint)
+
+  /* If we get an error before fetching anything, don't print a string.
+     But if we fetch something and then get an error, print the string
+     and then the error message.  */
+  if (errcode == 0 || bufptr > buffer)
     {
-      fputs_filtered (" ", stream);
+      if (addressprint)
+       {
+         fputs_filtered (" ", stream);
+       }
+      LA_PRINT_STRING (stream, buffer, bufptr - buffer, force_ellipsis);
     }
-  LA_PRINT_STRING (stream, buffer, bufptr - buffer, force_ellipsis);
-  
-  if (errcode != 0 && force_ellipsis)
+
+  if (errcode != 0)
     {
       if (errcode == EIO)
        {
@@ -835,10 +852,9 @@ val_print_string (addr, len, stream)
        }
       else
        {
-         /* FIXME-32x64: assumes addr fits in a long.  */
-         error ("Error reading memory address 0x%lx: %s.",
-                (unsigned long) addr,
-                safe_strerror (errcode));
+         fprintf_filtered (stream, " <Error reading address ");
+         print_address_numeric (addr, stream);
+         fprintf_filtered (stream, ": %s>", safe_strerror (errcode));
        }
     }
   gdb_flush (stream);
This page took 0.032067 seconds and 4 git commands to generate.