]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/lto-cgraph.c
[6/6] Preprocessor forced macro location
[thirdparty/gcc.git] / gcc / lto-cgraph.c
CommitLineData
d7f09764
DN
1/* Write and read the cgraph to the memory mapped representation of a
2 .o file.
3
85ec4feb 4 Copyright (C) 2009-2018 Free Software Foundation, Inc.
d7f09764
DN
5 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
6
7This file is part of GCC.
8
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
11Software Foundation; either version 3, or (at your option) any later
12version.
13
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
18
19You should have received a copy of the GNU General Public License
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
22
23#include "config.h"
24#include "system.h"
25#include "coretypes.h"
c7131fb2 26#include "backend.h"
957060b5 27#include "rtl.h"
d7f09764 28#include "tree.h"
c7131fb2 29#include "gimple.h"
957060b5 30#include "predict.h"
957060b5 31#include "stringpool.h"
957060b5
AM
32#include "tree-streamer.h"
33#include "cgraph.h"
7d57274b 34#include "tree-pass.h"
2730ada7 35#include "profile.h"
315f8c0e
DM
36#include "context.h"
37#include "pass_manager.h"
82d618d3 38#include "ipa-utils.h"
629b3d75 39#include "omp-offload.h"
314e6352
ML
40#include "stringpool.h"
41#include "attribs.h"
d7f09764 42
f300e7b8
JH
43/* True when asm nodes has been output. */
44bool asm_nodes_output = false;
45
f27c1867 46static void output_cgraph_opt_summary (void);
5e20cdc9 47static void input_cgraph_opt_summary (vec<symtab_node *> nodes);
922f15c2 48
533c07c5 49/* Number of LDPR values known to GCC. */
ed0d2da0 50#define LDPR_NUM_KNOWN (LDPR_PREVAILING_DEF_IRONLY_EXP + 1)
2f41ecf5 51
398f05da
JH
52/* All node orders are ofsetted by ORDER_BASE. */
53static int order_base;
54
8b4765bf
JH
55/* Cgraph streaming is organized as set of record whose type
56 is indicated by a tag. */
7380e6ef 57enum LTO_symtab_tags
8b4765bf
JH
58{
59 /* Must leave 0 for the stopper. */
60
61 /* Cgraph node without body available. */
7380e6ef 62 LTO_symtab_unavail_node = 1,
8b4765bf 63 /* Cgraph node with function body. */
7380e6ef 64 LTO_symtab_analyzed_node,
8b4765bf 65 /* Cgraph edges. */
7380e6ef
JH
66 LTO_symtab_edge,
67 LTO_symtab_indirect_edge,
68 LTO_symtab_variable,
69 LTO_symtab_last_tag
8b4765bf
JH
70};
71
e75f8f79
JH
72/* Create a new symtab encoder.
73 if FOR_INPUT, the encoder allocate only datastructures needed
74 to read the symtab. */
d7f09764 75
7380e6ef 76lto_symtab_encoder_t
e75f8f79 77lto_symtab_encoder_new (bool for_input)
d7f09764 78{
7380e6ef 79 lto_symtab_encoder_t encoder = XCNEW (struct lto_symtab_encoder_d);
e75f8f79
JH
80
81 if (!for_input)
b787e7a2 82 encoder->map = new hash_map<symtab_node *, size_t>;
9771b263 83 encoder->nodes.create (0);
d7f09764
DN
84 return encoder;
85}
86
87
88/* Delete ENCODER and its components. */
89
90void
7380e6ef 91lto_symtab_encoder_delete (lto_symtab_encoder_t encoder)
d7f09764 92{
9771b263 93 encoder->nodes.release ();
e75f8f79 94 if (encoder->map)
b787e7a2 95 delete encoder->map;
d7f09764
DN
96 free (encoder);
97}
98
99
7380e6ef 100/* Return the existing reference number of NODE in the symtab encoder in
d7f09764
DN
101 output block OB. Assign a new reference if this is the first time
102 NODE is encoded. */
103
104int
7380e6ef 105lto_symtab_encoder_encode (lto_symtab_encoder_t encoder,
5e20cdc9 106 symtab_node *node)
d7f09764
DN
107{
108 int ref;
b8698a0f 109
e75f8f79
JH
110 if (!encoder->map)
111 {
112 lto_encoder_entry entry = {node, false, false, false};
113
9771b263
DN
114 ref = encoder->nodes.length ();
115 encoder->nodes.safe_push (entry);
e75f8f79
JH
116 return ref;
117 }
118
b787e7a2 119 size_t *slot = encoder->map->get (node);
7b99cca4 120 if (!slot || !*slot)
d7f09764 121 {
7b99cca4 122 lto_encoder_entry entry = {node, false, false, false};
9771b263 123 ref = encoder->nodes.length ();
7b99cca4 124 if (!slot)
b787e7a2 125 encoder->map->put (node, ref + 1);
9771b263 126 encoder->nodes.safe_push (entry);
d7f09764
DN
127 }
128 else
b787e7a2 129 ref = *slot - 1;
d7f09764
DN
130
131 return ref;
132}
133
7b99cca4 134/* Remove NODE from encoder. */
d7f09764 135
7b99cca4
JH
136bool
137lto_symtab_encoder_delete_node (lto_symtab_encoder_t encoder,
5e20cdc9 138 symtab_node *node)
d7f09764 139{
7b99cca4
JH
140 int index;
141 lto_encoder_entry last_node;
142
b787e7a2 143 size_t *slot = encoder->map->get (node);
7b99cca4
JH
144 if (slot == NULL || !*slot)
145 return false;
146
b787e7a2 147 index = *slot - 1;
9771b263 148 gcc_checking_assert (encoder->nodes[index].node == node);
7b99cca4
JH
149
150 /* Remove from vector. We do this by swapping node with the last element
151 of the vector. */
9771b263 152 last_node = encoder->nodes.pop ();
7b99cca4
JH
153 if (last_node.node != node)
154 {
b787e7a2 155 gcc_assert (encoder->map->put (last_node.node, index + 1));
7b99cca4
JH
156
157 /* Move the last element to the original spot of NODE. */
9771b263 158 encoder->nodes[index] = last_node;
7b99cca4
JH
159 }
160
161 /* Remove element from hash table. */
b787e7a2 162 encoder->map->remove (node);
7b99cca4 163 return true;
d7f09764
DN
164}
165
166
2ead7928 167/* Return TRUE if we should encode the body of NODE (if any). */
d7f09764 168
91fbf0c7 169bool
7380e6ef 170lto_symtab_encoder_encode_body_p (lto_symtab_encoder_t encoder,
91fbf0c7
JH
171 struct cgraph_node *node)
172{
67348ccc 173 int index = lto_symtab_encoder_lookup (encoder, node);
9771b263 174 return encoder->nodes[index].body;
91fbf0c7
JH
175}
176
2ead7928 177/* Specify that we encode the body of NODE in this partition. */
91fbf0c7
JH
178
179static void
7380e6ef 180lto_set_symtab_encoder_encode_body (lto_symtab_encoder_t encoder,
91fbf0c7 181 struct cgraph_node *node)
d7f09764 182{
67348ccc
DM
183 int index = lto_symtab_encoder_encode (encoder, node);
184 gcc_checking_assert (encoder->nodes[index].node == node);
9771b263 185 encoder->nodes[index].body = true;
d7f09764
DN
186}
187
2f41ecf5
JH
188/* Return TRUE if we should encode initializer of NODE (if any). */
189
190bool
7380e6ef 191lto_symtab_encoder_encode_initializer_p (lto_symtab_encoder_t encoder,
2c8326a5 192 varpool_node *node)
2f41ecf5 193{
67348ccc 194 int index = lto_symtab_encoder_lookup (encoder, node);
7b99cca4
JH
195 if (index == LCC_NOT_FOUND)
196 return false;
9771b263 197 return encoder->nodes[index].initializer;
2f41ecf5
JH
198}
199
2ead7928 200/* Specify that we should encode initializer of NODE (if any). */
2f41ecf5
JH
201
202static void
7380e6ef 203lto_set_symtab_encoder_encode_initializer (lto_symtab_encoder_t encoder,
2c8326a5 204 varpool_node *node)
2f41ecf5 205{
67348ccc 206 int index = lto_symtab_encoder_lookup (encoder, node);
9771b263 207 encoder->nodes[index].initializer = true;
2f41ecf5 208}
d7f09764 209
2ead7928 210/* Return TRUE if NODE is in this partition. */
f27c1867
JH
211
212bool
213lto_symtab_encoder_in_partition_p (lto_symtab_encoder_t encoder,
5e20cdc9 214 symtab_node *node)
f27c1867 215{
67348ccc 216 int index = lto_symtab_encoder_lookup (encoder, node);
7b99cca4
JH
217 if (index == LCC_NOT_FOUND)
218 return false;
9771b263 219 return encoder->nodes[index].in_partition;
f27c1867
JH
220}
221
2ead7928 222/* Specify that NODE is in this partition. */
f27c1867
JH
223
224void
225lto_set_symtab_encoder_in_partition (lto_symtab_encoder_t encoder,
5e20cdc9 226 symtab_node *node)
f27c1867 227{
67348ccc 228 int index = lto_symtab_encoder_encode (encoder, node);
9771b263 229 encoder->nodes[index].in_partition = true;
f27c1867
JH
230}
231
d7f09764
DN
232/* Output the cgraph EDGE to OB using ENCODER. */
233
234static void
235lto_output_edge (struct lto_simple_output_block *ob, struct cgraph_edge *edge,
7380e6ef 236 lto_symtab_encoder_t encoder)
d7f09764
DN
237{
238 unsigned int uid;
239 intptr_t ref;
2465dcc2 240 struct bitpack_d bp;
d7f09764 241
e33c6cd6 242 if (edge->indirect_unknown_callee)
7380e6ef
JH
243 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag,
244 LTO_symtab_indirect_edge);
e33c6cd6 245 else
7380e6ef
JH
246 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag,
247 LTO_symtab_edge);
d7f09764 248
67348ccc 249 ref = lto_symtab_encoder_lookup (encoder, edge->caller);
b8698a0f 250 gcc_assert (ref != LCC_NOT_FOUND);
412288f1 251 streamer_write_hwi_stream (ob->main_stream, ref);
d7f09764 252
e33c6cd6
MJ
253 if (!edge->indirect_unknown_callee)
254 {
67348ccc 255 ref = lto_symtab_encoder_lookup (encoder, edge->callee);
e33c6cd6 256 gcc_assert (ref != LCC_NOT_FOUND);
412288f1 257 streamer_write_hwi_stream (ob->main_stream, ref);
e33c6cd6 258 }
d7f09764 259
3995f3a2 260 edge->count.stream_out (ob->main_stream);
d7f09764 261
2465dcc2 262 bp = bitpack_create (ob->main_stream);
ec6a1e35 263 uid = (!gimple_has_body_p (edge->caller->decl) || edge->caller->thunk.thunk_p
042ae7d2 264 ? edge->lto_stmt_uid : gimple_uid (edge->call_stmt) + 1);
84562394 265 bp_pack_enum (&bp, cgraph_inline_failed_t,
533c07c5
JH
266 CIF_N_REASONS, edge->inline_failed);
267 bp_pack_var_len_unsigned (&bp, uid);
2465dcc2 268 bp_pack_value (&bp, edge->indirect_inlining_edge, 1);
042ae7d2 269 bp_pack_value (&bp, edge->speculative, 1);
2465dcc2 270 bp_pack_value (&bp, edge->call_stmt_cannot_inline_p, 1);
1a0bf5e1
JH
271 gcc_assert (!edge->call_stmt_cannot_inline_p
272 || edge->inline_failed != CIF_BODY_NOT_AVAILABLE);
2465dcc2 273 bp_pack_value (&bp, edge->can_throw_external, 1);
f9bb202b 274 bp_pack_value (&bp, edge->in_polymorphic_cdtor, 1);
5f902d76
JH
275 if (edge->indirect_unknown_callee)
276 {
277 int flags = edge->indirect_info->ecf_flags;
2465dcc2
RG
278 bp_pack_value (&bp, (flags & ECF_CONST) != 0, 1);
279 bp_pack_value (&bp, (flags & ECF_PURE) != 0, 1);
280 bp_pack_value (&bp, (flags & ECF_NORETURN) != 0, 1);
281 bp_pack_value (&bp, (flags & ECF_MALLOC) != 0, 1);
282 bp_pack_value (&bp, (flags & ECF_NOTHROW) != 0, 1);
283 bp_pack_value (&bp, (flags & ECF_RETURNS_TWICE) != 0, 1);
5f902d76
JH
284 /* Flags that should not appear on indirect calls. */
285 gcc_assert (!(flags & (ECF_LOOPING_CONST_OR_PURE
286 | ECF_MAY_BE_ALLOCA
287 | ECF_SIBCALL
db0bf14f 288 | ECF_LEAF
5f902d76
JH
289 | ECF_NOVOPS)));
290 }
412288f1 291 streamer_write_bitpack (&bp);
634ab819
JH
292 if (edge->indirect_unknown_callee)
293 {
294 streamer_write_hwi_stream (ob->main_stream,
295 edge->indirect_info->common_target_id);
296 if (edge->indirect_info->common_target_id)
297 streamer_write_hwi_stream
298 (ob->main_stream, edge->indirect_info->common_target_probability);
299 }
d7f09764
DN
300}
301
d122681a 302/* Return if NODE contain references from other partitions. */
f3380641 303
369451ec 304bool
d122681a 305referenced_from_other_partition_p (symtab_node *node, lto_symtab_encoder_t encoder)
369451ec
JH
306{
307 int i;
d122681a
ML
308 struct ipa_ref *ref = NULL;
309
310 for (i = 0; node->iterate_referring (i, ref); i++)
369451ec 311 {
1f6be682
IV
312 /* Ignore references from non-offloadable nodes while streaming NODE into
313 offload LTO section. */
314 if (!ref->referring->need_lto_streaming)
315 continue;
316
67348ccc 317 if (ref->referring->in_other_partition
f27c1867
JH
318 || !lto_symtab_encoder_in_partition_p (encoder, ref->referring))
319 return true;
369451ec
JH
320 }
321 return false;
322}
323
a837268b
JH
324/* Return true when node is reachable from other partition. */
325
9a809897 326bool
f27c1867 327reachable_from_other_partition_p (struct cgraph_node *node, lto_symtab_encoder_t encoder)
a837268b
JH
328{
329 struct cgraph_edge *e;
67348ccc 330 if (!node->definition)
a837268b
JH
331 return false;
332 if (node->global.inlined_to)
333 return false;
334 for (e = node->callers; e; e = e->next_caller)
1f6be682
IV
335 {
336 /* Ignore references from non-offloadable nodes while streaming NODE into
337 offload LTO section. */
338 if (!e->caller->need_lto_streaming)
339 continue;
340
341 if (e->caller->in_other_partition
342 || !lto_symtab_encoder_in_partition_p (encoder, e->caller))
343 return true;
344 }
a837268b
JH
345 return false;
346}
d7f09764 347
d122681a 348/* Return if NODE contain references from other partitions. */
f3380641
JH
349
350bool
d122681a 351referenced_from_this_partition_p (symtab_node *node,
f27c1867 352 lto_symtab_encoder_t encoder)
f3380641
JH
353{
354 int i;
d122681a
ML
355 struct ipa_ref *ref = NULL;
356
357 for (i = 0; node->iterate_referring (i, ref); i++)
f27c1867
JH
358 if (lto_symtab_encoder_in_partition_p (encoder, ref->referring))
359 return true;
f3380641
JH
360 return false;
361}
362
363/* Return true when node is reachable from other partition. */
364
365bool
f27c1867 366reachable_from_this_partition_p (struct cgraph_node *node, lto_symtab_encoder_t encoder)
f3380641
JH
367{
368 struct cgraph_edge *e;
f3380641 369 for (e = node->callers; e; e = e->next_caller)
67348ccc 370 if (lto_symtab_encoder_in_partition_p (encoder, e->caller))
f3380641
JH
371 return true;
372 return false;
373}
374
d7f09764
DN
375/* Output the cgraph NODE to OB. ENCODER is used to find the
376 reference number of NODE->inlined_to. SET is the set of nodes we
377 are writing to the current file. If NODE is not in SET, then NODE
378 is a boundary of a cgraph_node_set and we pretend NODE just has a
379 decl and no callees. WRITTEN_DECLS is the set of FUNCTION_DECLs
380 that have had their callgraph node written so far. This is used to
381 determine if NODE is a clone of a previously written node. */
382
383static void
384lto_output_node (struct lto_simple_output_block *ob, struct cgraph_node *node,
f27c1867 385 lto_symtab_encoder_t encoder)
d7f09764
DN
386{
387 unsigned int tag;
2465dcc2 388 struct bitpack_d bp;
91fbf0c7 389 bool boundary_p;
d7f09764 390 intptr_t ref;
a837268b 391 bool in_other_partition = false;
a2e2a668 392 struct cgraph_node *clone_of, *ultimate_clone_of;
6a5ac314 393 ipa_opt_pass_d *pass;
7d57274b 394 int i;
aede2c10 395 const char *comdat;
24d047a3 396 const char *section;
aede2c10 397 tree group;
d7f09764 398
67348ccc 399 boundary_p = !lto_symtab_encoder_in_partition_p (encoder, node);
d7f09764 400
ec6a1e35
JH
401 if (node->analyzed && (!boundary_p || node->alias
402 || (node->thunk.thunk_p && !node->global.inlined_to)))
7380e6ef 403 tag = LTO_symtab_analyzed_node;
8b4765bf 404 else
7380e6ef 405 tag = LTO_symtab_unavail_node;
d7f09764 406
7380e6ef 407 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag,
412288f1 408 tag);
67348ccc 409 streamer_write_hwi_stream (ob->main_stream, node->order);
d7f09764 410
d7f09764
DN
411 /* In WPA mode, we only output part of the call-graph. Also, we
412 fake cgraph node attributes. There are two cases that we care.
413
414 Boundary nodes: There are nodes that are not part of SET but are
415 called from within SET. We artificially make them look like
b8698a0f 416 externally visible nodes with no function body.
d7f09764
DN
417
418 Cherry-picked nodes: These are nodes we pulled from other
419 translation units into SET during IPA-inlining. We make them as
420 local static nodes to prevent clashes with other local statics. */
96451279 421 if (boundary_p && node->analyzed
d52f5295 422 && node->get_partitioning_class () == SYMBOL_PARTITION)
d7f09764 423 {
a837268b
JH
424 /* Inline clones can not be part of boundary.
425 gcc_assert (!node->global.inlined_to);
426
427 FIXME: At the moment they can be, when partition contains an inline
428 clone that is clone of inline clone from outside partition. We can
429 reshape the clone tree and make other tree to be the root, but it
430 needs a bit extra work and will be promplty done by cgraph_remove_node
431 after reading back. */
432 in_other_partition = 1;
d7f09764 433 }
d7f09764 434
91fbf0c7
JH
435 clone_of = node->clone_of;
436 while (clone_of
67348ccc 437 && (ref = lto_symtab_encoder_lookup (encoder, clone_of)) == LCC_NOT_FOUND)
91fbf0c7
JH
438 if (clone_of->prev_sibling_clone)
439 clone_of = clone_of->prev_sibling_clone;
440 else
441 clone_of = clone_of->clone_of;
0cac82a0 442
a2e2a668
JH
443 /* See if body of the master function is output. If not, we are seeing only
444 an declaration and we do not need to pass down clone tree. */
445 ultimate_clone_of = clone_of;
446 while (ultimate_clone_of && ultimate_clone_of->clone_of)
447 ultimate_clone_of = ultimate_clone_of->clone_of;
448
449 if (clone_of && !lto_symtab_encoder_encode_body_p (encoder, ultimate_clone_of))
450 clone_of = NULL;
451
452 if (tag == LTO_symtab_analyzed_node)
0cac82a0 453 gcc_assert (clone_of || !node->clone_of);
91fbf0c7 454 if (!clone_of)
412288f1 455 streamer_write_hwi_stream (ob->main_stream, LCC_NOT_FOUND);
91fbf0c7 456 else
412288f1 457 streamer_write_hwi_stream (ob->main_stream, ref);
d7f09764 458
d7f09764 459
67348ccc 460 lto_output_fn_decl_index (ob->decl_state, ob->main_stream, node->decl);
3995f3a2 461 node->count.stream_out (ob->main_stream);
412288f1 462 streamer_write_hwi_stream (ob->main_stream, node->count_materialization_scale);
d7f09764 463
7d57274b 464 streamer_write_hwi_stream (ob->main_stream,
9771b263
DN
465 node->ipa_transforms_to_apply.length ());
466 FOR_EACH_VEC_ELT (node->ipa_transforms_to_apply, i, pass)
f7695dbf 467 streamer_write_hwi_stream (ob->main_stream, pass->static_pass_number);
7d57274b 468
7380e6ef 469 if (tag == LTO_symtab_analyzed_node)
d7f09764 470 {
8b4765bf
JH
471 if (node->global.inlined_to)
472 {
67348ccc 473 ref = lto_symtab_encoder_lookup (encoder, node->global.inlined_to);
8b4765bf
JH
474 gcc_assert (ref != LCC_NOT_FOUND);
475 }
476 else
477 ref = LCC_NOT_FOUND;
d7f09764 478
412288f1 479 streamer_write_hwi_stream (ob->main_stream, ref);
d7f09764 480 }
d7f09764 481
aede2c10
JH
482 group = node->get_comdat_group ();
483 if (group)
484 comdat = IDENTIFIER_POINTER (group);
485 else
486 comdat = "";
bfa2ebe3 487 streamer_write_data_stream (ob->main_stream, comdat, strlen (comdat) + 1);
24d047a3 488
aede2c10 489 if (group)
b66887e4 490 {
71e54687 491 if (node->same_comdat_group)
aede2c10 492 {
71e54687
JH
493 ref = LCC_NOT_FOUND;
494 for (struct symtab_node *n = node->same_comdat_group;
495 ref == LCC_NOT_FOUND && n != node; n = n->same_comdat_group)
496 ref = lto_symtab_encoder_lookup (encoder, n);
aede2c10
JH
497 }
498 else
499 ref = LCC_NOT_FOUND;
500 streamer_write_hwi_stream (ob->main_stream, ref);
b66887e4 501 }
b66887e4 502
e257a17c
JH
503 section = node->get_section ();
504 if (!section)
24d047a3 505 section = "";
24d047a3 506
86ce5d2f
ML
507 streamer_write_hwi_stream (ob->main_stream, node->tp_first_run);
508
2465dcc2
RG
509 bp = bitpack_create (ob->main_stream);
510 bp_pack_value (&bp, node->local.local, 1);
67348ccc 511 bp_pack_value (&bp, node->externally_visible, 1);
7861b648 512 bp_pack_value (&bp, node->no_reorder, 1);
67348ccc 513 bp_pack_value (&bp, node->definition, 1);
124f1be6 514 bp_pack_value (&bp, node->local.versionable, 1);
61e03ffc 515 bp_pack_value (&bp, node->local.can_change_signature, 1);
2465dcc2 516 bp_pack_value (&bp, node->local.redefined_extern_inline, 1);
67348ccc
DM
517 bp_pack_value (&bp, node->force_output, 1);
518 bp_pack_value (&bp, node->forced_by_abi, 1);
519 bp_pack_value (&bp, node->unique_name, 1);
4a5798de 520 bp_pack_value (&bp, node->body_removed, 1);
e257a17c 521 bp_pack_value (&bp, node->implicit_section, 1);
67348ccc 522 bp_pack_value (&bp, node->address_taken, 1);
7380e6ef 523 bp_pack_value (&bp, tag == LTO_symtab_analyzed_node
d52f5295 524 && node->get_partitioning_class () == SYMBOL_PARTITION
f27c1867 525 && (reachable_from_other_partition_p (node, encoder)
d122681a 526 || referenced_from_other_partition_p (node, encoder)), 1);
2465dcc2
RG
527 bp_pack_value (&bp, node->lowered, 1);
528 bp_pack_value (&bp, in_other_partition, 1);
4bd019b8 529 bp_pack_value (&bp, node->alias, 1);
71e54687 530 bp_pack_value (&bp, node->transparent_alias, 1);
67348ccc 531 bp_pack_value (&bp, node->weakref, 1);
2465dcc2 532 bp_pack_value (&bp, node->frequency, 2);
844db5d0
JH
533 bp_pack_value (&bp, node->only_called_at_startup, 1);
534 bp_pack_value (&bp, node->only_called_at_exit, 1);
57ac2606 535 bp_pack_value (&bp, node->tm_clone, 1);
1f26ac87 536 bp_pack_value (&bp, node->calls_comdat_local, 1);
b84d4347 537 bp_pack_value (&bp, node->icf_merged, 1);
8413ca87 538 bp_pack_value (&bp, node->nonfreeing_fn, 1);
4bd019b8 539 bp_pack_value (&bp, node->thunk.thunk_p, 1);
a79b7ec5 540 bp_pack_value (&bp, node->parallelized_function, 1);
533c07c5 541 bp_pack_enum (&bp, ld_plugin_symbol_resolution,
5b42d196
JH
542 LDPR_NUM_KNOWN,
543 /* When doing incremental link, we will get new resolution
544 info next time we process the file. */
545 flag_incremental_link ? LDPR_UNKNOWN : node->resolution);
41f669d8 546 bp_pack_value (&bp, node->split_part, 1);
412288f1 547 streamer_write_bitpack (&bp);
bfa2ebe3 548 streamer_write_data_stream (ob->main_stream, section, strlen (section) + 1);
2465dcc2 549
4bd019b8 550 if (node->thunk.thunk_p)
c47d0034 551 {
412288f1 552 streamer_write_uhwi_stream
c47d0034
JH
553 (ob->main_stream,
554 1 + (node->thunk.this_adjusting != 0) * 2
d5e254e1
IE
555 + (node->thunk.virtual_offset_p != 0) * 4
556 + (node->thunk.add_pointer_bounds_args != 0) * 8);
412288f1
DN
557 streamer_write_uhwi_stream (ob->main_stream, node->thunk.fixed_offset);
558 streamer_write_uhwi_stream (ob->main_stream, node->thunk.virtual_value);
44662f68 559 streamer_write_uhwi_stream (ob->main_stream, node->thunk.indirect_offset);
c47d0034 560 }
634ab819 561 streamer_write_hwi_stream (ob->main_stream, node->profile_id);
569b1784 562 if (DECL_STATIC_CONSTRUCTOR (node->decl))
1cff83e2 563 streamer_write_hwi_stream (ob->main_stream, node->get_init_priority ());
569b1784 564 if (DECL_STATIC_DESTRUCTOR (node->decl))
1cff83e2 565 streamer_write_hwi_stream (ob->main_stream, node->get_fini_priority ());
d7f09764
DN
566}
567
2942c502
JH
568/* Output the varpool NODE to OB.
569 If NODE is not in SET, then NODE is a boundary. */
570
571static void
2c8326a5 572lto_output_varpool_node (struct lto_simple_output_block *ob, varpool_node *node,
f27c1867 573 lto_symtab_encoder_t encoder)
2942c502 574{
67348ccc 575 bool boundary_p = !lto_symtab_encoder_in_partition_p (encoder, node);
87be7f0c
JH
576 bool encode_initializer_p
577 = (node->definition
578 && lto_symtab_encoder_encode_initializer_p (encoder, node));
2465dcc2 579 struct bitpack_d bp;
9f90e80a 580 int ref;
aede2c10 581 const char *comdat;
24d047a3 582 const char *section;
aede2c10 583 tree group;
2942c502 584
87be7f0c
JH
585 gcc_assert (!encode_initializer_p || node->definition);
586 gcc_assert (boundary_p || encode_initializer_p);
587
7380e6ef
JH
588 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag,
589 LTO_symtab_variable);
67348ccc
DM
590 streamer_write_hwi_stream (ob->main_stream, node->order);
591 lto_output_var_decl_index (ob->decl_state, ob->main_stream, node->decl);
2465dcc2 592 bp = bitpack_create (ob->main_stream);
67348ccc 593 bp_pack_value (&bp, node->externally_visible, 1);
7861b648 594 bp_pack_value (&bp, node->no_reorder, 1);
67348ccc
DM
595 bp_pack_value (&bp, node->force_output, 1);
596 bp_pack_value (&bp, node->forced_by_abi, 1);
597 bp_pack_value (&bp, node->unique_name, 1);
87be7f0c
JH
598 bp_pack_value (&bp,
599 node->body_removed
600 || (!encode_initializer_p && !node->alias && node->definition),
601 1);
e257a17c 602 bp_pack_value (&bp, node->implicit_section, 1);
6de88c6a 603 bp_pack_value (&bp, node->writeonly, 1);
87be7f0c
JH
604 bp_pack_value (&bp, node->definition && (encode_initializer_p || node->alias),
605 1);
4bd019b8 606 bp_pack_value (&bp, node->alias, 1);
71e54687 607 bp_pack_value (&bp, node->transparent_alias, 1);
67348ccc 608 bp_pack_value (&bp, node->weakref, 1);
71e54687 609 bp_pack_value (&bp, node->analyzed && (!boundary_p || node->alias), 1);
67348ccc 610 gcc_assert (node->definition || !node->analyzed);
05575e07
JH
611 /* Constant pool initializers can be de-unified into individual ltrans units.
612 FIXME: Alternatively at -Os we may want to avoid generating for them the local
613 labels and share them across LTRANS partitions. */
d52f5295 614 if (node->get_partitioning_class () != SYMBOL_PARTITION)
05575e07 615 {
2465dcc2
RG
616 bp_pack_value (&bp, 0, 1); /* used_from_other_parition. */
617 bp_pack_value (&bp, 0, 1); /* in_other_partition. */
05575e07
JH
618 }
619 else
620 {
67348ccc 621 bp_pack_value (&bp, node->definition
d122681a 622 && referenced_from_other_partition_p (node, encoder), 1);
67348ccc
DM
623 bp_pack_value (&bp, node->analyzed
624 && boundary_p && !DECL_EXTERNAL (node->decl), 1);
6649df51 625 /* in_other_partition. */
05575e07 626 }
56363ffd 627 bp_pack_value (&bp, node->tls_model, 3);
eb6a09a7 628 bp_pack_value (&bp, node->used_by_single_function, 1);
ca280d38 629 bp_pack_value (&bp, node->dynamically_initialized, 1);
d5e254e1 630 bp_pack_value (&bp, node->need_bounds_init, 1);
412288f1 631 streamer_write_bitpack (&bp);
24d047a3 632
aede2c10
JH
633 group = node->get_comdat_group ();
634 if (group)
635 comdat = IDENTIFIER_POINTER (group);
636 else
637 comdat = "";
bfa2ebe3 638 streamer_write_data_stream (ob->main_stream, comdat, strlen (comdat) + 1);
24d047a3 639
aede2c10 640 if (group)
9f90e80a 641 {
71e54687 642 if (node->same_comdat_group)
aede2c10 643 {
71e54687
JH
644 ref = LCC_NOT_FOUND;
645 for (struct symtab_node *n = node->same_comdat_group;
646 ref == LCC_NOT_FOUND && n != node; n = n->same_comdat_group)
647 ref = lto_symtab_encoder_lookup (encoder, n);
aede2c10
JH
648 }
649 else
650 ref = LCC_NOT_FOUND;
651 streamer_write_hwi_stream (ob->main_stream, ref);
9f90e80a 652 }
24d047a3 653
e257a17c
JH
654 section = node->get_section ();
655 if (!section)
24d047a3 656 section = "";
bfa2ebe3 657 streamer_write_data_stream (ob->main_stream, section, strlen (section) + 1);
24d047a3 658
412288f1 659 streamer_write_enum (ob->main_stream, ld_plugin_symbol_resolution,
67348ccc 660 LDPR_NUM_KNOWN, node->resolution);
2942c502
JH
661}
662
369451ec
JH
663/* Output the varpool NODE to OB.
664 If NODE is not in SET, then NODE is a boundary. */
665
666static void
667lto_output_ref (struct lto_simple_output_block *ob, struct ipa_ref *ref,
7380e6ef 668 lto_symtab_encoder_t encoder)
369451ec 669{
2465dcc2 670 struct bitpack_d bp;
7380e6ef 671 int nref;
042ae7d2
JH
672 int uid = ref->lto_stmt_uid;
673 struct cgraph_node *node;
7380e6ef 674
2465dcc2 675 bp = bitpack_create (ob->main_stream);
d5e254e1 676 bp_pack_value (&bp, ref->use, 3);
042ae7d2 677 bp_pack_value (&bp, ref->speculative, 1);
412288f1 678 streamer_write_bitpack (&bp);
7380e6ef
JH
679 nref = lto_symtab_encoder_lookup (encoder, ref->referred);
680 gcc_assert (nref != LCC_NOT_FOUND);
681 streamer_write_hwi_stream (ob->main_stream, nref);
042ae7d2 682
7de90a6c 683 node = dyn_cast <cgraph_node *> (ref->referring);
042ae7d2
JH
684 if (node)
685 {
686 if (ref->stmt)
687 uid = gimple_uid (ref->stmt) + 1;
688 streamer_write_hwi_stream (ob->main_stream, uid);
689 }
369451ec
JH
690}
691
0bc1b77f
JH
692/* Stream out profile_summary to OB. */
693
694static void
695output_profile_summary (struct lto_simple_output_block *ob)
696{
697 if (profile_info)
698 {
2730ada7
TJ
699 /* We do not output num and run_max, they are not used by
700 GCC profile feedback and they are difficult to merge from multiple
701 units. */
512cc015
ML
702 unsigned runs = (profile_info->runs);
703 streamer_write_uhwi_stream (ob->main_stream, runs);
704
0208f7da
JH
705 /* IPA-profile computes hot bb threshold based on cumulated
706 whole program profile. We need to stream it down to ltrans. */
707 if (flag_wpa)
708 streamer_write_gcov_count_stream (ob->main_stream,
709 get_hot_bb_threshold ());
0bc1b77f
JH
710 }
711 else
412288f1 712 streamer_write_uhwi_stream (ob->main_stream, 0);
0bc1b77f
JH
713}
714
e33c6cd6
MJ
715/* Output all callees or indirect outgoing edges. EDGE must be the first such
716 edge. */
717
718static void
719output_outgoing_cgraph_edges (struct cgraph_edge *edge,
720 struct lto_simple_output_block *ob,
7380e6ef 721 lto_symtab_encoder_t encoder)
e33c6cd6
MJ
722{
723 if (!edge)
724 return;
725
726 /* Output edges in backward direction, so the reconstructed callgraph match
727 and it is easy to associate call sites in the IPA pass summaries. */
728 while (edge->next_callee)
729 edge = edge->next_callee;
730 for (; edge; edge = edge->prev_callee)
731 lto_output_edge (ob, edge, encoder);
732}
733
369451ec
JH
734/* Output the part of the cgraph in SET. */
735
736static void
f27c1867 737output_refs (lto_symtab_encoder_t encoder)
369451ec 738{
369451ec
JH
739 struct lto_simple_output_block *ob;
740 int count;
741 struct ipa_ref *ref;
369451ec
JH
742
743 ob = lto_create_simple_output_block (LTO_section_refs);
744
4bd019b8 745 for (int i = 0; i < lto_symtab_encoder_size (encoder); i++)
369451ec 746 {
4bd019b8
JH
747 symtab_node *node = lto_symtab_encoder_deref (encoder, i);
748
31db0fe0 749 /* IPA_REF_ALIAS references are always preserved
48de5d37
IE
750 in the boundary. Alias node can't have other references and
751 can be always handled as if it's not in the boundary. */
4bd019b8 752 if (!node->alias && !lto_symtab_encoder_in_partition_p (encoder, node))
31db0fe0 753 continue;
369451ec 754
d122681a 755 count = node->ref_list.nreferences ();
369451ec
JH
756 if (count)
757 {
edb983b2 758 streamer_write_gcov_count_stream (ob->main_stream, count);
412288f1 759 streamer_write_uhwi_stream (ob->main_stream,
f27c1867 760 lto_symtab_encoder_lookup (encoder, node));
4bd019b8 761 for (int i = 0; node->iterate_reference (i, ref); i++)
7380e6ef 762 lto_output_ref (ob, ref, encoder);
369451ec
JH
763 }
764 }
765
412288f1 766 streamer_write_uhwi_stream (ob->main_stream, 0);
369451ec
JH
767
768 lto_destroy_simple_output_block (ob);
769}
770
b4661bfe
JH
771/* Add NODE into encoder as well as nodes it is cloned from.
772 Do it in a way so clones appear first. */
773
774static void
775add_node_to (lto_symtab_encoder_t encoder, struct cgraph_node *node,
776 bool include_body)
777{
778 if (node->clone_of)
779 add_node_to (encoder, node->clone_of, include_body);
780 else if (include_body)
781 lto_set_symtab_encoder_encode_body (encoder, node);
67348ccc 782 lto_symtab_encoder_encode (encoder, node);
b4661bfe
JH
783}
784
d122681a 785/* Add all references in NODE to encoders. */
b4661bfe
JH
786
787static void
3dafb85c 788create_references (lto_symtab_encoder_t encoder, symtab_node *node)
b4661bfe
JH
789{
790 int i;
d122681a
ML
791 struct ipa_ref *ref = NULL;
792 for (i = 0; node->iterate_reference (i, ref); i++)
7de90a6c 793 if (is_a <cgraph_node *> (ref->referred))
d122681a 794 add_node_to (encoder, dyn_cast <cgraph_node *> (ref->referred), false);
b4661bfe 795 else
b5493fb2 796 lto_symtab_encoder_encode (encoder, ref->referred);
b4661bfe
JH
797}
798
1f6be682
IV
799/* Select what needs to be streamed out. In regular lto mode stream everything.
800 In offload lto mode stream only nodes marked as offloadable. */
801void
837bac8c 802select_what_to_stream (void)
1f6be682
IV
803{
804 struct symtab_node *snode;
805 FOR_EACH_SYMBOL (snode)
837bac8c 806 snode->need_lto_streaming = !lto_stream_offload_p || snode->offloadable;
1f6be682
IV
807}
808
b4661bfe
JH
809/* Find all symbols we want to stream into given partition and insert them
810 to encoders.
811
812 The function actually replaces IN_ENCODER by new one. The reason is that
813 streaming code needs clone's origin to be streamed before clone. This
814 means that we need to insert the nodes in specific order. This order is
815 ignored by the partitioning logic earlier. */
816
817lto_symtab_encoder_t
818compute_ltrans_boundary (lto_symtab_encoder_t in_encoder)
d7f09764 819{
d7f09764 820 struct cgraph_edge *edge;
f3380641 821 int i;
7380e6ef 822 lto_symtab_encoder_t encoder;
7b99cca4 823 lto_symtab_encoder_iterator lsei;
6e2830c3 824 hash_set<void *> reachable_call_targets;
0bc1b77f 825
e75f8f79 826 encoder = lto_symtab_encoder_new (false);
d7f09764 827
7b99cca4
JH
828 /* Go over all entries in the IN_ENCODER and duplicate them to
829 ENCODER. At the same time insert masters of clones so
830 every master appears before clone. */
831 for (lsei = lsei_start_function_in_partition (in_encoder);
832 !lsei_end_p (lsei); lsei_next_function_in_partition (&lsei))
d7f09764 833 {
224dbc07 834 struct cgraph_node *node = lsei_cgraph_node (lsei);
1f6be682
IV
835 if (!node->need_lto_streaming)
836 continue;
91fbf0c7 837 add_node_to (encoder, node, true);
67348ccc 838 lto_set_symtab_encoder_in_partition (encoder, node);
3dafb85c 839 create_references (encoder, node);
d7f09764 840 }
7b99cca4
JH
841 for (lsei = lsei_start_variable_in_partition (in_encoder);
842 !lsei_end_p (lsei); lsei_next_variable_in_partition (&lsei))
2f41ecf5 843 {
2c8326a5 844 varpool_node *vnode = lsei_varpool_node (lsei);
40a7fe1e 845
1f6be682
IV
846 if (!vnode->need_lto_streaming)
847 continue;
67348ccc 848 lto_set_symtab_encoder_in_partition (encoder, vnode);
7380e6ef 849 lto_set_symtab_encoder_encode_initializer (encoder, vnode);
3dafb85c 850 create_references (encoder, vnode);
2f41ecf5 851 }
2f41ecf5
JH
852 /* Pickle in also the initializer of all referenced readonly variables
853 to help folding. Constant pool variables are not shared, so we must
854 pickle those too. */
7380e6ef 855 for (i = 0; i < lto_symtab_encoder_size (encoder); i++)
2f41ecf5 856 {
5e20cdc9 857 symtab_node *node = lto_symtab_encoder_deref (encoder, i);
7de90a6c 858 if (varpool_node *vnode = dyn_cast <varpool_node *> (node))
2f41ecf5 859 {
6a6dac52
JH
860 if (!lto_symtab_encoder_encode_initializer_p (encoder,
861 vnode)
1e29e4d3
JH
862 && (((vnode->ctor_useable_for_folding_p ()
863 && (!DECL_VIRTUAL_P (vnode->decl)
864 || !flag_wpa
31db0fe0 865 || flag_ltrans_devirtualize)))))
7380e6ef
JH
866 {
867 lto_set_symtab_encoder_encode_initializer (encoder, vnode);
3dafb85c 868 create_references (encoder, vnode);
7380e6ef 869 }
7380e6ef 870 }
2f41ecf5 871 }
d7f09764
DN
872
873 /* Go over all the nodes again to include callees that are not in
874 SET. */
7b99cca4
JH
875 for (lsei = lsei_start_function_in_partition (encoder);
876 !lsei_end_p (lsei); lsei_next_function_in_partition (&lsei))
d7f09764 877 {
224dbc07 878 struct cgraph_node *node = lsei_cgraph_node (lsei);
d7f09764
DN
879 for (edge = node->callees; edge; edge = edge->next_callee)
880 {
881 struct cgraph_node *callee = edge->callee;
67348ccc 882 if (!lto_symtab_encoder_in_partition_p (encoder, callee))
d7f09764
DN
883 {
884 /* We should have moved all the inlines. */
885 gcc_assert (!callee->global.inlined_to);
91fbf0c7 886 add_node_to (encoder, callee, false);
d7f09764
DN
887 }
888 }
82d618d3 889 /* Add all possible targets for late devirtualization. */
1e29e4d3 890 if (flag_ltrans_devirtualize || !flag_wpa)
82d618d3
JH
891 for (edge = node->indirect_calls; edge; edge = edge->next_callee)
892 if (edge->indirect_info->polymorphic)
893 {
894 unsigned int i;
895 void *cache_token;
896 bool final;
897 vec <cgraph_node *>targets
898 = possible_polymorphic_call_targets
899 (edge, &final, &cache_token);
6e2830c3 900 if (!reachable_call_targets.add (cache_token))
82d618d3 901 {
c3284718 902 for (i = 0; i < targets.length (); i++)
82d618d3
JH
903 {
904 struct cgraph_node *callee = targets[i];
905
906 /* Adding an external declarations into the unit serves
907 no purpose and just increases its boundary. */
67348ccc 908 if (callee->definition
82d618d3 909 && !lto_symtab_encoder_in_partition_p
67348ccc 910 (encoder, callee))
82d618d3
JH
911 {
912 gcc_assert (!callee->global.inlined_to);
913 add_node_to (encoder, callee, false);
914 }
915 }
916 }
917 }
d7f09764 918 }
4bd019b8
JH
919 /* Be sure to also insert alias targert and thunk callees. These needs
920 to stay to aid local calling conventions. */
921 for (i = 0; i < lto_symtab_encoder_size (encoder); i++)
922 {
923 symtab_node *node = lto_symtab_encoder_deref (encoder, i);
924 cgraph_node *cnode = dyn_cast <cgraph_node *> (node);
925
926 if (node->alias && node->analyzed)
927 create_references (encoder, node);
928 if (cnode
479f99c9 929 && cnode->thunk.thunk_p && !cnode->global.inlined_to)
4bd019b8 930 add_node_to (encoder, cnode->callees->callee, false);
2b73ad1d
JH
931 while (node->transparent_alias && node->analyzed)
932 {
933 node = node->get_alias_target ();
934 if (is_a <cgraph_node *> (node))
935 add_node_to (encoder, dyn_cast <cgraph_node *> (node),
936 false);
937 else
938 lto_symtab_encoder_encode (encoder, node);
939 }
4bd019b8 940 }
82d618d3 941 lto_symtab_encoder_delete (in_encoder);
82d618d3 942 return encoder;
f3380641
JH
943}
944
ab96cc5b 945/* Output the part of the symtab in SET and VSET. */
f3380641
JH
946
947void
f27c1867 948output_symtab (void)
f3380641
JH
949{
950 struct cgraph_node *node;
951 struct lto_simple_output_block *ob;
f3380641 952 int i, n_nodes;
7380e6ef 953 lto_symtab_encoder_t encoder;
f3380641 954
922f15c2 955 if (flag_wpa)
f27c1867 956 output_cgraph_opt_summary ();
922f15c2 957
ab96cc5b 958 ob = lto_create_simple_output_block (LTO_section_symtab_nodes);
f3380641
JH
959
960 output_profile_summary (ob);
961
962 /* An encoder for cgraph nodes should have been created by
963 ipa_write_summaries_1. */
7380e6ef
JH
964 gcc_assert (ob->decl_state->symtab_node_encoder);
965 encoder = ob->decl_state->symtab_node_encoder;
f3380641 966
a837268b
JH
967 /* Write out the nodes. We must first output a node and then its clones,
968 otherwise at a time reading back the node there would be nothing to clone
969 from. */
7380e6ef 970 n_nodes = lto_symtab_encoder_size (encoder);
d7f09764
DN
971 for (i = 0; i < n_nodes; i++)
972 {
5e20cdc9 973 symtab_node *node = lto_symtab_encoder_deref (encoder, i);
7de90a6c 974 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (node))
5d59b5e1 975 lto_output_node (ob, cnode, encoder);
7380e6ef 976 else
d52f5295 977 lto_output_varpool_node (ob, dyn_cast<varpool_node *> (node), encoder);
d7f09764
DN
978 }
979
d7f09764 980 /* Go over the nodes in SET again to write edges. */
4bd019b8 981 for (int i = 0; i < lto_symtab_encoder_size (encoder); i++)
d7f09764 982 {
4bd019b8
JH
983 node = dyn_cast <cgraph_node *> (lto_symtab_encoder_deref (encoder, i));
984 if (node
479f99c9 985 && ((node->thunk.thunk_p && !node->global.inlined_to)
4bd019b8
JH
986 || lto_symtab_encoder_in_partition_p (encoder, node)))
987 {
988 output_outgoing_cgraph_edges (node->callees, ob, encoder);
989 output_outgoing_cgraph_edges (node->indirect_calls, ob, encoder);
990 }
d7f09764
DN
991 }
992
412288f1 993 streamer_write_uhwi_stream (ob->main_stream, 0);
d7f09764 994
49f836ba
JB
995 lto_destroy_simple_output_block (ob);
996
b0d9e663
JH
997 /* Emit toplevel asms.
998 When doing WPA we must output every asm just once. Since we do not partition asm
999 nodes at all, output them to first output. This is kind of hack, but should work
1000 well. */
1001 if (!asm_nodes_output)
a9cc4458 1002 {
b0d9e663 1003 asm_nodes_output = true;
49f836ba 1004 lto_output_toplevel_asms ();
a9cc4458
RG
1005 }
1006
f27c1867 1007 output_refs (encoder);
d7f09764
DN
1008}
1009
24d047a3 1010/* Return identifier encoded in IB as a plain string. */
aede2c10
JH
1011
1012static tree
24d047a3 1013read_identifier (struct lto_input_block *ib)
aede2c10
JH
1014{
1015 unsigned int len = strnlen (ib->data + ib->p, ib->len - ib->p - 1);
24d047a3
JH
1016 tree id;
1017
1018 if (ib->data[ib->p + len])
1019 lto_section_overrun (ib);
1020 if (!len)
1021 {
1022 ib->p++;
1023 return NULL;
1024 }
1025 id = get_identifier (ib->data + ib->p);
1026 ib->p += len + 1;
1027 return id;
1028}
1029
f961457f 1030/* Return string encoded in IB, NULL if string is empty. */
24d047a3 1031
f961457f
JH
1032static const char *
1033read_string (struct lto_input_block *ib)
24d047a3
JH
1034{
1035 unsigned int len = strnlen (ib->data + ib->p, ib->len - ib->p - 1);
f961457f 1036 const char *str;
aede2c10
JH
1037
1038 if (ib->data[ib->p + len])
1039 lto_section_overrun (ib);
1040 if (!len)
1041 {
1042 ib->p++;
1043 return NULL;
1044 }
f961457f 1045 str = ib->data + ib->p;
aede2c10 1046 ib->p += len + 1;
f961457f 1047 return str;
aede2c10
JH
1048}
1049
ec6fe917
IV
1050/* Output function/variable tables that will allow libgomp to look up offload
1051 target code.
1052 OFFLOAD_FUNCS is filled in expand_omp_target, OFFLOAD_VARS is filled in
1053 varpool_node::get_create. In WHOPR (partitioned) mode during the WPA stage
1054 both OFFLOAD_FUNCS and OFFLOAD_VARS are filled by input_offload_tables. */
1055
1056void
1057output_offload_tables (void)
1058{
1059 if (vec_safe_is_empty (offload_funcs) && vec_safe_is_empty (offload_vars))
1060 return;
1061
1062 struct lto_simple_output_block *ob
1063 = lto_create_simple_output_block (LTO_section_offload_table);
1064
1065 for (unsigned i = 0; i < vec_safe_length (offload_funcs); i++)
1066 {
1067 streamer_write_enum (ob->main_stream, LTO_symtab_tags,
1068 LTO_symtab_last_tag, LTO_symtab_unavail_node);
1069 lto_output_fn_decl_index (ob->decl_state, ob->main_stream,
1070 (*offload_funcs)[i]);
1071 }
1072
1073 for (unsigned i = 0; i < vec_safe_length (offload_vars); i++)
1074 {
1075 streamer_write_enum (ob->main_stream, LTO_symtab_tags,
1076 LTO_symtab_last_tag, LTO_symtab_variable);
1077 lto_output_var_decl_index (ob->decl_state, ob->main_stream,
1078 (*offload_vars)[i]);
1079 }
1080
1081 streamer_write_uhwi_stream (ob->main_stream, 0);
1082 lto_destroy_simple_output_block (ob);
1083
1084 /* In WHOPR mode during the WPA stage the joint offload tables need to be
1085 streamed to one partition only. That's why we free offload_funcs and
1086 offload_vars after the first call of output_offload_tables. */
1087 if (flag_wpa)
1088 {
1089 vec_free (offload_funcs);
1090 vec_free (offload_vars);
1091 }
1092}
1093
d7f09764
DN
1094/* Overwrite the information in NODE based on FILE_DATA, TAG, FLAGS,
1095 STACK_SIZE, SELF_TIME and SELF_SIZE. This is called either to initialize
1096 NODE or to replace the values in it, for instance because the first
1097 time we saw it, the function body was not available but now it
1098 is. BP is a bitpack with all the bitflags for NODE read from the
1099 stream. */
1100
1101static void
1102input_overwrite_node (struct lto_file_decl_data *file_data,
1103 struct cgraph_node *node,
7380e6ef 1104 enum LTO_symtab_tags tag,
533c07c5 1105 struct bitpack_d *bp)
d7f09764 1106{
67348ccc
DM
1107 node->aux = (void *) tag;
1108 node->lto_file_data = file_data;
d7f09764
DN
1109
1110 node->local.local = bp_unpack_value (bp, 1);
67348ccc 1111 node->externally_visible = bp_unpack_value (bp, 1);
7861b648 1112 node->no_reorder = bp_unpack_value (bp, 1);
67348ccc 1113 node->definition = bp_unpack_value (bp, 1);
124f1be6 1114 node->local.versionable = bp_unpack_value (bp, 1);
61e03ffc 1115 node->local.can_change_signature = bp_unpack_value (bp, 1);
d7f09764 1116 node->local.redefined_extern_inline = bp_unpack_value (bp, 1);
67348ccc
DM
1117 node->force_output = bp_unpack_value (bp, 1);
1118 node->forced_by_abi = bp_unpack_value (bp, 1);
1119 node->unique_name = bp_unpack_value (bp, 1);
4a5798de 1120 node->body_removed = bp_unpack_value (bp, 1);
e257a17c 1121 node->implicit_section = bp_unpack_value (bp, 1);
67348ccc
DM
1122 node->address_taken = bp_unpack_value (bp, 1);
1123 node->used_from_other_partition = bp_unpack_value (bp, 1);
d7f09764 1124 node->lowered = bp_unpack_value (bp, 1);
67348ccc
DM
1125 node->analyzed = tag == LTO_symtab_analyzed_node;
1126 node->in_other_partition = bp_unpack_value (bp, 1);
1127 if (node->in_other_partition
52b3b3c7
JH
1128 /* Avoid updating decl when we are seeing just inline clone.
1129 When inlining function that has functions already inlined into it,
1130 we produce clones of inline clones.
1131
1132 WPA partitioning might put each clone into different unit and
1133 we might end up streaming inline clone from other partition
1134 to support clone we are interested in. */
1135 && (!node->clone_of
67348ccc 1136 || node->clone_of->decl != node->decl))
1c7b11d2 1137 {
67348ccc
DM
1138 DECL_EXTERNAL (node->decl) = 1;
1139 TREE_STATIC (node->decl) = 0;
1c7b11d2 1140 }
67348ccc 1141 node->alias = bp_unpack_value (bp, 1);
71e54687 1142 node->transparent_alias = bp_unpack_value (bp, 1);
67348ccc 1143 node->weakref = bp_unpack_value (bp, 1);
5fefcf92 1144 node->frequency = (enum node_frequency)bp_unpack_value (bp, 2);
844db5d0
JH
1145 node->only_called_at_startup = bp_unpack_value (bp, 1);
1146 node->only_called_at_exit = bp_unpack_value (bp, 1);
57ac2606 1147 node->tm_clone = bp_unpack_value (bp, 1);
1f26ac87 1148 node->calls_comdat_local = bp_unpack_value (bp, 1);
b84d4347 1149 node->icf_merged = bp_unpack_value (bp, 1);
8413ca87 1150 node->nonfreeing_fn = bp_unpack_value (bp, 1);
c47d0034 1151 node->thunk.thunk_p = bp_unpack_value (bp, 1);
a79b7ec5 1152 node->parallelized_function = bp_unpack_value (bp, 1);
67348ccc 1153 node->resolution = bp_unpack_enum (bp, ld_plugin_symbol_resolution,
533c07c5 1154 LDPR_NUM_KNOWN);
41f669d8 1155 node->split_part = bp_unpack_value (bp, 1);
8fe91ca8
JH
1156 gcc_assert (flag_ltrans
1157 || (!node->in_other_partition
1158 && !node->used_from_other_partition));
d7f09764
DN
1159}
1160
40a7fe1e
JH
1161/* Return string alias is alias of. */
1162
1163static tree
1164get_alias_symbol (tree decl)
1165{
1166 tree alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
40a7fe1e
JH
1167 return get_identifier (TREE_STRING_POINTER
1168 (TREE_VALUE (TREE_VALUE (alias))));
1169}
1170
b8698a0f 1171/* Read a node from input_block IB. TAG is the node's tag just read.
d7f09764 1172 Return the node read or overwriten. */
b8698a0f 1173
d7f09764
DN
1174static struct cgraph_node *
1175input_node (struct lto_file_decl_data *file_data,
1176 struct lto_input_block *ib,
7380e6ef 1177 enum LTO_symtab_tags tag,
5e20cdc9 1178 vec<symtab_node *> nodes)
d7f09764 1179{
315f8c0e 1180 gcc::pass_manager *passes = g->get_passes ();
d7f09764
DN
1181 tree fn_decl;
1182 struct cgraph_node *node;
2465dcc2 1183 struct bitpack_d bp;
d7f09764 1184 unsigned decl_index;
b66887e4 1185 int ref = LCC_NOT_FOUND, ref2 = LCC_NOT_FOUND;
91fbf0c7 1186 int clone_ref;
398f05da 1187 int order;
7d57274b 1188 int i, count;
aede2c10 1189 tree group;
f961457f 1190 const char *section;
398f05da 1191 order = streamer_read_hwi (ib) + order_base;
412288f1 1192 clone_ref = streamer_read_hwi (ib);
d7f09764 1193
412288f1 1194 decl_index = streamer_read_uhwi (ib);
d7f09764
DN
1195 fn_decl = lto_file_decl_data_get_fn_decl (file_data, decl_index);
1196
91fbf0c7
JH
1197 if (clone_ref != LCC_NOT_FOUND)
1198 {
d52f5295 1199 node = dyn_cast<cgraph_node *> (nodes[clone_ref])->create_clone (fn_decl,
1bad9c18 1200 profile_count::uninitialized (), false,
d52f5295 1201 vNULL, false, NULL, NULL);
91fbf0c7 1202 }
d7f09764 1203 else
bbf9ad07
JH
1204 {
1205 /* Declaration of functions can be already merged with a declaration
1206 from other input file. We keep cgraph unmerged until after streaming
1207 of ipa passes is done. Alays forcingly create a fresh node. */
3dafb85c 1208 node = symtab->create_empty ();
67348ccc 1209 node->decl = fn_decl;
aab778d3
L
1210 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (fn_decl)))
1211 node->ifunc_resolver = 1;
d52f5295 1212 node->register_symbol ();
bbf9ad07 1213 }
d7f09764 1214
67348ccc 1215 node->order = order;
3dafb85c
ML
1216 if (order >= symtab->order)
1217 symtab->order = order + 1;
398f05da 1218
3995f3a2 1219 node->count = profile_count::stream_in (ib);
412288f1 1220 node->count_materialization_scale = streamer_read_hwi (ib);
b8698a0f 1221
7d57274b 1222 count = streamer_read_hwi (ib);
6e1aa848 1223 node->ipa_transforms_to_apply = vNULL;
7d57274b
MJ
1224 for (i = 0; i < count; i++)
1225 {
6a5ac314 1226 opt_pass *pass;
7d57274b
MJ
1227 int pid = streamer_read_hwi (ib);
1228
315f8c0e
DM
1229 gcc_assert (pid < passes->passes_by_id_size);
1230 pass = passes->passes_by_id[pid];
6a5ac314 1231 node->ipa_transforms_to_apply.safe_push ((ipa_opt_pass_d *) pass);
7d57274b
MJ
1232 }
1233
7380e6ef 1234 if (tag == LTO_symtab_analyzed_node)
412288f1 1235 ref = streamer_read_hwi (ib);
d7f09764 1236
24d047a3 1237 group = read_identifier (ib);
aede2c10
JH
1238 if (group)
1239 ref2 = streamer_read_hwi (ib);
d7f09764
DN
1240
1241 /* Make sure that we have not read this node before. Nodes that
1242 have already been read will have their tag stored in the 'aux'
1243 field. Since built-in functions can be referenced in multiple
1244 functions, they are expected to be read more than once. */
3d78e008 1245 if (node->aux && !fndecl_built_in_p (node->decl))
d7f09764 1246 internal_error ("bytecode stream: found multiple instances of cgraph "
4325656f 1247 "node with uid %d", node->get_uid ());
d7f09764 1248
86ce5d2f
ML
1249 node->tp_first_run = streamer_read_uhwi (ib);
1250
412288f1 1251 bp = streamer_read_bitpack (ib);
86ce5d2f 1252
533c07c5 1253 input_overwrite_node (file_data, node, tag, &bp);
d7f09764 1254
d7f09764 1255 /* Store a reference for now, and fix up later to be a pointer. */
d52f5295 1256 node->global.inlined_to = (cgraph_node *) (intptr_t) ref;
d7f09764 1257
aede2c10
JH
1258 if (group)
1259 {
1260 node->set_comdat_group (group);
1261 /* Store a reference for now, and fix up later to be a pointer. */
1262 node->same_comdat_group = (symtab_node *) (intptr_t) ref2;
1263 }
1264 else
1265 node->same_comdat_group = (symtab_node *) (intptr_t) LCC_NOT_FOUND;
f961457f 1266 section = read_string (ib);
24d047a3 1267 if (section)
e257a17c 1268 node->set_section_for_node (section);
b66887e4 1269
c47d0034
JH
1270 if (node->thunk.thunk_p)
1271 {
412288f1
DN
1272 int type = streamer_read_uhwi (ib);
1273 HOST_WIDE_INT fixed_offset = streamer_read_uhwi (ib);
1274 HOST_WIDE_INT virtual_value = streamer_read_uhwi (ib);
44662f68 1275 HOST_WIDE_INT indirect_offset = streamer_read_uhwi (ib);
c47d0034 1276
c47d0034 1277 node->thunk.fixed_offset = fixed_offset;
c47d0034 1278 node->thunk.virtual_value = virtual_value;
44662f68
EB
1279 node->thunk.indirect_offset = indirect_offset;
1280 node->thunk.this_adjusting = (type & 2);
c47d0034 1281 node->thunk.virtual_offset_p = (type & 4);
d5e254e1 1282 node->thunk.add_pointer_bounds_args = (type & 8);
c47d0034 1283 }
67348ccc
DM
1284 if (node->alias && !node->analyzed && node->weakref)
1285 node->alias_target = get_alias_symbol (node->decl);
634ab819 1286 node->profile_id = streamer_read_hwi (ib);
569b1784 1287 if (DECL_STATIC_CONSTRUCTOR (node->decl))
1cff83e2 1288 node->set_init_priority (streamer_read_hwi (ib));
569b1784 1289 if (DECL_STATIC_DESTRUCTOR (node->decl))
1cff83e2 1290 node->set_fini_priority (streamer_read_hwi (ib));
d5e254e1 1291
d7f09764
DN
1292 return node;
1293}
1294
2942c502
JH
1295/* Read a node from input_block IB. TAG is the node's tag just read.
1296 Return the node read or overwriten. */
1297
2c8326a5 1298static varpool_node *
2942c502
JH
1299input_varpool_node (struct lto_file_decl_data *file_data,
1300 struct lto_input_block *ib)
1301{
1302 int decl_index;
1303 tree var_decl;
2c8326a5 1304 varpool_node *node;
2465dcc2 1305 struct bitpack_d bp;
9f90e80a 1306 int ref = LCC_NOT_FOUND;
398f05da 1307 int order;
aede2c10 1308 tree group;
f961457f 1309 const char *section;
2942c502 1310
398f05da 1311 order = streamer_read_hwi (ib) + order_base;
412288f1 1312 decl_index = streamer_read_uhwi (ib);
2942c502 1313 var_decl = lto_file_decl_data_get_var_decl (file_data, decl_index);
bbf9ad07
JH
1314
1315 /* Declaration of functions can be already merged with a declaration
1316 from other input file. We keep cgraph unmerged until after streaming
1317 of ipa passes is done. Alays forcingly create a fresh node. */
9041d2e6 1318 node = varpool_node::create_empty ();
67348ccc 1319 node->decl = var_decl;
d52f5295 1320 node->register_symbol ();
bbf9ad07 1321
67348ccc 1322 node->order = order;
3dafb85c
ML
1323 if (order >= symtab->order)
1324 symtab->order = order + 1;
67348ccc 1325 node->lto_file_data = file_data;
2942c502 1326
412288f1 1327 bp = streamer_read_bitpack (ib);
67348ccc 1328 node->externally_visible = bp_unpack_value (&bp, 1);
7861b648 1329 node->no_reorder = bp_unpack_value (&bp, 1);
67348ccc
DM
1330 node->force_output = bp_unpack_value (&bp, 1);
1331 node->forced_by_abi = bp_unpack_value (&bp, 1);
1332 node->unique_name = bp_unpack_value (&bp, 1);
4a5798de 1333 node->body_removed = bp_unpack_value (&bp, 1);
e257a17c 1334 node->implicit_section = bp_unpack_value (&bp, 1);
6de88c6a 1335 node->writeonly = bp_unpack_value (&bp, 1);
67348ccc
DM
1336 node->definition = bp_unpack_value (&bp, 1);
1337 node->alias = bp_unpack_value (&bp, 1);
71e54687 1338 node->transparent_alias = bp_unpack_value (&bp, 1);
67348ccc
DM
1339 node->weakref = bp_unpack_value (&bp, 1);
1340 node->analyzed = bp_unpack_value (&bp, 1);
1341 node->used_from_other_partition = bp_unpack_value (&bp, 1);
1342 node->in_other_partition = bp_unpack_value (&bp, 1);
1343 if (node->in_other_partition)
1c7b11d2 1344 {
67348ccc
DM
1345 DECL_EXTERNAL (node->decl) = 1;
1346 TREE_STATIC (node->decl) = 0;
1c7b11d2 1347 }
67348ccc
DM
1348 if (node->alias && !node->analyzed && node->weakref)
1349 node->alias_target = get_alias_symbol (node->decl);
56363ffd 1350 node->tls_model = (enum tls_model)bp_unpack_value (&bp, 3);
eb6a09a7 1351 node->used_by_single_function = (enum tls_model)bp_unpack_value (&bp, 1);
ca280d38 1352 node->dynamically_initialized = bp_unpack_value (&bp, 1);
d5e254e1 1353 node->need_bounds_init = bp_unpack_value (&bp, 1);
24d047a3 1354 group = read_identifier (ib);
aede2c10
JH
1355 if (group)
1356 {
1357 node->set_comdat_group (group);
1358 ref = streamer_read_hwi (ib);
1359 /* Store a reference for now, and fix up later to be a pointer. */
1360 node->same_comdat_group = (symtab_node *) (intptr_t) ref;
1361 }
1362 else
1363 node->same_comdat_group = (symtab_node *) (intptr_t) LCC_NOT_FOUND;
f961457f 1364 section = read_string (ib);
24d047a3 1365 if (section)
e257a17c 1366 node->set_section_for_node (section);
67348ccc 1367 node->resolution = streamer_read_enum (ib, ld_plugin_symbol_resolution,
960bfb69 1368 LDPR_NUM_KNOWN);
8fe91ca8
JH
1369 gcc_assert (flag_ltrans
1370 || (!node->in_other_partition
1371 && !node->used_from_other_partition));
cd35bcf7 1372
2942c502
JH
1373 return node;
1374}
1375
369451ec
JH
1376/* Read a node from input_block IB. TAG is the node's tag just read.
1377 Return the node read or overwriten. */
1378
1379static void
1380input_ref (struct lto_input_block *ib,
5e20cdc9
DM
1381 symtab_node *referring_node,
1382 vec<symtab_node *> nodes)
369451ec 1383{
5e20cdc9 1384 symtab_node *node = NULL;
2465dcc2 1385 struct bitpack_d bp;
369451ec 1386 enum ipa_ref_use use;
042ae7d2
JH
1387 bool speculative;
1388 struct ipa_ref *ref;
369451ec 1389
412288f1 1390 bp = streamer_read_bitpack (ib);
d5e254e1 1391 use = (enum ipa_ref_use) bp_unpack_value (&bp, 3);
042ae7d2 1392 speculative = (enum ipa_ref_use) bp_unpack_value (&bp, 1);
9771b263 1393 node = nodes[streamer_read_hwi (ib)];
3dafb85c 1394 ref = referring_node->create_reference (node, use);
042ae7d2 1395 ref->speculative = speculative;
7de90a6c 1396 if (is_a <cgraph_node *> (referring_node))
042ae7d2 1397 ref->lto_stmt_uid = streamer_read_hwi (ib);
369451ec 1398}
d7f09764 1399
e33c6cd6
MJ
1400/* Read an edge from IB. NODES points to a vector of previously read nodes for
1401 decoding caller and callee of the edge to be read. If INDIRECT is true, the
1402 edge being read is indirect (in the sense that it has
1403 indirect_unknown_callee set). */
d7f09764
DN
1404
1405static void
5e20cdc9 1406input_edge (struct lto_input_block *ib, vec<symtab_node *> nodes,
e33c6cd6 1407 bool indirect)
d7f09764
DN
1408{
1409 struct cgraph_node *caller, *callee;
1410 struct cgraph_edge *edge;
1411 unsigned int stmt_id;
3995f3a2 1412 profile_count count;
d7f09764 1413 cgraph_inline_failed_t inline_failed;
2465dcc2 1414 struct bitpack_d bp;
5f902d76 1415 int ecf_flags = 0;
d7f09764 1416
d52f5295 1417 caller = dyn_cast<cgraph_node *> (nodes[streamer_read_hwi (ib)]);
67348ccc 1418 if (caller == NULL || caller->decl == NULL_TREE)
d7f09764
DN
1419 internal_error ("bytecode stream: no caller found while reading edge");
1420
e33c6cd6
MJ
1421 if (!indirect)
1422 {
d52f5295 1423 callee = dyn_cast<cgraph_node *> (nodes[streamer_read_hwi (ib)]);
67348ccc 1424 if (callee == NULL || callee->decl == NULL_TREE)
e33c6cd6
MJ
1425 internal_error ("bytecode stream: no callee found while reading edge");
1426 }
1427 else
1428 callee = NULL;
d7f09764 1429
3995f3a2 1430 count = profile_count::stream_in (ib);
d7f09764 1431
412288f1 1432 bp = streamer_read_bitpack (ib);
84562394 1433 inline_failed = bp_unpack_enum (&bp, cgraph_inline_failed_t, CIF_N_REASONS);
533c07c5 1434 stmt_id = bp_unpack_var_len_unsigned (&bp);
d7f09764 1435
e33c6cd6 1436 if (indirect)
1bad9c18 1437 edge = caller->create_indirect_edge (NULL, 0, count);
e33c6cd6 1438 else
1bad9c18 1439 edge = caller->create_edge (callee, NULL, count);
e33c6cd6 1440
2465dcc2 1441 edge->indirect_inlining_edge = bp_unpack_value (&bp, 1);
042ae7d2 1442 edge->speculative = bp_unpack_value (&bp, 1);
d7f09764
DN
1443 edge->lto_stmt_uid = stmt_id;
1444 edge->inline_failed = inline_failed;
2465dcc2
RG
1445 edge->call_stmt_cannot_inline_p = bp_unpack_value (&bp, 1);
1446 edge->can_throw_external = bp_unpack_value (&bp, 1);
f9bb202b 1447 edge->in_polymorphic_cdtor = bp_unpack_value (&bp, 1);
5f902d76
JH
1448 if (indirect)
1449 {
2465dcc2 1450 if (bp_unpack_value (&bp, 1))
5f902d76 1451 ecf_flags |= ECF_CONST;
2465dcc2 1452 if (bp_unpack_value (&bp, 1))
5f902d76 1453 ecf_flags |= ECF_PURE;
2465dcc2 1454 if (bp_unpack_value (&bp, 1))
5f902d76 1455 ecf_flags |= ECF_NORETURN;
2465dcc2 1456 if (bp_unpack_value (&bp, 1))
5f902d76 1457 ecf_flags |= ECF_MALLOC;
2465dcc2 1458 if (bp_unpack_value (&bp, 1))
5f902d76 1459 ecf_flags |= ECF_NOTHROW;
2465dcc2 1460 if (bp_unpack_value (&bp, 1))
5f902d76
JH
1461 ecf_flags |= ECF_RETURNS_TWICE;
1462 edge->indirect_info->ecf_flags = ecf_flags;
634ab819
JH
1463 edge->indirect_info->common_target_id = streamer_read_hwi (ib);
1464 if (edge->indirect_info->common_target_id)
1465 edge->indirect_info->common_target_probability = streamer_read_hwi (ib);
5f902d76 1466 }
d7f09764
DN
1467}
1468
1469
1470/* Read a cgraph from IB using the info in FILE_DATA. */
1471
5e20cdc9 1472static vec<symtab_node *>
d7f09764
DN
1473input_cgraph_1 (struct lto_file_decl_data *file_data,
1474 struct lto_input_block *ib)
1475{
7380e6ef 1476 enum LTO_symtab_tags tag;
5e20cdc9
DM
1477 vec<symtab_node *> nodes = vNULL;
1478 symtab_node *node;
d7f09764
DN
1479 unsigned i;
1480
7380e6ef 1481 tag = streamer_read_enum (ib, LTO_symtab_tags, LTO_symtab_last_tag);
3dafb85c 1482 order_base = symtab->order;
d7f09764
DN
1483 while (tag)
1484 {
7380e6ef 1485 if (tag == LTO_symtab_edge)
e33c6cd6 1486 input_edge (ib, nodes, false);
7380e6ef 1487 else if (tag == LTO_symtab_indirect_edge)
e33c6cd6 1488 input_edge (ib, nodes, true);
7380e6ef
JH
1489 else if (tag == LTO_symtab_variable)
1490 {
67348ccc 1491 node = input_varpool_node (file_data, ib);
9771b263 1492 nodes.safe_push (node);
7380e6ef
JH
1493 lto_symtab_encoder_encode (file_data->symtab_node_encoder, node);
1494 }
b8698a0f 1495 else
d7f09764 1496 {
67348ccc
DM
1497 node = input_node (file_data, ib, tag, nodes);
1498 if (node == NULL || node->decl == NULL_TREE)
d7f09764 1499 internal_error ("bytecode stream: found empty cgraph node");
9771b263 1500 nodes.safe_push (node);
7380e6ef 1501 lto_symtab_encoder_encode (file_data->symtab_node_encoder, node);
d7f09764
DN
1502 }
1503
7380e6ef 1504 tag = streamer_read_enum (ib, LTO_symtab_tags, LTO_symtab_last_tag);
d7f09764
DN
1505 }
1506
398f05da 1507 lto_input_toplevel_asms (file_data, order_base);
a9cc4458 1508
7380e6ef 1509 /* AUX pointers should be all non-zero for function nodes read from the stream. */
b2b29377
MM
1510 if (flag_checking)
1511 {
1512 FOR_EACH_VEC_ELT (nodes, i, node)
1513 gcc_assert (node->aux || !is_a <cgraph_node *> (node));
1514 }
9771b263 1515 FOR_EACH_VEC_ELT (nodes, i, node)
d7f09764 1516 {
7380e6ef 1517 int ref;
7de90a6c 1518 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (node))
7380e6ef 1519 {
5d59b5e1 1520 ref = (int) (intptr_t) cnode->global.inlined_to;
7380e6ef
JH
1521
1522 /* We share declaration of builtins, so we may read same node twice. */
67348ccc 1523 if (!node->aux)
7380e6ef 1524 continue;
67348ccc 1525 node->aux = NULL;
7380e6ef
JH
1526
1527 /* Fixup inlined_to from reference to pointer. */
1528 if (ref != LCC_NOT_FOUND)
d52f5295
ML
1529 dyn_cast<cgraph_node *> (node)->global.inlined_to
1530 = dyn_cast<cgraph_node *> (nodes[ref]);
7380e6ef 1531 else
5d59b5e1 1532 cnode->global.inlined_to = NULL;
7380e6ef 1533 }
b66887e4 1534
67348ccc 1535 ref = (int) (intptr_t) node->same_comdat_group;
b66887e4
JJ
1536
1537 /* Fixup same_comdat_group from reference to pointer. */
1538 if (ref != LCC_NOT_FOUND)
67348ccc 1539 node->same_comdat_group = nodes[ref];
b66887e4 1540 else
67348ccc 1541 node->same_comdat_group = NULL;
d7f09764 1542 }
9771b263 1543 FOR_EACH_VEC_ELT (nodes, i, node)
7de90a6c 1544 node->aux = is_a <cgraph_node *> (node) ? (void *)1 : NULL;
2f41ecf5 1545 return nodes;
d7f09764
DN
1546}
1547
369451ec
JH
1548/* Input ipa_refs. */
1549
1550static void
1551input_refs (struct lto_input_block *ib,
5e20cdc9 1552 vec<symtab_node *> nodes)
369451ec
JH
1553{
1554 int count;
1555 int idx;
1556 while (true)
1557 {
5e20cdc9 1558 symtab_node *node;
412288f1 1559 count = streamer_read_uhwi (ib);
369451ec
JH
1560 if (!count)
1561 break;
412288f1 1562 idx = streamer_read_uhwi (ib);
9771b263 1563 node = nodes[idx];
369451ec
JH
1564 while (count)
1565 {
f27c1867 1566 input_ref (ib, node, nodes);
369451ec
JH
1567 count--;
1568 }
1569 }
1570}
1571
0bc1b77f
JH
1572/* Input profile_info from IB. */
1573static void
db0bf14f
JH
1574input_profile_summary (struct lto_input_block *ib,
1575 struct lto_file_decl_data *file_data)
0bc1b77f 1576{
412288f1 1577 unsigned int runs = streamer_read_uhwi (ib);
0bc1b77f
JH
1578 if (runs)
1579 {
db0bf14f 1580 file_data->profile_info.runs = runs;
512cc015 1581
0208f7da
JH
1582 /* IPA-profile computes hot bb threshold based on cumulated
1583 whole program profile. We need to stream it down to ltrans. */
1584 if (flag_ltrans)
1585 set_hot_bb_threshold (streamer_read_gcov_count (ib));
0bc1b77f
JH
1586 }
1587
1588}
d7f09764 1589
db0bf14f
JH
1590/* Rescale profile summaries to the same number of runs in the whole unit. */
1591
1592static void
1593merge_profile_summaries (struct lto_file_decl_data **file_data_vec)
1594{
1595 struct lto_file_decl_data *file_data;
512cc015 1596 unsigned int j;
db0bf14f
JH
1597 gcov_unsigned_t max_runs = 0;
1598 struct cgraph_node *node;
1599 struct cgraph_edge *edge;
1600
1601 /* Find unit with maximal number of runs. If we ever get serious about
1602 roundoff errors, we might also consider computing smallest common
1603 multiply. */
1604 for (j = 0; (file_data = file_data_vec[j]) != NULL; j++)
1605 if (max_runs < file_data->profile_info.runs)
1606 max_runs = file_data->profile_info.runs;
1607
1608 if (!max_runs)
1609 return;
1610
1611 /* Simple overflow check. We probably don't need to support that many train
1612 runs. Such a large value probably imply data corruption anyway. */
1613 if (max_runs > INT_MAX / REG_BR_PROB_BASE)
1614 {
1615 sorry ("At most %i profile runs is supported. Perhaps corrupted profile?",
1616 INT_MAX / REG_BR_PROB_BASE);
1617 return;
1618 }
1619
512cc015
ML
1620 profile_info = XCNEW (gcov_summary);
1621 profile_info->runs = max_runs;
db0bf14f
JH
1622
1623 /* If merging already happent at WPA time, we are done. */
1624 if (flag_ltrans)
1625 return;
1626
1627 /* Now compute count_materialization_scale of each node.
1628 During LTRANS we already have values of count_materialization_scale
1629 computed, so just update them. */
65c70e6b 1630 FOR_EACH_FUNCTION (node)
67348ccc
DM
1631 if (node->lto_file_data
1632 && node->lto_file_data->profile_info.runs)
db0bf14f
JH
1633 {
1634 int scale;
40e584a1 1635
2730ada7 1636 scale = RDIV (node->count_materialization_scale * max_runs,
67348ccc 1637 node->lto_file_data->profile_info.runs);
db0bf14f
JH
1638 node->count_materialization_scale = scale;
1639 if (scale < 0)
40fecdd6 1640 fatal_error (input_location, "Profile information in %s corrupted",
db0bf14f
JH
1641 file_data->file_name);
1642
1643 if (scale == REG_BR_PROB_BASE)
1644 continue;
1645 for (edge = node->callees; edge; edge = edge->next_callee)
1bad9c18
JH
1646 if (edge->count.ipa ().nonzero_p ())
1647 edge->count = edge->count.apply_scale (scale, REG_BR_PROB_BASE);
1648 for (edge = node->indirect_calls; edge; edge = edge->next_callee)
1649 if (edge->count.ipa ().nonzero_p ())
1650 edge->count = edge->count.apply_scale (scale, REG_BR_PROB_BASE);
1651 if (node->count.ipa ().nonzero_p ())
1652 node->count = node->count.apply_scale (scale, REG_BR_PROB_BASE);
db0bf14f
JH
1653 }
1654}
1655
ab96cc5b 1656/* Input and merge the symtab from each of the .o files passed to
d7f09764
DN
1657 lto1. */
1658
1659void
ab96cc5b 1660input_symtab (void)
d7f09764
DN
1661{
1662 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
1663 struct lto_file_decl_data *file_data;
1664 unsigned int j = 0;
1665 struct cgraph_node *node;
1666
1667 while ((file_data = file_data_vec[j++]))
1668 {
1669 const char *data;
1670 size_t len;
1671 struct lto_input_block *ib;
5e20cdc9 1672 vec<symtab_node *> nodes;
d7f09764 1673
ab96cc5b 1674 ib = lto_create_simple_input_block (file_data, LTO_section_symtab_nodes,
d7f09764 1675 &data, &len);
f1e92a43 1676 if (!ib)
40fecdd6
JM
1677 fatal_error (input_location,
1678 "cannot find LTO cgraph in %s", file_data->file_name);
db0bf14f 1679 input_profile_summary (ib, file_data);
e75f8f79 1680 file_data->symtab_node_encoder = lto_symtab_encoder_new (true);
2f41ecf5 1681 nodes = input_cgraph_1 (file_data, ib);
ab96cc5b 1682 lto_destroy_simple_input_block (file_data, LTO_section_symtab_nodes,
d7f09764 1683 ib, data, len);
b8698a0f 1684
369451ec
JH
1685 ib = lto_create_simple_input_block (file_data, LTO_section_refs,
1686 &data, &len);
f1e92a43 1687 if (!ib)
40fecdd6 1688 fatal_error (input_location, "cannot find LTO section refs in %s",
c3284718 1689 file_data->file_name);
7380e6ef 1690 input_refs (ib, nodes);
369451ec
JH
1691 lto_destroy_simple_input_block (file_data, LTO_section_refs,
1692 ib, data, len);
922f15c2
JH
1693 if (flag_ltrans)
1694 input_cgraph_opt_summary (nodes);
9771b263 1695 nodes.release ();
b8698a0f 1696 }
beb628e1 1697
db0bf14f 1698 merge_profile_summaries (file_data_vec);
10c9ea62 1699
d7f09764
DN
1700 /* Clear out the aux field that was used to store enough state to
1701 tell which nodes should be overwritten. */
65c70e6b 1702 FOR_EACH_FUNCTION (node)
d7f09764
DN
1703 {
1704 /* Some nodes may have been created by cgraph_node. This
1705 happens when the callgraph contains nested functions. If the
1706 node for the parent function was never emitted to the gimple
1707 file, cgraph_node will create a node for it when setting the
1708 context of the nested function. */
67348ccc
DM
1709 if (node->lto_file_data)
1710 node->aux = NULL;
d7f09764
DN
1711 }
1712}
922f15c2 1713
ec6fe917
IV
1714/* Input function/variable tables that will allow libgomp to look up offload
1715 target code, and store them into OFFLOAD_FUNCS and OFFLOAD_VARS. */
1716
1717void
ed5d948d 1718input_offload_tables (bool do_force_output)
ec6fe917
IV
1719{
1720 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
1721 struct lto_file_decl_data *file_data;
1722 unsigned int j = 0;
1723
1724 while ((file_data = file_data_vec[j++]))
1725 {
1726 const char *data;
1727 size_t len;
1728 struct lto_input_block *ib
1729 = lto_create_simple_input_block (file_data, LTO_section_offload_table,
1730 &data, &len);
1731 if (!ib)
1732 continue;
1733
1734 enum LTO_symtab_tags tag
1735 = streamer_read_enum (ib, LTO_symtab_tags, LTO_symtab_last_tag);
1736 while (tag)
1737 {
1738 if (tag == LTO_symtab_unavail_node)
1739 {
1740 int decl_index = streamer_read_uhwi (ib);
1741 tree fn_decl
1742 = lto_file_decl_data_get_fn_decl (file_data, decl_index);
1743 vec_safe_push (offload_funcs, fn_decl);
e6d6ec9e
TV
1744
1745 /* Prevent IPA from removing fn_decl as unreachable, since there
1746 may be no refs from the parent function to child_fn in offload
1747 LTO mode. */
ed5d948d
TV
1748 if (do_force_output)
1749 cgraph_node::get (fn_decl)->mark_force_output ();
ec6fe917
IV
1750 }
1751 else if (tag == LTO_symtab_variable)
1752 {
1753 int decl_index = streamer_read_uhwi (ib);
1754 tree var_decl
1755 = lto_file_decl_data_get_var_decl (file_data, decl_index);
1756 vec_safe_push (offload_vars, var_decl);
e6d6ec9e
TV
1757
1758 /* Prevent IPA from removing var_decl as unused, since there
1759 may be no refs to var_decl in offload LTO mode. */
ed5d948d
TV
1760 if (do_force_output)
1761 varpool_node::get (var_decl)->force_output = 1;
ec6fe917
IV
1762 }
1763 else
40fecdd6
JM
1764 fatal_error (input_location,
1765 "invalid offload table in %s", file_data->file_name);
ec6fe917
IV
1766
1767 tag = streamer_read_enum (ib, LTO_symtab_tags, LTO_symtab_last_tag);
1768 }
1769
1770 lto_destroy_simple_input_block (file_data, LTO_section_offload_table,
1771 ib, data, len);
1772 }
1773}
1774
922f15c2
JH
1775/* True when we need optimization summary for NODE. */
1776
1777static int
f27c1867 1778output_cgraph_opt_summary_p (struct cgraph_node *node)
922f15c2 1779{
a50e9b2f 1780 return ((node->clone_of || node->former_clone_of)
644e637f
MJ
1781 && (node->clone.tree_map
1782 || node->clone.args_to_skip
1783 || node->clone.combined_args_to_skip));
922f15c2
JH
1784}
1785
ce47fda3
MJ
1786/* Output optimization summary for EDGE to OB. */
1787static void
81fa35bd
MJ
1788output_edge_opt_summary (struct output_block *ob ATTRIBUTE_UNUSED,
1789 struct cgraph_edge *edge ATTRIBUTE_UNUSED)
ce47fda3 1790{
ce47fda3
MJ
1791}
1792
922f15c2
JH
1793/* Output optimization summary for NODE to OB. */
1794
1795static void
1796output_node_opt_summary (struct output_block *ob,
644e637f 1797 struct cgraph_node *node,
f27c1867 1798 lto_symtab_encoder_t encoder)
922f15c2
JH
1799{
1800 unsigned int index;
1801 bitmap_iterator bi;
1802 struct ipa_replace_map *map;
2465dcc2 1803 struct bitpack_d bp;
922f15c2 1804 int i;
ce47fda3 1805 struct cgraph_edge *e;
922f15c2 1806
26740835
JH
1807 if (node->clone.args_to_skip)
1808 {
412288f1 1809 streamer_write_uhwi (ob, bitmap_count_bits (node->clone.args_to_skip));
26740835 1810 EXECUTE_IF_SET_IN_BITMAP (node->clone.args_to_skip, 0, index, bi)
412288f1 1811 streamer_write_uhwi (ob, index);
26740835
JH
1812 }
1813 else
412288f1 1814 streamer_write_uhwi (ob, 0);
26740835
JH
1815 if (node->clone.combined_args_to_skip)
1816 {
412288f1 1817 streamer_write_uhwi (ob, bitmap_count_bits (node->clone.combined_args_to_skip));
26740835 1818 EXECUTE_IF_SET_IN_BITMAP (node->clone.combined_args_to_skip, 0, index, bi)
412288f1 1819 streamer_write_uhwi (ob, index);
26740835
JH
1820 }
1821 else
412288f1 1822 streamer_write_uhwi (ob, 0);
9771b263
DN
1823 streamer_write_uhwi (ob, vec_safe_length (node->clone.tree_map));
1824 FOR_EACH_VEC_SAFE_ELT (node->clone.tree_map, i, map)
922f15c2 1825 {
922f15c2
JH
1826 /* At the moment we assume all old trees to be PARM_DECLs, because we have no
1827 mechanism to store function local declarations into summaries. */
49bde175
JH
1828 gcc_assert (!map->old_tree);
1829 streamer_write_uhwi (ob, map->parm_num);
2f13f2de 1830 gcc_assert (EXPR_LOCATION (map->new_tree) == UNKNOWN_LOCATION);
b9393656 1831 stream_write_tree (ob, map->new_tree, true);
2465dcc2
RG
1832 bp = bitpack_create (ob->main_stream);
1833 bp_pack_value (&bp, map->replace_p, 1);
1834 bp_pack_value (&bp, map->ref_p, 1);
412288f1 1835 streamer_write_bitpack (&bp);
922f15c2 1836 }
644e637f 1837
67348ccc 1838 if (lto_symtab_encoder_in_partition_p (encoder, node))
644e637f
MJ
1839 {
1840 for (e = node->callees; e; e = e->next_callee)
1841 output_edge_opt_summary (ob, e);
1842 for (e = node->indirect_calls; e; e = e->next_callee)
1843 output_edge_opt_summary (ob, e);
1844 }
922f15c2
JH
1845}
1846
1847/* Output optimization summaries stored in callgraph.
1848 At the moment it is the clone info structure. */
1849
1850static void
f27c1867 1851output_cgraph_opt_summary (void)
922f15c2 1852{
922f15c2 1853 int i, n_nodes;
7380e6ef 1854 lto_symtab_encoder_t encoder;
922f15c2
JH
1855 struct output_block *ob = create_output_block (LTO_section_cgraph_opt_sum);
1856 unsigned count = 0;
1857
0b83e688 1858 ob->symbol = NULL;
7380e6ef
JH
1859 encoder = ob->decl_state->symtab_node_encoder;
1860 n_nodes = lto_symtab_encoder_size (encoder);
922f15c2 1861 for (i = 0; i < n_nodes; i++)
5d59b5e1 1862 {
5e20cdc9 1863 symtab_node *node = lto_symtab_encoder_deref (encoder, i);
7de90a6c 1864 cgraph_node *cnode = dyn_cast <cgraph_node *> (node);
5d59b5e1
LC
1865 if (cnode && output_cgraph_opt_summary_p (cnode))
1866 count++;
1867 }
412288f1 1868 streamer_write_uhwi (ob, count);
922f15c2
JH
1869 for (i = 0; i < n_nodes; i++)
1870 {
5e20cdc9 1871 symtab_node *node = lto_symtab_encoder_deref (encoder, i);
7de90a6c 1872 cgraph_node *cnode = dyn_cast <cgraph_node *> (node);
5d59b5e1 1873 if (cnode && output_cgraph_opt_summary_p (cnode))
922f15c2 1874 {
412288f1 1875 streamer_write_uhwi (ob, i);
5d59b5e1 1876 output_node_opt_summary (ob, cnode, encoder);
922f15c2
JH
1877 }
1878 }
1879 produce_asm (ob, NULL);
1880 destroy_output_block (ob);
1881}
1882
ce47fda3
MJ
1883/* Input optimisation summary of EDGE. */
1884
1885static void
81fa35bd
MJ
1886input_edge_opt_summary (struct cgraph_edge *edge ATTRIBUTE_UNUSED,
1887 struct lto_input_block *ib_main ATTRIBUTE_UNUSED)
ce47fda3 1888{
ce47fda3
MJ
1889}
1890
1891/* Input optimisation summary of NODE. */
922f15c2
JH
1892
1893static void
1894input_node_opt_summary (struct cgraph_node *node,
1895 struct lto_input_block *ib_main,
1896 struct data_in *data_in)
1897{
1898 int i;
1899 int count;
1900 int bit;
2465dcc2 1901 struct bitpack_d bp;
ce47fda3 1902 struct cgraph_edge *e;
922f15c2 1903
412288f1 1904 count = streamer_read_uhwi (ib_main);
922f15c2
JH
1905 if (count)
1906 node->clone.args_to_skip = BITMAP_GGC_ALLOC ();
1907 for (i = 0; i < count; i++)
1908 {
412288f1 1909 bit = streamer_read_uhwi (ib_main);
922f15c2
JH
1910 bitmap_set_bit (node->clone.args_to_skip, bit);
1911 }
412288f1 1912 count = streamer_read_uhwi (ib_main);
922f15c2
JH
1913 if (count)
1914 node->clone.combined_args_to_skip = BITMAP_GGC_ALLOC ();
1915 for (i = 0; i < count; i++)
1916 {
412288f1 1917 bit = streamer_read_uhwi (ib_main);
922f15c2
JH
1918 bitmap_set_bit (node->clone.combined_args_to_skip, bit);
1919 }
412288f1 1920 count = streamer_read_uhwi (ib_main);
922f15c2
JH
1921 for (i = 0; i < count; i++)
1922 {
766090c2 1923 struct ipa_replace_map *map = ggc_alloc<ipa_replace_map> ();
922f15c2 1924
9771b263 1925 vec_safe_push (node->clone.tree_map, map);
412288f1 1926 map->parm_num = streamer_read_uhwi (ib_main);
922f15c2 1927 map->old_tree = NULL;
b9393656 1928 map->new_tree = stream_read_tree (ib_main, data_in);
412288f1 1929 bp = streamer_read_bitpack (ib_main);
2465dcc2
RG
1930 map->replace_p = bp_unpack_value (&bp, 1);
1931 map->ref_p = bp_unpack_value (&bp, 1);
922f15c2 1932 }
ce47fda3
MJ
1933 for (e = node->callees; e; e = e->next_callee)
1934 input_edge_opt_summary (e, ib_main);
1935 for (e = node->indirect_calls; e; e = e->next_callee)
1936 input_edge_opt_summary (e, ib_main);
922f15c2
JH
1937}
1938
1939/* Read section in file FILE_DATA of length LEN with data DATA. */
1940
1941static void
1942input_cgraph_opt_section (struct lto_file_decl_data *file_data,
9771b263 1943 const char *data, size_t len,
5e20cdc9 1944 vec<symtab_node *> nodes)
922f15c2
JH
1945{
1946 const struct lto_function_header *header =
1947 (const struct lto_function_header *) data;
4ad9a9de
EB
1948 const int cfg_offset = sizeof (struct lto_function_header);
1949 const int main_offset = cfg_offset + header->cfg_size;
1950 const int string_offset = main_offset + header->main_size;
922f15c2 1951 struct data_in *data_in;
922f15c2
JH
1952 unsigned int i;
1953 unsigned int count;
1954
207c68cd 1955 lto_input_block ib_main ((const char *) data + main_offset,
db847fa8 1956 header->main_size, file_data->mode_table);
922f15c2
JH
1957
1958 data_in =
1959 lto_data_in_create (file_data, (const char *) data + string_offset,
6e1aa848 1960 header->string_size, vNULL);
412288f1 1961 count = streamer_read_uhwi (&ib_main);
922f15c2
JH
1962
1963 for (i = 0; i < count; i++)
1964 {
412288f1 1965 int ref = streamer_read_uhwi (&ib_main);
d52f5295 1966 input_node_opt_summary (dyn_cast<cgraph_node *> (nodes[ref]),
922f15c2
JH
1967 &ib_main, data_in);
1968 }
839d549b 1969 lto_free_section_data (file_data, LTO_section_cgraph_opt_sum, NULL, data,
922f15c2
JH
1970 len);
1971 lto_data_in_delete (data_in);
1972}
1973
1974/* Input optimization summary of cgraph. */
1975
1976static void
5e20cdc9 1977input_cgraph_opt_summary (vec<symtab_node *> nodes)
922f15c2
JH
1978{
1979 struct lto_file_decl_data **file_data_vec = lto_get_file_decl_data ();
1980 struct lto_file_decl_data *file_data;
1981 unsigned int j = 0;
1982
1983 while ((file_data = file_data_vec[j++]))
1984 {
1985 size_t len;
1986 const char *data =
1987 lto_get_section_data (file_data, LTO_section_cgraph_opt_sum, NULL,
1988 &len);
1989
1990 if (data)
1991 input_cgraph_opt_section (file_data, data, len, nodes);
1992 }
1993}