public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCHv5] Fix range end handling of inlined subroutines
@ 2020-04-04 19:50 Bernd Edlinger
  2020-04-04 22:07 ` Andrew Burgess
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-04 19:50 UTC (permalink / raw)
  To: gdb-patches, Andrew Burgess, Luis Machado, Tom Tromey

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

Hi,

this is an updated version of my patch that was originally only intended
to fix the issues with inline functions in the same file.  That needed
re-basing anyway, because of a merge conflict.

I removed the code that does the special handling of end sequence
markers in record_line now, since it seems to cause more problems than
it solves.

I believe it will fix the regression that Louis pointed out, and
should fix the regression that Andrew wanted to fix with his
patch:

[PATCH 2/2] gdb: Preserve is-stmt lines when switch between files
https://marc.info/?l=gdb-patches&m=158595247916817&w=2

So I hope that will not be necessary after this.

There is a theoretic issue with line numbers at the end
of a function, these could coincidentally have the same
PC as the following function.  That might need more work
to solve that, in the moment I have not yet looked at
tracking that down.


Thanks
Bernd.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-range-end-handling-of-inlined-subroutines.patch --]
[-- Type: text/x-patch; name="0001-Fix-range-end-handling-of-inlined-subroutines.patch", Size: 12632 bytes --]

From 330eadf4b42e44bfa82c30a6bda21393fa4a54c8 Mon Sep 17 00:00:00 2001
From: Bernd Edlinger <bernd.edlinger@hotmail.de>
Date: Sun, 9 Feb 2020 21:13:17 +0100
Subject: [PATCH] Fix range end handling of inlined subroutines

Since the is_stmt is now handled, it becomes
possible to locate dubious is_stmt line entries
at the end of an inlined function, even if the
called inline function is in the same subfile.

When there is a sequence of line entries at the
same address where an inline range ends, and the
last item has is_stmt = 0, we force all previous
items to have is_stmt = 0 as well.

If the last line at that address has is_stmt = 1,
there is no need to change anything, since a step
over will always stop at that last line from the
same address, which is fine, since it is outside
the subroutine.

With this change we loose the ability to set
breakpoints on some lines using file:line syntax,
but the data is not completely lost, as the
line table is still holding those lines, just
with the is_stmt flag reset.

This is necessary as breakpoints on these lines
are problematic, as the call stack is often
wrong.  From the block info they appear to be
located in the caller, but they are actually meant
to be part of the subroutine, therefore usually one
frame is missing from the callstack when the
execution stops there.

This is about the best we can do at the moment,
unless location view information are added to the
block ranges debug info structure, and location
views are implemented in gdb in general.

gdb:
2020-04-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>

	* buildsym.c (buildsym_compunit::record_line): Remove line deletion
	at end sequence marker.
	(buildsym_compunit::record_inline_range_end,
	patch_inline_end_pos): New helper functions.
	(buildsym_compunit::end_symtab_with_blockvector): Patch line table.
	(buildsym_compunit::~buildsym_compunit): Cleanup m_inline_end_vector.
	* buildsym.h (buildsym_compunit::record_inline_range_end): Declare.
	(buildsym_compunit::m_inline_end_vector,
	buildsym_compunit::m_inline_end_vector_length,
	buildsym_compunit::m_inline_end_vector_nitems): New data items.
	* dwarf2/read.c (dwarf2_rnglists_process,
	dwarf2_ranges_process): Don't ignore empty ranges here.
	(dwarf2_ranges_read): Ignore empty ranges here.
	(dwarf2_record_block_ranges): Pass end of range PC to
	record_inline_range_end for inline functions.

gdb/testsuite:
2020-04-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>

	* gdb.cp/step-and-next-inline.exp: Adjust test.
---
 gdb/buildsym.c                                | 115 ++++++++++++++++++++------
 gdb/buildsym.h                                |  11 +++
 gdb/dwarf2/read.c                             |  22 +++--
 gdb/testsuite/gdb.cp/step-and-next-inline.exp |  17 ----
 4 files changed, 114 insertions(+), 51 deletions(-)

diff --git a/gdb/buildsym.c b/gdb/buildsym.c
index fe07103..e6e7437 100644
--- a/gdb/buildsym.c
+++ b/gdb/buildsym.c
@@ -113,6 +113,8 @@ struct pending_block
       next1 = next->next;
       xfree ((void *) next);
     }
+
+  xfree (m_inline_end_vector);
 }
 
 struct macro_table *
@@ -691,31 +693,6 @@ 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)
-    {
-      e = subfile->line_vector->item + subfile->line_vector->nitems;
-      do
-	{
-	  e--;
-	  if (e->pc != pc || e->line == 0)
-	    break;
-	  e->is_stmt = 0;
-	}
-      while (e > subfile->line_vector->item);
-    }
-
   e = subfile->line_vector->item + subfile->line_vector->nitems++;
   e->line = line;
   e->is_stmt = is_stmt ? 1 : 0;
@@ -723,6 +700,90 @@ struct blockvector *
 }
 
 \f
+/* Record a PC where a inlined subroutine ends.  */
+
+void
+buildsym_compunit::record_inline_range_end (CORE_ADDR end)
+{
+  /* The performance of this function is very important,
+     it shall be O(n*log(n)) therefore we do not use std::vector
+     here since some compilers, e.g. visual studio, do not
+     guarantee that for vector::push_back.  */
+  if (m_inline_end_vector == nullptr)
+    {
+      m_inline_end_vector_length = INITIAL_LINE_VECTOR_LENGTH;
+      m_inline_end_vector = (CORE_ADDR *)
+	xmalloc (sizeof (CORE_ADDR) * m_inline_end_vector_length);
+      m_inline_end_vector_nitems = 0;
+    }
+  else if (m_inline_end_vector_nitems == m_inline_end_vector_length)
+    {
+      m_inline_end_vector_length *= 2;
+      m_inline_end_vector = (CORE_ADDR *)
+	xrealloc ((char *) m_inline_end_vector,
+		  sizeof (CORE_ADDR) * m_inline_end_vector_length);
+    }
+
+  m_inline_end_vector[m_inline_end_vector_nitems++] = end;
+}
+
+\f
+/* Patch the is_stmt bits at the given inline end address.
+   The line table has to be already sorted.  */
+
+static void
+patch_inline_end_pos (struct linetable *table, CORE_ADDR end)
+{
+  int a = 2, b = table->nitems - 1;
+  struct linetable_entry *items = table->item;
+
+  /* We need at least two items with pc = end in the table.
+     The lowest usable items are at pos 0 and 1, the highest
+     usable items are at pos b - 2 and b - 1.  */
+  if (a > b || end < items[1].pc || end > items[b - 2].pc)
+    return;
+
+  /* Look for the first item with pc > end in the range [a,b].
+     The previous element has pc = end or there is no match.
+     We set a = 2, since we need at least two consecutive elements
+     with pc = end to do anything useful.
+     We set b = nitems - 1, since we are not interested in the last
+     element which should be an end of sequence marker with line = 0
+     and is_stmt = 1.  */
+  while (a < b)
+    {
+      int c = (a + b) / 2;
+
+      if (end < items[c].pc)
+	b = c;
+      else
+	a = c + 1;
+    }
+
+  a--;
+  if (items[a].pc != end || items[a].is_stmt)
+    return;
+
+  /* When there is a sequence of line entries at the same address
+     where an inline range ends, and the last item has is_stmt = 0,
+     we force all previous items to have is_stmt = 0 as well.
+     Setting breakpoints at those addresses is currently not
+     supported, since it is unclear if the previous addresses are
+     part of the subroutine or the calling program.  */
+  do
+    {
+      /* We stop at the first line entry with a different address,
+	 or when we see an end of sequence marker.  */
+      a--;
+      if (items[a].pc != end || items[a].line == 0)
+	break;
+
+      items[a].is_stmt = 0;
+    }
+  while (a > 0);
+}
+
+\f
 /* Subroutine of end_symtab to simplify it.  Look for a subfile that
    matches the main source file's basename.  If there is only one, and
    if the main source file doesn't have any symbol or line number
@@ -956,6 +1017,10 @@ struct compunit_symtab *
 			      subfile->line_vector->item
 			      + subfile->line_vector->nitems,
 			      lte_is_less_than);
+
+	   for (int i = 0; i < m_inline_end_vector_nitems; i++)
+	     patch_inline_end_pos (subfile->line_vector,
+				   m_inline_end_vector[i]);
 	}
 
       /* Allocate a symbol table if necessary.  */
diff --git a/gdb/buildsym.h b/gdb/buildsym.h
index c768a4c..2845789 100644
--- a/gdb/buildsym.h
+++ b/gdb/buildsym.h
@@ -190,6 +190,8 @@ struct buildsym_compunit
   void record_line (struct subfile *subfile, int line, CORE_ADDR pc,
 		    bool is_stmt);
 
+  void record_inline_range_end (CORE_ADDR end);
+
   struct compunit_symtab *get_compunit_symtab ()
   {
     return m_compunit_symtab;
@@ -397,6 +399,15 @@ struct buildsym_compunit
 
   /* Pending symbols that are local to the lexical context.  */
   struct pending *m_local_symbols = nullptr;
+
+  /* Pending inline end range addresses.  */
+  CORE_ADDR * m_inline_end_vector = nullptr;
+
+  /* Number of allocated inline end range addresses.  */
+  int m_inline_end_vector_length = 0;
+
+  /* Number of pending inline end range addresses.  */
+  int m_inline_end_vector_nitems = 0;
 };
 
 \f
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
index bcc3116..321de93 100644
--- a/gdb/dwarf2/read.c
+++ b/gdb/dwarf2/read.c
@@ -13527,10 +13527,6 @@ class process_die_scope
 	  return false;
 	}
 
-      /* Empty range entries have no effect.  */
-      if (range_beginning == range_end)
-	continue;
-
       range_beginning += *base;
       range_end += *base;
 
@@ -13638,10 +13634,6 @@ class process_die_scope
 	  return 0;
 	}
 
-      /* Empty range entries have no effect.  */
-      if (range_beginning == range_end)
-	continue;
-
       range_beginning += *base;
       range_end += *base;
 
@@ -13681,6 +13673,10 @@ class process_die_scope
   retval = dwarf2_ranges_process (offset, cu,
     [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
     {
+      /* Empty range entries have no effect.  */
+      if (range_beginning == range_end)
+	return;
+
       if (ranges_pst != NULL)
 	{
 	  CORE_ADDR lowpc;
@@ -13918,6 +13914,7 @@ class process_die_scope
   struct gdbarch *gdbarch = get_objfile_arch (objfile);
   struct attribute *attr;
   struct attribute *attr_high;
+  bool inlined_subroutine = (die->tag == DW_TAG_inlined_subroutine);
 
   attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
   if (attr_high)
@@ -13933,7 +13930,10 @@ class process_die_scope
 
 	  low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
 	  high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
-	  cu->get_builder ()->record_block_range (block, low, high - 1);
+	  if (inlined_subroutine)
+	    cu->get_builder ()->record_inline_range_end (high);
+	  if (low < high)
+	    cu->get_builder ()->record_block_range (block, low, high - 1);
         }
     }
 
@@ -13958,6 +13958,10 @@ class process_die_scope
 	  end += baseaddr;
 	  start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
 	  end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
+	  if (inlined_subroutine)
+	    cu->get_builder ()->record_inline_range_end (end);
+	  if (start == end)
+	    return;
 	  cu->get_builder ()->record_block_range (block, start, end - 1);
 	  blockvec.emplace_back (start, end);
 	});
diff --git a/gdb/testsuite/gdb.cp/step-and-next-inline.exp b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
index 3733fa7..e3a5793 100644
--- a/gdb/testsuite/gdb.cp/step-and-next-inline.exp
+++ b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
@@ -52,37 +52,20 @@ proc do_test { use_header } {
     gdb_test "step" ".*" "step into get_alias_set"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 1"
-    # It's possible that this first failure (when not using a header
-    # file) is GCC's fault, though the remaining failures would best
-    # be fixed by adding location views support (though it could be
-    # that some easier heuristic could be figured out).  Still, it is
-    # not certain that the first failure wouldn't also be fixed by
-    # having location view support, so for now it is tagged as such.
-    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
     gdb_test "next" ".*TREE_TYPE.*" "next step 1"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 2"
     gdb_test "next" ".*TREE_TYPE.*" "next step 2"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 3"
-    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
     gdb_test "next" ".*TREE_TYPE.*" "next step 3"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 4"
-    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
     gdb_test "next" "return 0.*" "next step 4"
     gdb_test "bt" \
 	"\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
 	"not in inline 5"
 
-    if {!$use_header} {
-	# With the debug from GCC 10.x (and earlier) GDB is currently
-	# unable to successfully complete the following tests when we
-	# are not using a header file.
-	kfail symtab/25507 "stepping tests"
-	return
-    }
-
     clean_restart ${executable}
 
     if ![runto_main] {
-- 
1.9.1


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-04 19:50 [PATCHv5] Fix range end handling of inlined subroutines Bernd Edlinger
@ 2020-04-04 22:07 ` Andrew Burgess
  2020-04-04 23:59   ` Bernd Edlinger
  2020-04-22 21:03   ` Tom Tromey
  2020-04-04 22:27 ` Luis Machado
  2020-04-05  2:28 ` [PATCHv6] " Bernd Edlinger
  2 siblings, 2 replies; 16+ messages in thread
From: Andrew Burgess @ 2020-04-04 22:07 UTC (permalink / raw)
  To: Bernd Edlinger; +Cc: gdb-patches, Luis Machado, Tom Tromey

* Bernd Edlinger <bernd.edlinger@hotmail.de> [2020-04-04 21:50:21 +0200]:

> Hi,
> 
> this is an updated version of my patch that was originally only intended
> to fix the issues with inline functions in the same file.  That needed
> re-basing anyway, because of a merge conflict.
> 
> I removed the code that does the special handling of end sequence
> markers in record_line now, since it seems to cause more problems than
> it solves.
> 
> I believe it will fix the regression that Louis pointed out,

Do you have a link or any extra information for this?  I'd like to
understand what the actual regression was.  I noticed there didn't
seem to be any extra tests added over previous versions of the patch,
is this regression covered by an existing test?

>                                                               and
> should fix the regression that Andrew wanted to fix with his
> patch:

> 
> [PATCH 2/2] gdb: Preserve is-stmt lines when switch between files
> https://marc.info/?l=gdb-patches&m=158595247916817&w=2
> 
> So I hope that will not be necessary after this.

It would be nice if you picked up the extra tests from that patch and
included them here if this is a replacement solution.

> 
> There is a theoretic issue with line numbers at the end
> of a function, these could coincidentally have the same
> PC as the following function.  That might need more work
> to solve that, in the moment I have not yet looked at
> tracking that down.
> 
> 
> Thanks
> Bernd.

> From 330eadf4b42e44bfa82c30a6bda21393fa4a54c8 Mon Sep 17 00:00:00 2001
> From: Bernd Edlinger <bernd.edlinger@hotmail.de>
> Date: Sun, 9 Feb 2020 21:13:17 +0100
> Subject: [PATCH] Fix range end handling of inlined subroutines
> 
> Since the is_stmt is now handled, it becomes
> possible to locate dubious is_stmt line entries
> at the end of an inlined function, even if the
> called inline function is in the same subfile.
> 
> When there is a sequence of line entries at the
> same address where an inline range ends, and the
> last item has is_stmt = 0, we force all previous
> items to have is_stmt = 0 as well.
> 
> If the last line at that address has is_stmt = 1,
> there is no need to change anything, since a step
> over will always stop at that last line from the
> same address, which is fine, since it is outside
> the subroutine.
> 
> With this change we loose the ability to set
> breakpoints on some lines using file:line syntax,
> but the data is not completely lost, as the
> line table is still holding those lines, just
> with the is_stmt flag reset.

This is a trade off that I don't think we should breeze over quite so
easily.  Many, many users make use of an IDE to drive GDB, and in
those cases they mostly use file:line syntax exclusively, so any loss
in this area is something we should consider seriously.

> 
> This is necessary as breakpoints on these lines
> are problematic, as the call stack is often
> wrong.

Maybe.  Yes I absolutely agree that in the test case, when we stop at
these line numbers, the call stack is wrong.  But, as GDB developers,
we can have a slightly different take on things.  In this particular
case the debug information we're supplied is just plain wrong.  This
is documented in this GCC bug:

  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94474

( Bernd, I know you've already seen that, I include the link for anyone else
  following this thread. )

The lines that are part of the inline subroutine, in this test are
marked as is-stmt _and_ are outside the range of the inline
subroutine.  So the call stack GDB presents is not wrong w.r.t the
debug information we're given, it's the debug information that is
wrong in this case.

Now, there are many places where GDB tries to work around broken debug
information, but I think that in this case we give up too much.  I
would prefer to see if GCC can fix their DWARF creation first before
we take something like this.

>        From the block info they appear to be
> located in the caller, but they are actually meant
> to be part of the subroutine, therefore usually one
> frame is missing from the callstack when the
> execution stops there.

The lines shouldn't be marked as is-stmt in the location they are, or
GCC should extend the range slightly.

> 
> This is about the best we can do at the moment,
> unless location view information are added to the
> block ranges debug info structure, and location
> views are implemented in gdb in general.

Please do correct me if I'm wrong, but I don't think GCC can yet
produce view information for range endings, right?

I agree that the best solution here would be to have location views
for range start (GCC can do this) and range end (I think this is
missing), then scopes can merge over within a single address.

> 
> gdb:
> 2020-04-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
> 
> 	* buildsym.c (buildsym_compunit::record_line): Remove line deletion
> 	at end sequence marker.
> 	(buildsym_compunit::record_inline_range_end,
> 	patch_inline_end_pos): New helper functions.
> 	(buildsym_compunit::end_symtab_with_blockvector): Patch line table.
> 	(buildsym_compunit::~buildsym_compunit): Cleanup m_inline_end_vector.
> 	* buildsym.h (buildsym_compunit::record_inline_range_end): Declare.
> 	(buildsym_compunit::m_inline_end_vector,
> 	buildsym_compunit::m_inline_end_vector_length,
> 	buildsym_compunit::m_inline_end_vector_nitems): New data items.
> 	* dwarf2/read.c (dwarf2_rnglists_process,
> 	dwarf2_ranges_process): Don't ignore empty ranges here.
> 	(dwarf2_ranges_read): Ignore empty ranges here.
> 	(dwarf2_record_block_ranges): Pass end of range PC to
> 	record_inline_range_end for inline functions.
> 
> gdb/testsuite:
> 2020-04-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
> 
> 	* gdb.cp/step-and-next-inline.exp: Adjust test.
> ---
>  gdb/buildsym.c                                | 115 ++++++++++++++++++++------
>  gdb/buildsym.h                                |  11 +++
>  gdb/dwarf2/read.c                             |  22 +++--
>  gdb/testsuite/gdb.cp/step-and-next-inline.exp |  17 ----
>  4 files changed, 114 insertions(+), 51 deletions(-)
> 
> diff --git a/gdb/buildsym.c b/gdb/buildsym.c
> index fe07103..e6e7437 100644
> --- a/gdb/buildsym.c
> +++ b/gdb/buildsym.c
> @@ -113,6 +113,8 @@ struct pending_block
>        next1 = next->next;
>        xfree ((void *) next);
>      }
> +
> +  xfree (m_inline_end_vector);
>  }
>  
>  struct macro_table *
> @@ -691,31 +693,6 @@ 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)
> -    {
> -      e = subfile->line_vector->item + subfile->line_vector->nitems;
> -      do
> -	{
> -	  e--;
> -	  if (e->pc != pc || e->line == 0)
> -	    break;
> -	  e->is_stmt = 0;
> -	}
> -      while (e > subfile->line_vector->item);
> -    }
> -

I'm slightly nervous with this proposed change.  Code like this
existed before we started messing with is-stmt support, and I suspect
it probably dates from a time before testing was as good as it is
now.  I assume nothing regresses with this removed, but it would be
nice to try a few experiments I think with different combinations of
two files, empty line ranges, and having is-stmt before and after the
transition between files, just to confirm that we really don't need
this code any more.  I suspect this is the "line numbers at the end of
a function" issue you mentioned in your introductory text.

That said, I see how removing this provides an alternative solution to
the patch I posted.

>    e = subfile->line_vector->item + subfile->line_vector->nitems++;
>    e->line = line;
>    e->is_stmt = is_stmt ? 1 : 0;
> @@ -723,6 +700,90 @@ struct blockvector *
>  }
>  
>  \f
> +/* Record a PC where a inlined subroutine ends.  */
> +
> +void
> +buildsym_compunit::record_inline_range_end (CORE_ADDR end)
> +{
> +  /* The performance of this function is very important,
> +     it shall be O(n*log(n)) therefore we do not use std::vector
> +     here since some compilers, e.g. visual studio, do not
> +     guarantee that for vector::push_back.  */

I think we're going to need more of a group discussion on this.
Simply saying std::vector is too slow doesn't I'm afraid convince me.
There seem to be lots of other places in GDB where both performance is
critical, and we use ::push_back.

Is your claim that we should move away from std::vector in all these
cases?  Is this case somehow special?

Obviously I've made this point before, and you're sticking to your
position, which is fine, but I can't approve this patch without seeing
a more compelling argument against std::vector.  That said, if some
other maintainer is convinced, they're welcome to approve it.  Either
way, the comment would be better placed at the declaration of the
variable, rather than here I think.

> +  if (m_inline_end_vector == nullptr)
> +    {
> +      m_inline_end_vector_length = INITIAL_LINE_VECTOR_LENGTH;
> +      m_inline_end_vector = (CORE_ADDR *)
> +	xmalloc (sizeof (CORE_ADDR) * m_inline_end_vector_length);
> +      m_inline_end_vector_nitems = 0;
> +    }
> +  else if (m_inline_end_vector_nitems == m_inline_end_vector_length)
> +    {
> +      m_inline_end_vector_length *= 2;
> +      m_inline_end_vector = (CORE_ADDR *)
> +	xrealloc ((char *) m_inline_end_vector,
> +		  sizeof (CORE_ADDR) * m_inline_end_vector_length);
> +    }
> +
> +  m_inline_end_vector[m_inline_end_vector_nitems++] = end;
> +}
> +
> +\f
> +/* Patch the is_stmt bits at the given inline end address.
> +   The line table has to be already sorted.  */
> +
> +static void
> +patch_inline_end_pos (struct linetable *table, CORE_ADDR end)
> +{
> +  int a = 2, b = table->nitems - 1;
> +  struct linetable_entry *items = table->item;
> +
> +  /* We need at least two items with pc = end in the table.
> +     The lowest usable items are at pos 0 and 1, the highest
> +     usable items are at pos b - 2 and b - 1.  */
> +  if (a > b || end < items[1].pc || end > items[b - 2].pc)
> +    return;
> +
> +  /* Look for the first item with pc > end in the range [a,b].
> +     The previous element has pc = end or there is no match.
> +     We set a = 2, since we need at least two consecutive elements
> +     with pc = end to do anything useful.
> +     We set b = nitems - 1, since we are not interested in the last
> +     element which should be an end of sequence marker with line = 0
> +     and is_stmt = 1.  */
> +  while (a < b)
> +    {
> +      int c = (a + b) / 2;
> +
> +      if (end < items[c].pc)
> +	b = c;
> +      else
> +	a = c + 1;
> +    }
> +
> +  a--;
> +  if (items[a].pc != end || items[a].is_stmt)
> +    return;
> +
> +  /* When there is a sequence of line entries at the same address
> +     where an inline range ends, and the last item has is_stmt = 0,
> +     we force all previous items to have is_stmt = 0 as well.
> +     Setting breakpoints at those addresses is currently not
> +     supported, since it is unclear if the previous addresses are
> +     part of the subroutine or the calling program.  */
> +  do
> +    {
> +      /* We stop at the first line entry with a different address,
> +	 or when we see an end of sequence marker.  */
> +      a--;
> +      if (items[a].pc != end || items[a].line == 0)
> +	break;
> +
> +      items[a].is_stmt = 0;
> +    }
> +  while (a > 0);
> +}
> +
> +\f
>  /* Subroutine of end_symtab to simplify it.  Look for a subfile that
>     matches the main source file's basename.  If there is only one, and
>     if the main source file doesn't have any symbol or line number
> @@ -956,6 +1017,10 @@ struct compunit_symtab *
>  			      subfile->line_vector->item
>  			      + subfile->line_vector->nitems,
>  			      lte_is_less_than);
> +
> +	   for (int i = 0; i < m_inline_end_vector_nitems; i++)
> +	     patch_inline_end_pos (subfile->line_vector,
> +				   m_inline_end_vector[i]);
>  	}
>  
>        /* Allocate a symbol table if necessary.  */
> diff --git a/gdb/buildsym.h b/gdb/buildsym.h
> index c768a4c..2845789 100644
> --- a/gdb/buildsym.h
> +++ b/gdb/buildsym.h
> @@ -190,6 +190,8 @@ struct buildsym_compunit
>    void record_line (struct subfile *subfile, int line, CORE_ADDR pc,
>  		    bool is_stmt);
>  
> +  void record_inline_range_end (CORE_ADDR end);
> +
>    struct compunit_symtab *get_compunit_symtab ()
>    {
>      return m_compunit_symtab;
> @@ -397,6 +399,15 @@ struct buildsym_compunit
>  
>    /* Pending symbols that are local to the lexical context.  */
>    struct pending *m_local_symbols = nullptr;
> +
> +  /* Pending inline end range addresses.  */
> +  CORE_ADDR * m_inline_end_vector = nullptr;
> +
> +  /* Number of allocated inline end range addresses.  */
> +  int m_inline_end_vector_length = 0;
> +
> +  /* Number of pending inline end range addresses.  */
> +  int m_inline_end_vector_nitems = 0;
>  };
>  
>  \f
> diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
> index bcc3116..321de93 100644
> --- a/gdb/dwarf2/read.c
> +++ b/gdb/dwarf2/read.c
> @@ -13527,10 +13527,6 @@ class process_die_scope
>  	  return false;
>  	}
>  
> -      /* Empty range entries have no effect.  */
> -      if (range_beginning == range_end)
> -	continue;

I don't think we should be doing this.  This is defined quite clearly
in the DWARF spec as being an empty range.  No code is associated with
this range.  As such, it really shouldn't have an impact on how we
interpret the rest of the DWARF.

Again, I think you're trying too hard to work around GCC's broken
DWARF output.

> -
>        range_beginning += *base;
>        range_end += *base;
>  
> @@ -13638,10 +13634,6 @@ class process_die_scope
>  	  return 0;
>  	}
>  
> -      /* Empty range entries have no effect.  */
> -      if (range_beginning == range_end)
> -	continue;

Same.

> -
>        range_beginning += *base;
>        range_end += *base;
>  
> @@ -13681,6 +13673,10 @@ class process_die_scope
>    retval = dwarf2_ranges_process (offset, cu,
>      [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
>      {
> +      /* Empty range entries have no effect.  */
> +      if (range_beginning == range_end)
> +	return;

Same.

> +
>        if (ranges_pst != NULL)
>  	{
>  	  CORE_ADDR lowpc;
> @@ -13918,6 +13914,7 @@ class process_die_scope
>    struct gdbarch *gdbarch = get_objfile_arch (objfile);
>    struct attribute *attr;
>    struct attribute *attr_high;
> +  bool inlined_subroutine = (die->tag == DW_TAG_inlined_subroutine);
>  
>    attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
>    if (attr_high)
> @@ -13933,7 +13930,10 @@ class process_die_scope
>  
>  	  low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
>  	  high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
> -	  cu->get_builder ()->record_block_range (block, low, high - 1);
> +	  if (inlined_subroutine)
> +	    cu->get_builder ()->record_inline_range_end (high);
> +	  if (low < high)
> +	    cu->get_builder ()->record_block_range (block, low, high - 1);
>          }
>      }
>  
> @@ -13958,6 +13958,10 @@ class process_die_scope
>  	  end += baseaddr;
>  	  start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
>  	  end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
> +	  if (inlined_subroutine)
> +	    cu->get_builder ()->record_inline_range_end (end);
> +	  if (start == end)
> +	    return;
>  	  cu->get_builder ()->record_block_range (block, start, end - 1);
>  	  blockvec.emplace_back (start, end);
>  	});
> diff --git a/gdb/testsuite/gdb.cp/step-and-next-inline.exp b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
> index 3733fa7..e3a5793 100644
> --- a/gdb/testsuite/gdb.cp/step-and-next-inline.exp
> +++ b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
> @@ -52,37 +52,20 @@ proc do_test { use_header } {
>      gdb_test "step" ".*" "step into get_alias_set"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 1"
> -    # It's possible that this first failure (when not using a header
> -    # file) is GCC's fault, though the remaining failures would best
> -    # be fixed by adding location views support (though it could be
> -    # that some easier heuristic could be figured out).  Still, it is
> -    # not certain that the first failure wouldn't also be fixed by
> -    # having location view support, so for now it is tagged as such.
> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>      gdb_test "next" ".*TREE_TYPE.*" "next step 1"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 2"
>      gdb_test "next" ".*TREE_TYPE.*" "next step 2"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 3"
> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>      gdb_test "next" ".*TREE_TYPE.*" "next step 3"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 4"
> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>      gdb_test "next" "return 0.*" "next step 4"
>      gdb_test "bt" \
>  	"\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
>  	"not in inline 5"
>  
> -    if {!$use_header} {
> -	# With the debug from GCC 10.x (and earlier) GDB is currently
> -	# unable to successfully complete the following tests when we
> -	# are not using a header file.
> -	kfail symtab/25507 "stepping tests"
> -	return
> -    }
> -

In summary:

If we can convince ourselves that the removal of the special END
handling block really is OK, then I'm happy for _that_ part of this
patch to replace my proposed patch.  Does this part have to be bundled
with the second part?

I don't think the rest of the patch should be merged at the moment.  I
think we should wait to see if GCC can fix their broken DWARF
production.  If this issue is resolved, then possibly we could
maintain this, or some variation of this guarded with a producer
check, so only known bad versions of GCC are modified.  But I don't
think we should assume that all producers get their range information
wrong.

Thanks,
Andrew

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-04 19:50 [PATCHv5] Fix range end handling of inlined subroutines Bernd Edlinger
  2020-04-04 22:07 ` Andrew Burgess
@ 2020-04-04 22:27 ` Luis Machado
  2020-04-04 22:30   ` Luis Machado
  2020-04-04 23:38   ` Bernd Edlinger
  2020-04-05  2:28 ` [PATCHv6] " Bernd Edlinger
  2 siblings, 2 replies; 16+ messages in thread
From: Luis Machado @ 2020-04-04 22:27 UTC (permalink / raw)
  To: Bernd Edlinger, gdb-patches, Andrew Burgess, Tom Tromey

Hi,

On 4/4/20 4:50 PM, Bernd Edlinger wrote:
> Hi,
> 
> this is an updated version of my patch that was originally only intended
> to fix the issues with inline functions in the same file.  That needed
> re-basing anyway, because of a merge conflict.
> 
> I removed the code that does the special handling of end sequence
> markers in record_line now, since it seems to cause more problems than
> it solves.
> 
> I believe it will fix the regression that Louis pointed out, and
> should fix the regression that Andrew wanted to fix with his
> patch:

I gave this a try and the FAIL's are still there unfortunately.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-04 22:27 ` Luis Machado
@ 2020-04-04 22:30   ` Luis Machado
  2020-04-05  0:05     ` Bernd Edlinger
  2020-04-04 23:38   ` Bernd Edlinger
  1 sibling, 1 reply; 16+ messages in thread
From: Luis Machado @ 2020-04-04 22:30 UTC (permalink / raw)
  To: Bernd Edlinger, gdb-patches, Andrew Burgess, Tom Tromey

On 4/4/20 7:27 PM, Luis Machado wrote:
> Hi,
> 
> On 4/4/20 4:50 PM, Bernd Edlinger wrote:
>> Hi,
>>
>> this is an updated version of my patch that was originally only intended
>> to fix the issues with inline functions in the same file.  That needed
>> re-basing anyway, because of a merge conflict.
>>
>> I removed the code that does the special handling of end sequence
>> markers in record_line now, since it seems to cause more problems than
>> it solves.
>>
>> I believe it will fix the regression that Louis pointed out, and
>> should fix the regression that Andrew wanted to fix with his
>> patch:
> 
> I gave this a try and the FAIL's are still there unfortunately.

Actually, there are 6 more of them, with the patch. I'll read through 
the thread to understand what these changes are aiming to fix.

I wouldn't be surprised if GDB is covering some known compiler debug 
info generation hiccup.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-04 22:27 ` Luis Machado
  2020-04-04 22:30   ` Luis Machado
@ 2020-04-04 23:38   ` Bernd Edlinger
  1 sibling, 0 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-04 23:38 UTC (permalink / raw)
  To: Luis Machado, gdb-patches, Andrew Burgess, Tom Tromey



On 4/5/20 12:27 AM, Luis Machado wrote:
> Hi,
> 
> On 4/4/20 4:50 PM, Bernd Edlinger wrote:
>> Hi,
>>
>> this is an updated version of my patch that was originally only intended
>> to fix the issues with inline functions in the same file.  That needed
>> re-basing anyway, because of a merge conflict.
>>
>> I removed the code that does the special handling of end sequence
>> markers in record_line now, since it seems to cause more problems than
>> it solves.
>>
>> I believe it will fix the regression that Louis pointed out, and
>> should fix the regression that Andrew wanted to fix with his
>> patch:
> 
> I gave this a try and the FAIL's are still there unfortunately.

Yes, I already am aware, short after I wrote the mail,
I think I have now the right idea, I will probably post another
version of the patch....

For your test case we need to make sure that the line entries
at the end of a function are acutually deleted.
That is easy, writing the right thing in the comment will be 
hard.


Bernd.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-04 22:07 ` Andrew Burgess
@ 2020-04-04 23:59   ` Bernd Edlinger
  2020-04-22 21:03   ` Tom Tromey
  1 sibling, 0 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-04 23:59 UTC (permalink / raw)
  To: Andrew Burgess; +Cc: gdb-patches, Luis Machado, Tom Tromey



On 4/5/20 12:07 AM, Andrew Burgess wrote:
> * Bernd Edlinger <bernd.edlinger@hotmail.de> [2020-04-04 21:50:21 +0200]:
> 
>> Hi,
>>
>> this is an updated version of my patch that was originally only intended
>> to fix the issues with inline functions in the same file.  That needed
>> re-basing anyway, because of a merge conflict.
>>
>> I removed the code that does the special handling of end sequence
>> markers in record_line now, since it seems to cause more problems than
>> it solves.
>>
>> I believe it will fix the regression that Louis pointed out,
> 
> Do you have a link or any extra information for this?  I'd like to
> understand what the actual regression was.  I noticed there didn't
> seem to be any extra tests added over previous versions of the patch,
> is this regression covered by an existing test?
> 

Yup.  Please have a look at
https://marc.info/?l=gdb-patches&m=158601805302656&w=2

Here we see the beginning of main i assume:
  [0x000000b4]  Extended opcode 2: set Address to 0x73c
  [0x000000bf]  Advance Line by 75 to 76
  [0x000000c2]  Copy


And somewere else we see the end of another function:

  [0x00000129]  Extended opcode 2: set Address to 0x73c
  [0x00000134]  Advance Line by 1 to 73
  [0x00000136]  Copy
  [0x00000137]  Extended opcode 1: End of Sequence

So by the stable sorting of the line table,

we should have 

line 76 is-stmt
line 73 !is_stmt
line 0  is_stmt

which is the state, what is in master where the test fail for Luis
but the step-over-test case works.

with my update patch of today

we should have

line 76 is-stmt
lint 73 is-stmt
line 0 is-stmt

which also fails for Luis, and has 6 additional failures.
but the step-over-test case works.

So I start to think there is no way how I can leave line 73
in the line table, I must delete it, when there is an explicit
end of sequence.  But not when there is no explicit end.

Previously we had

line 76 is-stmt < from main
line 0 is-stmt < end of another function

which works, but is also not very nice.

I would like to remove the lines at a true end of sequence,
but not remove lines at a fake end of sequence that we emit
when the cu changes, the idea, that I have right now is that
is pass line = -1 to the record_line and do not touch any
lines at that PC, change that to line = 0 internally, record
that. so the line table looks like it was always, since
I cannot tell what breaks when that end sequence is not there.


Bernd.

>>                                                               and
>> should fix the regression that Andrew wanted to fix with his
>> patch:
> 
>>
>> [PATCH 2/2] gdb: Preserve is-stmt lines when switch between files
>> https://marc.info/?l=gdb-patches&m=158595247916817&w=2
>>
>> So I hope that will not be necessary after this.
> 
> It would be nice if you picked up the extra tests from that patch and
> included them here if this is a replacement solution.
> 
>>
>> There is a theoretic issue with line numbers at the end
>> of a function, these could coincidentally have the same
>> PC as the following function.  That might need more work
>> to solve that, in the moment I have not yet looked at
>> tracking that down.
>>
>>
>> Thanks
>> Bernd.
> 
>> From 330eadf4b42e44bfa82c30a6bda21393fa4a54c8 Mon Sep 17 00:00:00 2001
>> From: Bernd Edlinger <bernd.edlinger@hotmail.de>
>> Date: Sun, 9 Feb 2020 21:13:17 +0100
>> Subject: [PATCH] Fix range end handling of inlined subroutines
>>
>> Since the is_stmt is now handled, it becomes
>> possible to locate dubious is_stmt line entries
>> at the end of an inlined function, even if the
>> called inline function is in the same subfile.
>>
>> When there is a sequence of line entries at the
>> same address where an inline range ends, and the
>> last item has is_stmt = 0, we force all previous
>> items to have is_stmt = 0 as well.
>>
>> If the last line at that address has is_stmt = 1,
>> there is no need to change anything, since a step
>> over will always stop at that last line from the
>> same address, which is fine, since it is outside
>> the subroutine.
>>
>> With this change we loose the ability to set
>> breakpoints on some lines using file:line syntax,
>> but the data is not completely lost, as the
>> line table is still holding those lines, just
>> with the is_stmt flag reset.
> 
> This is a trade off that I don't think we should breeze over quite so
> easily.  Many, many users make use of an IDE to drive GDB, and in
> those cases they mostly use file:line syntax exclusively, so any loss
> in this area is something we should consider seriously.
> 
>>
>> This is necessary as breakpoints on these lines
>> are problematic, as the call stack is often
>> wrong.
> 
> Maybe.  Yes I absolutely agree that in the test case, when we stop at
> these line numbers, the call stack is wrong.  But, as GDB developers,
> we can have a slightly different take on things.  In this particular
> case the debug information we're supplied is just plain wrong.  This
> is documented in this GCC bug:
> 
>   https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94474
> 
> ( Bernd, I know you've already seen that, I include the link for anyone else
>   following this thread. )
> 
> The lines that are part of the inline subroutine, in this test are
> marked as is-stmt _and_ are outside the range of the inline
> subroutine.  So the call stack GDB presents is not wrong w.r.t the
> debug information we're given, it's the debug information that is
> wrong in this case.
> 
> Now, there are many places where GDB tries to work around broken debug
> information, but I think that in this case we give up too much.  I
> would prefer to see if GCC can fix their DWARF creation first before
> we take something like this.
> 
>>        From the block info they appear to be
>> located in the caller, but they are actually meant
>> to be part of the subroutine, therefore usually one
>> frame is missing from the callstack when the
>> execution stops there.
> 
> The lines shouldn't be marked as is-stmt in the location they are, or
> GCC should extend the range slightly.
> 
>>
>> This is about the best we can do at the moment,
>> unless location view information are added to the
>> block ranges debug info structure, and location
>> views are implemented in gdb in general.
> 
> Please do correct me if I'm wrong, but I don't think GCC can yet
> produce view information for range endings, right?
> 
> I agree that the best solution here would be to have location views
> for range start (GCC can do this) and range end (I think this is
> missing), then scopes can merge over within a single address.
> 
>>
>> gdb:
>> 2020-04-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
>>
>> 	* buildsym.c (buildsym_compunit::record_line): Remove line deletion
>> 	at end sequence marker.
>> 	(buildsym_compunit::record_inline_range_end,
>> 	patch_inline_end_pos): New helper functions.
>> 	(buildsym_compunit::end_symtab_with_blockvector): Patch line table.
>> 	(buildsym_compunit::~buildsym_compunit): Cleanup m_inline_end_vector.
>> 	* buildsym.h (buildsym_compunit::record_inline_range_end): Declare.
>> 	(buildsym_compunit::m_inline_end_vector,
>> 	buildsym_compunit::m_inline_end_vector_length,
>> 	buildsym_compunit::m_inline_end_vector_nitems): New data items.
>> 	* dwarf2/read.c (dwarf2_rnglists_process,
>> 	dwarf2_ranges_process): Don't ignore empty ranges here.
>> 	(dwarf2_ranges_read): Ignore empty ranges here.
>> 	(dwarf2_record_block_ranges): Pass end of range PC to
>> 	record_inline_range_end for inline functions.
>>
>> gdb/testsuite:
>> 2020-04-04  Bernd Edlinger  <bernd.edlinger@hotmail.de>
>>
>> 	* gdb.cp/step-and-next-inline.exp: Adjust test.
>> ---
>>  gdb/buildsym.c                                | 115 ++++++++++++++++++++------
>>  gdb/buildsym.h                                |  11 +++
>>  gdb/dwarf2/read.c                             |  22 +++--
>>  gdb/testsuite/gdb.cp/step-and-next-inline.exp |  17 ----
>>  4 files changed, 114 insertions(+), 51 deletions(-)
>>
>> diff --git a/gdb/buildsym.c b/gdb/buildsym.c
>> index fe07103..e6e7437 100644
>> --- a/gdb/buildsym.c
>> +++ b/gdb/buildsym.c
>> @@ -113,6 +113,8 @@ struct pending_block
>>        next1 = next->next;
>>        xfree ((void *) next);
>>      }
>> +
>> +  xfree (m_inline_end_vector);
>>  }
>>  
>>  struct macro_table *
>> @@ -691,31 +693,6 @@ 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)
>> -    {
>> -      e = subfile->line_vector->item + subfile->line_vector->nitems;
>> -      do
>> -	{
>> -	  e--;
>> -	  if (e->pc != pc || e->line == 0)
>> -	    break;
>> -	  e->is_stmt = 0;
>> -	}
>> -      while (e > subfile->line_vector->item);
>> -    }
>> -
> 
> I'm slightly nervous with this proposed change.  Code like this
> existed before we started messing with is-stmt support, and I suspect
> it probably dates from a time before testing was as good as it is
> now.  I assume nothing regresses with this removed, but it would be
> nice to try a few experiments I think with different combinations of
> two files, empty line ranges, and having is-stmt before and after the
> transition between files, just to confirm that we really don't need
> this code any more.  I suspect this is the "line numbers at the end of
> a function" issue you mentioned in your introductory text.
> 
> That said, I see how removing this provides an alternative solution to
> the patch I posted.
> 
>>    e = subfile->line_vector->item + subfile->line_vector->nitems++;
>>    e->line = line;
>>    e->is_stmt = is_stmt ? 1 : 0;
>> @@ -723,6 +700,90 @@ struct blockvector *
>>  }
>>  
>>  \f
>> +/* Record a PC where a inlined subroutine ends.  */
>> +
>> +void
>> +buildsym_compunit::record_inline_range_end (CORE_ADDR end)
>> +{
>> +  /* The performance of this function is very important,
>> +     it shall be O(n*log(n)) therefore we do not use std::vector
>> +     here since some compilers, e.g. visual studio, do not
>> +     guarantee that for vector::push_back.  */
> 
> I think we're going to need more of a group discussion on this.
> Simply saying std::vector is too slow doesn't I'm afraid convince me.
> There seem to be lots of other places in GDB where both performance is
> critical, and we use ::push_back.
> 
> Is your claim that we should move away from std::vector in all these
> cases?  Is this case somehow special?
> 
> Obviously I've made this point before, and you're sticking to your
> position, which is fine, but I can't approve this patch without seeing
> a more compelling argument against std::vector.  That said, if some
> other maintainer is convinced, they're welcome to approve it.  Either
> way, the comment would be better placed at the declaration of the
> variable, rather than here I think.
> 
>> +  if (m_inline_end_vector == nullptr)
>> +    {
>> +      m_inline_end_vector_length = INITIAL_LINE_VECTOR_LENGTH;
>> +      m_inline_end_vector = (CORE_ADDR *)
>> +	xmalloc (sizeof (CORE_ADDR) * m_inline_end_vector_length);
>> +      m_inline_end_vector_nitems = 0;
>> +    }
>> +  else if (m_inline_end_vector_nitems == m_inline_end_vector_length)
>> +    {
>> +      m_inline_end_vector_length *= 2;
>> +      m_inline_end_vector = (CORE_ADDR *)
>> +	xrealloc ((char *) m_inline_end_vector,
>> +		  sizeof (CORE_ADDR) * m_inline_end_vector_length);
>> +    }
>> +
>> +  m_inline_end_vector[m_inline_end_vector_nitems++] = end;
>> +}
>> +
>> +\f
>> +/* Patch the is_stmt bits at the given inline end address.
>> +   The line table has to be already sorted.  */
>> +
>> +static void
>> +patch_inline_end_pos (struct linetable *table, CORE_ADDR end)
>> +{
>> +  int a = 2, b = table->nitems - 1;
>> +  struct linetable_entry *items = table->item;
>> +
>> +  /* We need at least two items with pc = end in the table.
>> +     The lowest usable items are at pos 0 and 1, the highest
>> +     usable items are at pos b - 2 and b - 1.  */
>> +  if (a > b || end < items[1].pc || end > items[b - 2].pc)
>> +    return;
>> +
>> +  /* Look for the first item with pc > end in the range [a,b].
>> +     The previous element has pc = end or there is no match.
>> +     We set a = 2, since we need at least two consecutive elements
>> +     with pc = end to do anything useful.
>> +     We set b = nitems - 1, since we are not interested in the last
>> +     element which should be an end of sequence marker with line = 0
>> +     and is_stmt = 1.  */
>> +  while (a < b)
>> +    {
>> +      int c = (a + b) / 2;
>> +
>> +      if (end < items[c].pc)
>> +	b = c;
>> +      else
>> +	a = c + 1;
>> +    }
>> +
>> +  a--;
>> +  if (items[a].pc != end || items[a].is_stmt)
>> +    return;
>> +
>> +  /* When there is a sequence of line entries at the same address
>> +     where an inline range ends, and the last item has is_stmt = 0,
>> +     we force all previous items to have is_stmt = 0 as well.
>> +     Setting breakpoints at those addresses is currently not
>> +     supported, since it is unclear if the previous addresses are
>> +     part of the subroutine or the calling program.  */
>> +  do
>> +    {
>> +      /* We stop at the first line entry with a different address,
>> +	 or when we see an end of sequence marker.  */
>> +      a--;
>> +      if (items[a].pc != end || items[a].line == 0)
>> +	break;
>> +
>> +      items[a].is_stmt = 0;
>> +    }
>> +  while (a > 0);
>> +}
>> +
>> +\f
>>  /* Subroutine of end_symtab to simplify it.  Look for a subfile that
>>     matches the main source file's basename.  If there is only one, and
>>     if the main source file doesn't have any symbol or line number
>> @@ -956,6 +1017,10 @@ struct compunit_symtab *
>>  			      subfile->line_vector->item
>>  			      + subfile->line_vector->nitems,
>>  			      lte_is_less_than);
>> +
>> +	   for (int i = 0; i < m_inline_end_vector_nitems; i++)
>> +	     patch_inline_end_pos (subfile->line_vector,
>> +				   m_inline_end_vector[i]);
>>  	}
>>  
>>        /* Allocate a symbol table if necessary.  */
>> diff --git a/gdb/buildsym.h b/gdb/buildsym.h
>> index c768a4c..2845789 100644
>> --- a/gdb/buildsym.h
>> +++ b/gdb/buildsym.h
>> @@ -190,6 +190,8 @@ struct buildsym_compunit
>>    void record_line (struct subfile *subfile, int line, CORE_ADDR pc,
>>  		    bool is_stmt);
>>  
>> +  void record_inline_range_end (CORE_ADDR end);
>> +
>>    struct compunit_symtab *get_compunit_symtab ()
>>    {
>>      return m_compunit_symtab;
>> @@ -397,6 +399,15 @@ struct buildsym_compunit
>>  
>>    /* Pending symbols that are local to the lexical context.  */
>>    struct pending *m_local_symbols = nullptr;
>> +
>> +  /* Pending inline end range addresses.  */
>> +  CORE_ADDR * m_inline_end_vector = nullptr;
>> +
>> +  /* Number of allocated inline end range addresses.  */
>> +  int m_inline_end_vector_length = 0;
>> +
>> +  /* Number of pending inline end range addresses.  */
>> +  int m_inline_end_vector_nitems = 0;
>>  };
>>  
>>  \f
>> diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
>> index bcc3116..321de93 100644
>> --- a/gdb/dwarf2/read.c
>> +++ b/gdb/dwarf2/read.c
>> @@ -13527,10 +13527,6 @@ class process_die_scope
>>  	  return false;
>>  	}
>>  
>> -      /* Empty range entries have no effect.  */
>> -      if (range_beginning == range_end)
>> -	continue;
> 
> I don't think we should be doing this.  This is defined quite clearly
> in the DWARF spec as being an empty range.  No code is associated with
> this range.  As such, it really shouldn't have an impact on how we
> interpret the rest of the DWARF.
> 
> Again, I think you're trying too hard to work around GCC's broken
> DWARF output.
> 
>> -
>>        range_beginning += *base;
>>        range_end += *base;
>>  
>> @@ -13638,10 +13634,6 @@ class process_die_scope
>>  	  return 0;
>>  	}
>>  
>> -      /* Empty range entries have no effect.  */
>> -      if (range_beginning == range_end)
>> -	continue;
> 
> Same.
> 
>> -
>>        range_beginning += *base;
>>        range_end += *base;
>>  
>> @@ -13681,6 +13673,10 @@ class process_die_scope
>>    retval = dwarf2_ranges_process (offset, cu,
>>      [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
>>      {
>> +      /* Empty range entries have no effect.  */
>> +      if (range_beginning == range_end)
>> +	return;
> 
> Same.
> 
>> +
>>        if (ranges_pst != NULL)
>>  	{
>>  	  CORE_ADDR lowpc;
>> @@ -13918,6 +13914,7 @@ class process_die_scope
>>    struct gdbarch *gdbarch = get_objfile_arch (objfile);
>>    struct attribute *attr;
>>    struct attribute *attr_high;
>> +  bool inlined_subroutine = (die->tag == DW_TAG_inlined_subroutine);
>>  
>>    attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
>>    if (attr_high)
>> @@ -13933,7 +13930,10 @@ class process_die_scope
>>  
>>  	  low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
>>  	  high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
>> -	  cu->get_builder ()->record_block_range (block, low, high - 1);
>> +	  if (inlined_subroutine)
>> +	    cu->get_builder ()->record_inline_range_end (high);
>> +	  if (low < high)
>> +	    cu->get_builder ()->record_block_range (block, low, high - 1);
>>          }
>>      }
>>  
>> @@ -13958,6 +13958,10 @@ class process_die_scope
>>  	  end += baseaddr;
>>  	  start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
>>  	  end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
>> +	  if (inlined_subroutine)
>> +	    cu->get_builder ()->record_inline_range_end (end);
>> +	  if (start == end)
>> +	    return;
>>  	  cu->get_builder ()->record_block_range (block, start, end - 1);
>>  	  blockvec.emplace_back (start, end);
>>  	});
>> diff --git a/gdb/testsuite/gdb.cp/step-and-next-inline.exp b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>> index 3733fa7..e3a5793 100644
>> --- a/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>> +++ b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>> @@ -52,37 +52,20 @@ proc do_test { use_header } {
>>      gdb_test "step" ".*" "step into get_alias_set"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 1"
>> -    # It's possible that this first failure (when not using a header
>> -    # file) is GCC's fault, though the remaining failures would best
>> -    # be fixed by adding location views support (though it could be
>> -    # that some easier heuristic could be figured out).  Still, it is
>> -    # not certain that the first failure wouldn't also be fixed by
>> -    # having location view support, so for now it is tagged as such.
>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>      gdb_test "next" ".*TREE_TYPE.*" "next step 1"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 2"
>>      gdb_test "next" ".*TREE_TYPE.*" "next step 2"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 3"
>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>      gdb_test "next" ".*TREE_TYPE.*" "next step 3"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 4"
>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>      gdb_test "next" "return 0.*" "next step 4"
>>      gdb_test "bt" \
>>  	"\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 5"
>>  
>> -    if {!$use_header} {
>> -	# With the debug from GCC 10.x (and earlier) GDB is currently
>> -	# unable to successfully complete the following tests when we
>> -	# are not using a header file.
>> -	kfail symtab/25507 "stepping tests"
>> -	return
>> -    }
>> -
> 
> In summary:
> 
> If we can convince ourselves that the removal of the special END
> handling block really is OK, then I'm happy for _that_ part of this
> patch to replace my proposed patch.  Does this part have to be bundled
> with the second part?
> 
> I don't think the rest of the patch should be merged at the moment.  I
> think we should wait to see if GCC can fix their broken DWARF
> production.  If this issue is resolved, then possibly we could
> maintain this, or some variation of this guarded with a producer
> check, so only known bad versions of GCC are modified.  But I don't
> think we should assume that all producers get their range information
> wrong.
> 
> Thanks,
> Andrew
> 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-04 22:30   ` Luis Machado
@ 2020-04-05  0:05     ` Bernd Edlinger
  0 siblings, 0 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-05  0:05 UTC (permalink / raw)
  To: Luis Machado, gdb-patches, Andrew Burgess, Tom Tromey



On 4/5/20 12:30 AM, Luis Machado wrote:
> On 4/4/20 7:27 PM, Luis Machado wrote:
>> Hi,
>>
>> On 4/4/20 4:50 PM, Bernd Edlinger wrote:
>>> Hi,
>>>
>>> this is an updated version of my patch that was originally only intended
>>> to fix the issues with inline functions in the same file.  That needed
>>> re-basing anyway, because of a merge conflict.
>>>
>>> I removed the code that does the special handling of end sequence
>>> markers in record_line now, since it seems to cause more problems than
>>> it solves.
>>>
>>> I believe it will fix the regression that Louis pointed out, and
>>> should fix the regression that Andrew wanted to fix with his
>>> patch:
>>
>> I gave this a try and the FAIL's are still there unfortunately.
> 
> Actually, there are 6 more of them, with the patch. I'll read through the thread to understand what these changes are aiming to fix.
> 
> I wouldn't be surprised if GDB is covering some known compiler debug info generation hiccup.

Thanks Luis,

even a FAIL allows me to learn out of it :)


Bernd.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCHv6] Fix range end handling of inlined subroutines
  2020-04-04 19:50 [PATCHv5] Fix range end handling of inlined subroutines Bernd Edlinger
  2020-04-04 22:07 ` Andrew Burgess
  2020-04-04 22:27 ` Luis Machado
@ 2020-04-05  2:28 ` Bernd Edlinger
  2020-04-05 15:26   ` Luis Machado
  2020-04-06 17:35   ` Andrew Burgess
  2 siblings, 2 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-05  2:28 UTC (permalink / raw)
  To: gdb-patches, Andrew Burgess, Luis Machado, Tom Tromey

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

Hi,

this is it, what might fix Luis aarch64 tests hopefully, please confirm.

It still misses a good test case, though.

I attached both the fixed version of my inline end patch,
and a diff of the test results:

 + is results with 3349112e380712432d5818154d67ab4660af056f.
 - is results with this patch applied to above version.

I often have a hard time to tell which is a regression and which is
just because of transient errors, where test cases are not stable.

I hope this also helps with the Problem that Andrew is tackling
in the other patch, since I keep at least some line-entries as is-stmt
which were previously just deleted, or converted to non-is-stmt,
that is what makes the issue from the patch description.

This changes only line table entries that are at the same PC as
an end of inline function block.  Exactly that is the information
that is missing in the DWARF format, therefore it is not possible
to just fix gcc IMHO, we must fix the DWARF format, thus create
a new version, implement that in gcc and in gdb, that should tell
us what to do with the line entries at these special places.

Andrew, could you try this, if this patch fixes your problem,
or at least does not make it harder to fix?


Thanks
Bernd.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-range-end-handling-of-inlined-subroutines.patch --]
[-- Type: text/x-patch; name="0001-Fix-range-end-handling-of-inlined-subroutines.patch", Size: 14600 bytes --]

From 8d7b78a97daea5da74211a633f9e01bc9715d649 Mon Sep 17 00:00:00 2001
From: Bernd Edlinger <bernd.edlinger@hotmail.de>
Date: Sun, 9 Feb 2020 21:13:17 +0100
Subject: [PATCH] Fix range end handling of inlined subroutines

Since the is_stmt is now handled, it becomes
possible to locate dubious is_stmt line entries
at the end of an inlined function, even if the
called inline function is in the same subfile.

When there is a sequence of line entries at the
same address where an inline range ends, and the
last item has is_stmt = 0, we force all previous
items to have is_stmt = 0 as well.

If the last line at that address has is_stmt = 1,
there is no need to change anything, since a step
over will always stop at that last line from the
same address, which is fine, since it is outside
the subroutine.

With this change we lose the ability to set
breakpoints on some lines using file:line syntax,
but the data is not completely lost, as the
line table is still holding those lines, just
with the is_stmt flag reset.

This is necessary as breakpoints on these lines
are problematic, as the call stack is often
wrong.  From the block info they appear to be
located in the caller, but they are actually meant
to be part of the subroutine, therefore usually one
frame is missing from the callstack when the
execution stops there.

This is about the best we can do at the moment,
unless location view information are added to the
block ranges debug info structure, and location
views are implemented in gdb in general.

This restores the previous behavior of
record_line that deletes lines at the end of
a function.

gdb:
2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>

	* buildsym.c (buildsym_compunit::record_line): Delete
	previous lines at the same PC as the end sequence marker,
	but don't do that for a fake end sequence marker.
	(buildsym_compunit::record_inline_range_end,
	patch_inline_end_pos): New helper functions.
	(buildsym_compunit::end_symtab_with_blockvector): Patch line table.
	(buildsym_compunit::~buildsym_compunit): Cleanup m_inline_end_vector.
	* buildsym.h (buildsym_compunit::record_inline_range_end): Declare.
	(buildsym_compunit::m_inline_end_vector,
	buildsym_compunit::m_inline_end_vector_length,
	buildsym_compunit::m_inline_end_vector_nitems): New data items.
	* dwarf2/read.c (dwarf2_rnglists_process,
	dwarf2_ranges_process): Don't ignore empty ranges here.
	(dwarf2_ranges_read): Ignore empty ranges here.
	(dwarf2_record_block_ranges): Pass end of range PC to
	record_inline_range_end for inline functions.
	(dwarf_finish_line): Add new parameter end_sequence.
	(lnp_state_machine::record_line): Pass end_sequence to
	dwarf_finish_line.

gdb/testsuite:
2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>

	* gdb.cp/step-and-next-inline.exp: Adjust test.
---
 gdb/buildsym.c                                | 124 ++++++++++++++++++++++----
 gdb/buildsym.h                                |  11 +++
 gdb/dwarf2/read.c                             |  30 ++++---
 gdb/testsuite/gdb.cp/step-and-next-inline.exp |  17 ----
 4 files changed, 135 insertions(+), 47 deletions(-)

diff --git a/gdb/buildsym.c b/gdb/buildsym.c
index fe07103..8c67e58 100644
--- a/gdb/buildsym.c
+++ b/gdb/buildsym.c
@@ -113,6 +113,8 @@ struct pending_block
       next1 = next->next;
       xfree ((void *) next);
     }
+
+  xfree (m_inline_end_vector);
 }
 
 struct macro_table *
@@ -691,30 +693,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).
+  /* The end of sequence marker is special.  We need to delete any
+     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)
+     function begins.  There is also a fake end of sequence marker (-1)
+     that we emit internally when switching between different CUs
+     In this case, duplicate line table entries shall not be deleted.
+     But the line table entry looks the same in both cases.  */
+  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);
     }
+  else if (line == -1)
+    line = 0;
 
   e = subfile->line_vector->item + subfile->line_vector->nitems++;
   e->line = line;
@@ -723,6 +723,90 @@ struct blockvector *
 }
 
 \f
+/* Record a PC where a inlined subroutine ends.  */
+
+void
+buildsym_compunit::record_inline_range_end (CORE_ADDR end)
+{
+  /* The performance of this function is very important,
+     it shall be O(n*log(n)) therefore we do not use std::vector
+     here since some compilers, e.g. visual studio, do not
+     guarantee that for vector::push_back.  */
+  if (m_inline_end_vector == nullptr)
+    {
+      m_inline_end_vector_length = INITIAL_LINE_VECTOR_LENGTH;
+      m_inline_end_vector = (CORE_ADDR *)
+	xmalloc (sizeof (CORE_ADDR) * m_inline_end_vector_length);
+      m_inline_end_vector_nitems = 0;
+    }
+  else if (m_inline_end_vector_nitems == m_inline_end_vector_length)
+    {
+      m_inline_end_vector_length *= 2;
+      m_inline_end_vector = (CORE_ADDR *)
+	xrealloc ((char *) m_inline_end_vector,
+		  sizeof (CORE_ADDR) * m_inline_end_vector_length);
+    }
+
+  m_inline_end_vector[m_inline_end_vector_nitems++] = end;
+}
+
+\f
+/* Patch the is_stmt bits at the given inline end address.
+   The line table has to be already sorted.  */
+
+static void
+patch_inline_end_pos (struct linetable *table, CORE_ADDR end)
+{
+  int a = 2, b = table->nitems - 1;
+  struct linetable_entry *items = table->item;
+
+  /* We need at least two items with pc = end in the table.
+     The lowest usable items are at pos 0 and 1, the highest
+     usable items are at pos b - 2 and b - 1.  */
+  if (a > b || end < items[1].pc || end > items[b - 2].pc)
+    return;
+
+  /* Look for the first item with pc > end in the range [a,b].
+     The previous element has pc = end or there is no match.
+     We set a = 2, since we need at least two consecutive elements
+     with pc = end to do anything useful.
+     We set b = nitems - 1, since we are not interested in the last
+     element which should be an end of sequence marker with line = 0
+     and is_stmt = 1.  */
+  while (a < b)
+    {
+      int c = (a + b) / 2;
+
+      if (end < items[c].pc)
+	b = c;
+      else
+	a = c + 1;
+    }
+
+  a--;
+  if (items[a].pc != end || items[a].is_stmt)
+    return;
+
+  /* When there is a sequence of line entries at the same address
+     where an inline range ends, and the last item has is_stmt = 0,
+     we force all previous items to have is_stmt = 0 as well.
+     Setting breakpoints at those addresses is currently not
+     supported, since it is unclear if the previous addresses are
+     part of the subroutine or the calling program.  */
+  do
+    {
+      /* We stop at the first line entry with a different address,
+	 or when we see an end of sequence marker.  */
+      a--;
+      if (items[a].pc != end || items[a].line == 0)
+	break;
+
+      items[a].is_stmt = 0;
+    }
+  while (a > 0);
+}
+
+\f
 /* Subroutine of end_symtab to simplify it.  Look for a subfile that
    matches the main source file's basename.  If there is only one, and
    if the main source file doesn't have any symbol or line number
@@ -956,6 +1040,10 @@ struct compunit_symtab *
 			      subfile->line_vector->item
 			      + subfile->line_vector->nitems,
 			      lte_is_less_than);
+
+	   for (int i = 0; i < m_inline_end_vector_nitems; i++)
+	     patch_inline_end_pos (subfile->line_vector,
+				   m_inline_end_vector[i]);
 	}
 
       /* Allocate a symbol table if necessary.  */
diff --git a/gdb/buildsym.h b/gdb/buildsym.h
index c768a4c..2845789 100644
--- a/gdb/buildsym.h
+++ b/gdb/buildsym.h
@@ -190,6 +190,8 @@ struct buildsym_compunit
   void record_line (struct subfile *subfile, int line, CORE_ADDR pc,
 		    bool is_stmt);
 
+  void record_inline_range_end (CORE_ADDR end);
+
   struct compunit_symtab *get_compunit_symtab ()
   {
     return m_compunit_symtab;
@@ -397,6 +399,15 @@ struct buildsym_compunit
 
   /* Pending symbols that are local to the lexical context.  */
   struct pending *m_local_symbols = nullptr;
+
+  /* Pending inline end range addresses.  */
+  CORE_ADDR * m_inline_end_vector = nullptr;
+
+  /* Number of allocated inline end range addresses.  */
+  int m_inline_end_vector_length = 0;
+
+  /* Number of pending inline end range addresses.  */
+  int m_inline_end_vector_nitems = 0;
 };
 
 \f
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
index bcc3116..aa32726 100644
--- a/gdb/dwarf2/read.c
+++ b/gdb/dwarf2/read.c
@@ -13527,10 +13527,6 @@ class process_die_scope
 	  return false;
 	}
 
-      /* Empty range entries have no effect.  */
-      if (range_beginning == range_end)
-	continue;
-
       range_beginning += *base;
       range_end += *base;
 
@@ -13638,10 +13634,6 @@ class process_die_scope
 	  return 0;
 	}
 
-      /* Empty range entries have no effect.  */
-      if (range_beginning == range_end)
-	continue;
-
       range_beginning += *base;
       range_end += *base;
 
@@ -13681,6 +13673,10 @@ class process_die_scope
   retval = dwarf2_ranges_process (offset, cu,
     [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
     {
+      /* Empty range entries have no effect.  */
+      if (range_beginning == range_end)
+	return;
+
       if (ranges_pst != NULL)
 	{
 	  CORE_ADDR lowpc;
@@ -13918,6 +13914,7 @@ class process_die_scope
   struct gdbarch *gdbarch = get_objfile_arch (objfile);
   struct attribute *attr;
   struct attribute *attr_high;
+  bool inlined_subroutine = (die->tag == DW_TAG_inlined_subroutine);
 
   attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
   if (attr_high)
@@ -13933,7 +13930,10 @@ class process_die_scope
 
 	  low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
 	  high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
-	  cu->get_builder ()->record_block_range (block, low, high - 1);
+	  if (inlined_subroutine)
+	    cu->get_builder ()->record_inline_range_end (high);
+	  if (low < high)
+	    cu->get_builder ()->record_block_range (block, low, high - 1);
         }
     }
 
@@ -13958,6 +13958,10 @@ class process_die_scope
 	  end += baseaddr;
 	  start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
 	  end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
+	  if (inlined_subroutine)
+	    cu->get_builder ()->record_inline_range_end (end);
+	  if (start == end)
+	    return;
 	  cu->get_builder ()->record_block_range (block, start, end - 1);
 	  blockvec.emplace_back (start, end);
 	});
@@ -19479,7 +19483,7 @@ class lnp_state_machine
 
 static void
 dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
-		   CORE_ADDR address, struct dwarf2_cu *cu)
+		   CORE_ADDR address, struct dwarf2_cu *cu, bool end_sequence)
 {
   if (subfile == NULL)
     return;
@@ -19492,7 +19496,8 @@ class lnp_state_machine
 			  paddress (gdbarch, address));
     }
 
-  dwarf_record_line_1 (gdbarch, subfile, 0, address, true, cu);
+  dwarf_record_line_1 (gdbarch, subfile, end_sequence ? 0 : -1, address,
+		       true, cu);
 }
 
 void
@@ -19525,7 +19530,8 @@ class lnp_state_machine
 	      || end_sequence)
 	    {
 	      dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
-				 m_currently_recording_lines ? m_cu : nullptr);
+				 m_currently_recording_lines ? m_cu : nullptr,
+				 end_sequence);
 	    }
 
 	  if (!end_sequence)
diff --git a/gdb/testsuite/gdb.cp/step-and-next-inline.exp b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
index 3733fa7..e3a5793 100644
--- a/gdb/testsuite/gdb.cp/step-and-next-inline.exp
+++ b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
@@ -52,37 +52,20 @@ proc do_test { use_header } {
     gdb_test "step" ".*" "step into get_alias_set"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 1"
-    # It's possible that this first failure (when not using a header
-    # file) is GCC's fault, though the remaining failures would best
-    # be fixed by adding location views support (though it could be
-    # that some easier heuristic could be figured out).  Still, it is
-    # not certain that the first failure wouldn't also be fixed by
-    # having location view support, so for now it is tagged as such.
-    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
     gdb_test "next" ".*TREE_TYPE.*" "next step 1"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 2"
     gdb_test "next" ".*TREE_TYPE.*" "next step 2"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 3"
-    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
     gdb_test "next" ".*TREE_TYPE.*" "next step 3"
     gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
 	"not in inline 4"
-    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
     gdb_test "next" "return 0.*" "next step 4"
     gdb_test "bt" \
 	"\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
 	"not in inline 5"
 
-    if {!$use_header} {
-	# With the debug from GCC 10.x (and earlier) GDB is currently
-	# unable to successfully complete the following tests when we
-	# are not using a header file.
-	kfail symtab/25507 "stepping tests"
-	return
-    }
-
     clean_restart ${executable}
 
     if ![runto_main] {
-- 
1.9.1


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: test.diff --]
[-- Type: text/x-patch; name="test.diff", Size: 30054 bytes --]

--- /dev/fd/63	2020-04-05 04:14:05.929697173 +0200
+++ /dev/fd/62	2020-04-05 04:14:05.929697173 +0200
@@ -1,4 +1,4 @@
-Test Run By ed on Sun Apr  5 03:07:53 2020
+Test Run By ed on Sun Apr  5 03:45:11 2020
 Native configuration is x86_64-pc-linux-gnu
 
 		=== gdb tests ===
@@ -42091,7 +42091,7 @@
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: continue
 FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread 1 not replaying
-PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
+FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: continue
 FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: thread 1 not replaying
@@ -42132,7 +42132,7 @@
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: continue
 FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 1 not replaying
-PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
+FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 1 not replaying
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 2 not replaying
 PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread apply all record goto end
@@ -42432,78 +42432,77 @@
 PASS: gdb.btrace/vdso.exp: replay: info record
 PASS: gdb.btrace/vdso.exp: replay: record goto begin
 PASS: gdb.btrace/vdso.exp: stepi
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
 PASS: gdb.compile/compile-cplus-anonymous.exp: compile code JKL
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b (timeout)
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b
 FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_e
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.MAGIC (PRMS: compile/23588)
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.len (PRMS: compile/23588)
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.ua (PRMS: compile/23588)
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa (timeout)
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*anon_s.ptr == 'a') (PRMS: compile/23588)
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
 PASS: gdb.compile/compile-cplus-anonymous.exp: compile print ABC
 PASS: gdb.compile/compile-cplus-anonymous.exp: compile print DEF
 PASS: gdb.compile/compile-cplus-anonymous.exp: compile print GHI
 PASS: gdb.compile/compile-cplus-anonymous.exp: compile print JKL
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e (timeout)
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
+PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
+FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.MAGIC (PRMS: compile/23588)
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.len (PRMS: compile/23588)
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.ua (PRMS: compile/23588)
-FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa (timeout)
+FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa
 PASS: gdb.compile/compile-cplus-anonymous.exp: continue to breakpoint: testing location
-FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
+PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
-FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
-FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
+PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
+PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
 PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code DEF
 PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code GHI
 PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code JKL
-FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
-FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
-FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
+PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
+PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
+PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
 FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_e
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.MAGIC (PRMS: compile/23588)
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.len (PRMS: compile/23588)
 KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.ua (PRMS: compile/23588)
-FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa (timeout)
+PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa
 PASS: gdb.compile/compile-cplus-array-decay.exp: compile print integers
 PASS: gdb.compile/compile-cplus-array-decay.exp: compile print strings
 PASS: gdb.compile/compile-cplus-array-decay.exp: continue to breakpoint: testing location
-FAIL: gdb.compile/compile-cplus-inherit.exp: check for working compile command (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1) (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
+PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1)
+PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
+PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
 PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.a_
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.b_ (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.c_ (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.d_ (timeout)
+PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.b_
+PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.c_
+PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.d_
 FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.A::do_it (1)
 FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.B::do_it (1)
 FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.C::do_it (1)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_ (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_ (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_ (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_ (timeout)
+FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_
+FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_
+FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_
+FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_
 PASS: gdb.compile/compile-cplus-inherit.exp: continue to breakpoint: testing location
-FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
-FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
-FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
+PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
+PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
+PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
 PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.a_
-FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_ (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_ (timeout)
-FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_ (timeout)
+PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_
+PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_
+PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_
 FAIL: gdb.compile/compile-cplus-member.exp: compile code A::ATYPE i = 10; var = i;
 FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_
 FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_ = E_B; var = A::s_private_;
@@ -42624,21 +42623,21 @@
 PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code N1::N2::N3::N4::n4static
 PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.get_var ()
 PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.s4int_
-FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_; (timeout)
-FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
+FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_;
+FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_;
 FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
-FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
-FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_ (timeout)
-FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_ (timeout)
-FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_ (timeout)
-FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_ (timeout)
+FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
+FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_
+FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_
+FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_
+FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_
 PASS: gdb.compile/compile-cplus-nested.exp: continue to breakpoint: testing location
 FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 &r1 = i1; var = r1.a_;
-FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
+FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_;
 FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
-FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
-FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_ (timeout)
-FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_ (timeout)
+FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
+FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_
+FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_
 PASS: gdb.compile/compile-cplus-print.exp: Set language to C++
 KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararray@3 (PRMS: compile/23587)
 KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararrayp@3 (PRMS: compile/23587)
@@ -49883,34 +49882,18 @@
 PASS: gdb.cp/static-print-quit.exp: set pagination off
 PASS: gdb.cp/static-print-quit.exp: set width 80
 PASS: gdb.cp/static-typedef-print.exp: print static member
-PASS: gdb.cp/step-and-next-inline.exp: no_header: in get_alias_set pass 2
-PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 1 pass 2
-PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 2 pass 2
-PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 3 pass 2
 PASS: gdb.cp/step-and-next-inline.exp: no_header: in main
-PASS: gdb.cp/step-and-next-inline.exp: no_header: in main pass 2
-PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 1
+KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 1 (PRMS: symtab/25507)
 PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 2
-PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 3
-PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 4
+KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 3 (PRMS: symtab/25507)
+KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4 (PRMS: symtab/25507)
 PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1
-PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1 pass 2
 PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2
-PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2 pass 2
 PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3
-PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3 pass 2
 PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4
-PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4 pass 2
 PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 5
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step 1
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step 2
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step 3
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step 4
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step 5
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step 6
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step 7
 PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set
-PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set pass 2
+KFAIL: gdb.cp/step-and-next-inline.exp: no_header: stepping tests (PRMS: symtab/25507)
 PASS: gdb.cp/step-and-next-inline.exp: use_header: in get_alias_set pass 2
 PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 1 pass 2
 PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 2 pass 2
@@ -66161,7 +66144,7 @@
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info inferiors
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info threads
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: set schedule-multiple on
-FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT)
+FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT) (the program is no longer running)
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: switch to inferior 2
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: add empty inferior 2
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: attach
@@ -66175,7 +66158,7 @@
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info inferiors
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info threads
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: set schedule-multiple on
-FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
+PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: switch to inferior 2
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: tty TTY
 PASS: gdb.multi/multi-term-settings.exp: inf1_how=run: inf2_how=attach: add empty inferior 2
@@ -74312,7 +74295,7 @@
 PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no failure to remove breakpoints
 PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no spurious thread stop
 PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
-PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
+FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
 PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: set detach-on-fork off
 PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: successfully compiled posix threads test case
 PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
@@ -75041,7 +75024,7 @@
 PASS: gdb.threads/non-ldr-exc-4.exp: lock-sched=on,non-stop=off: set scheduler-locking on
 PASS: gdb.threads/non-ldr-exc-4.exp: successfully compiled posix threads test case
 PASS: gdb.threads/non-ldr-exit.exp: continue to breakpoint: break-here
-PASS: gdb.threads/non-ldr-exit.exp: program exits normally
+KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally (PRMS: gdb/18717)
 PASS: gdb.threads/non-ldr-exit.exp: set scheduler-locking on
 PASS: gdb.threads/non-ldr-exit.exp: successfully compiled posix threads test case
 PASS: gdb.threads/non-stop-fair-events.exp: get num_threads
@@ -75553,48 +75536,48 @@
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: get valueof "thread_num"
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print file_scope_var
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i01
-PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
+KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02 (PRMS: gdb/22214)
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i11
-PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
+KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12 (PRMS: gdb/22214)
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i21
-PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
+KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22 (PRMS: gdb/22214)
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: continue to breakpoint: at printf
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: get valueof "thread_num"
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print file_scope_var
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i01
-KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02 (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i11
-KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12 (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
 PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i21
-KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22 (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: continue to breakpoint: at printf
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: get valueof "tn"
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print file_scope_var
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print i
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print j
-PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k
+KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k (PRMS: gdb/22214)
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print p
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print q
-PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r
+KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r (PRMS: gdb/22214)
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print s1
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print tn
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print x
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print y
-PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z
+KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z (PRMS: gdb/22214)
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: continue to breakpoint: at printf
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: get valueof "tn"
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print file_scope_var
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print i
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print j
-KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print p
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print q
-KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print s1
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print tn
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print x
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print y
-KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: continue to breakpoint: at printf
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: get valueof "tn"
 PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print file_scope_var
@@ -75638,8 +75621,8 @@
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print file_scope_var
 KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i (PRMS: gdb/22214)
 KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j (PRMS: gdb/22214)
-PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
-PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
+XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
+XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print num
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: continue to breakpoint: at printf
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: get valueof "inner_num"
@@ -75656,14 +75639,14 @@
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print file_scope_var
 KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print i (PRMS: gdb/22214)
 KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print j (PRMS: gdb/22214)
-XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
-XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
+PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
+PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print num
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: continue to breakpoint: at printf
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: get local valueof "num"
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print file_scope_var
-KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i (PRMS: gdb/22214)
-KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
+PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print k
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print l
 PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print num
@@ -75678,7 +75661,7 @@
 PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: get valueof "thread_num"
 PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i1
 PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i2
-KFAIL: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3 (PRMS: gdb/22214)
+PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3
 PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s1
 PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s2
 PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s3
@@ -75686,7 +75669,7 @@
 PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: get valueof "thread_num"
 PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i1
 PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i2
-PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
+KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3 (PRMS: gdb/22214)
 PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s1
 PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s2
 PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s3
@@ -75799,7 +75782,7 @@
 PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: probe for target remote
 PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: set breakpoint that evals false
 PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: continue &
-KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (memory error) (PRMS: gdb/18749)
+KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (prompt) (PRMS: gdb/18749)
 PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: probe for target remote
 PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: set breakpoint that evals false
 PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: continue &
@@ -77532,12 +77515,12 @@
 
 		=== gdb Summary ===
 
-# of expected passes		76351
-# of unexpected failures	828
+# of expected passes		76363
+# of unexpected failures	796
 # of expected failures		69
-# of known failures		104
+# of known failures		107
 # of untested testcases		44
 # of unresolved testcases	5
 # of unsupported tests		118
-/home/ed/gnu/gdb-build-1/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-1/gdb/testsuite/../data-directory 
+/home/ed/gnu/gdb-build-2/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-2/gdb/testsuite/../data-directory 
 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv6] Fix range end handling of inlined subroutines
  2020-04-05  2:28 ` [PATCHv6] " Bernd Edlinger
@ 2020-04-05 15:26   ` Luis Machado
  2020-04-05 16:00     ` Bernd Edlinger
  2020-04-06 17:35   ` Andrew Burgess
  1 sibling, 1 reply; 16+ messages in thread
From: Luis Machado @ 2020-04-05 15:26 UTC (permalink / raw)
  To: Bernd Edlinger, gdb-patches, Andrew Burgess, Tom Tromey

Hi,

On 4/4/20 11:28 PM, Bernd Edlinger wrote:
> Hi,
> 
> this is it, what might fix Luis aarch64 tests hopefully, please confirm.

I've confirmed the testcase is getting full PASSes now. Thanks!

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv6] Fix range end handling of inlined subroutines
  2020-04-05 15:26   ` Luis Machado
@ 2020-04-05 16:00     ` Bernd Edlinger
  2020-04-05 17:27       ` Bernd Edlinger
  0 siblings, 1 reply; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-05 16:00 UTC (permalink / raw)
  To: Luis Machado, gdb-patches, Andrew Burgess, Tom Tromey

Hi Lius,

On 4/5/20 5:26 PM, Luis Machado wrote:
> Hi,
> 
> On 4/4/20 11:28 PM, Bernd Edlinger wrote:
>> Hi,
>>
>> this is it, what might fix Luis aarch64 tests hopefully, please confirm.
> 
> I've confirmed the testcase is getting full PASSes now. Thanks!

Oh, thanks.


That was easy :-)


Bernd.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv6] Fix range end handling of inlined subroutines
  2020-04-05 16:00     ` Bernd Edlinger
@ 2020-04-05 17:27       ` Bernd Edlinger
  0 siblings, 0 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-05 17:27 UTC (permalink / raw)
  To: Luis Machado, gdb-patches, Andrew Burgess, Tom Tromey



On 4/5/20 6:00 PM, Bernd Edlinger wrote:
> Hi Lius,
> 

Oops, sorry for typo in you name:
Luis,

I think I wanted to write Linus....

Sorry :)


> On 4/5/20 5:26 PM, Luis Machado wrote:
>> Hi,
>>
>> On 4/4/20 11:28 PM, Bernd Edlinger wrote:
>>> Hi,
>>>
>>> this is it, what might fix Luis aarch64 tests hopefully, please confirm.
>>
>> I've confirmed the testcase is getting full PASSes now. Thanks!
> 
> Oh, thanks.
> 
> 
> That was easy :-)
> 
> 
> Bernd.
> 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv6] Fix range end handling of inlined subroutines
  2020-04-05  2:28 ` [PATCHv6] " Bernd Edlinger
  2020-04-05 15:26   ` Luis Machado
@ 2020-04-06 17:35   ` Andrew Burgess
  2020-04-06 19:34     ` Bernd Edlinger
  1 sibling, 1 reply; 16+ messages in thread
From: Andrew Burgess @ 2020-04-06 17:35 UTC (permalink / raw)
  To: Bernd Edlinger; +Cc: gdb-patches, Luis Machado, Tom Tromey

* Bernd Edlinger <bernd.edlinger@hotmail.de> [2020-04-05 04:28:54 +0200]:

> Hi,
> 
> this is it, what might fix Luis aarch64 tests hopefully, please confirm.
> 
> It still misses a good test case, though.
> 
> I attached both the fixed version of my inline end patch,
> and a diff of the test results:
> 
>  + is results with 3349112e380712432d5818154d67ab4660af056f.
>  - is results with this patch applied to above version.
> 
> I often have a hard time to tell which is a regression and which is
> just because of transient errors, where test cases are not stable.
> 
> I hope this also helps with the Problem that Andrew is tackling
> in the other patch, since I keep at least some line-entries as is-stmt
> which were previously just deleted, or converted to non-is-stmt,
> that is what makes the issue from the patch description.
> 
> This changes only line table entries that are at the same PC as
> an end of inline function block.  Exactly that is the information
> that is missing in the DWARF format, therefore it is not possible
> to just fix gcc IMHO, we must fix the DWARF format, thus create
> a new version, implement that in gcc and in gdb, that should tell
> us what to do with the line entries at these special places.
> 
> Andrew, could you try this, if this patch fixes your problem,
> or at least does not make it harder to fix?
> 
> 
> Thanks
> Bernd.

> From 8d7b78a97daea5da74211a633f9e01bc9715d649 Mon Sep 17 00:00:00 2001
> From: Bernd Edlinger <bernd.edlinger@hotmail.de>
> Date: Sun, 9 Feb 2020 21:13:17 +0100
> Subject: [PATCH] Fix range end handling of inlined subroutines
> 
> Since the is_stmt is now handled, it becomes
> possible to locate dubious is_stmt line entries
> at the end of an inlined function, even if the
> called inline function is in the same subfile.
> 
> When there is a sequence of line entries at the
> same address where an inline range ends, and the
> last item has is_stmt = 0, we force all previous
> items to have is_stmt = 0 as well.
> 
> If the last line at that address has is_stmt = 1,
> there is no need to change anything, since a step
> over will always stop at that last line from the
> same address, which is fine, since it is outside
> the subroutine.
> 
> With this change we lose the ability to set
> breakpoints on some lines using file:line syntax,
> but the data is not completely lost, as the
> line table is still holding those lines, just
> with the is_stmt flag reset.
> 
> This is necessary as breakpoints on these lines
> are problematic, as the call stack is often
> wrong.  From the block info they appear to be
> located in the caller, but they are actually meant
> to be part of the subroutine, therefore usually one
> frame is missing from the callstack when the
> execution stops there.
> 
> This is about the best we can do at the moment,
> unless location view information are added to the
> block ranges debug info structure, and location
> views are implemented in gdb in general.
> 
> This restores the previous behavior of
> record_line that deletes lines at the end of
> a function.
> 
> gdb:
> 2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
> 
> 	* buildsym.c (buildsym_compunit::record_line): Delete
> 	previous lines at the same PC as the end sequence marker,
> 	but don't do that for a fake end sequence marker.
> 	(buildsym_compunit::record_inline_range_end,
> 	patch_inline_end_pos): New helper functions.
> 	(buildsym_compunit::end_symtab_with_blockvector): Patch line table.
> 	(buildsym_compunit::~buildsym_compunit): Cleanup m_inline_end_vector.
> 	* buildsym.h (buildsym_compunit::record_inline_range_end): Declare.
> 	(buildsym_compunit::m_inline_end_vector,
> 	buildsym_compunit::m_inline_end_vector_length,
> 	buildsym_compunit::m_inline_end_vector_nitems): New data items.
> 	* dwarf2/read.c (dwarf2_rnglists_process,
> 	dwarf2_ranges_process): Don't ignore empty ranges here.
> 	(dwarf2_ranges_read): Ignore empty ranges here.
> 	(dwarf2_record_block_ranges): Pass end of range PC to
> 	record_inline_range_end for inline functions.
> 	(dwarf_finish_line): Add new parameter end_sequence.
> 	(lnp_state_machine::record_line): Pass end_sequence to
> 	dwarf_finish_line.

The objections I raised in:

  https://sourceware.org/pipermail/gdb-patches/2020-April/167372.html

I think mostly apply to this revision too.  So this is still not
approved.

The primary objection is (miss-)treatment of range endings and empty
ranges.  You've expressed your position in other mail, so I wont try
to repeat you for fear of straw-manning your position.  But for me any
solution would need to acknowledge that this is a work around for bugs
in the DWARF generated by specific versions of GCC, and weren't
present in much older versions of GCC, and might not be present in
newer versions of GCC, nor might these bugs be present in other
producers of DWARF.

In better news, I think my objection related to the lack of use of
std::vector would be easy enough to work around.  This patch should
absolutely use std::vector, but a later patch can introduce
gdb::vector.

For those compilers where the performance of std::vector is good
enough, we make gdb::vector an alias for std::vector.  For those
compiler where you are aware of a performance problem with
std::vector, then make gdb::vector a completely new, API compatible
implementation of std::vector.  Heck, GCC code is copyright assigned
to FSF, so if GCC's std::vector is good enough you could just copy the
implementation from there.

Thanks,
Andrew





> 
> gdb/testsuite:
> 2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
> 
> 	* gdb.cp/step-and-next-inline.exp: Adjust test.
> ---
>  gdb/buildsym.c                                | 124 ++++++++++++++++++++++----
>  gdb/buildsym.h                                |  11 +++
>  gdb/dwarf2/read.c                             |  30 ++++---
>  gdb/testsuite/gdb.cp/step-and-next-inline.exp |  17 ----
>  4 files changed, 135 insertions(+), 47 deletions(-)
> 
> diff --git a/gdb/buildsym.c b/gdb/buildsym.c
> index fe07103..8c67e58 100644
> --- a/gdb/buildsym.c
> +++ b/gdb/buildsym.c
> @@ -113,6 +113,8 @@ struct pending_block
>        next1 = next->next;
>        xfree ((void *) next);
>      }
> +
> +  xfree (m_inline_end_vector);
>  }
>  
>  struct macro_table *
> @@ -691,30 +693,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).
> +  /* The end of sequence marker is special.  We need to delete any
> +     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)
> +     function begins.  There is also a fake end of sequence marker (-1)
> +     that we emit internally when switching between different CUs
> +     In this case, duplicate line table entries shall not be deleted.
> +     But the line table entry looks the same in both cases.  */
> +  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);
>      }
> +  else if (line == -1)
> +    line = 0;
>  
>    e = subfile->line_vector->item + subfile->line_vector->nitems++;
>    e->line = line;
> @@ -723,6 +723,90 @@ struct blockvector *
>  }
>  
>  \f
> +/* Record a PC where a inlined subroutine ends.  */
> +
> +void
> +buildsym_compunit::record_inline_range_end (CORE_ADDR end)
> +{
> +  /* The performance of this function is very important,
> +     it shall be O(n*log(n)) therefore we do not use std::vector
> +     here since some compilers, e.g. visual studio, do not
> +     guarantee that for vector::push_back.  */
> +  if (m_inline_end_vector == nullptr)
> +    {
> +      m_inline_end_vector_length = INITIAL_LINE_VECTOR_LENGTH;
> +      m_inline_end_vector = (CORE_ADDR *)
> +	xmalloc (sizeof (CORE_ADDR) * m_inline_end_vector_length);
> +      m_inline_end_vector_nitems = 0;
> +    }
> +  else if (m_inline_end_vector_nitems == m_inline_end_vector_length)
> +    {
> +      m_inline_end_vector_length *= 2;
> +      m_inline_end_vector = (CORE_ADDR *)
> +	xrealloc ((char *) m_inline_end_vector,
> +		  sizeof (CORE_ADDR) * m_inline_end_vector_length);
> +    }
> +
> +  m_inline_end_vector[m_inline_end_vector_nitems++] = end;
> +}
> +
> +\f
> +/* Patch the is_stmt bits at the given inline end address.
> +   The line table has to be already sorted.  */
> +
> +static void
> +patch_inline_end_pos (struct linetable *table, CORE_ADDR end)
> +{
> +  int a = 2, b = table->nitems - 1;
> +  struct linetable_entry *items = table->item;
> +
> +  /* We need at least two items with pc = end in the table.
> +     The lowest usable items are at pos 0 and 1, the highest
> +     usable items are at pos b - 2 and b - 1.  */
> +  if (a > b || end < items[1].pc || end > items[b - 2].pc)
> +    return;
> +
> +  /* Look for the first item with pc > end in the range [a,b].
> +     The previous element has pc = end or there is no match.
> +     We set a = 2, since we need at least two consecutive elements
> +     with pc = end to do anything useful.
> +     We set b = nitems - 1, since we are not interested in the last
> +     element which should be an end of sequence marker with line = 0
> +     and is_stmt = 1.  */
> +  while (a < b)
> +    {
> +      int c = (a + b) / 2;
> +
> +      if (end < items[c].pc)
> +	b = c;
> +      else
> +	a = c + 1;
> +    }
> +
> +  a--;
> +  if (items[a].pc != end || items[a].is_stmt)
> +    return;
> +
> +  /* When there is a sequence of line entries at the same address
> +     where an inline range ends, and the last item has is_stmt = 0,
> +     we force all previous items to have is_stmt = 0 as well.
> +     Setting breakpoints at those addresses is currently not
> +     supported, since it is unclear if the previous addresses are
> +     part of the subroutine or the calling program.  */
> +  do
> +    {
> +      /* We stop at the first line entry with a different address,
> +	 or when we see an end of sequence marker.  */
> +      a--;
> +      if (items[a].pc != end || items[a].line == 0)
> +	break;
> +
> +      items[a].is_stmt = 0;
> +    }
> +  while (a > 0);
> +}
> +
> +\f
>  /* Subroutine of end_symtab to simplify it.  Look for a subfile that
>     matches the main source file's basename.  If there is only one, and
>     if the main source file doesn't have any symbol or line number
> @@ -956,6 +1040,10 @@ struct compunit_symtab *
>  			      subfile->line_vector->item
>  			      + subfile->line_vector->nitems,
>  			      lte_is_less_than);
> +
> +	   for (int i = 0; i < m_inline_end_vector_nitems; i++)
> +	     patch_inline_end_pos (subfile->line_vector,
> +				   m_inline_end_vector[i]);
>  	}
>  
>        /* Allocate a symbol table if necessary.  */
> diff --git a/gdb/buildsym.h b/gdb/buildsym.h
> index c768a4c..2845789 100644
> --- a/gdb/buildsym.h
> +++ b/gdb/buildsym.h
> @@ -190,6 +190,8 @@ struct buildsym_compunit
>    void record_line (struct subfile *subfile, int line, CORE_ADDR pc,
>  		    bool is_stmt);
>  
> +  void record_inline_range_end (CORE_ADDR end);
> +
>    struct compunit_symtab *get_compunit_symtab ()
>    {
>      return m_compunit_symtab;
> @@ -397,6 +399,15 @@ struct buildsym_compunit
>  
>    /* Pending symbols that are local to the lexical context.  */
>    struct pending *m_local_symbols = nullptr;
> +
> +  /* Pending inline end range addresses.  */
> +  CORE_ADDR * m_inline_end_vector = nullptr;
> +
> +  /* Number of allocated inline end range addresses.  */
> +  int m_inline_end_vector_length = 0;
> +
> +  /* Number of pending inline end range addresses.  */
> +  int m_inline_end_vector_nitems = 0;
>  };
>  
>  \f
> diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
> index bcc3116..aa32726 100644
> --- a/gdb/dwarf2/read.c
> +++ b/gdb/dwarf2/read.c
> @@ -13527,10 +13527,6 @@ class process_die_scope
>  	  return false;
>  	}
>  
> -      /* Empty range entries have no effect.  */
> -      if (range_beginning == range_end)
> -	continue;
> -
>        range_beginning += *base;
>        range_end += *base;
>  
> @@ -13638,10 +13634,6 @@ class process_die_scope
>  	  return 0;
>  	}
>  
> -      /* Empty range entries have no effect.  */
> -      if (range_beginning == range_end)
> -	continue;
> -
>        range_beginning += *base;
>        range_end += *base;
>  
> @@ -13681,6 +13673,10 @@ class process_die_scope
>    retval = dwarf2_ranges_process (offset, cu,
>      [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
>      {
> +      /* Empty range entries have no effect.  */
> +      if (range_beginning == range_end)
> +	return;
> +
>        if (ranges_pst != NULL)
>  	{
>  	  CORE_ADDR lowpc;
> @@ -13918,6 +13914,7 @@ class process_die_scope
>    struct gdbarch *gdbarch = get_objfile_arch (objfile);
>    struct attribute *attr;
>    struct attribute *attr_high;
> +  bool inlined_subroutine = (die->tag == DW_TAG_inlined_subroutine);
>  
>    attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
>    if (attr_high)
> @@ -13933,7 +13930,10 @@ class process_die_scope
>  
>  	  low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
>  	  high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
> -	  cu->get_builder ()->record_block_range (block, low, high - 1);
> +	  if (inlined_subroutine)
> +	    cu->get_builder ()->record_inline_range_end (high);
> +	  if (low < high)
> +	    cu->get_builder ()->record_block_range (block, low, high - 1);
>          }
>      }
>  
> @@ -13958,6 +13958,10 @@ class process_die_scope
>  	  end += baseaddr;
>  	  start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
>  	  end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
> +	  if (inlined_subroutine)
> +	    cu->get_builder ()->record_inline_range_end (end);
> +	  if (start == end)
> +	    return;
>  	  cu->get_builder ()->record_block_range (block, start, end - 1);
>  	  blockvec.emplace_back (start, end);
>  	});
> @@ -19479,7 +19483,7 @@ class lnp_state_machine
>  
>  static void
>  dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
> -		   CORE_ADDR address, struct dwarf2_cu *cu)
> +		   CORE_ADDR address, struct dwarf2_cu *cu, bool end_sequence)
>  {
>    if (subfile == NULL)
>      return;
> @@ -19492,7 +19496,8 @@ class lnp_state_machine
>  			  paddress (gdbarch, address));
>      }
>  
> -  dwarf_record_line_1 (gdbarch, subfile, 0, address, true, cu);
> +  dwarf_record_line_1 (gdbarch, subfile, end_sequence ? 0 : -1, address,
> +		       true, cu);
>  }
>  
>  void
> @@ -19525,7 +19530,8 @@ class lnp_state_machine
>  	      || end_sequence)
>  	    {
>  	      dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
> -				 m_currently_recording_lines ? m_cu : nullptr);
> +				 m_currently_recording_lines ? m_cu : nullptr,
> +				 end_sequence);
>  	    }
>  
>  	  if (!end_sequence)
> diff --git a/gdb/testsuite/gdb.cp/step-and-next-inline.exp b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
> index 3733fa7..e3a5793 100644
> --- a/gdb/testsuite/gdb.cp/step-and-next-inline.exp
> +++ b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
> @@ -52,37 +52,20 @@ proc do_test { use_header } {
>      gdb_test "step" ".*" "step into get_alias_set"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 1"
> -    # It's possible that this first failure (when not using a header
> -    # file) is GCC's fault, though the remaining failures would best
> -    # be fixed by adding location views support (though it could be
> -    # that some easier heuristic could be figured out).  Still, it is
> -    # not certain that the first failure wouldn't also be fixed by
> -    # having location view support, so for now it is tagged as such.
> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>      gdb_test "next" ".*TREE_TYPE.*" "next step 1"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 2"
>      gdb_test "next" ".*TREE_TYPE.*" "next step 2"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 3"
> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>      gdb_test "next" ".*TREE_TYPE.*" "next step 3"
>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>  	"not in inline 4"
> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>      gdb_test "next" "return 0.*" "next step 4"
>      gdb_test "bt" \
>  	"\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
>  	"not in inline 5"
>  
> -    if {!$use_header} {
> -	# With the debug from GCC 10.x (and earlier) GDB is currently
> -	# unable to successfully complete the following tests when we
> -	# are not using a header file.
> -	kfail symtab/25507 "stepping tests"
> -	return
> -    }
> -
>      clean_restart ${executable}
>  
>      if ![runto_main] {
> -- 
> 1.9.1
> 

> --- /dev/fd/63	2020-04-05 04:14:05.929697173 +0200
> +++ /dev/fd/62	2020-04-05 04:14:05.929697173 +0200
> @@ -1,4 +1,4 @@
> -Test Run By ed on Sun Apr  5 03:07:53 2020
> +Test Run By ed on Sun Apr  5 03:45:11 2020
>  Native configuration is x86_64-pc-linux-gnu
>  
>  		=== gdb tests ===
> @@ -42091,7 +42091,7 @@
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: continue
>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread 1 not replaying
> -PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
> +FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: continue
>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: thread 1 not replaying
> @@ -42132,7 +42132,7 @@
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: continue
>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 1 not replaying
> -PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
> +FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 1 not replaying
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 2 not replaying
>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread apply all record goto end
> @@ -42432,78 +42432,77 @@
>  PASS: gdb.btrace/vdso.exp: replay: info record
>  PASS: gdb.btrace/vdso.exp: replay: record goto begin
>  PASS: gdb.btrace/vdso.exp: stepi
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile code JKL
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b (timeout)
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b
>  FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_e
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.MAGIC (PRMS: compile/23588)
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.len (PRMS: compile/23588)
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.ua (PRMS: compile/23588)
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa (timeout)
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*anon_s.ptr == 'a') (PRMS: compile/23588)
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print ABC
>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print DEF
>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print GHI
>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print JKL
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e (timeout)
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
> +FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.MAGIC (PRMS: compile/23588)
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.len (PRMS: compile/23588)
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.ua (PRMS: compile/23588)
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa (timeout)
> +FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa
>  PASS: gdb.compile/compile-cplus-anonymous.exp: continue to breakpoint: testing location
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code DEF
>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code GHI
>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code JKL
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
>  FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_e
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.MAGIC (PRMS: compile/23588)
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.len (PRMS: compile/23588)
>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.ua (PRMS: compile/23588)
> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa (timeout)
> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa
>  PASS: gdb.compile/compile-cplus-array-decay.exp: compile print integers
>  PASS: gdb.compile/compile-cplus-array-decay.exp: compile print strings
>  PASS: gdb.compile/compile-cplus-array-decay.exp: continue to breakpoint: testing location
> -FAIL: gdb.compile/compile-cplus-inherit.exp: check for working compile command (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1) (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1)
> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
>  PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.a_
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.b_ (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.c_ (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.d_ (timeout)
> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.b_
> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.c_
> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.d_
>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.A::do_it (1)
>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.B::do_it (1)
>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.C::do_it (1)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_ (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_ (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_ (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_ (timeout)
> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_
> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_
> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_
> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_
>  PASS: gdb.compile/compile-cplus-inherit.exp: continue to breakpoint: testing location
> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
>  PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.a_
> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_ (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_ (timeout)
> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_ (timeout)
> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_
> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_
> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_
>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::ATYPE i = 10; var = i;
>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_
>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_ = E_B; var = A::s_private_;
> @@ -42624,21 +42623,21 @@
>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code N1::N2::N3::N4::n4static
>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.get_var ()
>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.s4int_
> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_; (timeout)
> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_;
> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_;
>  FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_ (timeout)
> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_ (timeout)
> -FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_ (timeout)
> -FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_ (timeout)
> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_
> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_
> +FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_
> +FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_
>  PASS: gdb.compile/compile-cplus-nested.exp: continue to breakpoint: testing location
>  FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 &r1 = i1; var = r1.a_;
> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_;
>  FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_ (timeout)
> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_ (timeout)
> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_
> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_
>  PASS: gdb.compile/compile-cplus-print.exp: Set language to C++
>  KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararray@3 (PRMS: compile/23587)
>  KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararrayp@3 (PRMS: compile/23587)
> @@ -49883,34 +49882,18 @@
>  PASS: gdb.cp/static-print-quit.exp: set pagination off
>  PASS: gdb.cp/static-print-quit.exp: set width 80
>  PASS: gdb.cp/static-typedef-print.exp: print static member
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in get_alias_set pass 2
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 1 pass 2
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 2 pass 2
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 3 pass 2
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: in main
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in main pass 2
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 1
> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 1 (PRMS: symtab/25507)
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 2
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 3
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 4
> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 3 (PRMS: symtab/25507)
> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4 (PRMS: symtab/25507)
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1 pass 2
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2 pass 2
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3 pass 2
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4 pass 2
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 5
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 1
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 2
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 3
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 4
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 5
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 6
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 7
>  PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set
> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set pass 2
> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: stepping tests (PRMS: symtab/25507)
>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in get_alias_set pass 2
>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 1 pass 2
>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 2 pass 2
> @@ -66161,7 +66144,7 @@
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info inferiors
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info threads
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: set schedule-multiple on
> -FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT)
> +FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT) (the program is no longer running)
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: switch to inferior 2
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: add empty inferior 2
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: attach
> @@ -66175,7 +66158,7 @@
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info inferiors
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info threads
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: set schedule-multiple on
> -FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
> +PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: switch to inferior 2
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: tty TTY
>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=run: inf2_how=attach: add empty inferior 2
> @@ -74312,7 +74295,7 @@
>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no failure to remove breakpoints
>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no spurious thread stop
>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
> -PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
> +FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: set detach-on-fork off
>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: successfully compiled posix threads test case
>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
> @@ -75041,7 +75024,7 @@
>  PASS: gdb.threads/non-ldr-exc-4.exp: lock-sched=on,non-stop=off: set scheduler-locking on
>  PASS: gdb.threads/non-ldr-exc-4.exp: successfully compiled posix threads test case
>  PASS: gdb.threads/non-ldr-exit.exp: continue to breakpoint: break-here
> -PASS: gdb.threads/non-ldr-exit.exp: program exits normally
> +KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally (PRMS: gdb/18717)
>  PASS: gdb.threads/non-ldr-exit.exp: set scheduler-locking on
>  PASS: gdb.threads/non-ldr-exit.exp: successfully compiled posix threads test case
>  PASS: gdb.threads/non-stop-fair-events.exp: get num_threads
> @@ -75553,48 +75536,48 @@
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: get valueof "thread_num"
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print file_scope_var
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i01
> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02 (PRMS: gdb/22214)
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i11
> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12 (PRMS: gdb/22214)
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i21
> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22 (PRMS: gdb/22214)
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: continue to breakpoint: at printf
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: get valueof "thread_num"
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print file_scope_var
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i01
> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02 (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i11
> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12 (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i21
> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22 (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: continue to breakpoint: at printf
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: get valueof "tn"
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print file_scope_var
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print i
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print j
> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k
> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k (PRMS: gdb/22214)
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print p
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print q
> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r
> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r (PRMS: gdb/22214)
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print s1
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print tn
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print x
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print y
> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z
> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z (PRMS: gdb/22214)
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: continue to breakpoint: at printf
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: get valueof "tn"
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print file_scope_var
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print i
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print j
> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print p
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print q
> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print s1
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print tn
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print x
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print y
> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: continue to breakpoint: at printf
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: get valueof "tn"
>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print file_scope_var
> @@ -75638,8 +75621,8 @@
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print file_scope_var
>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i (PRMS: gdb/22214)
>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j (PRMS: gdb/22214)
> -PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
> -PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
> +XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
> +XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print num
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: continue to breakpoint: at printf
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: get valueof "inner_num"
> @@ -75656,14 +75639,14 @@
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print file_scope_var
>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print i (PRMS: gdb/22214)
>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print j (PRMS: gdb/22214)
> -XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
> -XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print num
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: continue to breakpoint: at printf
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: get local valueof "num"
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print file_scope_var
> -KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i (PRMS: gdb/22214)
> -KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print k
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print l
>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print num
> @@ -75678,7 +75661,7 @@
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: get valueof "thread_num"
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i1
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i2
> -KFAIL: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3 (PRMS: gdb/22214)
> +PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s1
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s2
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s3
> @@ -75686,7 +75669,7 @@
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: get valueof "thread_num"
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i1
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i2
> -PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
> +KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3 (PRMS: gdb/22214)
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s1
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s2
>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s3
> @@ -75799,7 +75782,7 @@
>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: probe for target remote
>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: set breakpoint that evals false
>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: continue &
> -KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (memory error) (PRMS: gdb/18749)
> +KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (prompt) (PRMS: gdb/18749)
>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: probe for target remote
>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: set breakpoint that evals false
>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: continue &
> @@ -77532,12 +77515,12 @@
>  
>  		=== gdb Summary ===
>  
> -# of expected passes		76351
> -# of unexpected failures	828
> +# of expected passes		76363
> +# of unexpected failures	796
>  # of expected failures		69
> -# of known failures		104
> +# of known failures		107
>  # of untested testcases		44
>  # of unresolved testcases	5
>  # of unsupported tests		118
> -/home/ed/gnu/gdb-build-1/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-1/gdb/testsuite/../data-directory 
> +/home/ed/gnu/gdb-build-2/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-2/gdb/testsuite/../data-directory 
>  


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv6] Fix range end handling of inlined subroutines
  2020-04-06 17:35   ` Andrew Burgess
@ 2020-04-06 19:34     ` Bernd Edlinger
  2020-04-06 21:17       ` Bernd Edlinger
  0 siblings, 1 reply; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-06 19:34 UTC (permalink / raw)
  To: Andrew Burgess; +Cc: gdb-patches, Luis Machado, Tom Tromey

On 4/6/20 7:35 PM, Andrew Burgess wrote:
> * Bernd Edlinger <bernd.edlinger@hotmail.de> [2020-04-05 04:28:54 +0200]:
> 
>> Hi,
>>
>> this is it, what might fix Luis aarch64 tests hopefully, please confirm.
>>
>> It still misses a good test case, though.
>>
>> I attached both the fixed version of my inline end patch,
>> and a diff of the test results:
>>
>>  + is results with 3349112e380712432d5818154d67ab4660af056f.
>>  - is results with this patch applied to above version.
>>
>> I often have a hard time to tell which is a regression and which is
>> just because of transient errors, where test cases are not stable.
>>
>> I hope this also helps with the Problem that Andrew is tackling
>> in the other patch, since I keep at least some line-entries as is-stmt
>> which were previously just deleted, or converted to non-is-stmt,
>> that is what makes the issue from the patch description.
>>
>> This changes only line table entries that are at the same PC as
>> an end of inline function block.  Exactly that is the information
>> that is missing in the DWARF format, therefore it is not possible
>> to just fix gcc IMHO, we must fix the DWARF format, thus create
>> a new version, implement that in gcc and in gdb, that should tell
>> us what to do with the line entries at these special places.
>>
>> Andrew, could you try this, if this patch fixes your problem,
>> or at least does not make it harder to fix?
>>
>>
>> Thanks
>> Bernd.
> 
>> From 8d7b78a97daea5da74211a633f9e01bc9715d649 Mon Sep 17 00:00:00 2001
>> From: Bernd Edlinger <bernd.edlinger@hotmail.de>
>> Date: Sun, 9 Feb 2020 21:13:17 +0100
>> Subject: [PATCH] Fix range end handling of inlined subroutines
>>
>> Since the is_stmt is now handled, it becomes
>> possible to locate dubious is_stmt line entries
>> at the end of an inlined function, even if the
>> called inline function is in the same subfile.
>>
>> When there is a sequence of line entries at the
>> same address where an inline range ends, and the
>> last item has is_stmt = 0, we force all previous
>> items to have is_stmt = 0 as well.
>>
>> If the last line at that address has is_stmt = 1,
>> there is no need to change anything, since a step
>> over will always stop at that last line from the
>> same address, which is fine, since it is outside
>> the subroutine.
>>
>> With this change we lose the ability to set
>> breakpoints on some lines using file:line syntax,
>> but the data is not completely lost, as the
>> line table is still holding those lines, just
>> with the is_stmt flag reset.
>>
>> This is necessary as breakpoints on these lines
>> are problematic, as the call stack is often
>> wrong.  From the block info they appear to be
>> located in the caller, but they are actually meant
>> to be part of the subroutine, therefore usually one
>> frame is missing from the callstack when the
>> execution stops there.
>>
>> This is about the best we can do at the moment,
>> unless location view information are added to the
>> block ranges debug info structure, and location
>> views are implemented in gdb in general.
>>
>> This restores the previous behavior of
>> record_line that deletes lines at the end of
>> a function.
>>
>> gdb:
>> 2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
>>
>> 	* buildsym.c (buildsym_compunit::record_line): Delete
>> 	previous lines at the same PC as the end sequence marker,
>> 	but don't do that for a fake end sequence marker.
>> 	(buildsym_compunit::record_inline_range_end,
>> 	patch_inline_end_pos): New helper functions.
>> 	(buildsym_compunit::end_symtab_with_blockvector): Patch line table.
>> 	(buildsym_compunit::~buildsym_compunit): Cleanup m_inline_end_vector.
>> 	* buildsym.h (buildsym_compunit::record_inline_range_end): Declare.
>> 	(buildsym_compunit::m_inline_end_vector,
>> 	buildsym_compunit::m_inline_end_vector_length,
>> 	buildsym_compunit::m_inline_end_vector_nitems): New data items.
>> 	* dwarf2/read.c (dwarf2_rnglists_process,
>> 	dwarf2_ranges_process): Don't ignore empty ranges here.
>> 	(dwarf2_ranges_read): Ignore empty ranges here.
>> 	(dwarf2_record_block_ranges): Pass end of range PC to
>> 	record_inline_range_end for inline functions.
>> 	(dwarf_finish_line): Add new parameter end_sequence.
>> 	(lnp_state_machine::record_line): Pass end_sequence to
>> 	dwarf_finish_line.
> 
> The objections I raised in:
> 
>   https://sourceware.org/pipermail/gdb-patches/2020-April/167372.html
> 

Andrew, I have not asked for objections ;)
I wanted to know if this fixes the line table issue
which your patch was trying to solve in a way
that I would raise objections for.

So the question is: does it fix something for you or does it
make it worse?
I ask because I do not know, and I think the question deserves
an answer.

> I think mostly apply to this revision too.  So this is still not
> approved.
> 
> The primary objection is (miss-)treatment of range endings and empty
> ranges.  You've expressed your position in other mail, so I wont try
> to repeat you for fear of straw-manning your position.  But for me any
> solution would need to acknowledge that this is a work around for bugs
> in the DWARF generated by specific versions of GCC, and weren't
> present in much older versions of GCC, and might not be present in
> newer versions of GCC, nor might these bugs be present in other
> producers of DWARF.
> 

You should not underestimate, how difficult fixing the empty range thing
in gcc can be.  Also the range endings can be difficult, gcc does not
know the view number, that is magic of the assembler.

The only way I see how gcc can fix it is by disabling -gstatement-frontiers.
Everyhing else will be way too painful, I tried it and got a bloody nose
from that :-)

Then we can also revert all of the is-stmt patches completely.

But I believe our current debug-exerience did improve, there are a few
things where it might regress, but most if not all of them are fixable.

> In better news, I think my objection related to the lack of use of
> std::vector would be easy enough to work around.  This patch should
> absolutely use std::vector, but a later patch can introduce
> gdb::vector.
> 
> For those compilers where the performance of std::vector is good
> enough, we make gdb::vector an alias for std::vector.  For those
> compiler where you are aware of a performance problem with
> std::vector, then make gdb::vector a completely new, API compatible
> implementation of std::vector.  Heck, GCC code is copyright assigned
> to FSF, so if GCC's std::vector is good enough you could just copy the
> implementation from there.
> 

Probably, I did not even consider anything like that.
I am not really familiar with that part of the gcc code base either.
Fact is I don't like it (C++), please don't ask me for something I
don't like to do.  Just do it yourself, I do not mind if you change
that part to be how you like it the most.


Thanks
Bernd.

> Thanks,
> Andrew
> 
> 
> 
> 
> 
>>
>> gdb/testsuite:
>> 2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
>>
>> 	* gdb.cp/step-and-next-inline.exp: Adjust test.
>> ---
>>  gdb/buildsym.c                                | 124 ++++++++++++++++++++++----
>>  gdb/buildsym.h                                |  11 +++
>>  gdb/dwarf2/read.c                             |  30 ++++---
>>  gdb/testsuite/gdb.cp/step-and-next-inline.exp |  17 ----
>>  4 files changed, 135 insertions(+), 47 deletions(-)
>>
>> diff --git a/gdb/buildsym.c b/gdb/buildsym.c
>> index fe07103..8c67e58 100644
>> --- a/gdb/buildsym.c
>> +++ b/gdb/buildsym.c
>> @@ -113,6 +113,8 @@ struct pending_block
>>        next1 = next->next;
>>        xfree ((void *) next);
>>      }
>> +
>> +  xfree (m_inline_end_vector);
>>  }
>>  
>>  struct macro_table *
>> @@ -691,30 +693,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).
>> +  /* The end of sequence marker is special.  We need to delete any
>> +     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)
>> +     function begins.  There is also a fake end of sequence marker (-1)
>> +     that we emit internally when switching between different CUs
>> +     In this case, duplicate line table entries shall not be deleted.
>> +     But the line table entry looks the same in both cases.  */
>> +  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);
>>      }
>> +  else if (line == -1)
>> +    line = 0;
>>  
>>    e = subfile->line_vector->item + subfile->line_vector->nitems++;
>>    e->line = line;
>> @@ -723,6 +723,90 @@ struct blockvector *
>>  }
>>  
>>  \f
>> +/* Record a PC where a inlined subroutine ends.  */
>> +
>> +void
>> +buildsym_compunit::record_inline_range_end (CORE_ADDR end)
>> +{
>> +  /* The performance of this function is very important,
>> +     it shall be O(n*log(n)) therefore we do not use std::vector
>> +     here since some compilers, e.g. visual studio, do not
>> +     guarantee that for vector::push_back.  */
>> +  if (m_inline_end_vector == nullptr)
>> +    {
>> +      m_inline_end_vector_length = INITIAL_LINE_VECTOR_LENGTH;
>> +      m_inline_end_vector = (CORE_ADDR *)
>> +	xmalloc (sizeof (CORE_ADDR) * m_inline_end_vector_length);
>> +      m_inline_end_vector_nitems = 0;
>> +    }
>> +  else if (m_inline_end_vector_nitems == m_inline_end_vector_length)
>> +    {
>> +      m_inline_end_vector_length *= 2;
>> +      m_inline_end_vector = (CORE_ADDR *)
>> +	xrealloc ((char *) m_inline_end_vector,
>> +		  sizeof (CORE_ADDR) * m_inline_end_vector_length);
>> +    }
>> +
>> +  m_inline_end_vector[m_inline_end_vector_nitems++] = end;
>> +}
>> +
>> +\f
>> +/* Patch the is_stmt bits at the given inline end address.
>> +   The line table has to be already sorted.  */
>> +
>> +static void
>> +patch_inline_end_pos (struct linetable *table, CORE_ADDR end)
>> +{
>> +  int a = 2, b = table->nitems - 1;
>> +  struct linetable_entry *items = table->item;
>> +
>> +  /* We need at least two items with pc = end in the table.
>> +     The lowest usable items are at pos 0 and 1, the highest
>> +     usable items are at pos b - 2 and b - 1.  */
>> +  if (a > b || end < items[1].pc || end > items[b - 2].pc)
>> +    return;
>> +
>> +  /* Look for the first item with pc > end in the range [a,b].
>> +     The previous element has pc = end or there is no match.
>> +     We set a = 2, since we need at least two consecutive elements
>> +     with pc = end to do anything useful.
>> +     We set b = nitems - 1, since we are not interested in the last
>> +     element which should be an end of sequence marker with line = 0
>> +     and is_stmt = 1.  */
>> +  while (a < b)
>> +    {
>> +      int c = (a + b) / 2;
>> +
>> +      if (end < items[c].pc)
>> +	b = c;
>> +      else
>> +	a = c + 1;
>> +    }
>> +
>> +  a--;
>> +  if (items[a].pc != end || items[a].is_stmt)
>> +    return;
>> +
>> +  /* When there is a sequence of line entries at the same address
>> +     where an inline range ends, and the last item has is_stmt = 0,
>> +     we force all previous items to have is_stmt = 0 as well.
>> +     Setting breakpoints at those addresses is currently not
>> +     supported, since it is unclear if the previous addresses are
>> +     part of the subroutine or the calling program.  */
>> +  do
>> +    {
>> +      /* We stop at the first line entry with a different address,
>> +	 or when we see an end of sequence marker.  */
>> +      a--;
>> +      if (items[a].pc != end || items[a].line == 0)
>> +	break;
>> +
>> +      items[a].is_stmt = 0;
>> +    }
>> +  while (a > 0);
>> +}
>> +
>> +\f
>>  /* Subroutine of end_symtab to simplify it.  Look for a subfile that
>>     matches the main source file's basename.  If there is only one, and
>>     if the main source file doesn't have any symbol or line number
>> @@ -956,6 +1040,10 @@ struct compunit_symtab *
>>  			      subfile->line_vector->item
>>  			      + subfile->line_vector->nitems,
>>  			      lte_is_less_than);
>> +
>> +	   for (int i = 0; i < m_inline_end_vector_nitems; i++)
>> +	     patch_inline_end_pos (subfile->line_vector,
>> +				   m_inline_end_vector[i]);
>>  	}
>>  
>>        /* Allocate a symbol table if necessary.  */
>> diff --git a/gdb/buildsym.h b/gdb/buildsym.h
>> index c768a4c..2845789 100644
>> --- a/gdb/buildsym.h
>> +++ b/gdb/buildsym.h
>> @@ -190,6 +190,8 @@ struct buildsym_compunit
>>    void record_line (struct subfile *subfile, int line, CORE_ADDR pc,
>>  		    bool is_stmt);
>>  
>> +  void record_inline_range_end (CORE_ADDR end);
>> +
>>    struct compunit_symtab *get_compunit_symtab ()
>>    {
>>      return m_compunit_symtab;
>> @@ -397,6 +399,15 @@ struct buildsym_compunit
>>  
>>    /* Pending symbols that are local to the lexical context.  */
>>    struct pending *m_local_symbols = nullptr;
>> +
>> +  /* Pending inline end range addresses.  */
>> +  CORE_ADDR * m_inline_end_vector = nullptr;
>> +
>> +  /* Number of allocated inline end range addresses.  */
>> +  int m_inline_end_vector_length = 0;
>> +
>> +  /* Number of pending inline end range addresses.  */
>> +  int m_inline_end_vector_nitems = 0;
>>  };
>>  
>>  \f
>> diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
>> index bcc3116..aa32726 100644
>> --- a/gdb/dwarf2/read.c
>> +++ b/gdb/dwarf2/read.c
>> @@ -13527,10 +13527,6 @@ class process_die_scope
>>  	  return false;
>>  	}
>>  
>> -      /* Empty range entries have no effect.  */
>> -      if (range_beginning == range_end)
>> -	continue;
>> -
>>        range_beginning += *base;
>>        range_end += *base;
>>  
>> @@ -13638,10 +13634,6 @@ class process_die_scope
>>  	  return 0;
>>  	}
>>  
>> -      /* Empty range entries have no effect.  */
>> -      if (range_beginning == range_end)
>> -	continue;
>> -
>>        range_beginning += *base;
>>        range_end += *base;
>>  
>> @@ -13681,6 +13673,10 @@ class process_die_scope
>>    retval = dwarf2_ranges_process (offset, cu,
>>      [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
>>      {
>> +      /* Empty range entries have no effect.  */
>> +      if (range_beginning == range_end)
>> +	return;
>> +
>>        if (ranges_pst != NULL)
>>  	{
>>  	  CORE_ADDR lowpc;
>> @@ -13918,6 +13914,7 @@ class process_die_scope
>>    struct gdbarch *gdbarch = get_objfile_arch (objfile);
>>    struct attribute *attr;
>>    struct attribute *attr_high;
>> +  bool inlined_subroutine = (die->tag == DW_TAG_inlined_subroutine);
>>  
>>    attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
>>    if (attr_high)
>> @@ -13933,7 +13930,10 @@ class process_die_scope
>>  
>>  	  low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
>>  	  high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
>> -	  cu->get_builder ()->record_block_range (block, low, high - 1);
>> +	  if (inlined_subroutine)
>> +	    cu->get_builder ()->record_inline_range_end (high);
>> +	  if (low < high)
>> +	    cu->get_builder ()->record_block_range (block, low, high - 1);
>>          }
>>      }
>>  
>> @@ -13958,6 +13958,10 @@ class process_die_scope
>>  	  end += baseaddr;
>>  	  start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
>>  	  end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
>> +	  if (inlined_subroutine)
>> +	    cu->get_builder ()->record_inline_range_end (end);
>> +	  if (start == end)
>> +	    return;
>>  	  cu->get_builder ()->record_block_range (block, start, end - 1);
>>  	  blockvec.emplace_back (start, end);
>>  	});
>> @@ -19479,7 +19483,7 @@ class lnp_state_machine
>>  
>>  static void
>>  dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
>> -		   CORE_ADDR address, struct dwarf2_cu *cu)
>> +		   CORE_ADDR address, struct dwarf2_cu *cu, bool end_sequence)
>>  {
>>    if (subfile == NULL)
>>      return;
>> @@ -19492,7 +19496,8 @@ class lnp_state_machine
>>  			  paddress (gdbarch, address));
>>      }
>>  
>> -  dwarf_record_line_1 (gdbarch, subfile, 0, address, true, cu);
>> +  dwarf_record_line_1 (gdbarch, subfile, end_sequence ? 0 : -1, address,
>> +		       true, cu);
>>  }
>>  
>>  void
>> @@ -19525,7 +19530,8 @@ class lnp_state_machine
>>  	      || end_sequence)
>>  	    {
>>  	      dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
>> -				 m_currently_recording_lines ? m_cu : nullptr);
>> +				 m_currently_recording_lines ? m_cu : nullptr,
>> +				 end_sequence);
>>  	    }
>>  
>>  	  if (!end_sequence)
>> diff --git a/gdb/testsuite/gdb.cp/step-and-next-inline.exp b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>> index 3733fa7..e3a5793 100644
>> --- a/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>> +++ b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>> @@ -52,37 +52,20 @@ proc do_test { use_header } {
>>      gdb_test "step" ".*" "step into get_alias_set"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 1"
>> -    # It's possible that this first failure (when not using a header
>> -    # file) is GCC's fault, though the remaining failures would best
>> -    # be fixed by adding location views support (though it could be
>> -    # that some easier heuristic could be figured out).  Still, it is
>> -    # not certain that the first failure wouldn't also be fixed by
>> -    # having location view support, so for now it is tagged as such.
>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>      gdb_test "next" ".*TREE_TYPE.*" "next step 1"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 2"
>>      gdb_test "next" ".*TREE_TYPE.*" "next step 2"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 3"
>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>      gdb_test "next" ".*TREE_TYPE.*" "next step 3"
>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 4"
>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>      gdb_test "next" "return 0.*" "next step 4"
>>      gdb_test "bt" \
>>  	"\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
>>  	"not in inline 5"
>>  
>> -    if {!$use_header} {
>> -	# With the debug from GCC 10.x (and earlier) GDB is currently
>> -	# unable to successfully complete the following tests when we
>> -	# are not using a header file.
>> -	kfail symtab/25507 "stepping tests"
>> -	return
>> -    }
>> -
>>      clean_restart ${executable}
>>  
>>      if ![runto_main] {
>> -- 
>> 1.9.1
>>
> 
>> --- /dev/fd/63	2020-04-05 04:14:05.929697173 +0200
>> +++ /dev/fd/62	2020-04-05 04:14:05.929697173 +0200
>> @@ -1,4 +1,4 @@
>> -Test Run By ed on Sun Apr  5 03:07:53 2020
>> +Test Run By ed on Sun Apr  5 03:45:11 2020
>>  Native configuration is x86_64-pc-linux-gnu
>>  
>>  		=== gdb tests ===
>> @@ -42091,7 +42091,7 @@
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: continue
>>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread 1 not replaying
>> -PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
>> +FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: continue
>>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: thread 1 not replaying
>> @@ -42132,7 +42132,7 @@
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: continue
>>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 1 not replaying
>> -PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
>> +FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 1 not replaying
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 2 not replaying
>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread apply all record goto end
>> @@ -42432,78 +42432,77 @@
>>  PASS: gdb.btrace/vdso.exp: replay: info record
>>  PASS: gdb.btrace/vdso.exp: replay: record goto begin
>>  PASS: gdb.btrace/vdso.exp: stepi
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile code JKL
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b (timeout)
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b
>>  FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_e
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.MAGIC (PRMS: compile/23588)
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.len (PRMS: compile/23588)
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.ua (PRMS: compile/23588)
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa (timeout)
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*anon_s.ptr == 'a') (PRMS: compile/23588)
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print ABC
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print DEF
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print GHI
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print JKL
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e (timeout)
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
>> +FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.MAGIC (PRMS: compile/23588)
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.len (PRMS: compile/23588)
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.ua (PRMS: compile/23588)
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa (timeout)
>> +FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: continue to breakpoint: testing location
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code DEF
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code GHI
>>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code JKL
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
>>  FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_e
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.MAGIC (PRMS: compile/23588)
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.len (PRMS: compile/23588)
>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.ua (PRMS: compile/23588)
>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa (timeout)
>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa
>>  PASS: gdb.compile/compile-cplus-array-decay.exp: compile print integers
>>  PASS: gdb.compile/compile-cplus-array-decay.exp: compile print strings
>>  PASS: gdb.compile/compile-cplus-array-decay.exp: continue to breakpoint: testing location
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: check for working compile command (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1) (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
>>  PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.a_
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.b_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.c_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.d_ (timeout)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.b_
>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.c_
>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.d_
>>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.A::do_it (1)
>>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.B::do_it (1)
>>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.C::do_it (1)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_ (timeout)
>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_
>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_
>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_
>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_
>>  PASS: gdb.compile/compile-cplus-inherit.exp: continue to breakpoint: testing location
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
>>  PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.a_
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_ (timeout)
>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_
>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_
>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_
>>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::ATYPE i = 10; var = i;
>>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_
>>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_ = E_B; var = A::s_private_;
>> @@ -42624,21 +42623,21 @@
>>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code N1::N2::N3::N4::n4static
>>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.get_var ()
>>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.s4int_
>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_; (timeout)
>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_;
>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_;
>>  FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_ (timeout)
>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_
>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_
>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_
>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_
>>  PASS: gdb.compile/compile-cplus-nested.exp: continue to breakpoint: testing location
>>  FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 &r1 = i1; var = r1.a_;
>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_;
>>  FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_ (timeout)
>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_ (timeout)
>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_
>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_
>>  PASS: gdb.compile/compile-cplus-print.exp: Set language to C++
>>  KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararray@3 (PRMS: compile/23587)
>>  KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararrayp@3 (PRMS: compile/23587)
>> @@ -49883,34 +49882,18 @@
>>  PASS: gdb.cp/static-print-quit.exp: set pagination off
>>  PASS: gdb.cp/static-print-quit.exp: set width 80
>>  PASS: gdb.cp/static-typedef-print.exp: print static member
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in get_alias_set pass 2
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 1 pass 2
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 2 pass 2
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 3 pass 2
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: in main
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in main pass 2
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 1
>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 1 (PRMS: symtab/25507)
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 2
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 3
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 4
>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 3 (PRMS: symtab/25507)
>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4 (PRMS: symtab/25507)
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1 pass 2
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2 pass 2
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3 pass 2
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4 pass 2
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 5
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 1
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 2
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 3
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 4
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 5
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 6
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 7
>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set
>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set pass 2
>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: stepping tests (PRMS: symtab/25507)
>>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in get_alias_set pass 2
>>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 1 pass 2
>>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 2 pass 2
>> @@ -66161,7 +66144,7 @@
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info inferiors
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info threads
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: set schedule-multiple on
>> -FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT)
>> +FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT) (the program is no longer running)
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: switch to inferior 2
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: add empty inferior 2
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: attach
>> @@ -66175,7 +66158,7 @@
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info inferiors
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info threads
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: set schedule-multiple on
>> -FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
>> +PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: switch to inferior 2
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: tty TTY
>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=run: inf2_how=attach: add empty inferior 2
>> @@ -74312,7 +74295,7 @@
>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no failure to remove breakpoints
>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no spurious thread stop
>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
>> -PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
>> +FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: set detach-on-fork off
>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: successfully compiled posix threads test case
>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
>> @@ -75041,7 +75024,7 @@
>>  PASS: gdb.threads/non-ldr-exc-4.exp: lock-sched=on,non-stop=off: set scheduler-locking on
>>  PASS: gdb.threads/non-ldr-exc-4.exp: successfully compiled posix threads test case
>>  PASS: gdb.threads/non-ldr-exit.exp: continue to breakpoint: break-here
>> -PASS: gdb.threads/non-ldr-exit.exp: program exits normally
>> +KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally (PRMS: gdb/18717)
>>  PASS: gdb.threads/non-ldr-exit.exp: set scheduler-locking on
>>  PASS: gdb.threads/non-ldr-exit.exp: successfully compiled posix threads test case
>>  PASS: gdb.threads/non-stop-fair-events.exp: get num_threads
>> @@ -75553,48 +75536,48 @@
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: get valueof "thread_num"
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print file_scope_var
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i01
>> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
>> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02 (PRMS: gdb/22214)
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i11
>> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
>> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12 (PRMS: gdb/22214)
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i21
>> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
>> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22 (PRMS: gdb/22214)
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: continue to breakpoint: at printf
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: get valueof "thread_num"
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print file_scope_var
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i01
>> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02 (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i11
>> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12 (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i21
>> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22 (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: continue to breakpoint: at printf
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: get valueof "tn"
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print file_scope_var
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print i
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print j
>> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k
>> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k (PRMS: gdb/22214)
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print p
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print q
>> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r
>> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r (PRMS: gdb/22214)
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print s1
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print tn
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print x
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print y
>> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z
>> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z (PRMS: gdb/22214)
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: continue to breakpoint: at printf
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: get valueof "tn"
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print file_scope_var
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print i
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print j
>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print p
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print q
>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print s1
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print tn
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print x
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print y
>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: continue to breakpoint: at printf
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: get valueof "tn"
>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print file_scope_var
>> @@ -75638,8 +75621,8 @@
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print file_scope_var
>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i (PRMS: gdb/22214)
>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j (PRMS: gdb/22214)
>> -PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
>> -PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
>> +XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
>> +XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print num
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: continue to breakpoint: at printf
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: get valueof "inner_num"
>> @@ -75656,14 +75639,14 @@
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print file_scope_var
>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print i (PRMS: gdb/22214)
>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print j (PRMS: gdb/22214)
>> -XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
>> -XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print num
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: continue to breakpoint: at printf
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: get local valueof "num"
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print file_scope_var
>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i (PRMS: gdb/22214)
>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print k
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print l
>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print num
>> @@ -75678,7 +75661,7 @@
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: get valueof "thread_num"
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i1
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i2
>> -KFAIL: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3 (PRMS: gdb/22214)
>> +PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s1
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s2
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s3
>> @@ -75686,7 +75669,7 @@
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: get valueof "thread_num"
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i1
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i2
>> -PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
>> +KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3 (PRMS: gdb/22214)
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s1
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s2
>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s3
>> @@ -75799,7 +75782,7 @@
>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: probe for target remote
>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: set breakpoint that evals false
>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: continue &
>> -KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (memory error) (PRMS: gdb/18749)
>> +KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (prompt) (PRMS: gdb/18749)
>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: probe for target remote
>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: set breakpoint that evals false
>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: continue &
>> @@ -77532,12 +77515,12 @@
>>  
>>  		=== gdb Summary ===
>>  
>> -# of expected passes		76351
>> -# of unexpected failures	828
>> +# of expected passes		76363
>> +# of unexpected failures	796
>>  # of expected failures		69
>> -# of known failures		104
>> +# of known failures		107
>>  # of untested testcases		44
>>  # of unresolved testcases	5
>>  # of unsupported tests		118
>> -/home/ed/gnu/gdb-build-1/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-1/gdb/testsuite/../data-directory 
>> +/home/ed/gnu/gdb-build-2/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-2/gdb/testsuite/../data-directory 
>>  
> 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv6] Fix range end handling of inlined subroutines
  2020-04-06 19:34     ` Bernd Edlinger
@ 2020-04-06 21:17       ` Bernd Edlinger
  0 siblings, 0 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-06 21:17 UTC (permalink / raw)
  To: Andrew Burgess; +Cc: gdb-patches, Luis Machado, Tom Tromey

On 4/6/20 9:34 PM, Bernd Edlinger wrote:
> On 4/6/20 7:35 PM, Andrew Burgess wrote:
>> * Bernd Edlinger <bernd.edlinger@hotmail.de> [2020-04-05 04:28:54 +0200]:
>>
>>> Hi,
>>>
>>> this is it, what might fix Luis aarch64 tests hopefully, please confirm.
>>>
>>> It still misses a good test case, though.
>>>
>>> I attached both the fixed version of my inline end patch,
>>> and a diff of the test results:
>>>
>>>  + is results with 3349112e380712432d5818154d67ab4660af056f.
>>>  - is results with this patch applied to above version.
>>>
>>> I often have a hard time to tell which is a regression and which is
>>> just because of transient errors, where test cases are not stable.
>>>
>>> I hope this also helps with the Problem that Andrew is tackling
>>> in the other patch, since I keep at least some line-entries as is-stmt
>>> which were previously just deleted, or converted to non-is-stmt,
>>> that is what makes the issue from the patch description.
>>>
>>> This changes only line table entries that are at the same PC as
>>> an end of inline function block.  Exactly that is the information
>>> that is missing in the DWARF format, therefore it is not possible
>>> to just fix gcc IMHO, we must fix the DWARF format, thus create
>>> a new version, implement that in gcc and in gdb, that should tell
>>> us what to do with the line entries at these special places.
>>>
>>> Andrew, could you try this, if this patch fixes your problem,
>>> or at least does not make it harder to fix?
>>>
>>>
>>> Thanks
>>> Bernd.
>>
>>> From 8d7b78a97daea5da74211a633f9e01bc9715d649 Mon Sep 17 00:00:00 2001
>>> From: Bernd Edlinger <bernd.edlinger@hotmail.de>
>>> Date: Sun, 9 Feb 2020 21:13:17 +0100
>>> Subject: [PATCH] Fix range end handling of inlined subroutines
>>>
>>> Since the is_stmt is now handled, it becomes
>>> possible to locate dubious is_stmt line entries
>>> at the end of an inlined function, even if the
>>> called inline function is in the same subfile.
>>>
>>> When there is a sequence of line entries at the
>>> same address where an inline range ends, and the
>>> last item has is_stmt = 0, we force all previous
>>> items to have is_stmt = 0 as well.
>>>
>>> If the last line at that address has is_stmt = 1,
>>> there is no need to change anything, since a step
>>> over will always stop at that last line from the
>>> same address, which is fine, since it is outside
>>> the subroutine.
>>>
>>> With this change we lose the ability to set
>>> breakpoints on some lines using file:line syntax,
>>> but the data is not completely lost, as the
>>> line table is still holding those lines, just
>>> with the is_stmt flag reset.
>>>
>>> This is necessary as breakpoints on these lines
>>> are problematic, as the call stack is often
>>> wrong.  From the block info they appear to be
>>> located in the caller, but they are actually meant
>>> to be part of the subroutine, therefore usually one
>>> frame is missing from the callstack when the
>>> execution stops there.
>>>
>>> This is about the best we can do at the moment,
>>> unless location view information are added to the
>>> block ranges debug info structure, and location
>>> views are implemented in gdb in general.
>>>
>>> This restores the previous behavior of
>>> record_line that deletes lines at the end of
>>> a function.
>>>
>>> gdb:
>>> 2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
>>>
>>> 	* buildsym.c (buildsym_compunit::record_line): Delete
>>> 	previous lines at the same PC as the end sequence marker,
>>> 	but don't do that for a fake end sequence marker.
>>> 	(buildsym_compunit::record_inline_range_end,
>>> 	patch_inline_end_pos): New helper functions.
>>> 	(buildsym_compunit::end_symtab_with_blockvector): Patch line table.
>>> 	(buildsym_compunit::~buildsym_compunit): Cleanup m_inline_end_vector.
>>> 	* buildsym.h (buildsym_compunit::record_inline_range_end): Declare.
>>> 	(buildsym_compunit::m_inline_end_vector,
>>> 	buildsym_compunit::m_inline_end_vector_length,
>>> 	buildsym_compunit::m_inline_end_vector_nitems): New data items.
>>> 	* dwarf2/read.c (dwarf2_rnglists_process,
>>> 	dwarf2_ranges_process): Don't ignore empty ranges here.
>>> 	(dwarf2_ranges_read): Ignore empty ranges here.
>>> 	(dwarf2_record_block_ranges): Pass end of range PC to
>>> 	record_inline_range_end for inline functions.
>>> 	(dwarf_finish_line): Add new parameter end_sequence.
>>> 	(lnp_state_machine::record_line): Pass end_sequence to
>>> 	dwarf_finish_line.
>>
>> The objections I raised in:
>>
>>   https://sourceware.org/pipermail/gdb-patches/2020-April/167372.html
>>
> 
> Andrew, I have not asked for objections ;)
> I wanted to know if this fixes the line table issue
> which your patch was trying to solve in a way
> that I would raise objections for.
> 
> So the question is: does it fix something for you or does it
> make it worse?
> I ask because I do not know, and I think the question deserves
> an answer.
> 
>> I think mostly apply to this revision too.  So this is still not
>> approved.
>>
>> The primary objection is (miss-)treatment of range endings and empty
>> ranges.  You've expressed your position in other mail, so I wont try
>> to repeat you for fear of straw-manning your position.  But for me any

what does this term mean?

>> solution would need to acknowledge that this is a work around for bugs
>> in the DWARF generated by specific versions of GCC, and weren't
>> present in much older versions of GCC, and might not be present in
>> newer versions of GCC, nor might these bugs be present in other
>> producers of DWARF.
>>

I absolutely acknowledge that this is only a work around nothing else :-)

And Yes, I work around problems all day.  And I just don't compain any more.

I already said, that I consider that a dwarf2 design flaw.
Of course older versions of GCC did not emit non-is-stmt line info.
Also just for reference, I see lots of regressions due to
the column info in the debug info which nobody needs.

Previously there was just one line info when the statement started,
now there are line info in between, they trigger all kind of problems.

See for instance in gdbtestsuite/gdb.base/skip.exp
I had to add this:

    # With gcc 9.2.0 we jump once back to main before entering foo here.
    # If that happens try to step a second time.
    gdb_test "step" "foo \\(\\) at.*" "step 3" \
        "main \\(\\) at .*\r\n$gdb_prompt " "step"

to work around the additional line breakpoints due to the column info.
This regression would not occur if -gcolumn-info would not be enabled
by default, that is a pretty useless debug info, especially when it is
in macro expansions.  We could do better and filter more of the effects
of the column line info away, or we could even implement column info.


Bernd.

> 
> You should not underestimate, how difficult fixing the empty range thing
> in gcc can be.  Also the range endings can be difficult, gcc does not
> know the view number, that is magic of the assembler.
> 
> The only way I see how gcc can fix it is by disabling -gstatement-frontiers.
> Everyhing else will be way too painful, I tried it and got a bloody nose
> from that :-)
> 
> Then we can also revert all of the is-stmt patches completely.
> 
> But I believe our current debug-exerience did improve, there are a few
> things where it might regress, but most if not all of them are fixable.
> 
>> In better news, I think my objection related to the lack of use of
>> std::vector would be easy enough to work around.  This patch should
>> absolutely use std::vector, but a later patch can introduce
>> gdb::vector.
>>
>> For those compilers where the performance of std::vector is good
>> enough, we make gdb::vector an alias for std::vector.  For those
>> compiler where you are aware of a performance problem with
>> std::vector, then make gdb::vector a completely new, API compatible
>> implementation of std::vector.  Heck, GCC code is copyright assigned
>> to FSF, so if GCC's std::vector is good enough you could just copy the
>> implementation from there.
>>
> 
> Probably, I did not even consider anything like that.
> I am not really familiar with that part of the gcc code base either.
> Fact is I don't like it (C++), please don't ask me for something I
> don't like to do.  Just do it yourself, I do not mind if you change
> that part to be how you like it the most.
> 
> 
> Thanks
> Bernd.
> 
>> Thanks,
>> Andrew
>>
>>
>>
>>
>>
>>>
>>> gdb/testsuite:
>>> 2020-04-05  Bernd Edlinger  <bernd.edlinger@hotmail.de>
>>>
>>> 	* gdb.cp/step-and-next-inline.exp: Adjust test.
>>> ---
>>>  gdb/buildsym.c                                | 124 ++++++++++++++++++++++----
>>>  gdb/buildsym.h                                |  11 +++
>>>  gdb/dwarf2/read.c                             |  30 ++++---
>>>  gdb/testsuite/gdb.cp/step-and-next-inline.exp |  17 ----
>>>  4 files changed, 135 insertions(+), 47 deletions(-)
>>>
>>> diff --git a/gdb/buildsym.c b/gdb/buildsym.c
>>> index fe07103..8c67e58 100644
>>> --- a/gdb/buildsym.c
>>> +++ b/gdb/buildsym.c
>>> @@ -113,6 +113,8 @@ struct pending_block
>>>        next1 = next->next;
>>>        xfree ((void *) next);
>>>      }
>>> +
>>> +  xfree (m_inline_end_vector);
>>>  }
>>>  
>>>  struct macro_table *
>>> @@ -691,30 +693,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).
>>> +  /* The end of sequence marker is special.  We need to delete any
>>> +     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)
>>> +     function begins.  There is also a fake end of sequence marker (-1)
>>> +     that we emit internally when switching between different CUs
>>> +     In this case, duplicate line table entries shall not be deleted.
>>> +     But the line table entry looks the same in both cases.  */
>>> +  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);
>>>      }
>>> +  else if (line == -1)
>>> +    line = 0;
>>>  
>>>    e = subfile->line_vector->item + subfile->line_vector->nitems++;
>>>    e->line = line;
>>> @@ -723,6 +723,90 @@ struct blockvector *
>>>  }
>>>  
>>>  \f
>>> +/* Record a PC where a inlined subroutine ends.  */
>>> +
>>> +void
>>> +buildsym_compunit::record_inline_range_end (CORE_ADDR end)
>>> +{
>>> +  /* The performance of this function is very important,
>>> +     it shall be O(n*log(n)) therefore we do not use std::vector
>>> +     here since some compilers, e.g. visual studio, do not
>>> +     guarantee that for vector::push_back.  */
>>> +  if (m_inline_end_vector == nullptr)
>>> +    {
>>> +      m_inline_end_vector_length = INITIAL_LINE_VECTOR_LENGTH;
>>> +      m_inline_end_vector = (CORE_ADDR *)
>>> +	xmalloc (sizeof (CORE_ADDR) * m_inline_end_vector_length);
>>> +      m_inline_end_vector_nitems = 0;
>>> +    }
>>> +  else if (m_inline_end_vector_nitems == m_inline_end_vector_length)
>>> +    {
>>> +      m_inline_end_vector_length *= 2;
>>> +      m_inline_end_vector = (CORE_ADDR *)
>>> +	xrealloc ((char *) m_inline_end_vector,
>>> +		  sizeof (CORE_ADDR) * m_inline_end_vector_length);
>>> +    }
>>> +
>>> +  m_inline_end_vector[m_inline_end_vector_nitems++] = end;
>>> +}
>>> +
>>> +\f
>>> +/* Patch the is_stmt bits at the given inline end address.
>>> +   The line table has to be already sorted.  */
>>> +
>>> +static void
>>> +patch_inline_end_pos (struct linetable *table, CORE_ADDR end)
>>> +{
>>> +  int a = 2, b = table->nitems - 1;
>>> +  struct linetable_entry *items = table->item;
>>> +
>>> +  /* We need at least two items with pc = end in the table.
>>> +     The lowest usable items are at pos 0 and 1, the highest
>>> +     usable items are at pos b - 2 and b - 1.  */
>>> +  if (a > b || end < items[1].pc || end > items[b - 2].pc)
>>> +    return;
>>> +
>>> +  /* Look for the first item with pc > end in the range [a,b].
>>> +     The previous element has pc = end or there is no match.
>>> +     We set a = 2, since we need at least two consecutive elements
>>> +     with pc = end to do anything useful.
>>> +     We set b = nitems - 1, since we are not interested in the last
>>> +     element which should be an end of sequence marker with line = 0
>>> +     and is_stmt = 1.  */
>>> +  while (a < b)
>>> +    {
>>> +      int c = (a + b) / 2;
>>> +
>>> +      if (end < items[c].pc)
>>> +	b = c;
>>> +      else
>>> +	a = c + 1;
>>> +    }
>>> +
>>> +  a--;
>>> +  if (items[a].pc != end || items[a].is_stmt)
>>> +    return;
>>> +
>>> +  /* When there is a sequence of line entries at the same address
>>> +     where an inline range ends, and the last item has is_stmt = 0,
>>> +     we force all previous items to have is_stmt = 0 as well.
>>> +     Setting breakpoints at those addresses is currently not
>>> +     supported, since it is unclear if the previous addresses are
>>> +     part of the subroutine or the calling program.  */
>>> +  do
>>> +    {
>>> +      /* We stop at the first line entry with a different address,
>>> +	 or when we see an end of sequence marker.  */
>>> +      a--;
>>> +      if (items[a].pc != end || items[a].line == 0)
>>> +	break;
>>> +
>>> +      items[a].is_stmt = 0;
>>> +    }
>>> +  while (a > 0);
>>> +}
>>> +
>>> +\f
>>>  /* Subroutine of end_symtab to simplify it.  Look for a subfile that
>>>     matches the main source file's basename.  If there is only one, and
>>>     if the main source file doesn't have any symbol or line number
>>> @@ -956,6 +1040,10 @@ struct compunit_symtab *
>>>  			      subfile->line_vector->item
>>>  			      + subfile->line_vector->nitems,
>>>  			      lte_is_less_than);
>>> +
>>> +	   for (int i = 0; i < m_inline_end_vector_nitems; i++)
>>> +	     patch_inline_end_pos (subfile->line_vector,
>>> +				   m_inline_end_vector[i]);
>>>  	}
>>>  
>>>        /* Allocate a symbol table if necessary.  */
>>> diff --git a/gdb/buildsym.h b/gdb/buildsym.h
>>> index c768a4c..2845789 100644
>>> --- a/gdb/buildsym.h
>>> +++ b/gdb/buildsym.h
>>> @@ -190,6 +190,8 @@ struct buildsym_compunit
>>>    void record_line (struct subfile *subfile, int line, CORE_ADDR pc,
>>>  		    bool is_stmt);
>>>  
>>> +  void record_inline_range_end (CORE_ADDR end);
>>> +
>>>    struct compunit_symtab *get_compunit_symtab ()
>>>    {
>>>      return m_compunit_symtab;
>>> @@ -397,6 +399,15 @@ struct buildsym_compunit
>>>  
>>>    /* Pending symbols that are local to the lexical context.  */
>>>    struct pending *m_local_symbols = nullptr;
>>> +
>>> +  /* Pending inline end range addresses.  */
>>> +  CORE_ADDR * m_inline_end_vector = nullptr;
>>> +
>>> +  /* Number of allocated inline end range addresses.  */
>>> +  int m_inline_end_vector_length = 0;
>>> +
>>> +  /* Number of pending inline end range addresses.  */
>>> +  int m_inline_end_vector_nitems = 0;
>>>  };
>>>  
>>>  \f
>>> diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c
>>> index bcc3116..aa32726 100644
>>> --- a/gdb/dwarf2/read.c
>>> +++ b/gdb/dwarf2/read.c
>>> @@ -13527,10 +13527,6 @@ class process_die_scope
>>>  	  return false;
>>>  	}
>>>  
>>> -      /* Empty range entries have no effect.  */
>>> -      if (range_beginning == range_end)
>>> -	continue;
>>> -
>>>        range_beginning += *base;
>>>        range_end += *base;
>>>  
>>> @@ -13638,10 +13634,6 @@ class process_die_scope
>>>  	  return 0;
>>>  	}
>>>  
>>> -      /* Empty range entries have no effect.  */
>>> -      if (range_beginning == range_end)
>>> -	continue;
>>> -
>>>        range_beginning += *base;
>>>        range_end += *base;
>>>  
>>> @@ -13681,6 +13673,10 @@ class process_die_scope
>>>    retval = dwarf2_ranges_process (offset, cu,
>>>      [&] (CORE_ADDR range_beginning, CORE_ADDR range_end)
>>>      {
>>> +      /* Empty range entries have no effect.  */
>>> +      if (range_beginning == range_end)
>>> +	return;
>>> +
>>>        if (ranges_pst != NULL)
>>>  	{
>>>  	  CORE_ADDR lowpc;
>>> @@ -13918,6 +13914,7 @@ class process_die_scope
>>>    struct gdbarch *gdbarch = get_objfile_arch (objfile);
>>>    struct attribute *attr;
>>>    struct attribute *attr_high;
>>> +  bool inlined_subroutine = (die->tag == DW_TAG_inlined_subroutine);
>>>  
>>>    attr_high = dwarf2_attr (die, DW_AT_high_pc, cu);
>>>    if (attr_high)
>>> @@ -13933,7 +13930,10 @@ class process_die_scope
>>>  
>>>  	  low = gdbarch_adjust_dwarf2_addr (gdbarch, low + baseaddr);
>>>  	  high = gdbarch_adjust_dwarf2_addr (gdbarch, high + baseaddr);
>>> -	  cu->get_builder ()->record_block_range (block, low, high - 1);
>>> +	  if (inlined_subroutine)
>>> +	    cu->get_builder ()->record_inline_range_end (high);
>>> +	  if (low < high)
>>> +	    cu->get_builder ()->record_block_range (block, low, high - 1);
>>>          }
>>>      }
>>>  
>>> @@ -13958,6 +13958,10 @@ class process_die_scope
>>>  	  end += baseaddr;
>>>  	  start = gdbarch_adjust_dwarf2_addr (gdbarch, start);
>>>  	  end = gdbarch_adjust_dwarf2_addr (gdbarch, end);
>>> +	  if (inlined_subroutine)
>>> +	    cu->get_builder ()->record_inline_range_end (end);
>>> +	  if (start == end)
>>> +	    return;
>>>  	  cu->get_builder ()->record_block_range (block, start, end - 1);
>>>  	  blockvec.emplace_back (start, end);
>>>  	});
>>> @@ -19479,7 +19483,7 @@ class lnp_state_machine
>>>  
>>>  static void
>>>  dwarf_finish_line (struct gdbarch *gdbarch, struct subfile *subfile,
>>> -		   CORE_ADDR address, struct dwarf2_cu *cu)
>>> +		   CORE_ADDR address, struct dwarf2_cu *cu, bool end_sequence)
>>>  {
>>>    if (subfile == NULL)
>>>      return;
>>> @@ -19492,7 +19496,8 @@ class lnp_state_machine
>>>  			  paddress (gdbarch, address));
>>>      }
>>>  
>>> -  dwarf_record_line_1 (gdbarch, subfile, 0, address, true, cu);
>>> +  dwarf_record_line_1 (gdbarch, subfile, end_sequence ? 0 : -1, address,
>>> +		       true, cu);
>>>  }
>>>  
>>>  void
>>> @@ -19525,7 +19530,8 @@ class lnp_state_machine
>>>  	      || end_sequence)
>>>  	    {
>>>  	      dwarf_finish_line (m_gdbarch, m_last_subfile, m_address,
>>> -				 m_currently_recording_lines ? m_cu : nullptr);
>>> +				 m_currently_recording_lines ? m_cu : nullptr,
>>> +				 end_sequence);
>>>  	    }
>>>  
>>>  	  if (!end_sequence)
>>> diff --git a/gdb/testsuite/gdb.cp/step-and-next-inline.exp b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>>> index 3733fa7..e3a5793 100644
>>> --- a/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>>> +++ b/gdb/testsuite/gdb.cp/step-and-next-inline.exp
>>> @@ -52,37 +52,20 @@ proc do_test { use_header } {
>>>      gdb_test "step" ".*" "step into get_alias_set"
>>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>>  	"not in inline 1"
>>> -    # It's possible that this first failure (when not using a header
>>> -    # file) is GCC's fault, though the remaining failures would best
>>> -    # be fixed by adding location views support (though it could be
>>> -    # that some easier heuristic could be figured out).  Still, it is
>>> -    # not certain that the first failure wouldn't also be fixed by
>>> -    # having location view support, so for now it is tagged as such.
>>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>>      gdb_test "next" ".*TREE_TYPE.*" "next step 1"
>>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>>  	"not in inline 2"
>>>      gdb_test "next" ".*TREE_TYPE.*" "next step 2"
>>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>>  	"not in inline 3"
>>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>>      gdb_test "next" ".*TREE_TYPE.*" "next step 3"
>>>      gdb_test "bt" "\\s*\\#0\\s+get_alias_set\[^\r\]*${srcfile}:.*" \
>>>  	"not in inline 4"
>>> -    if {!$use_header} { setup_kfail "*-*-*" symtab/25507 }
>>>      gdb_test "next" "return 0.*" "next step 4"
>>>      gdb_test "bt" \
>>>  	"\\s*\\#0\\s+(main|get_alias_set)\[^\r\]*${srcfile}:.*" \
>>>  	"not in inline 5"
>>>  
>>> -    if {!$use_header} {
>>> -	# With the debug from GCC 10.x (and earlier) GDB is currently
>>> -	# unable to successfully complete the following tests when we
>>> -	# are not using a header file.
>>> -	kfail symtab/25507 "stepping tests"
>>> -	return
>>> -    }
>>> -
>>>      clean_restart ${executable}
>>>  
>>>      if ![runto_main] {
>>> -- 
>>> 1.9.1
>>>
>>
>>> --- /dev/fd/63	2020-04-05 04:14:05.929697173 +0200
>>> +++ /dev/fd/62	2020-04-05 04:14:05.929697173 +0200
>>> @@ -1,4 +1,4 @@
>>> -Test Run By ed on Sun Apr  5 03:07:53 2020
>>> +Test Run By ed on Sun Apr  5 03:45:11 2020
>>>  Native configuration is x86_64-pc-linux-gnu
>>>  
>>>  		=== gdb tests ===
>>> @@ -42091,7 +42091,7 @@
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: continue
>>>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread 1 not replaying
>>> -PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
>>> +FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 1: thread apply 2 info record
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: continue
>>>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-on: cont: thread 2: thread 1 not replaying
>>> @@ -42132,7 +42132,7 @@
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: continue
>>>  FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 1 not replaying
>>> -PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
>>> +FAIL: gdb.btrace/multi-thread-step.exp: schedlock-replay: cont: thread 2: thread 2 not replaying
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 1 not replaying
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread 2 not replaying
>>>  PASS: gdb.btrace/multi-thread-step.exp: schedlock-replay: goto-end: thread apply all record goto end
>>> @@ -42432,78 +42432,77 @@
>>>  PASS: gdb.btrace/vdso.exp: replay: info record
>>>  PASS: gdb.btrace/vdso.exp: replay: record goto begin
>>>  PASS: gdb.btrace/vdso.exp: stepi
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code (*a.s.ptr != 'h')
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code A::BB
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code ABC
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code DEF
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code GHI
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile code JKL
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b (timeout)
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.e
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.s.len
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code a.u.b
>>>  FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_e
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.MAGIC (PRMS: compile/23588)
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.len (PRMS: compile/23588)
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_s.ua (PRMS: compile/23588)
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa (timeout)
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile code anon_u.aa
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print (*a.s.ptr != 'h')
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print (*anon_s.ptr == 'a') (PRMS: compile/23588)
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print A::BB
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print ABC
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print DEF
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print GHI
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: compile print JKL
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e (timeout)
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.e
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.s.len
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: compile print a.u.b
>>> +FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_e
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.MAGIC (PRMS: compile/23588)
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.len (PRMS: compile/23588)
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_s.ua (PRMS: compile/23588)
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa (timeout)
>>> +FAIL: gdb.compile/compile-cplus-anonymous.exp: compile print anon_u.aa
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: continue to breakpoint: testing location
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*a.s.ptr != 'h')
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code (*anon_s.ptr == 'a') (PRMS: compile/23588)
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code A::BB
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code ABC
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code DEF
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code GHI
>>>  PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code JKL
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.e
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.s.len
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code a.u.b
>>>  FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_e
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.MAGIC (PRMS: compile/23588)
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.len (PRMS: compile/23588)
>>>  KFAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_s.ua (PRMS: compile/23588)
>>> -FAIL: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa (timeout)
>>> +PASS: gdb.compile/compile-cplus-anonymous.exp: result of compile code anon_u.aa
>>>  PASS: gdb.compile/compile-cplus-array-decay.exp: compile print integers
>>>  PASS: gdb.compile/compile-cplus-array-decay.exp: compile print strings
>>>  PASS: gdb.compile/compile-cplus-array-decay.exp: continue to breakpoint: testing location
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: check for working compile command (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1) (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.A::do_it (1)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.B::do_it (1)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.C::do_it (1)
>>>  PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.a_
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.b_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.c_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile code d.d_ (timeout)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.b_
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.c_
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: compile code d.d_
>>>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.A::do_it (1)
>>>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.B::do_it (1)
>>>  FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.C::do_it (1)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_ (timeout)
>>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.a_
>>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.b_
>>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.c_
>>> +FAIL: gdb.compile/compile-cplus-inherit.exp: compile print d.d_
>>>  PASS: gdb.compile/compile-cplus-inherit.exp: continue to breakpoint: testing location
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.A::do_it (1)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.B::do_it (1)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.C::do_it (1)
>>>  PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.a_
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_ (timeout)
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.b_
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.c_
>>> +PASS: gdb.compile/compile-cplus-inherit.exp: result of compile code d.d_
>>>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::ATYPE i = 10; var = i;
>>>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_
>>>  FAIL: gdb.compile/compile-cplus-member.exp: compile code A::s_private_ = E_B; var = A::s_private_;
>>> @@ -42624,21 +42623,21 @@
>>>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code N1::N2::N3::N4::n4static
>>>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.get_var ()
>>>  PASS: gdb.compile/compile-cplus-namespace.exp: result of compile code s4.s4int_
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_; (timeout)
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 &r1 = i1; var = r1.a_;
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1 *i1p = &i1; var = i1p->a_;
>>>  FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_ (timeout)
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code i1.a_
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile code i2.a_
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile print i1.a_
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: compile print i2.a_
>>>  PASS: gdb.compile/compile-cplus-nested.exp: continue to breakpoint: testing location
>>>  FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 &r1 = i1; var = r1.a_;
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_; (timeout)
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1 *i1p = &i1; var = i1p->a_;
>>>  FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 &r2 = i2; var = r2.a_;
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_; (timeout)
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_ (timeout)
>>> -FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_ (timeout)
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code A::Inner1::Inner2 *i2p = &i2; var = i2p->a_;
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i1.a_
>>> +FAIL: gdb.compile/compile-cplus-nested.exp: result of compile code i2.a_
>>>  PASS: gdb.compile/compile-cplus-print.exp: Set language to C++
>>>  KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararray@3 (PRMS: compile/23587)
>>>  KFAIL: gdb.compile/compile-cplus-print.exp: compile print *vararrayp@3 (PRMS: compile/23587)
>>> @@ -49883,34 +49882,18 @@
>>>  PASS: gdb.cp/static-print-quit.exp: set pagination off
>>>  PASS: gdb.cp/static-print-quit.exp: set width 80
>>>  PASS: gdb.cp/static-typedef-print.exp: print static member
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in get_alias_set pass 2
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 1 pass 2
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 2 pass 2
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in inline 3 pass 2
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: in main
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: in main pass 2
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 1
>>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 1 (PRMS: symtab/25507)
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 2
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 3
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: next step 4
>>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 3 (PRMS: symtab/25507)
>>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: next step 4 (PRMS: symtab/25507)
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 1 pass 2
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 2 pass 2
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 3 pass 2
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 4 pass 2
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: not in inline 5
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 1
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 2
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 3
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 4
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 5
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 6
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step 7
>>>  PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set
>>> -PASS: gdb.cp/step-and-next-inline.exp: no_header: step into get_alias_set pass 2
>>> +KFAIL: gdb.cp/step-and-next-inline.exp: no_header: stepping tests (PRMS: symtab/25507)
>>>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in get_alias_set pass 2
>>>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 1 pass 2
>>>  PASS: gdb.cp/step-and-next-inline.exp: use_header: in inline 2 pass 2
>>> @@ -66161,7 +66144,7 @@
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info inferiors
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: info threads
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: set schedule-multiple on
>>> -FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT)
>>> +FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c (SIGINT) (the program is no longer running)
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: switch to inferior 2
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: add empty inferior 2
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: attach
>>> @@ -66175,7 +66158,7 @@
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info inferiors
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: info threads
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: set schedule-multiple on
>>> -FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
>>> +PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c (SIGINT)
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: switch to inferior 2
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: tty TTY
>>>  PASS: gdb.multi/multi-term-settings.exp: inf1_how=run: inf2_how=attach: add empty inferior 2
>>> @@ -74312,7 +74295,7 @@
>>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no failure to remove breakpoints
>>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no spurious thread stop
>>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
>>> -PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
>>> +FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
>>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: set detach-on-fork off
>>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: successfully compiled posix threads test case
>>>  PASS: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
>>> @@ -75041,7 +75024,7 @@
>>>  PASS: gdb.threads/non-ldr-exc-4.exp: lock-sched=on,non-stop=off: set scheduler-locking on
>>>  PASS: gdb.threads/non-ldr-exc-4.exp: successfully compiled posix threads test case
>>>  PASS: gdb.threads/non-ldr-exit.exp: continue to breakpoint: break-here
>>> -PASS: gdb.threads/non-ldr-exit.exp: program exits normally
>>> +KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally (PRMS: gdb/18717)
>>>  PASS: gdb.threads/non-ldr-exit.exp: set scheduler-locking on
>>>  PASS: gdb.threads/non-ldr-exit.exp: successfully compiled posix threads test case
>>>  PASS: gdb.threads/non-stop-fair-events.exp: get num_threads
>>> @@ -75553,48 +75536,48 @@
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: get valueof "thread_num"
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print file_scope_var
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i01
>>> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
>>> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02 (PRMS: gdb/22214)
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i11
>>> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
>>> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12 (PRMS: gdb/22214)
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i21
>>> -PASS: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
>>> +KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22 (PRMS: gdb/22214)
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: continue to breakpoint: at printf
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: get valueof "thread_num"
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print file_scope_var
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i01
>>> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02 (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i11
>>> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12 (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
>>>  PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i21
>>> -KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22 (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: continue to breakpoint: at printf
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: get valueof "tn"
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print file_scope_var
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print i
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print j
>>> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k
>>> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k (PRMS: gdb/22214)
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print p
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print q
>>> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r
>>> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r (PRMS: gdb/22214)
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print s1
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print tn
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print x
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print y
>>> -PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z
>>> +KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z (PRMS: gdb/22214)
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: continue to breakpoint: at printf
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: get valueof "tn"
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print file_scope_var
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print i
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print j
>>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print p
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print q
>>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print s1
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print tn
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print x
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print y
>>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: continue to breakpoint: at printf
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: get valueof "tn"
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print file_scope_var
>>> @@ -75638,8 +75621,8 @@
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print file_scope_var
>>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i (PRMS: gdb/22214)
>>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j (PRMS: gdb/22214)
>>> -PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
>>> -PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
>>> +XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print k
>>> +XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print l
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print num
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: continue to breakpoint: at printf
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: get valueof "inner_num"
>>> @@ -75656,14 +75639,14 @@
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print file_scope_var
>>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print i (PRMS: gdb/22214)
>>>  KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print j (PRMS: gdb/22214)
>>> -XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
>>> -XFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
>>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print k
>>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print l
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print num
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: continue to breakpoint: at printf
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: get local valueof "num"
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print file_scope_var
>>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i (PRMS: gdb/22214)
>>> -KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
>>> +PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print k
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print l
>>>  PASS: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print num
>>> @@ -75678,7 +75661,7 @@
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: get valueof "thread_num"
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i1
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i2
>>> -KFAIL: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3 (PRMS: gdb/22214)
>>> +PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s1
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s2
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: first thread: print s3
>>> @@ -75686,7 +75669,7 @@
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: get valueof "thread_num"
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i1
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i2
>>> -PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
>>> +KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3 (PRMS: gdb/22214)
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s1
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s2
>>>  PASS: gdb.threads/omp-par-scope.exp: single_scope: second thread: print s3
>>> @@ -75799,7 +75782,7 @@
>>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: probe for target remote
>>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: set breakpoint that evals false
>>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: continue &
>>> -KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (memory error) (PRMS: gdb/18749)
>>> +KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited (prompt) (PRMS: gdb/18749)
>>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: probe for target remote
>>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: set breakpoint that evals false
>>>  PASS: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: continue &
>>> @@ -77532,12 +77515,12 @@
>>>  
>>>  		=== gdb Summary ===
>>>  
>>> -# of expected passes		76351
>>> -# of unexpected failures	828
>>> +# of expected passes		76363
>>> +# of unexpected failures	796
>>>  # of expected failures		69
>>> -# of known failures		104
>>> +# of known failures		107
>>>  # of untested testcases		44
>>>  # of unresolved testcases	5
>>>  # of unsupported tests		118
>>> -/home/ed/gnu/gdb-build-1/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-1/gdb/testsuite/../data-directory 
>>> +/home/ed/gnu/gdb-build-2/gdb/testsuite/../../gdb/gdb version  10.0.50.20200404-git -nw -nx -data-directory /home/ed/gnu/gdb-build-2/gdb/testsuite/../data-directory 
>>>  
>>

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-04 22:07 ` Andrew Burgess
  2020-04-04 23:59   ` Bernd Edlinger
@ 2020-04-22 21:03   ` Tom Tromey
  2020-04-25  7:29     ` Bernd Edlinger
  1 sibling, 1 reply; 16+ messages in thread
From: Tom Tromey @ 2020-04-22 21:03 UTC (permalink / raw)
  To: Andrew Burgess; +Cc: Bernd Edlinger, Tom Tromey, gdb-patches

>>>>> "Andrew" == Andrew Burgess <andrew.burgess@embecosm.com> writes:

>> +void
>> +buildsym_compunit::record_inline_range_end (CORE_ADDR end)
>> +{
>> +  /* The performance of this function is very important,
>> +     it shall be O(n*log(n)) therefore we do not use std::vector
>> +     here since some compilers, e.g. visual studio, do not
>> +     guarantee that for vector::push_back.  */

Andrew> I think we're going to need more of a group discussion on this.
Andrew> Simply saying std::vector is too slow doesn't I'm afraid convince me.
Andrew> There seem to be lots of other places in GDB where both performance is
Andrew> critical, and we use ::push_back.

Andrew> Is your claim that we should move away from std::vector in all these
Andrew> cases?  Is this case somehow special?

C++ documents push_back as having amortized constant complexity.  If
that's not the case for the MS compiler, that seems like a pretty
serious bug there... I guess I'd like some documentation of some kind (a
stackoverflow question, or maybe a test program that shows the vector
growing linearly, or something like that).

I didn't understand the relevance or target of the "n*log(n)" comment.

Andrew> I don't think we should be doing this.  This is defined quite clearly
Andrew> in the DWARF spec as being an empty range.  No code is associated with
Andrew> this range.  As such, it really shouldn't have an impact on how we
Andrew> interpret the rest of the DWARF.

Andrew> Again, I think you're trying too hard to work around GCC's broken
Andrew> DWARF output.

Do we know how long GCC has been generating this?
And whether anybody is investigating a fix?

I dislike adding workarounds for relatively modern versions of
GCC... I'd prefer these things be fixed in GCC if possible.  However, if
that's not possible, I'm also flexible about it.

Tom

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCHv5] Fix range end handling of inlined subroutines
  2020-04-22 21:03   ` Tom Tromey
@ 2020-04-25  7:29     ` Bernd Edlinger
  0 siblings, 0 replies; 16+ messages in thread
From: Bernd Edlinger @ 2020-04-25  7:29 UTC (permalink / raw)
  To: Tom Tromey, Andrew Burgess; +Cc: gdb-patches, Alexandre Oliva



On 4/22/20 11:03 PM, Tom Tromey wrote:
>>>>>> "Andrew" == Andrew Burgess <andrew.burgess@embecosm.com> writes:
> 
>>> +void
>>> +buildsym_compunit::record_inline_range_end (CORE_ADDR end)
>>> +{
>>> +  /* The performance of this function is very important,
>>> +     it shall be O(n*log(n)) therefore we do not use std::vector
>>> +     here since some compilers, e.g. visual studio, do not
>>> +     guarantee that for vector::push_back.  */
> 
> Andrew> I think we're going to need more of a group discussion on this.
> Andrew> Simply saying std::vector is too slow doesn't I'm afraid convince me.
> Andrew> There seem to be lots of other places in GDB where both performance is
> Andrew> critical, and we use ::push_back.
> 
> Andrew> Is your claim that we should move away from std::vector in all these
> Andrew> cases?  Is this case somehow special?
> 
> C++ documents push_back as having amortized constant complexity.  If
> that's not the case for the MS compiler, that seems like a pretty
> serious bug there... I guess I'd like some documentation of some kind (a
> stackoverflow question, or maybe a test program that shows the vector
> growing linearly, or something like that).
> 

The problem is, this is in an inner loop where the overall system
performance is severely affected by this bug which is not our fault.

BUT for the user this is a GDB bug, and guess what the microsoft debugger
will load faster.  So why do we take that risk?

> I didn't understand the relevance or target of the "n*log(n)" comment.
> 

Maybe give more context, I do not understand your question when all the context
is removed.

> Andrew> I don't think we should be doing this.  This is defined quite clearly
> Andrew> in the DWARF spec as being an empty range.  No code is associated with
> Andrew> this range.  As such, it really shouldn't have an impact on how we
> Andrew> interpret the rest of the DWARF.
> 
> Andrew> Again, I think you're trying too hard to work around GCC's broken
> Andrew> DWARF output.
> 
> Do we know how long GCC has been generating this?
> And whether anybody is investigating a fix?
> 

Since gcc-7 IIRC.  So these versions can no longer be changed,
but they will be around for very long.  As I said the only possible outcome
is disabling this feature for GCC a back-port of anything more complicated
will be way too dangerous.  Even that is only gcc-10, gcc-9 and gcc-8.

So we missed gcc-7, everybody using that will be in trouble.

> I dislike adding workarounds for relatively modern versions of
> GCC... I'd prefer these things be fixed in GCC if possible.  However, if
> that's not possible, I'm also flexible about it.
> 
> Tom
> 

Tom, once a bug has been unfixed for so long, the damage can no longer
be undone.


So I think we should work around the failuer,
which is IMHO neither GCC nor GDB's fault, but a flaw in the DWARF-2 spec.

I think the best solution would be to fix the spec, and work around
the issue until we have a new dwarf-version.


Thanks,
Bernd.

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-04-25  7:29 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-04 19:50 [PATCHv5] Fix range end handling of inlined subroutines Bernd Edlinger
2020-04-04 22:07 ` Andrew Burgess
2020-04-04 23:59   ` Bernd Edlinger
2020-04-22 21:03   ` Tom Tromey
2020-04-25  7:29     ` Bernd Edlinger
2020-04-04 22:27 ` Luis Machado
2020-04-04 22:30   ` Luis Machado
2020-04-05  0:05     ` Bernd Edlinger
2020-04-04 23:38   ` Bernd Edlinger
2020-04-05  2:28 ` [PATCHv6] " Bernd Edlinger
2020-04-05 15:26   ` Luis Machado
2020-04-05 16:00     ` Bernd Edlinger
2020-04-05 17:27       ` Bernd Edlinger
2020-04-06 17:35   ` Andrew Burgess
2020-04-06 19:34     ` Bernd Edlinger
2020-04-06 21:17       ` Bernd Edlinger

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).