2003-10-31 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Fri, 31 Oct 2003 23:47:17 +0000 (23:47 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 31 Oct 2003 23:47:17 +0000 (23:47 +0000)
* avr-tdep.c (avr_frame_this_id): Do not call
deprecated_inside_entry_file.
* m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
* m32r-tdep.c (m32r_frame_this_id): Ditto.
* d10v-tdep.c (d10v_frame_this_id): Ditto.
* arm-tdep.c (arm_prologue_this_id): Ditto.
* alpha-tdep.c (alpha_heuristic_frame_this_id): Ditto.

gdb/ChangeLog
gdb/alpha-tdep.c
gdb/arm-tdep.c
gdb/avr-tdep.c
gdb/d10v-tdep.c
gdb/m32r-tdep.c
gdb/m68hc11-tdep.c

index a53260ab0b3d60f859f596c4282590cde2979d5b..3ffe724f61a3a0eec4cfc09e92a01bfc862e49a6 100644 (file)
@@ -1,3 +1,13 @@
+2003-10-31  Andrew Cagney  <cagney@redhat.com>
+
+       * avr-tdep.c (avr_frame_this_id): Do not call
+       deprecated_inside_entry_file.
+       * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
+       * m32r-tdep.c (m32r_frame_this_id): Ditto.
+       * d10v-tdep.c (d10v_frame_this_id): Ditto.
+       * arm-tdep.c (arm_prologue_this_id): Ditto.
+       * alpha-tdep.c (alpha_heuristic_frame_this_id): Ditto.
+
 2003-10-31  Jim Blandy  <jimb@redhat.com>
 
        * elfread.c (elf_symtab_read): Allocate correct number of tail
index ddf27448380e897d1b8425f7bc3096e8c2e4874d..325cf19b7d4c92f8e8c8d2215d4544f1a354689b 100644 (file)
@@ -1136,11 +1136,6 @@ alpha_heuristic_frame_this_id (struct frame_info *next_frame,
   struct alpha_heuristic_unwind_cache *info
     = alpha_heuristic_frame_unwind_cache (next_frame, this_prologue_cache, 0);
 
-  /* This is meant to halt the backtrace at "_start".  Make sure we
-     don't halt it at a generic dummy frame. */
-  if (deprecated_inside_entry_file (info->start_pc))
-    return;
-
   *this_id = frame_id_build (info->vfp, info->start_pc);
 }
 
index 12e4371d3b24305ac9dd26bff2df485b744c822e..6faca9fdb03c6482506ac2e62cec76b2f24bfe2c 100644 (file)
@@ -994,7 +994,7 @@ arm_prologue_this_id (struct frame_info *next_frame,
 
   /* This is meant to halt the backtrace at "_start".  Make sure we
      don't halt it at a generic dummy frame. */
-  if (func <= LOWEST_PC || deprecated_inside_entry_file (func))
+  if (func <= LOWEST_PC)
     return;
 
   /* If we've hit a wall, stop.  */
index e9c5d428d35364481a0703dc4e405ebf0fcd7216..9ef84c0b6f1a1b268843d1e1e5584d68cacef66a 100644 (file)
@@ -970,11 +970,6 @@ avr_frame_this_id (struct frame_info *next_frame,
   /* The FUNC is easy.  */
   func = frame_func_unwind (next_frame);
 
-  /* This is meant to halt the backtrace at "_start".  Make sure we
-     don't halt it at a generic dummy frame. */
-  if (deprecated_inside_entry_file (func))
-    return;
-
   /* Hopefully the prologue analysis either correctly determined the
      frame's base (which is the SP from the previous frame), or set
      that base to "NULL".  */
index 6fde9e97bdec712acadc349f83dfedcefe4dc5ed..db30460f1615c682a115df395ba9e2264b6e4f66 100644 (file)
@@ -1405,11 +1405,6 @@ d10v_frame_this_id (struct frame_info *next_frame,
   /* The FUNC is easy.  */
   func = frame_func_unwind (next_frame);
 
-  /* This is meant to halt the backtrace at "_start".  Make sure we
-     don't halt it at a generic dummy frame.  */
-  if (func <= IMEM_START || deprecated_inside_entry_file (func))
-    return;
-
   /* Hopefully the prologue analysis either correctly determined the
      frame's base (which is the SP from the previous frame), or set
      that base to "NULL".  */
index 15529b5a414a6b0967aaacabb0c256cac0c368d0..b2bc71f5b970f9835da97d4aac128b188bbaaebe 100644 (file)
@@ -831,11 +831,6 @@ m32r_frame_this_id (struct frame_info *next_frame,
   /* The FUNC is easy.  */
   func = frame_func_unwind (next_frame);
 
-  /* This is meant to halt the backtrace at "_start".  Make sure we
-     don't halt it at a generic dummy frame. */
-  if (deprecated_inside_entry_file (func))
-    return;
-
   /* Check if the stack is empty.  */
   msym_stack = lookup_minimal_symbol ("_stack", NULL, NULL);
   if (msym_stack && info->base == SYMBOL_VALUE_ADDRESS (msym_stack))
index ad68b6024f595a8cacf8f3b7a496a18ad5990b52..e8217226929b9ee3f63b94535e20f913bea04b49 100644 (file)
@@ -894,11 +894,6 @@ m68hc11_frame_this_id (struct frame_info *next_frame,
   /* The FUNC is easy.  */
   func = frame_func_unwind (next_frame);
 
-  /* This is meant to halt the backtrace at "_start".  Make sure we
-     don't halt it at a generic dummy frame. */
-  if (deprecated_inside_entry_file (func))
-    return;
-
   /* Hopefully the prologue analysis either correctly determined the
      frame's base (which is the SP from the previous frame), or set
      that base to "NULL".  */