* i386-tdep.c (i386_frame_chain): New function.
authorMark Kettenis <kettenis@gnu.org>
Mon, 16 Apr 2001 13:03:15 +0000 (13:03 +0000)
committerMark Kettenis <kettenis@gnu.org>
Mon, 16 Apr 2001 13:03:15 +0000 (13:03 +0000)
* config/i386/tm-i386.h (FRAME_CHAIN): Redefine in terms of
i386_frame_chain.
(i386_frame_chain): New prototype.

gdb/ChangeLog
gdb/config/i386/tm-i386.h
gdb/i386-tdep.c

index ee3364d4287535d86ff646bfe6e5fe09c898bb59..807aa0b7f8f15c0a5cbc5dd88ecc0afd274c2c30 100644 (file)
@@ -1,3 +1,10 @@
+2001-04-16  Mark Kettenis  <kettenis@gnu.org>
+
+       * i386-tdep.c (i386_frame_chain): New function.
+       * config/i386/tm-i386.h (FRAME_CHAIN): Redefine in terms of
+       i386_frame_chain.
+       (i386_frame_chain): New prototype.
+
 2001-04-14  J.T. Conklin  <jtc@redback.com>
        
        * target.h (target_ops): Removed to_core_file_to_sym_file vector
index a7841b57ed5f2f2884fdd3f8a842aad6fc1a340b..83704413c05cf65cb5ef6fe29db7ebe55f3b37bd 100644 (file)
@@ -323,17 +323,12 @@ extern CORE_ADDR i386_extract_struct_value_address (char *regbuf);
    from the sigcontext structure which is pushed by the kernel on the
    user stack, along with a pointer to it.  */
 
-/* FRAME_CHAIN takes a frame's nominal address and produces the frame's
-   chain-pointer.
-   In the case of the i386, the frame's nominal address
-   is the address of a 4-byte word containing the calling frame's address.  */
-
-#define FRAME_CHAIN(thisframe)  \
-  ((thisframe)->signal_handler_caller \
-   ? (thisframe)->frame \
-   : (!inside_entry_file ((thisframe)->pc) \
-      ? read_memory_unsigned_integer ((thisframe)->frame, 4) \
-      : 0))
+/* Return the chain-pointer for FRAME.  In the case of the i386, the
+   frame's nominal address is the address of a 4-byte word containing
+   the calling frame's address.  */
+
+#define FRAME_CHAIN(frame) i386_frame_chain ((frame))
+extern CORE_ADDR i386_frame_chain (struct frame_info *frame);
 
 /* A macro that tells us whether the function invocation represented
    by FI does not have a frame on the stack associated with it.  If it
index 49cc7966d7abb7cfc6abf71a50dfc520b7487be6..f654d6f3d51df4cbbb39b3a4818498f222f2a184 100644 (file)
@@ -349,6 +349,22 @@ i386_get_frame_setup (CORE_ADDR pc)
   return (-1);
 }
 
+/* Return the chain-pointer for FRAME.  In the case of the i386, the
+   frame's nominal address is the address of a 4-byte word containing
+   the calling frame's address.  */
+
+CORE_ADDR
+i386_frame_chain (struct frame_info *frame)
+{
+  if (frame->signal_handler_caller)
+    return frame->frame;
+
+  if (! inside_entry_file (frame->pc))
+    return read_memory_unsigned_integer (frame->frame, 4);
+
+  return 0;
+}
+
 /* Return number of args passed to a frame.
    Can return -1, meaning no way to tell.  */
 
This page took 0.029391 seconds and 4 git commands to generate.