Hello.

The patch fixes intermediate format for situations where we have
a nested function or a lambda function. In that case, line number
was wrong.

Patch can bootstrap on x86_64-linux-gnu and survives regression tests.
I'll install the patch if there are no objections.

Martin

gcc/ChangeLog:

        PR gcov-profile/98273
        * gcov.c (output_json_intermediate_file): Use stack of nested
        functions for lines in a source file.  Pop when a function ends.
---
 gcc/gcov.c | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/gcc/gcov.c b/gcc/gcov.c
index daa1266db86..8dcec9432a6 100644
--- a/gcc/gcov.c
+++ b/gcc/gcov.c
@@ -1165,7 +1165,7 @@ output_json_intermediate_file (json::array *json_files, 
source_info *src)
   json::array *lineso = new json::array ();
   root->set ("lines", lineso);
- function_info *last_non_group_fn = NULL;
+  vector<function_info *> last_non_group_fns;
for (unsigned line_num = 1; line_num <= src->lines.size (); line_num++)
     {
@@ -1177,7 +1177,7 @@ output_json_intermediate_file (json::array *json_files, 
source_info *src)
             it2 != fns->end (); it2++)
          {
            if (!(*it2)->is_group)
-             last_non_group_fn = *it2;
+             last_non_group_fns.push_back (*it2);
vector<line_info> &lines = (*it2)->lines;
            /* The LINES array is allocated only for group functions.  */
@@ -1191,9 +1191,17 @@ output_json_intermediate_file (json::array *json_files, 
source_info *src)
/* Follow with lines associated with the source file. */
       if (line_num < src->lines.size ())
-       output_intermediate_json_line (lineso, &src->lines[line_num], line_num,
-                                      (last_non_group_fn != NULL
-                                       ? last_non_group_fn->m_name : NULL));
+       {
+         unsigned size = last_non_group_fns.size ();
+         function_info *last_fn = size > 0 ? last_non_group_fns[size - 1] : 
NULL;
+         const char *fname = last_fn ? last_fn->m_name : NULL;
+         output_intermediate_json_line (lineso, &src->lines[line_num], 
line_num,
+                                        fname);
+
+         /* Pop ending function from stack.  */
+         if (last_fn != NULL && last_fn->end_line == line_num)
+           last_non_group_fns.pop_back ();
+       }
     }
 }
--
2.29.2

Reply via email to