debug/92763 keep DIEs that might be used in DW_TAG_inlined_subroutine
authorRichard Biener <rguenther@suse.de>
Mon, 20 Jan 2020 09:36:09 +0000 (10:36 +0100)
committerRichard Biener <rguenther@suse.de>
Mon, 20 Jan 2020 11:56:43 +0000 (12:56 +0100)
We were pruning type-local subroutine DIEs if their context is unused
despite us later needing those DIEs as abstract origins for inlines.
The patch makes code already present for -fvar-tracking-assignments
unconditional.

2020-01-20  Richard Biener  <rguenther@suse.de>

PR debug/92763
* dwarf2out.c (prune_unused_types): Unconditionally mark
called function DIEs.

* g++.dg/debug/pr92763.C: New testcase.

gcc/ChangeLog
gcc/dwarf2out.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/debug/pr92763.C [new file with mode: 0644]

index 53224da0b5b0d1fa6607b9e405069b3e1517c612..dd2e329b995d8fd71549ef897df1165912cb97d9 100644 (file)
@@ -1,3 +1,9 @@
+2020-01-20  Richard Biener  <rguenther@suse.de>
+
+       PR debug/92763
+       * dwarf2out.c (prune_unused_types): Unconditionally mark
+       called function DIEs.
+
 2020-01-20  Martin Liska  <mliska@suse.cz>
 
        PR tree-optimization/93199
index 70b3fad13a2df3351140544bb6a8a159977b2006..fe46c7e1eee8f977e71cb36b5ff13a8413516739 100644 (file)
@@ -29529,9 +29529,9 @@ prune_unused_types (void)
   for (i = 0; base_types.iterate (i, &base_type); i++)
     prune_unused_types_mark (base_type, 1);
 
-  /* For -fvar-tracking-assignments, also set the mark on nodes that could be
-     referenced by DW_TAG_call_site DW_AT_call_origin (i.e. direct call
-     callees).  */
+  /* Also set the mark on nodes that could be referenced by
+     DW_TAG_call_site DW_AT_call_origin (i.e. direct call callees) or
+     by DW_TAG_inlined_subroutine origins.  */
   cgraph_node *cnode;
   FOR_EACH_FUNCTION (cnode)
     if (cnode->referred_to_p (false))
@@ -29540,8 +29540,7 @@ prune_unused_types (void)
        if (die == NULL || die->die_mark)
          continue;
        for (cgraph_edge *e = cnode->callers; e; e = e->next_caller)
-         if (e->caller != cnode
-             && opt_for_fn (e->caller->decl, flag_var_tracking_assignments))
+         if (e->caller != cnode)
            {
              prune_unused_types_mark (die, 1);
              break;
index 888f2cddb0275aa0b0dc11aeef765cd3f80c5711..220485b26315cabef875fbb6e2da31a0aeb8ce81 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-20  Richard Biener  <rguenther@suse.de>
+
+       PR debug/92763
+       * g++.dg/debug/pr92763.C: New testcase.
+
 2020-01-20  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/92536
diff --git a/gcc/testsuite/g++.dg/debug/pr92763.C b/gcc/testsuite/g++.dg/debug/pr92763.C
new file mode 100644 (file)
index 0000000..8e32d60
--- /dev/null
@@ -0,0 +1,19 @@
+// { dg-do compile }
+// { dg-additional-options "-fno-var-tracking-assignments -fopenmp" }
+
+struct A
+{
+  typedef int T;
+  #pragma omp declare reduction (y : T : [&omp_out, &omp_in]() { omp_out += omp_in; return 0; }()) initializer (omp_priv = [omp_orig]() { return omp_orig; }())
+  static void foo ();
+};
+
+void
+A::foo ()
+{
+  int r = 0, s = 0;
+  #pragma omp parallel for reduction (y : r, s)
+  for (int i = 0; i < 1; i++)
+    {
+    }
+}