Blame SOURCES/gdb-6.3-ppc64syscall-20040622.patch

7a6771
2004-06-22  Andrew Cagney  <cagney@gnu.org>
7a6771
7a6771
	* rs6000-tdep.c (struct rs6000_framedata): Add field "func_start".
7a6771
	(skip_prologue): Delete local variable "orig_pc", use
7a6771
	"func_start".  Add local variable "num_skip_linux_syscall_insn",
7a6771
	use to skip over first half of a GNU/Linux syscall and update
7a6771
	"func_start".
7a6771
7a6771
Index: gdb-7.2.50.20110117/gdb/rs6000-tdep.c
7a6771
===================================================================
7a6771
--- gdb-7.2.50.20110117.orig/gdb/rs6000-tdep.c	2011-01-11 20:23:02.000000000 +0100
7a6771
+++ gdb-7.2.50.20110117/gdb/rs6000-tdep.c	2011-01-17 15:48:19.000000000 +0100
7a6771
@@ -126,6 +126,7 @@ static const char *powerpc_vector_abi_st
7a6771
 
7a6771
 struct rs6000_framedata
7a6771
   {
7a6771
+    CORE_ADDR func_start;	/* True function start.  */
7a6771
     int offset;			/* total size of frame --- the distance
7a6771
 				   by which we decrement sp to allocate
7a6771
 				   the frame */
7a6771
@@ -1496,7 +1497,6 @@ static CORE_ADDR
7a6771
 skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc, CORE_ADDR lim_pc,
7a6771
 	       struct rs6000_framedata *fdata)
7a6771
 {
7a6771
-  CORE_ADDR orig_pc = pc;
7a6771
   CORE_ADDR last_prologue_pc = pc;
7a6771
   CORE_ADDR li_found_pc = 0;
7a6771
   gdb_byte buf[4];
7a6771
@@ -1514,12 +1514,14 @@ skip_prologue (struct gdbarch *gdbarch, 
7a6771
   int minimal_toc_loaded = 0;
7a6771
   int prev_insn_was_prologue_insn = 1;
7a6771
   int num_skip_non_prologue_insns = 0;
7a6771
+  int num_skip_ppc64_gnu_linux_syscall_insn = 0;
7a6771
   int r0_contains_arg = 0;
7a6771
   const struct bfd_arch_info *arch_info = gdbarch_bfd_arch_info (gdbarch);
7a6771
   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
7a6771
   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
7a6771
 
7a6771
   memset (fdata, 0, sizeof (struct rs6000_framedata));
7a6771
+  fdata->func_start = pc;
7a6771
   fdata->saved_gpr = -1;
7a6771
   fdata->saved_fpr = -1;
7a6771
   fdata->saved_vr = -1;
7a6771
@@ -1553,6 +1555,55 @@ skip_prologue (struct gdbarch *gdbarch, 
7a6771
 	break;
7a6771
       op = extract_unsigned_integer (buf, 4, byte_order);
7a6771
 
7a6771
+      /* A PPC64 GNU/Linux system call function is split into two
7a6771
+	 sub-functions: a non-threaded fast-path (__NAME_nocancel)
7a6771
+	 which does not use a frame; and a threaded slow-path
7a6771
+	 (Lpseudo_cancel) that does create a frame.  Ref:
7a6771
+	 nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h
7a6771
+
7a6771
+	 *INDENT-OFF*
7a6771
+	 NAME:
7a6771
+	 	SINGLE_THREAD_P
7a6771
+	 	bne- .Lpseudo_cancel
7a6771
+	 __NAME_nocancel:
7a6771
+	 	li r0,162
7a6771
+	 	sc
7a6771
+	 	bnslr+
7a6771
+	 	b 0x7fe014ef64 <.__syscall_error>
7a6771
+	 Lpseudo_cancel:
7a6771
+	 	stdu r1,-128(r1)
7a6771
+	 	...
7a6771
+	 *INDENT-ON*
7a6771
+
7a6771
+	 Unfortunatly, because the latter case uses a local label (not
7a6771
+	 in the symbol table) a PC in "Lpseudo_cancel" appears to be
7a6771
+	 in "__NAME_nocancel".  The following code recognizes this,
7a6771
+	 adjusting FUNC_START to point to where "Lpseudo_cancel"
7a6771
+	 should be, and parsing the prologue sequence as if
7a6771
+	 "Lpseudo_cancel" was the entry point.  */
7a6771
+
7a6771
+      if (((op & 0xffff0000) == 0x38000000 /* li r0,N */
7a6771
+	   && pc == fdata->func_start + 0
7a6771
+	   && num_skip_ppc64_gnu_linux_syscall_insn == 0)
7a6771
+	  || (op == 0x44000002 /* sc */
7a6771
+	      && pc == fdata->func_start + 4
7a6771
+	      && num_skip_ppc64_gnu_linux_syscall_insn == 1)
7a6771
+	  || (op == 0x4ca30020 /* bnslr+ */
7a6771
+	      && pc == fdata->func_start + 8
7a6771
+	      && num_skip_ppc64_gnu_linux_syscall_insn == 2))
7a6771
+	{
7a6771
+	  num_skip_ppc64_gnu_linux_syscall_insn++;
7a6771
+	  continue;
7a6771
+	}
7a6771
+      else if ((op & 0xfc000003) == 0x48000000 /* b __syscall_error */
7a6771
+	       && pc == fdata->func_start + 12
7a6771
+	       && num_skip_ppc64_gnu_linux_syscall_insn == 3)
7a6771
+	{
7a6771
+	  num_skip_ppc64_gnu_linux_syscall_insn = -1;
7a6771
+	  fdata->func_start = pc;
7a6771
+	  continue;
7a6771
+	}
7a6771
+
7a6771
       if ((op & 0xfc1fffff) == 0x7c0802a6)
7a6771
 	{			/* mflr Rx */
7a6771
 	  /* Since shared library / PIC code, which needs to get its
7a6771
@@ -1734,9 +1785,9 @@ skip_prologue (struct gdbarch *gdbarch, 
7a6771
 	     we have no line table information or the line info tells
7a6771
 	     us that the subroutine call is not part of the line
7a6771
 	     associated with the prologue.  */
7a6771
-	  if ((pc - orig_pc) > 8)
7a6771
+	  if ((pc - fdata->func_start) > 8)
7a6771
 	    {
7a6771
-	      struct symtab_and_line prologue_sal = find_pc_line (orig_pc, 0);
7a6771
+	      struct symtab_and_line prologue_sal = find_pc_line (fdata->func_start, 0);
7a6771
 	      struct symtab_and_line this_sal = find_pc_line (pc, 0);
7a6771
 
7a6771
 	      if ((prologue_sal.line == 0)