public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
From: "vries at gcc dot gnu.org" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug tdep/30011] New: [gdb/tdep, aarch64] Incorrect frame address for last insn (leaf case)
Date: Tue, 17 Jan 2023 13:24:58 +0000	[thread overview]
Message-ID: <bug-30011-4717@http.sourceware.org/bugzilla/> (raw)

https://sourceware.org/bugzilla/show_bug.cgi?id=30011

            Bug ID: 30011
           Summary: [gdb/tdep, aarch64] Incorrect frame address for last
                    insn (leaf case)
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: tdep
          Assignee: unassigned at sourceware dot org
          Reporter: vries at gcc dot gnu.org
  Target Milestone: ---

[ Spinoff from PR29721. ]

Consider the following test-case:
...
$ cat test.c
void
foo (const char *s)
{
}

int
main (void)
{
  foo ("foo");
  return 0;
}
...

Compiled without debug info:
...
$ gcc test.c
...

Disassembly of foo:
...
00000000004005e4 <foo>:
  4005e4:       d10043ff        sub     sp, sp, #0x10
  4005e8:       f90007e0        str     x0, [sp, #8]
  4005ec:       d503201f        nop
  4005f0:       910043ff        add     sp, sp, #0x10
  4005f4:       d65f03c0        ret
...

Now, let's do "info frame" at each insn in foo, as well as printing $sp and
$fp:
...
$ gdb a.out
Reading symbols from a.out...
(gdb) b *foo
Breakpoint 1 at 0x400564
(gdb) r
Starting program: a.out 

Breakpoint 1, 0x0000000000400564 in foo ()
(gdb) display /x $sp
1: /x $sp = 0xfffffffff3a0
(gdb) display /x $fp
2: /x $fp = 0xfffffffff3a0
(gdb) info frame
Stack level 0, frame at 0xfffffffff3a0:
 pc = 0x400564 in foo; saved pc = 0x40058c
 called by frame at 0xfffffffff3b0
 Arglist at 0xfffffffff3a0, args: 
 Locals at 0xfffffffff3a0, Previous frame's sp is 0xfffffffff3a0
(gdb) si
0x0000000000400568 in foo ()
1: /x $sp = 0xfffffffff390
2: /x $fp = 0xfffffffff390
(gdb) info frame
Stack level 0, frame at 0xfffffffff3a0:
 pc = 0x400568 in foo; saved pc = 0x40058c
 called by frame at 0xfffffffff3b0
 Arglist at 0xfffffffff390, args: 
 Locals at 0xfffffffff390, Previous frame's sp is 0xfffffffff3a0
(gdb) si
0x000000000040056c in foo ()
1: /x $sp = 0xfffffffff390
2: /x $fp = 0xfffffffff390
(gdb) info frame
Stack level 0, frame at 0xfffffffff3a0:
 pc = 0x40056c in foo; saved pc = 0x40058c
 called by frame at 0xfffffffff3b0
 Arglist at 0xfffffffff390, args: 
 Locals at 0xfffffffff390, Previous frame's sp is 0xfffffffff3a0
 Saved registers:
  x0 at 0xfffffffff398
(gdb) si
0x0000000000400570 in foo ()
1: /x $sp = 0xfffffffff390
2: /x $fp = 0xfffffffff390
(gdb) info frame
Stack level 0, frame at 0xfffffffff3a0:
 pc = 0x400570 in foo; saved pc = 0x40058c
 called by frame at 0xfffffffff3b0
 Arglist at 0xfffffffff390, args: 
 Locals at 0xfffffffff390, Previous frame's sp is 0xfffffffff3a0
 Saved registers:
  x0 at 0xfffffffff398
(gdb) si
0x0000000000400574 in foo ()
1: /x $sp = 0xfffffffff3a0
2: /x $fp = 0xfffffffff3a0
(gdb) info frame
Stack level 0, frame at 0xfffffffff3b0:
 pc = 0x400574 in foo; saved pc = 0x40058c
 called by frame at 0xfffffffff3b0
 Arglist at 0xfffffffff3a0, args: 
 Locals at 0xfffffffff3a0, Previous frame's sp is 0xfffffffff3b0
 Saved registers:
  x0 at 0xfffffffff3a8
(gdb) si
0x000000000040058c in main ()
1: /x $sp = 0xfffffffff3a0
2: /x $fp = 0xfffffffff3a0
...

The "frame at" bit lists 0xfffffffff3a0 except at the last insn.

The frame address is calculated here in aarch64_make_prologue_cache_1:
...
  unwound_fp = get_frame_register_unsigned (this_frame, cache->framereg);
  if (unwound_fp == 0)
    return;

  cache->prev_sp = unwound_fp + cache->framesize;
...

For insns after the prologue, we have cache->framereg == sp and
cache->framesize == 16, so unwound_fp + cache->framesize gives the wrong answer
once sp has been restored to entry value by the before-last insn.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

             reply	other threads:[~2023-01-17 13:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-17 13:24 vries at gcc dot gnu.org [this message]
2023-01-19 11:12 ` [Bug tdep/30011] " vries at gcc dot gnu.org
2023-01-23 15:49 ` cvs-commit at gcc dot gnu.org
2023-01-23 15:52 ` vries at gcc dot gnu.org
2023-01-23 15:53 ` vries at gcc dot gnu.org

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=bug-30011-4717@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=gdb-prs@sourceware.org \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).