Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Michael Snyder <msnyder@redhat.com>
To: Richard.Earnshaw@arm.com
Cc: Michael Snyder <msnyder@cygnus.com>,
	gdb-patches@sources.redhat.com, cagney@redhat.com,
	rearnsha@arm.com
Subject: Re: [RFA] More tweaks to arm_skip_prologue
Date: Tue, 23 Apr 2002 16:00:00 -0000	[thread overview]
Message-ID: <3CC5E4C3.5B245D73@redhat.com> (raw)
In-Reply-To: <200204230943.KAA00581@cam-mail2.cambridge.arm.com>

[-- Attachment #1: Type: text/plain, Size: 234 bytes --]

Richard Earnshaw wrote:
[...]
> This should only ever be "str lr, [sp, #-4]!" (note the writeback).  

Richard, how's this revised patch?

Do you think that, if we detect the str lr, [sp, -4]!
we should just return pc + 4 immediately?

[-- Attachment #2: frameless.patch --]
[-- Type: text/plain, Size: 2176 bytes --]

2002-04-22  Michael Snyder  <msnyder@redhat.com>

	* arm-tdep.c (arm_skip_prologue): Better handling for frameless 
	functions.  Treat "mov ip, sp" as optional.  Recognize 
	"str lr, [sp, #-4]".

Index: arm-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/arm-tdep.c,v
retrieving revision 1.51
diff -p -r1.51 arm-tdep.c
*** arm-tdep.c	22 Apr 2002 23:22:04 -0000	1.51
--- arm-tdep.c	23 Apr 2002 00:00:30 -0000
*************** arm_skip_prologue (CORE_ADDR pc)
*** 446,467 ****
       by disassembling the instructions. */
    skip_pc = pc;
    inst = read_memory_integer (skip_pc, 4);
!   if (inst != 0xe1a0c00d)	/* mov ip, sp */
!     return pc;
  
!   skip_pc += 4;
!   inst = read_memory_integer (skip_pc, 4);
!   if ((inst & 0xfffffff0) == 0xe92d0000)	/* stmfd sp!,{a1,a2,a3,a4}  */
      {
        skip_pc += 4;
        inst = read_memory_integer (skip_pc, 4);
      }
  
!   if ((inst & 0xfffff800) != 0xe92dd800)	/* stmfd sp!,{...,fp,ip,lr,pc} */
!     return pc;
  
!   skip_pc += 4;
!   inst = read_memory_integer (skip_pc, 4);
  
    /* Any insns after this point may float into the code, if it makes
       for better instruction scheduling, so we skip them only if we
--- 446,475 ----
       by disassembling the instructions. */
    skip_pc = pc;
    inst = read_memory_integer (skip_pc, 4);
!   if (inst == 0xe1a0c00d)       /* mov ip, sp */
!     {
!       skip_pc += 4;
!       inst = read_memory_integer (skip_pc, 4);
!     }
  
!   /* Some prologues begin with "str lr, [sp, #-4]!".  */
!   if (inst == 0xe52de004)		        /* str lr, [sp, #-nn]! */
      {
        skip_pc += 4;
        inst = read_memory_integer (skip_pc, 4);
      }
  
!   if ((inst & 0xfffffff0) == 0xe92d0000)	/* stmfd sp!,{a1,a2,a3,a4}  */
!     {
!       skip_pc += 4;
!       inst = read_memory_integer (skip_pc, 4);
!     }
  
!   if ((inst & 0xfffff800) == 0xe92dd800)	/* stmfd sp!,{fp,ip,lr,pc} */
!     {
!       skip_pc += 4;
!       inst = read_memory_integer (skip_pc, 4);
!     }
  
    /* Any insns after this point may float into the code, if it makes
       for better instruction scheduling, so we skip them only if we

  parent reply	other threads:[~2002-04-23 23:00 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-22 17:05 Michael Snyder
2002-04-23  2:44 ` Richard Earnshaw
2002-04-23 10:54   ` Michael Snyder
2002-04-24  2:16     ` Richard Earnshaw
2002-04-23 16:00   ` Michael Snyder [this message]
2002-04-24  2:23     ` Richard Earnshaw
2002-04-24 11:47       ` Michael Snyder
2002-04-24 14:23       ` Michael Snyder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3CC5E4C3.5B245D73@redhat.com \
    --to=msnyder@redhat.com \
    --cc=Richard.Earnshaw@arm.com \
    --cc=cagney@redhat.com \
    --cc=gdb-patches@sources.redhat.com \
    --cc=msnyder@cygnus.com \
    --cc=rearnsha@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox