frame: add skip_tailcall_frames
authorMarkus Metzger <markus.t.metzger@intel.com>
Fri, 5 Feb 2016 08:32:53 +0000 (09:32 +0100)
committerMarkus Metzger <markus.t.metzger@intel.com>
Fri, 12 Feb 2016 08:44:42 +0000 (09:44 +0100)
Add a new function skip_tailcall_frames to skip TAILCALL_FRAME frames.

gdb/
* frame.h (skip_tailcall_frames): New.
* frame.c (skip_tailcall_frames): New.
(frame_pop): Call skip_tailcall_frames.
* infcmd.c (finish_command): Call skip_tailcall_frames.

gdb/ChangeLog
gdb/frame.c
gdb/frame.h
gdb/infcmd.c

index 5edafdfa3552feaef903d072c2be032c738e41dc..d21bb3f53de449bcf105a6437cc6dd3f33dadc68 100644 (file)
@@ -1,3 +1,10 @@
+2016-02-12  Markus Metzger  <markus.t.metzger@intel.com>
+
+       * frame.h (skip_tailcall_frames): New.
+       * frame.c (skip_tailcall_frames): New.
+       (frame_pop): Call skip_tailcall_frames.
+       * infcmd.c (finish_command): Call skip_tailcall_frames.
+
 2016-02-11  Pedro Alves  <palves@redhat.com>
 
        * Makefile.in (check-parallel): New rule.
index 48c9b33cf3e7546bc47305a8cd7a303a811943a3..b7832c7fc3a9e2ff175b6ec140bd8f3a61c90ae4 100644 (file)
@@ -438,6 +438,17 @@ skip_artificial_frames (struct frame_info *frame)
   return frame;
 }
 
+/* See frame.h.  */
+
+struct frame_info *
+skip_tailcall_frames (struct frame_info *frame)
+{
+  while (get_frame_type (frame) == TAILCALL_FRAME)
+    frame = get_prev_frame (frame);
+
+  return frame;
+}
+
 /* Compute the frame's uniq ID that can be used to, later, re-find the
    frame.  */
 
@@ -972,8 +983,7 @@ frame_pop (struct frame_info *this_frame)
 
   /* Ignore TAILCALL_FRAME type frames, they were executed already before
      entering THISFRAME.  */
-  while (get_frame_type (prev_frame) == TAILCALL_FRAME)
-    prev_frame = get_prev_frame (prev_frame);
+  prev_frame = skip_tailcall_frames (prev_frame);
 
   /* Make a copy of all the register values unwound from this frame.
      Save them in a scratch buffer so that there isn't a race between
index 2e05dfad70a3bc74f808cc75bb8da82453a08105..7e8b01e9b998f3972b6d36782018ade96c21ca7e 100644 (file)
@@ -820,5 +820,9 @@ extern int frame_unwinder_is (struct frame_info *fi,
 
 extern enum language get_frame_language (struct frame_info *frame);
 
+/* Return the first non-tailcall frame above FRAME or FRAME if it is not a
+   tailcall frame.  */
+
+extern struct frame_info *skip_tailcall_frames (struct frame_info *frame);
 
 #endif /* !defined (FRAME_H)  */
index df13896a118ce08e4038071a3132387ff8de460a..930dc6134dd1da89e3dfdcd6cbc50d2ff5283d70 100644 (file)
@@ -2002,8 +2002,7 @@ finish_command (char *arg, int from_tty)
 
   /* Ignore TAILCALL_FRAME type frames, they were executed already before
      entering THISFRAME.  */
-  while (get_frame_type (frame) == TAILCALL_FRAME)
-    frame = get_prev_frame (frame);
+  frame = skip_tailcall_frames (frame);
 
   /* Find the function we will return from.  */