* amd64-tdep.c (amd64_init_frame_cache): New function.
authorDaniel Jacobowitz <drow@false.org>
Tue, 27 Mar 2007 15:31:35 +0000 (15:31 +0000)
committerDaniel Jacobowitz <drow@false.org>
Tue, 27 Mar 2007 15:31:35 +0000 (15:31 +0000)
(amd64_alloc_frame_cache, amd64_skip_prologue): Use it.

gdb/ChangeLog
gdb/amd64-tdep.c

index 2f682ef3335a01f52fa90086e9c00c37c2739989..bdb281fa4c68f724f116e1dc507432ff246653fd 100644 (file)
@@ -1,3 +1,8 @@
+2007-03-27  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * amd64-tdep.c (amd64_init_frame_cache): New function.
+       (amd64_alloc_frame_cache, amd64_skip_prologue): Use it.
+
 2007-03-26  Nigel Stephens  <nigel@mips.com>
             Maciej W. Rozycki  <macro@mips.com>
 
index 8c3e887ae24c1d26e54d60a74cbaa809a33012b2..de64f8d794d0d09f0205029e1d8b56e1f928a667 100644 (file)
@@ -726,16 +726,13 @@ struct amd64_frame_cache
   int frameless_p;
 };
 
-/* Allocate and initialize a frame cache.  */
+/* Initialize a frame cache.  */
 
-static struct amd64_frame_cache *
-amd64_alloc_frame_cache (void)
+static void
+amd64_init_frame_cache (struct amd64_frame_cache *cache)
 {
-  struct amd64_frame_cache *cache;
   int i;
 
-  cache = FRAME_OBSTACK_ZALLOC (struct amd64_frame_cache);
-
   /* Base address.  */
   cache->base = 0;
   cache->sp_offset = -8;
@@ -749,7 +746,17 @@ amd64_alloc_frame_cache (void)
 
   /* Frameless until proven otherwise.  */
   cache->frameless_p = 1;
+}
 
+/* Allocate and initialize a frame cache.  */
+
+static struct amd64_frame_cache *
+amd64_alloc_frame_cache (void)
+{
+  struct amd64_frame_cache *cache;
+
+  cache = FRAME_OBSTACK_ZALLOC (struct amd64_frame_cache);
+  amd64_init_frame_cache (cache);
   return cache;
 }
 
@@ -810,6 +817,7 @@ amd64_skip_prologue (CORE_ADDR start_pc)
   struct amd64_frame_cache cache;
   CORE_ADDR pc;
 
+  amd64_init_frame_cache (&cache);
   pc = amd64_analyze_prologue (start_pc, 0xffffffffffffffffLL, &cache);
   if (cache.frameless_p)
     return start_pc;
This page took 0.03758 seconds and 4 git commands to generate.