aboutsummaryrefslogtreecommitdiff
path: root/gcc/lto-streamer-out.c
diff options
context:
space:
mode:
authorTom de Vries <tom@codesourcery.com>2017-12-30 17:02:00 +0000
committerTom de Vries <vries@gcc.gnu.org>2017-12-30 17:02:00 +0000
commit60bf575ccb787310f5f3063b036498de7e9c2c6b (patch)
tree1c337e37aa3127cc198dd0a948673450a1d8395f /gcc/lto-streamer-out.c
parent1e4423dbb50bcafd41a1246602e4222d8562eb93 (diff)
downloadgcc-60bf575ccb787310f5f3063b036498de7e9c2c6b.zip
gcc-60bf575ccb787310f5f3063b036498de7e9c2c6b.tar.gz
gcc-60bf575ccb787310f5f3063b036498de7e9c2c6b.tar.bz2
Prune removed funcs from offload table
2017-12-30 Tom de Vries <tom@codesourcery.com> PR libgomp/83046 * omp-expand.c (expand_omp_target): If in_lto_p, mark offload_funcs with DECL_PRESERVE_P. * lto-streamer-out.c (prune_offload_funcs): New function. Remove offload_funcs entries that no longer have a corresponding cgraph_node. Mark the remaining ones as DECL_PRESERVE_P. (output_lto): Call prune_offload_funcs. * testsuite/libgomp.oacc-c-c++-common/pr83046.c: New test. * testsuite/libgomp.c-c++-common/pr83046.c: New test. From-SVN: r256045
Diffstat (limited to 'gcc/lto-streamer-out.c')
-rw-r--r--gcc/lto-streamer-out.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/gcc/lto-streamer-out.c b/gcc/lto-streamer-out.c
index ba29bd0..ef17083 100644
--- a/gcc/lto-streamer-out.c
+++ b/gcc/lto-streamer-out.c
@@ -41,6 +41,7 @@ along with GCC; see the file COPYING3. If not see
#include "builtins.h"
#include "gomp-constants.h"
#include "debug.h"
+#include "omp-offload.h"
static void lto_write_tree (struct output_block*, tree, bool);
@@ -2345,6 +2346,35 @@ wrap_refs (tree *tp, int *ws, void *)
return NULL_TREE;
}
+/* Remove functions that are no longer used from offload_funcs, and mark the
+ remaining ones with DECL_PRESERVE_P. */
+
+static void
+prune_offload_funcs (void)
+{
+ if (!offload_funcs)
+ return;
+
+ unsigned int write_index = 0;
+ for (unsigned read_index = 0; read_index < vec_safe_length (offload_funcs);
+ read_index++)
+ {
+ tree fn_decl = (*offload_funcs)[read_index];
+ bool remove_p = cgraph_node::get (fn_decl) == NULL;
+ if (remove_p)
+ continue;
+
+ DECL_PRESERVE_P (fn_decl) = 1;
+
+ if (write_index != read_index)
+ (*offload_funcs)[write_index] = (*offload_funcs)[read_index];
+
+ write_index++;
+ }
+
+ offload_funcs->truncate (write_index);
+}
+
/* Main entry point from the pass manager. */
void
@@ -2355,6 +2385,8 @@ lto_output (void)
int i, n_nodes;
lto_symtab_encoder_t encoder = lto_get_out_decl_state ()->symtab_node_encoder;
+ prune_offload_funcs ();
+
if (flag_checking)
output = lto_bitmap_alloc ();