Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Andrew Burgess <andrew.burgess@embecosm.com>
To: Bernd Edlinger <bernd.edlinger@hotmail.de>
Cc: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>,
	Tom Tromey <tom@tromey.com>
Subject: Re: [PATCH] Partially revert my UB fix in record_line
Date: Thu, 9 Apr 2020 10:33:24 +0100	[thread overview]
Message-ID: <20200409093324.GA2366@embecosm.com> (raw)
In-Reply-To: <AM6PR03MB5170B11F52A8887A154F73ABE4C10@AM6PR03MB5170.eurprd03.prod.outlook.com>

* Bernd Edlinger <bernd.edlinger@hotmail.de> [2020-04-09 03:35:17 +0200]:

> This reverts the following commit partially:
> 
> commit 64dc2d4bd24ff7119c913fff91184414f09b8042
> Author: Bernd Edlinger <bernd.edlinger@hotmail.de>
> Date:   Thu Mar 12 11:52:34 2020 +0100
> 
>     Fix an undefined behavior in record_line
> 
>     Additionally do not completely remove symbols
>     at the same PC than the end marker, instead
>     make them non-is-stmt breakpoints.
> 
> We keep the undefined behavoir fix,
> but have to restore the original behavior
> regarding deletion of the line entries.
> 
> 2020-04-09  Bernd Edlinger  <bernd.edlinger@hotmail.de>
> 
> 	revert partially:
> 	2020-04-01  Bernd Edlinger  <bernd.edlinger@hotmail.de>
> 
>         * buildsym.c (record_line): Fix undefined behavior and preserve
>         lines at eof.

Looks good.  Approved.

Thanks,

Andrew


> ---
>  gdb/buildsym.c | 37 ++++++++++++++++++-------------------
>  1 file changed, 18 insertions(+), 19 deletions(-)
> 
> diff --git a/gdb/buildsym.c b/gdb/buildsym.c
> index fe07103..c08c476 100644
> --- a/gdb/buildsym.c
> +++ b/gdb/buildsym.c
> @@ -691,29 +691,28 @@ struct blockvector *
>  		      * sizeof (struct linetable_entry))));
>      }
>  
> -  /* The end of sequence marker is special.  We need to reset the
> -     is_stmt flag on previous lines at the same PC, otherwise these
> -     lines may cause problems since they might be at the same address
> -     as the following function.  For instance suppose a function calls
> -     abort there is no reason to emit a ret after that point (no joke).
> -     So the label may be at the same address where the following
> -     function begins.  A similar problem appears if a label is at the
> -     same address where an inline function ends we cannot reliably tell
> -     if this is considered part of the inline function or the calling
> -     program or even the next inline function, so stack traces may
> -     give surprising results.  Expect gdb.cp/step-and-next-inline.exp
> -     to fail if these lines are not modified here.  */
> -  if (line == 0 && subfile->line_vector->nitems > 0)
> +  /* Normally, we treat lines as unsorted.  But the end of sequence
> +     marker is special.  We sort line markers at the same PC by line
> +     number, so end of sequence markers (which have line == 0) appear
> +     first.  This is right if the marker ends the previous function,
> +     and there is no padding before the next function.  But it is
> +     wrong if the previous line was empty and we are now marking a
> +     switch to a different subfile.  We must leave the end of sequence
> +     marker at the end of this group of lines, not sort the empty line
> +     to after the marker.  The easiest way to accomplish this is to
> +     delete any empty lines from our table, if they are followed by
> +     end of sequence markers.  All we lose is the ability to set
> +     breakpoints at some lines which contain no instructions
> +     anyway.  */
> +  if (line == 0)
>      {
> -      e = subfile->line_vector->item + subfile->line_vector->nitems;
> -      do
> +      while (subfile->line_vector->nitems > 0)
>  	{
> -	  e--;
> -	  if (e->pc != pc || e->line == 0)
> +	  e = subfile->line_vector->item + subfile->line_vector->nitems - 1;
> +	  if (e->pc != pc)
>  	    break;
> -	  e->is_stmt = 0;
> +	  subfile->line_vector->nitems--;
>  	}
> -      while (e > subfile->line_vector->item);
>      }
>  
>    e = subfile->line_vector->item + subfile->line_vector->nitems++;
> -- 
> 1.9.1


      reply	other threads:[~2020-04-09  9:33 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-09  1:35 Bernd Edlinger
2020-04-09  9:33 ` Andrew Burgess [this message]

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=20200409093324.GA2366@embecosm.com \
    --to=andrew.burgess@embecosm.com \
    --cc=bernd.edlinger@hotmail.de \
    --cc=gdb-patches@sourceware.org \
    --cc=tom@tromey.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