gdb/rs6000: Read backchain as unsigned.
authorMarcin Kościelnicki <koriakin@0x04.net>
Sun, 6 Mar 2016 15:38:52 +0000 (16:38 +0100)
committerMarcin Kościelnicki <koriakin@0x04.net>
Wed, 9 Mar 2016 17:43:54 +0000 (18:43 +0100)
Previously, backchain was read as a signed quantity, resulting in
addresses like 0xfffffffffffeded0 instead of 0xfffeded0 returned by
unwinder on 32-bit powerpc.  While normally such addresses are masked
off, this causes problems for tracepoints, since 0xfffffffffffeded0
is considered unavailable.

Fixes a test failure in gdb.trace/entry-values.exp.

gdb/ChangeLog:

* corefile.c (safe_read_memory_unsigned_integer): New function.
* gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
* rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.

gdb/ChangeLog
gdb/corefile.c
gdb/gdbcore.h
gdb/rs6000-tdep.c

index 74dec87..83eef37 100644 (file)
@@ -1,5 +1,11 @@
 2016-03-09  Marcin Kościelnicki  <koriakin@0x04.net>
 
 2016-03-09  Marcin Kościelnicki  <koriakin@0x04.net>
 
+       * corefile.c (safe_read_memory_unsigned_integer): New function.
+       * gdbcore.h (safe_read_memory_unsigned_integer): New prototype.
+       * rs6000-tdep.c (rs6000_frame_cache): Read backchain as unsigned.
+
+2016-03-09  Marcin Kościelnicki  <koriakin@0x04.net>
+
        * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
        (rs6000_gen_return_address): New function.
        (rs6000_gdbarch_init): Wire in the above.
        * rs6000-tdep.c: Add "ax.h" and "ax-gdb.h" includes.
        (rs6000_gen_return_address): New function.
        (rs6000_gdbarch_init): Wire in the above.
index dbdbafc..5ad4d40 100644 (file)
@@ -306,6 +306,24 @@ safe_read_memory_integer (CORE_ADDR memaddr, int len,
   return 1;
 }
 
   return 1;
 }
 
+/* Read memory at MEMADDR of length LEN and put the contents in
+   RETURN_VALUE.  Return 0 if MEMADDR couldn't be read and non-zero
+   if successful.  */
+
+int
+safe_read_memory_unsigned_integer (CORE_ADDR memaddr, int len,
+                                  enum bfd_endian byte_order,
+                                  ULONGEST *return_value)
+{
+  gdb_byte buf[sizeof (ULONGEST)];
+
+  if (target_read_memory (memaddr, buf, len))
+    return 0;
+
+  *return_value = extract_unsigned_integer (buf, len, byte_order);
+  return 1;
+}
+
 LONGEST
 read_memory_integer (CORE_ADDR memaddr, int len,
                     enum bfd_endian byte_order)
 LONGEST
 read_memory_integer (CORE_ADDR memaddr, int len,
                     enum bfd_endian byte_order)
index 5db80e5..8b101bc 100644 (file)
@@ -76,6 +76,9 @@ extern int safe_read_memory_integer (CORE_ADDR memaddr, int len,
 extern ULONGEST read_memory_unsigned_integer (CORE_ADDR memaddr,
                                              int len,
                                              enum bfd_endian byte_order);
 extern ULONGEST read_memory_unsigned_integer (CORE_ADDR memaddr,
                                              int len,
                                              enum bfd_endian byte_order);
+extern int safe_read_memory_unsigned_integer (CORE_ADDR memaddr, int len,
+                                             enum bfd_endian byte_order,
+                                             ULONGEST *return_value);
 
 /* Read an integer from debugged code memory, given address,
    number of bytes, and byte order for code.  */
 
 /* Read an integer from debugged code memory, given address,
    number of bytes, and byte order for code.  */
index 565c620..2460eb5 100644 (file)
@@ -3336,10 +3336,10 @@ rs6000_frame_cache (struct frame_info *this_frame, void **this_cache)
   if (!fdata.frameless)
     {
       /* Frameless really means stackless.  */
   if (!fdata.frameless)
     {
       /* Frameless really means stackless.  */
-      LONGEST backchain;
+      ULONGEST backchain;
 
 
-      if (safe_read_memory_integer (cache->base, wordsize,
-                                   byte_order, &backchain))
+      if (safe_read_memory_unsigned_integer (cache->base, wordsize,
+                                            byte_order, &backchain))
         cache->base = (CORE_ADDR) backchain;
     }
 
         cache->base = (CORE_ADDR) backchain;
     }