Branch data Line data Source code
1 : : /* Write the GIMPLE representation to a file stream.
2 : :
3 : : Copyright (C) 2009-2025 Free Software Foundation, Inc.
4 : : Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5 : : Re-implemented by Diego Novillo <dnovillo@google.com>
6 : :
7 : : This file is part of GCC.
8 : :
9 : : GCC is free software; you can redistribute it and/or modify it under
10 : : the terms of the GNU General Public License as published by the Free
11 : : Software Foundation; either version 3, or (at your option) any later
12 : : version.
13 : :
14 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 : : for more details.
18 : :
19 : : You should have received a copy of the GNU General Public License
20 : : along 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"
26 : : #include "backend.h"
27 : : #include "target.h"
28 : : #include "rtl.h"
29 : : #include "tree.h"
30 : : #include "gimple.h"
31 : : #include "tree-pass.h"
32 : : #include "ssa.h"
33 : : #include "gimple-streamer.h"
34 : : #include "alias.h"
35 : : #include "stor-layout.h"
36 : : #include "gimple-iterator.h"
37 : : #include "except.h"
38 : : #include "lto-symtab.h"
39 : : #include "cgraph.h"
40 : : #include "cfgloop.h"
41 : : #include "builtins.h"
42 : : #include "gomp-constants.h"
43 : : #include "debug.h"
44 : : #include "omp-offload.h"
45 : : #include "print-tree.h"
46 : : #include "tree-dfa.h"
47 : : #include "file-prefix-map.h" /* remap_debug_filename() */
48 : : #include "output.h"
49 : : #include "ipa-utils.h"
50 : : #include "toplev.h"
51 : :
52 : :
53 : : static void lto_write_tree (struct output_block*, tree, bool);
54 : :
55 : : /* Clear the line info stored in DATA_IN. */
56 : :
57 : : static void
58 : 320022 : clear_line_info (struct output_block *ob)
59 : : {
60 : 320022 : ob->current_file = NULL;
61 : 320022 : ob->current_line = 0;
62 : 320022 : ob->current_col = 0;
63 : 320022 : ob->current_sysp = false;
64 : 320022 : ob->reset_locus = true;
65 : 320022 : ob->emit_pwd = true;
66 : : /* Initialize to something that will never appear as block,
67 : : so that the first location with block in a function etc.
68 : : always streams a change_block bit and the first block. */
69 : 320022 : ob->current_block = void_node;
70 : 320022 : ob->current_discr = UINT_MAX;
71 : 0 : }
72 : :
73 : :
74 : : /* Create the output block and return it. SECTION_TYPE is
75 : : LTO_section_function_body or LTO_static_initializer. */
76 : :
77 : : struct output_block *
78 : 320022 : create_output_block (enum lto_section_type section_type)
79 : : {
80 : 320022 : struct output_block *ob = XCNEW (struct output_block);
81 : 320022 : if (streamer_dump_file)
82 : 40 : fprintf (streamer_dump_file, "Creating output block for %s\n",
83 : 40 : lto_section_name[section_type]);
84 : :
85 : 320022 : ob->section_type = section_type;
86 : 320022 : ob->decl_state = lto_get_out_decl_state ();
87 : : /* Only global decl stream in non-wpa will ever be considered by tree
88 : : merging. */
89 : 320022 : if (!flag_wpa && section_type == LTO_section_decls)
90 : 23852 : ob->local_trees = new (hash_set <tree>);
91 : 320022 : ob->main_stream = XCNEW (struct lto_output_stream);
92 : 320022 : ob->string_stream = XCNEW (struct lto_output_stream);
93 : 320022 : ob->writer_cache = streamer_tree_cache_create (!flag_wpa, true, false);
94 : :
95 : 320022 : if (section_type == LTO_section_function_body)
96 : 117477 : ob->cfg_stream = XCNEW (struct lto_output_stream);
97 : :
98 : 320022 : clear_line_info (ob);
99 : :
100 : 320022 : ob->string_hash_table = new hash_table<string_slot_hasher> (37);
101 : 320022 : gcc_obstack_init (&ob->obstack);
102 : :
103 : 320022 : return ob;
104 : : }
105 : :
106 : :
107 : : /* Destroy the output block OB. */
108 : :
109 : : void
110 : 320022 : destroy_output_block (struct output_block *ob)
111 : : {
112 : 320022 : enum lto_section_type section_type = ob->section_type;
113 : :
114 : 320022 : delete ob->string_hash_table;
115 : 320022 : ob->string_hash_table = NULL;
116 : 343874 : delete ob->local_trees;
117 : :
118 : 320022 : free (ob->main_stream);
119 : 320022 : free (ob->string_stream);
120 : 320022 : if (section_type == LTO_section_function_body)
121 : 117477 : free (ob->cfg_stream);
122 : :
123 : 320022 : streamer_tree_cache_delete (ob->writer_cache);
124 : 320022 : obstack_free (&ob->obstack, NULL);
125 : :
126 : 320022 : free (ob);
127 : 320022 : }
128 : :
129 : :
130 : : /* Wrapper around variably_modified_type_p avoiding type modification
131 : : during WPA streaming. */
132 : :
133 : : bool
134 : 14102554 : lto_variably_modified_type_p (tree type)
135 : : {
136 : 14102554 : return (in_lto_p
137 : 14102554 : ? TYPE_LANG_FLAG_0 (TYPE_MAIN_VARIANT (type))
138 : 13813783 : : variably_modified_type_p (type, NULL_TREE));
139 : : }
140 : :
141 : :
142 : : /* Return true if tree node T is written to various tables. For these
143 : : nodes, we sometimes want to write their phyiscal representation
144 : : (via lto_output_tree), and sometimes we need to emit an index
145 : : reference into a table (via lto_output_tree_ref). */
146 : :
147 : : static bool
148 : 35231000 : tree_is_indexable (tree t)
149 : : {
150 : : /* Parameters and return values of functions of variably modified types
151 : : must go to global stream, because they may be used in the type
152 : : definition. */
153 : 34142105 : if ((TREE_CODE (t) == PARM_DECL || TREE_CODE (t) == RESULT_DECL)
154 : 35557046 : && DECL_CONTEXT (t))
155 : 1414941 : return lto_variably_modified_type_p (TREE_TYPE (DECL_CONTEXT (t)));
156 : : /* IMPORTED_DECL is put into BLOCK and thus it never can be shared.
157 : : We should no longer need to stream it. */
158 : 33816059 : else if (TREE_CODE (t) == IMPORTED_DECL)
159 : 0 : gcc_unreachable ();
160 : 33816059 : else if (TREE_CODE (t) == LABEL_DECL)
161 : 81742 : return FORCED_LABEL (t) || DECL_NONLOCAL (t);
162 : 1629128 : else if (((VAR_P (t) && !TREE_STATIC (t))
163 : : || TREE_CODE (t) == TYPE_DECL
164 : : || TREE_CODE (t) == CONST_DECL
165 : : || TREE_CODE (t) == NAMELIST_DECL)
166 : 34590018 : && decl_function_context (t))
167 : : return false;
168 : 32888231 : else if (TREE_CODE (t) == DEBUG_EXPR_DECL)
169 : : return false;
170 : : /* Variably modified types need to be streamed alongside function
171 : : bodies because they can refer to local entities. Together with
172 : : them we have to localize their members as well.
173 : : ??? In theory that includes non-FIELD_DECLs as well. */
174 : 32886343 : else if (TYPE_P (t)
175 : 32886343 : && lto_variably_modified_type_p (t))
176 : : return false;
177 : 32875099 : else if (TREE_CODE (t) == FIELD_DECL
178 : 32875099 : && lto_variably_modified_type_p (DECL_CONTEXT (t)))
179 : : return false;
180 : : else
181 : 53323693 : return (IS_TYPE_OR_DECL_P (t) || TREE_CODE (t) == SSA_NAME);
182 : : }
183 : :
184 : :
185 : : /* Output info about new location into bitpack BP.
186 : : After outputting bitpack, lto_output_location_data has
187 : : to be done to output actual data. */
188 : :
189 : : static void
190 : 6702898 : lto_output_location_1 (struct output_block *ob, struct bitpack_d *bp,
191 : : location_t orig_loc, bool block_p)
192 : : {
193 : 6702898 : location_t loc = LOCATION_LOCUS (orig_loc);
194 : :
195 : 6702898 : if (loc >= RESERVED_LOCATION_COUNT)
196 : : {
197 : 4317845 : expanded_location xloc = expand_location (loc);
198 : 4317845 : unsigned discr = get_discriminator_from_loc (orig_loc);
199 : :
200 : 4317845 : if (ob->reset_locus)
201 : : {
202 : 139635 : if (xloc.file == NULL)
203 : 0 : ob->current_file = "";
204 : 139635 : if (xloc.line == 0)
205 : 0 : ob->current_line = 1;
206 : 139635 : if (xloc.column == 0)
207 : 4 : ob->current_col = 1;
208 : 139635 : ob->reset_locus = false;
209 : : }
210 : :
211 : : /* As RESERVED_LOCATION_COUNT is 2, we can use the spare value of
212 : : 3 without wasting additional bits to signalize file change.
213 : : If RESERVED_LOCATION_COUNT changes, reconsider this. */
214 : 4317845 : gcc_checking_assert (RESERVED_LOCATION_COUNT == 2);
215 : 4317845 : bp_pack_int_in_range (bp, 0, RESERVED_LOCATION_COUNT + 1,
216 : : RESERVED_LOCATION_COUNT
217 : 4317845 : + (ob->current_file != xloc.file));
218 : :
219 : 4317845 : bp_pack_value (bp, ob->current_line != xloc.line, 1);
220 : 4317845 : bp_pack_value (bp, ob->current_col != xloc.column, 1);
221 : 4317845 : bp_pack_value (bp, ob->current_discr != discr, 1);
222 : :
223 : 4317845 : if (ob->current_file != xloc.file)
224 : : {
225 : 214158 : bool stream_pwd = false;
226 : 214158 : const char *remapped = remap_debug_filename (xloc.file);
227 : 214158 : if (ob->emit_pwd && remapped && !IS_ABSOLUTE_PATH (remapped))
228 : : {
229 : 9665 : stream_pwd = true;
230 : 9665 : ob->emit_pwd = false;
231 : : }
232 : 214158 : bp_pack_value (bp, stream_pwd, 1);
233 : 214158 : if (stream_pwd)
234 : 9665 : bp_pack_string (ob, bp, get_src_pwd (), true);
235 : 214158 : bp_pack_string (ob, bp, remapped, true);
236 : 214158 : bp_pack_value (bp, xloc.sysp, 1);
237 : : }
238 : 4317845 : ob->current_file = xloc.file;
239 : 4317845 : ob->current_sysp = xloc.sysp;
240 : :
241 : 4317845 : if (ob->current_line != xloc.line)
242 : 1385444 : bp_pack_var_len_unsigned (bp, xloc.line);
243 : 4317845 : ob->current_line = xloc.line;
244 : :
245 : 4317845 : if (ob->current_col != xloc.column)
246 : 1664397 : bp_pack_var_len_unsigned (bp, xloc.column);
247 : 4317845 : ob->current_col = xloc.column;
248 : :
249 : 4317845 : if (ob->current_discr != discr)
250 : 1112071 : bp_pack_var_len_unsigned (bp, discr);
251 : 4317845 : ob->current_discr = discr;
252 : : }
253 : : else
254 : 2385053 : bp_pack_int_in_range (bp, 0, RESERVED_LOCATION_COUNT + 1, loc);
255 : :
256 : 6702898 : if (block_p)
257 : : {
258 : 2921229 : tree block = LOCATION_BLOCK (orig_loc);
259 : 2921229 : bp_pack_value (bp, ob->current_block != block, 1);
260 : 2921229 : streamer_write_bitpack (bp);
261 : 2921229 : if (ob->current_block != block)
262 : 695006 : lto_output_tree (ob, block, true, true);
263 : 2921229 : ob->current_block = block;
264 : : }
265 : 6702898 : }
266 : :
267 : : /* Output info about new location into bitpack BP.
268 : : After outputting bitpack, lto_output_location_data has
269 : : to be done to output actual data. */
270 : :
271 : : void
272 : 3781669 : lto_output_location (struct output_block *ob, struct bitpack_d *bp,
273 : : location_t loc)
274 : : {
275 : 3781669 : lto_output_location_1 (ob, bp, loc, false);
276 : 3781669 : }
277 : :
278 : : /* Output info about new location into bitpack BP.
279 : : After outputting bitpack, lto_output_location_data has
280 : : to be done to output actual data. Like lto_output_location, but
281 : : additionally output LOCATION_BLOCK info too and write the BP bitpack. */
282 : :
283 : : void
284 : 2921229 : lto_output_location_and_block (struct output_block *ob, struct bitpack_d *bp,
285 : : location_t loc)
286 : : {
287 : 2921229 : lto_output_location_1 (ob, bp, loc, true);
288 : 2921229 : }
289 : :
290 : :
291 : : /* Lookup NAME in ENCODER. If NAME is not found, create a new entry in
292 : : ENCODER for NAME with the next available index of ENCODER, then
293 : : print the index to OBS.
294 : : Return the index. */
295 : :
296 : :
297 : : static unsigned
298 : 7870070 : lto_get_index (struct lto_tree_ref_encoder *encoder, tree t)
299 : : {
300 : 7870070 : bool existed_p;
301 : :
302 : 7870070 : unsigned int &index
303 : 7870070 : = encoder->tree_hash_table->get_or_insert (t, &existed_p);
304 : 7870070 : if (!existed_p)
305 : : {
306 : 2153765 : index = encoder->trees.length ();
307 : 2153765 : if (streamer_dump_file)
308 : : {
309 : 176 : print_node_brief (streamer_dump_file, " Encoding indexable ",
310 : : t, 4);
311 : 176 : fprintf (streamer_dump_file, " as %i \n", index);
312 : : }
313 : 2153765 : encoder->trees.safe_push (t);
314 : : }
315 : :
316 : 7870070 : return index;
317 : : }
318 : :
319 : :
320 : : /* If EXPR is an indexable tree node, output a reference to it to
321 : : output block OB. Otherwise, output the physical representation of
322 : : EXPR to OB. */
323 : :
324 : : static void
325 : 9324640 : lto_indexable_tree_ref (struct output_block *ob, tree expr,
326 : : enum LTO_tags *tag, unsigned *index)
327 : : {
328 : 9324640 : gcc_checking_assert (tree_is_indexable (expr));
329 : :
330 : 9324640 : if (TREE_CODE (expr) == SSA_NAME)
331 : : {
332 : 2164968 : *tag = LTO_ssa_name_ref;
333 : 2164968 : *index = SSA_NAME_VERSION (expr);
334 : : }
335 : : else
336 : : {
337 : 7159672 : *tag = LTO_global_stream_ref;
338 : 7159672 : *index = lto_get_index (&ob->decl_state->streams[LTO_DECL_STREAM], expr);
339 : : }
340 : 9324640 : }
341 : :
342 : :
343 : : /* Output a static or extern var DECL to OBS. */
344 : :
345 : : void
346 : 287462 : lto_output_var_decl_ref (struct lto_out_decl_state *decl_state,
347 : : struct lto_output_stream * obs, tree decl)
348 : : {
349 : 287462 : gcc_checking_assert (VAR_P (decl));
350 : 287462 : streamer_write_uhwi_stream
351 : 287462 : (obs, lto_get_index (&decl_state->streams[LTO_DECL_STREAM],
352 : : decl));
353 : 287462 : }
354 : :
355 : :
356 : : /* Output a static or extern var DECL to OBS. */
357 : :
358 : : void
359 : 422936 : lto_output_fn_decl_ref (struct lto_out_decl_state *decl_state,
360 : : struct lto_output_stream * obs, tree decl)
361 : : {
362 : 422936 : gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL);
363 : 422936 : streamer_write_uhwi_stream
364 : 422936 : (obs, lto_get_index (&decl_state->streams[LTO_DECL_STREAM], decl));
365 : 422936 : }
366 : :
367 : : /* Return true if EXPR is a tree node that can be written to disk. */
368 : :
369 : : static inline bool
370 : 6957554 : lto_is_streamable (tree expr)
371 : : {
372 : 6957554 : enum tree_code code = TREE_CODE (expr);
373 : :
374 : : /* Notice that we reject SSA_NAMEs as well. We only emit the SSA
375 : : name version in lto_output_tree_ref (see output_ssa_names). */
376 : 6957554 : return !is_lang_specific (expr)
377 : 6957554 : && code != SSA_NAME
378 : 6957554 : && code != LANG_TYPE
379 : : && code != MODIFY_EXPR
380 : 6957554 : && code != INIT_EXPR
381 : 6957554 : && code != TARGET_EXPR
382 : 6957554 : && code != BIND_EXPR
383 : 6957554 : && code != WITH_CLEANUP_EXPR
384 : 6957554 : && code != STATEMENT_LIST
385 : 6957554 : && (code == CASE_LABEL_EXPR
386 : 6957554 : || code == DECL_EXPR
387 : 6949861 : || TREE_CODE_CLASS (code) != tcc_statement);
388 : : }
389 : :
390 : : /* Very rough estimate of streaming size of the initializer. If we ignored
391 : : presence of strings, we could simply just count number of non-indexable
392 : : tree nodes and number of references to indexable nodes. Strings however
393 : : may be very large and we do not want to dump them int othe global stream.
394 : :
395 : : Count the size of initializer until the size in DATA is positive. */
396 : :
397 : : static tree
398 : 99477 : subtract_estimated_size (tree *tp, int *ws, void *data)
399 : : {
400 : 99477 : long *sum = (long *)data;
401 : 99477 : if (tree_is_indexable (*tp))
402 : : {
403 : : /* Indexable tree is one reference to global stream.
404 : : Guess it may be about 4 bytes. */
405 : 1512 : *sum -= 4;
406 : 1512 : *ws = 0;
407 : : }
408 : : /* String table entry + base of tree node needs to be streamed. */
409 : 99477 : if (TREE_CODE (*tp) == STRING_CST)
410 : 7515 : *sum -= TREE_STRING_LENGTH (*tp) + 8;
411 : : else
412 : : {
413 : : /* Identifiers are also variable length but should not appear
414 : : naked in constructor. */
415 : 91962 : gcc_checking_assert (TREE_CODE (*tp) != IDENTIFIER_NODE);
416 : : /* We do not really make attempt to work out size of pickled tree, as
417 : : it is very variable. Make it bigger than the reference. */
418 : 91962 : *sum -= 16;
419 : : }
420 : 99477 : if (*sum < 0)
421 : 32538 : return *tp;
422 : : return NULL_TREE;
423 : : }
424 : :
425 : :
426 : : /* For EXPR lookup and return what we want to stream to OB as DECL_INITIAL. */
427 : :
428 : : static tree
429 : 2396789 : get_symbol_initial_value (lto_symtab_encoder_t encoder, tree expr)
430 : : {
431 : 2396789 : gcc_checking_assert (DECL_P (expr)
432 : : && TREE_CODE (expr) != FUNCTION_DECL
433 : : && TREE_CODE (expr) != TRANSLATION_UNIT_DECL);
434 : :
435 : : /* Handle DECL_INITIAL for symbols. */
436 : 2396789 : tree initial = DECL_INITIAL (expr);
437 : 2396789 : if (VAR_P (expr)
438 : 1193349 : && (TREE_STATIC (expr) || DECL_EXTERNAL (expr))
439 : 855145 : && !DECL_IN_CONSTANT_POOL (expr)
440 : 3251820 : && initial)
441 : : {
442 : 84290 : varpool_node *vnode;
443 : : /* Extra section needs about 30 bytes; do not produce it for simple
444 : : scalar values. */
445 : 84290 : if (!(vnode = varpool_node::get (expr))
446 : 84290 : || !lto_symtab_encoder_encode_initializer_p (encoder, vnode))
447 : 3198 : initial = error_mark_node;
448 : 84290 : if (initial != error_mark_node)
449 : : {
450 : 67803 : long max_size = 30;
451 : 67803 : if (walk_tree (&initial, subtract_estimated_size, (void *)&max_size,
452 : : NULL))
453 : 32538 : initial = error_mark_node;
454 : : }
455 : : }
456 : :
457 : 2396789 : return initial;
458 : : }
459 : :
460 : :
461 : : /* Output reference to tree T to the stream.
462 : : Assume that T is already in encoder cache.
463 : : This is used to stream tree bodies where we know the DFS walk arranged
464 : : everything to cache. Must be matched with stream_read_tree_ref. */
465 : :
466 : : void
467 : 31455993 : stream_write_tree_ref (struct output_block *ob, tree t)
468 : : {
469 : 31455993 : if (!t)
470 : 11990065 : streamer_write_zero (ob);
471 : : else
472 : : {
473 : 19465928 : unsigned int ix;
474 : 19465928 : bool existed_p = streamer_tree_cache_lookup (ob->writer_cache, t, &ix);
475 : 19465928 : if (existed_p)
476 : 15075177 : streamer_write_hwi (ob, ix + 1);
477 : : else
478 : : {
479 : 4390751 : enum LTO_tags tag;
480 : 4390751 : unsigned ix;
481 : 4390751 : int id = 0;
482 : :
483 : 4390751 : lto_indexable_tree_ref (ob, t, &tag, &ix);
484 : 4390751 : if (tag == LTO_ssa_name_ref)
485 : : id = 1;
486 : : else
487 : 4191137 : gcc_checking_assert (tag == LTO_global_stream_ref);
488 : 4390751 : streamer_write_hwi (ob, -(int)(ix * 2 + id + 1));
489 : : }
490 : : }
491 : 31455993 : }
492 : :
493 : :
494 : :
495 : : /* Write a physical representation of tree node EXPR to output block
496 : : OB. If REF_P is true, the leaves of EXPR are emitted as references
497 : : via lto_output_tree_ref. IX is the index into the streamer cache
498 : : where EXPR is stored. */
499 : :
500 : : static void
501 : 6957554 : lto_write_tree_1 (struct output_block *ob, tree expr, bool ref_p)
502 : : {
503 : 6957554 : if (streamer_dump_file)
504 : : {
505 : 416 : print_node_brief (streamer_dump_file, " Streaming body of ",
506 : : expr, 4);
507 : 416 : fprintf (streamer_dump_file, " to %s\n",
508 : 416 : lto_section_name[ob->section_type]);
509 : : }
510 : :
511 : : /* Pack all the non-pointer fields in EXPR into a bitpack and write
512 : : the resulting bitpack. */
513 : 6957554 : streamer_write_tree_bitfields (ob, expr);
514 : :
515 : : /* Write all the pointer fields in EXPR. */
516 : 6957554 : streamer_write_tree_body (ob, expr);
517 : :
518 : : /* Write any LTO-specific data to OB. */
519 : 6957554 : if (DECL_P (expr)
520 : 1515029 : && TREE_CODE (expr) != FUNCTION_DECL
521 : 1087944 : && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
522 : : {
523 : : /* Handle DECL_INITIAL for symbols. */
524 : 1054679 : tree initial = get_symbol_initial_value
525 : 1054679 : (ob->decl_state->symtab_node_encoder, expr);
526 : 1054679 : stream_write_tree (ob, initial, ref_p);
527 : : }
528 : :
529 : : /* Stream references to early generated DIEs. Keep in sync with the
530 : : trees handled in dwarf2out_die_ref_for_decl. */
531 : 6957554 : if ((DECL_P (expr)
532 : : && TREE_CODE (expr) != FIELD_DECL
533 : : && TREE_CODE (expr) != DEBUG_EXPR_DECL
534 : : && TREE_CODE (expr) != TYPE_DECL)
535 : 5577443 : || TREE_CODE (expr) == BLOCK)
536 : : {
537 : 1719795 : const char *sym;
538 : 1719795 : unsigned HOST_WIDE_INT off;
539 : 1719795 : if (debug_info_level > DINFO_LEVEL_NONE
540 : 1719795 : && debug_hooks->die_ref_for_decl (expr, &sym, &off))
541 : : {
542 : 48009 : streamer_write_string (ob, ob->main_stream, sym, true);
543 : 48009 : streamer_write_uhwi (ob, off);
544 : : }
545 : : else
546 : 1671786 : streamer_write_string (ob, ob->main_stream, NULL, true);
547 : : }
548 : 6957554 : }
549 : :
550 : : /* Write a physical representation of tree node EXPR to output block
551 : : OB. If REF_P is true, the leaves of EXPR are emitted as references
552 : : via lto_output_tree_ref. IX is the index into the streamer cache
553 : : where EXPR is stored. */
554 : :
555 : : static void
556 : 6691720 : lto_write_tree (struct output_block *ob, tree expr, bool ref_p)
557 : : {
558 : 6691720 : if (!lto_is_streamable (expr))
559 : 0 : internal_error ("tree code %qs is not supported in LTO streams",
560 : 0 : get_tree_code_name (TREE_CODE (expr)));
561 : :
562 : : /* Write the header, containing everything needed to materialize
563 : : EXPR on the reading side. */
564 : 6691720 : streamer_write_tree_header (ob, expr);
565 : :
566 : 6691720 : lto_write_tree_1 (ob, expr, ref_p);
567 : 6691720 : }
568 : :
569 : : /* Emit the physical representation of tree node EXPR to output block OB,
570 : : If THIS_REF_P is true, the leaves of EXPR are emitted as references via
571 : : lto_output_tree_ref. REF_P is used for streaming siblings of EXPR. */
572 : :
573 : : static void
574 : 7728565 : lto_output_tree_1 (struct output_block *ob, tree expr, hashval_t hash,
575 : : bool ref_p, bool this_ref_p)
576 : : {
577 : 7728565 : unsigned ix;
578 : :
579 : 7728565 : gcc_checking_assert (expr != NULL_TREE
580 : : && !(this_ref_p && tree_is_indexable (expr)));
581 : :
582 : 7728565 : bool exists_p = streamer_tree_cache_insert (ob->writer_cache,
583 : : expr, hash, &ix);
584 : 7728565 : gcc_assert (!exists_p);
585 : 7728565 : if (TREE_CODE (expr) == INTEGER_CST
586 : 7728565 : && !TREE_OVERFLOW (expr))
587 : : {
588 : : /* Shared INTEGER_CST nodes are special because they need their
589 : : original type to be materialized by the reader (to implement
590 : : TYPE_CACHED_VALUES). */
591 : 1036845 : streamer_write_integer_cst (ob, expr);
592 : : }
593 : : else
594 : : {
595 : : /* This is the first time we see EXPR, write its fields
596 : : to OB. */
597 : 6691720 : lto_write_tree (ob, expr, ref_p);
598 : : }
599 : 7728565 : }
600 : :
601 : : class DFS
602 : : {
603 : : public:
604 : : DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p,
605 : : bool single_p);
606 : : ~DFS ();
607 : :
608 : : struct scc_entry
609 : : {
610 : : tree t;
611 : : hashval_t hash;
612 : : };
613 : : auto_vec<scc_entry,32> sccstack;
614 : :
615 : : private:
616 : : struct sccs
617 : : {
618 : : unsigned int dfsnum;
619 : : unsigned int low;
620 : : };
621 : : struct worklist
622 : : {
623 : : tree expr;
624 : : sccs *from_state;
625 : : sccs *cstate;
626 : : bool ref_p;
627 : : bool this_ref_p;
628 : : };
629 : : /* Maximum index of scc stack containing a local tree. */
630 : : int max_local_entry;
631 : :
632 : : static int scc_entry_compare (const void *, const void *);
633 : :
634 : : void DFS_write_tree_body (struct output_block *ob,
635 : : tree expr, sccs *expr_state, bool ref_p);
636 : :
637 : : void DFS_write_tree (struct output_block *ob, sccs *from_state,
638 : : tree expr, bool ref_p, bool this_ref_p);
639 : :
640 : : hashval_t
641 : : hash_scc (struct output_block *ob, unsigned first, unsigned size,
642 : : bool ref_p, bool this_ref_p);
643 : :
644 : : hash_map<tree, sccs *> sccstate;
645 : : auto_vec<worklist, 32> worklist_vec;
646 : : struct obstack sccstate_obstack;
647 : : };
648 : :
649 : : /* Return true if type can not be merged with structurally same tree in
650 : : other translation unit. During stream out this information is propagated
651 : : to all trees referring to T and they are not streamed with additional
652 : : information needed by the tree merging in lto-common.cc (in particular,
653 : : scc hash codes are not streamed).
654 : :
655 : : TRANSLATION_UNIT_DECL is handled specially since references to it does
656 : : not make other trees local as well. */
657 : :
658 : : static bool
659 : 2818667 : local_tree_p (tree t)
660 : : {
661 : 2818667 : switch (TREE_CODE (t))
662 : : {
663 : : case LABEL_DECL:
664 : : return true;
665 : 1575 : case NAMESPACE_DECL:
666 : 1575 : return !DECL_NAME (t);
667 : 614255 : case VAR_DECL:
668 : 614255 : case FUNCTION_DECL:
669 : 614255 : return !TREE_PUBLIC (t) && !DECL_EXTERNAL (t);
670 : 72395 : case RECORD_TYPE:
671 : 72395 : case UNION_TYPE:
672 : 72395 : case ENUMERAL_TYPE:
673 : : /* Anonymous namespace types are local.
674 : : Only work hard for main variants;
675 : : variant types will inherit locality. */
676 : 72395 : return TYPE_MAIN_VARIANT (t) == t
677 : 58158 : && odr_type_p (t) && type_with_linkage_p (t)
678 : 91866 : && type_in_anonymous_namespace_p (t);
679 : : default:
680 : : return false;
681 : : }
682 : : }
683 : :
684 : : /* Emit the physical representation of tree node EXPR to output block OB,
685 : : using depth-first search on the subgraph. If THIS_REF_P is true, the
686 : : leaves of EXPR are emitted as references via lto_output_tree_ref.
687 : : REF_P is used for streaming siblings of EXPR. If SINGLE_P is true,
688 : : this is for a rewalk of a single leaf SCC. */
689 : :
690 : 2948260 : DFS::DFS (struct output_block *ob, tree expr, bool ref_p, bool this_ref_p,
691 : 2948260 : bool single_p)
692 : : {
693 : 2948260 : unsigned int next_dfs_num = 1;
694 : :
695 : 2948260 : max_local_entry = -1;
696 : 2948260 : gcc_obstack_init (&sccstate_obstack);
697 : 2948260 : DFS_write_tree (ob, NULL, expr, ref_p, this_ref_p);
698 : 21357042 : while (!worklist_vec.is_empty ())
699 : : {
700 : 17492493 : worklist &w = worklist_vec.last ();
701 : 17492493 : expr = w.expr;
702 : 17492493 : sccs *from_state = w.from_state;
703 : 17492493 : sccs *cstate = w.cstate;
704 : 17492493 : ref_p = w.ref_p;
705 : 17492493 : this_ref_p = w.this_ref_p;
706 : 17492493 : if (cstate == NULL)
707 : : {
708 : 9487258 : sccs **slot = &sccstate.get_or_insert (expr);
709 : 9487258 : cstate = *slot;
710 : 9487258 : if (cstate)
711 : : {
712 : 1482023 : gcc_checking_assert (from_state);
713 : 1482023 : if (cstate->dfsnum < from_state->dfsnum)
714 : 185541 : from_state->low = MIN (cstate->dfsnum, from_state->low);
715 : 1482023 : worklist_vec.pop ();
716 : 1482023 : continue;
717 : : }
718 : :
719 : 8005235 : scc_entry e = { expr, 0 };
720 : : /* Not yet visited. DFS recurse and push it onto the stack. */
721 : 8005235 : *slot = cstate = XOBNEW (&sccstate_obstack, struct sccs);
722 : 8005235 : if (ob->local_trees && local_tree_p (expr))
723 : 83976 : max_local_entry = sccstack.length ();
724 : 8005235 : sccstack.safe_push (e);
725 : 8005235 : cstate->dfsnum = next_dfs_num++;
726 : 8005235 : cstate->low = cstate->dfsnum;
727 : 8005235 : w.cstate = cstate;
728 : :
729 : 8005235 : if (TREE_CODE (expr) == INTEGER_CST
730 : 8005235 : && !TREE_OVERFLOW (expr))
731 : 1078047 : DFS_write_tree (ob, cstate, TREE_TYPE (expr), ref_p, ref_p);
732 : : else
733 : : {
734 : 6927188 : DFS_write_tree_body (ob, expr, cstate, ref_p);
735 : :
736 : : /* Walk any LTO-specific edges. */
737 : 6927188 : if (DECL_P (expr)
738 : 1518676 : && TREE_CODE (expr) != FUNCTION_DECL
739 : 1091591 : && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
740 : : {
741 : : /* Handle DECL_INITIAL for symbols. */
742 : 1058326 : tree initial
743 : 1058326 : = get_symbol_initial_value (ob->decl_state->symtab_node_encoder,
744 : : expr);
745 : 1058326 : DFS_write_tree (ob, cstate, initial, ref_p, ref_p);
746 : : }
747 : : }
748 : 8005235 : continue;
749 : 8005235 : }
750 : :
751 : : /* See if we found an SCC. */
752 : 8005235 : if (cstate->low == cstate->dfsnum)
753 : : {
754 : 7808210 : unsigned first, size;
755 : 7808210 : tree x;
756 : :
757 : : /* If we are re-walking a single leaf SCC just pop it,
758 : : let earlier worklist item access the sccstack. */
759 : 7808210 : if (single_p)
760 : : {
761 : 340 : worklist_vec.pop ();
762 : 340 : continue;
763 : : }
764 : :
765 : : /* Pop the SCC and compute its size. */
766 : 15615740 : first = sccstack.length ();
767 : 7994399 : do
768 : : {
769 : 7994399 : x = sccstack[--first].t;
770 : : }
771 : 7994399 : while (x != expr);
772 : 7807870 : size = sccstack.length () - first;
773 : :
774 : : /* No need to compute hashes for LTRANS units, we don't perform
775 : : any merging there. */
776 : 7807870 : hashval_t scc_hash = 0;
777 : 7807870 : unsigned scc_entry_len = 0;
778 : 20804765 : bool local_to_unit = !ob->local_trees
779 : 7807870 : || max_local_entry >= (int)first;
780 : :
781 : : /* Remember that trees are local so info gets propagated to other
782 : : SCCs. */
783 : 5189025 : if (local_to_unit && ob->local_trees)
784 : : {
785 : 93331 : for (unsigned i = 0; i < size; ++i)
786 : 48189 : ob->local_trees->add (sccstack[first + i].t);
787 : : }
788 : :
789 : : /* As a special case do not stream TRANSLATION_UNIT_DECL as shared
790 : : tree. We can not mark it local because references to it does not
791 : : make other trees local (all global decls reffer to it via
792 : : CONTEXT). */
793 : 7807870 : if (size == 1
794 : 7807870 : && TREE_CODE (sccstack[first].t) == TRANSLATION_UNIT_DECL)
795 : : local_to_unit = true;
796 : :
797 : 7774605 : if (!local_to_unit)
798 : : {
799 : 2595213 : scc_hash = hash_scc (ob, first, size, ref_p, this_ref_p);
800 : :
801 : : /* Put the entries with the least number of collisions first. */
802 : 2595213 : unsigned entry_start = 0;
803 : 2595213 : scc_entry_len = size + 1;
804 : 5331223 : for (unsigned i = 0; i < size;)
805 : : {
806 : 2736010 : unsigned from = i;
807 : 2736010 : for (i = i + 1; i < size
808 : 2736010 : && (sccstack[first + i].hash
809 : 140797 : == sccstack[first + from].hash); ++i)
810 : : ;
811 : 2736010 : if (i - from < scc_entry_len)
812 : : {
813 : 2595213 : scc_entry_len = i - from;
814 : 2595213 : entry_start = from;
815 : : }
816 : : }
817 : 5190426 : for (unsigned i = 0; i < scc_entry_len; ++i)
818 : 2595213 : std::swap (sccstack[first + i],
819 : 2595213 : sccstack[first + entry_start + i]);
820 : :
821 : : /* We already sorted SCC deterministically in hash_scc. */
822 : :
823 : : /* Check that we have only one SCC.
824 : : Naturally we may have conflicts if hash function is not
825 : : strong enough. Lets see how far this gets. */
826 : 2595213 : gcc_checking_assert (scc_entry_len == 1);
827 : : }
828 : :
829 : 7807870 : worklist_vec.pop ();
830 : :
831 : 7807870 : unsigned int prev_size = ob->main_stream->total_size;
832 : :
833 : : /* Only global decl sections are considered by tree merging. */
834 : 7807870 : if (ob->section_type != LTO_section_decls)
835 : : {
836 : : /* If this is the original tree we stream and it forms SCC
837 : : by itself then we do not need to stream SCC at all. */
838 : 4446245 : if (worklist_vec.is_empty () && first == 0 && size == 1)
839 : : return;
840 : 2414274 : if (streamer_dump_file)
841 : : {
842 : 140 : fprintf (streamer_dump_file,
843 : : " Start of LTO_trees of size %i\n", size);
844 : : }
845 : 2414274 : streamer_write_record_start (ob, LTO_trees);
846 : 2414274 : streamer_write_uhwi (ob, size);
847 : : }
848 : : /* Write LTO_tree_scc if tree merging is going to be performed. */
849 : 3361625 : else if (!local_to_unit
850 : : /* These are special since sharing is not done by tree
851 : : merging machinery. We can not special case them earlier
852 : : because we still need to compute hash for further sharing
853 : : of trees referring to them. */
854 : 3361625 : && (size != 1
855 : 2530687 : || (TREE_CODE (sccstack[first].t) != IDENTIFIER_NODE
856 : 1668175 : && (TREE_CODE (sccstack[first].t) != INTEGER_CST
857 : 148274 : || TREE_OVERFLOW (sccstack[first].t)))))
858 : :
859 : : {
860 : 1584429 : gcc_checking_assert (ob->section_type == LTO_section_decls);
861 : 1584429 : if (streamer_dump_file)
862 : : {
863 : 172 : fprintf (streamer_dump_file,
864 : : " Start of LTO_tree_scc of size %i\n", size);
865 : : }
866 : 1584429 : streamer_write_record_start (ob, LTO_tree_scc);
867 : : /* In wast majority of cases scc_entry_len is 1 and size is small
868 : : integer. Use extra bit of size to stream info about
869 : : exceptions. */
870 : 1584429 : streamer_write_uhwi (ob, size * 2 + (scc_entry_len != 1));
871 : 1584429 : if (scc_entry_len != 1)
872 : 0 : streamer_write_uhwi (ob, scc_entry_len);
873 : 1584429 : streamer_write_uhwi (ob, scc_hash);
874 : : }
875 : : /* Non-trivial SCCs must be packed to trees blocks so forward
876 : : references work correctly. */
877 : 1777196 : else if (size != 1)
878 : : {
879 : 14643 : if (streamer_dump_file)
880 : : {
881 : 0 : fprintf (streamer_dump_file,
882 : : " Start of LTO_trees of size %i\n", size);
883 : : }
884 : 14643 : streamer_write_record_start (ob, LTO_trees);
885 : 14643 : streamer_write_uhwi (ob, size);
886 : : }
887 : 1762553 : else if (streamer_dump_file)
888 : : {
889 : 108 : fprintf (streamer_dump_file, " Streaming single tree\n");
890 : : }
891 : :
892 : : /* Write size-1 SCCs without wrapping them inside SCC bundles.
893 : : All INTEGER_CSTs need to be handled this way as we need
894 : : their type to materialize them. Also builtins are handled
895 : : this way. */
896 : 5775899 : if (size == 1)
897 : 5696594 : lto_output_tree_1 (ob, expr, scc_hash, ref_p, this_ref_p);
898 : : else
899 : : {
900 : :
901 : : /* Write all headers and populate the streamer cache. */
902 : 345139 : for (unsigned i = 0; i < size; ++i)
903 : : {
904 : 265834 : hashval_t hash = sccstack[first+i].hash;
905 : 265834 : tree t = sccstack[first+i].t;
906 : 265834 : bool exists_p = streamer_tree_cache_insert (ob->writer_cache,
907 : : t, hash, NULL);
908 : 265834 : gcc_assert (!exists_p);
909 : :
910 : 265834 : if (!lto_is_streamable (t))
911 : 0 : internal_error ("tree code %qs is not supported "
912 : : "in LTO streams",
913 : 0 : get_tree_code_name (TREE_CODE (t)));
914 : :
915 : : /* Write the header, containing everything needed to
916 : : materialize EXPR on the reading side. */
917 : 265834 : streamer_write_tree_header (ob, t);
918 : : }
919 : :
920 : : /* Write the bitpacks and tree references. */
921 : 345139 : for (unsigned i = 0; i < size; ++i)
922 : 265834 : lto_write_tree_1 (ob, sccstack[first+i].t, ref_p);
923 : : }
924 : 5775899 : if (streamer_dump_file)
925 : 420 : fprintf (streamer_dump_file, " %u bytes\n",
926 : 420 : ob->main_stream->total_size - prev_size);
927 : :
928 : : /* Finally truncate the vector. */
929 : 5775899 : sccstack.truncate (first);
930 : 5775899 : if ((int)first <= max_local_entry)
931 : 45142 : max_local_entry = first - 1;
932 : :
933 : 5775899 : if (from_state)
934 : 4859950 : from_state->low = MIN (from_state->low, cstate->low);
935 : 5775899 : continue;
936 : 5775899 : }
937 : :
938 : 197025 : gcc_checking_assert (from_state);
939 : 197025 : from_state->low = MIN (from_state->low, cstate->low);
940 : 197025 : if (cstate->dfsnum < from_state->dfsnum)
941 : 0 : from_state->low = MIN (cstate->dfsnum, from_state->low);
942 : 197025 : worklist_vec.pop ();
943 : : }
944 : : }
945 : :
946 : 2948260 : DFS::~DFS ()
947 : : {
948 : 2948260 : obstack_free (&sccstate_obstack, NULL);
949 : 2948260 : }
950 : :
951 : : /* Handle the tree EXPR in the DFS walk with SCC state EXPR_STATE and
952 : : DFS recurse for all tree edges originating from it. */
953 : :
954 : : void
955 : 6927188 : DFS::DFS_write_tree_body (struct output_block *ob,
956 : : tree expr, sccs *expr_state, bool ref_p)
957 : : {
958 : : #define DFS_follow_tree_edge(DEST) \
959 : : DFS_write_tree (ob, expr_state, DEST, ref_p, ref_p)
960 : :
961 : 6927188 : enum tree_code code;
962 : :
963 : 6927188 : code = TREE_CODE (expr);
964 : :
965 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
966 : : {
967 : 6522462 : if (TREE_CODE (expr) != IDENTIFIER_NODE)
968 : 5062027 : DFS_follow_tree_edge (TREE_TYPE (expr));
969 : : }
970 : :
971 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
972 : : {
973 : 5711 : unsigned int count = vector_cst_encoded_nelts (expr);
974 : 23692 : for (unsigned int i = 0; i < count; ++i)
975 : 17981 : DFS_follow_tree_edge (VECTOR_CST_ENCODED_ELT (expr, i));
976 : : }
977 : :
978 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_POLY_INT_CST))
979 : 0 : for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
980 : 0 : DFS_follow_tree_edge (POLY_INT_CST_COEFF (expr, i));
981 : :
982 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
983 : : {
984 : 8007 : DFS_follow_tree_edge (TREE_REALPART (expr));
985 : 8007 : DFS_follow_tree_edge (TREE_IMAGPART (expr));
986 : : }
987 : :
988 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
989 : : {
990 : : /* Drop names that were created for anonymous entities. */
991 : 1518676 : if (DECL_NAME (expr)
992 : 1335250 : && TREE_CODE (DECL_NAME (expr)) == IDENTIFIER_NODE
993 : 2853926 : && IDENTIFIER_ANON_P (DECL_NAME (expr)))
994 : : ;
995 : : else
996 : 1518114 : DFS_follow_tree_edge (DECL_NAME (expr));
997 : 1518676 : if (TREE_CODE (expr) != TRANSLATION_UNIT_DECL
998 : 1518676 : && ! DECL_CONTEXT (expr))
999 : 14596 : DFS_follow_tree_edge ((*all_translation_units)[0]);
1000 : : else
1001 : 1504080 : DFS_follow_tree_edge (DECL_CONTEXT (expr));
1002 : : }
1003 : :
1004 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1005 : : {
1006 : 1518676 : DFS_follow_tree_edge (DECL_SIZE (expr));
1007 : 1518676 : DFS_follow_tree_edge (DECL_SIZE_UNIT (expr));
1008 : :
1009 : : /* Note, DECL_INITIAL is not handled here. Since DECL_INITIAL needs
1010 : : special handling in LTO, it must be handled by streamer hooks. */
1011 : :
1012 : 1518676 : DFS_follow_tree_edge (DECL_ATTRIBUTES (expr));
1013 : :
1014 : : /* We use DECL_ABSTRACT_ORIGIN == error_mark_node to mark
1015 : : declarations which should be eliminated by decl merging. Be sure none
1016 : : leaks to this point. */
1017 : 1518676 : gcc_assert (DECL_ABSTRACT_ORIGIN (expr) != error_mark_node);
1018 : 1518676 : DFS_follow_tree_edge (DECL_ABSTRACT_ORIGIN (expr));
1019 : :
1020 : 1518676 : if ((VAR_P (expr)
1021 : 1518676 : || TREE_CODE (expr) == PARM_DECL)
1022 : 1518676 : && DECL_HAS_VALUE_EXPR_P (expr))
1023 : 6367 : DFS_follow_tree_edge (DECL_VALUE_EXPR (expr));
1024 : 1518676 : if (VAR_P (expr)
1025 : 1518676 : && DECL_HAS_DEBUG_EXPR_P (expr))
1026 : 1483 : DFS_follow_tree_edge (DECL_DEBUG_EXPR (expr));
1027 : : }
1028 : :
1029 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1030 : : {
1031 : : /* Make sure we don't inadvertently set the assembler name. */
1032 : 911015 : if (DECL_ASSEMBLER_NAME_SET_P (expr))
1033 : 738726 : DFS_follow_tree_edge (DECL_ASSEMBLER_NAME (expr));
1034 : : }
1035 : :
1036 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1037 : : {
1038 : 111080 : DFS_follow_tree_edge (DECL_FIELD_OFFSET (expr));
1039 : 111080 : DFS_follow_tree_edge (DECL_BIT_FIELD_TYPE (expr));
1040 : 111080 : DFS_follow_tree_edge (DECL_BIT_FIELD_REPRESENTATIVE (expr));
1041 : 111080 : DFS_follow_tree_edge (DECL_FIELD_BIT_OFFSET (expr));
1042 : 111080 : gcc_checking_assert (!DECL_FCONTEXT (expr));
1043 : : }
1044 : :
1045 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1046 : : {
1047 : 427085 : gcc_checking_assert (DECL_VINDEX (expr) == NULL);
1048 : 427085 : DFS_follow_tree_edge (DECL_FUNCTION_PERSONALITY (expr));
1049 : 427085 : DFS_follow_tree_edge (DECL_FUNCTION_SPECIFIC_TARGET (expr));
1050 : 427085 : DFS_follow_tree_edge (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr));
1051 : : }
1052 : :
1053 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1054 : : {
1055 : 630165 : DFS_follow_tree_edge (TYPE_SIZE (expr));
1056 : 630165 : DFS_follow_tree_edge (TYPE_SIZE_UNIT (expr));
1057 : 630165 : DFS_follow_tree_edge (TYPE_ATTRIBUTES (expr));
1058 : 630165 : DFS_follow_tree_edge (TYPE_NAME (expr));
1059 : : /* Do not follow TYPE_POINTER_TO or TYPE_REFERENCE_TO. They will be
1060 : : reconstructed during fixup. */
1061 : : /* Do not follow TYPE_NEXT_VARIANT, we reconstruct the variant lists
1062 : : during fixup. */
1063 : 630165 : DFS_follow_tree_edge (TYPE_MAIN_VARIANT (expr));
1064 : 630165 : DFS_follow_tree_edge (TYPE_CONTEXT (expr));
1065 : : /* TYPE_CANONICAL is re-computed during type merging, so no need
1066 : : to follow it here. */
1067 : : /* Do not stream TYPE_STUB_DECL; it is not needed by LTO but currently
1068 : : it cannot be freed by free_lang_data without triggering ICEs in
1069 : : langhooks. */
1070 : : }
1071 : :
1072 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1073 : : {
1074 : 630165 : if (TREE_CODE (expr) == ARRAY_TYPE)
1075 : 44074 : DFS_follow_tree_edge (TYPE_DOMAIN (expr));
1076 : 586091 : else if (RECORD_OR_UNION_TYPE_P (expr))
1077 : 238467 : for (tree t = TYPE_FIELDS (expr); t; t = TREE_CHAIN (t))
1078 : 146148 : DFS_follow_tree_edge (t);
1079 : 493772 : else if (FUNC_OR_METHOD_TYPE_P (expr))
1080 : 166429 : DFS_follow_tree_edge (TYPE_ARG_TYPES (expr));
1081 : :
1082 : 630165 : if (!POINTER_TYPE_P (expr))
1083 : 379113 : DFS_follow_tree_edge (TYPE_MIN_VALUE_RAW (expr));
1084 : 630165 : DFS_follow_tree_edge (TYPE_MAX_VALUE_RAW (expr));
1085 : : }
1086 : :
1087 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1088 : : {
1089 : 654726 : DFS_follow_tree_edge (TREE_PURPOSE (expr));
1090 : 654726 : DFS_follow_tree_edge (TREE_VALUE (expr));
1091 : 654726 : DFS_follow_tree_edge (TREE_CHAIN (expr));
1092 : : }
1093 : :
1094 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1095 : : {
1096 : 10 : for (int i = 0; i < TREE_VEC_LENGTH (expr); i++)
1097 : 8 : DFS_follow_tree_edge (TREE_VEC_ELT (expr, i));
1098 : : }
1099 : :
1100 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1101 : : {
1102 : 4138484 : for (int i = 0; i < TREE_OPERAND_LENGTH (expr); i++)
1103 : 2428415 : DFS_follow_tree_edge (TREE_OPERAND (expr, i));
1104 : 1710069 : DFS_follow_tree_edge (TREE_BLOCK (expr));
1105 : : }
1106 : :
1107 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1108 : : {
1109 : 478970 : for (tree t = BLOCK_VARS (expr); t; t = TREE_CHAIN (t))
1110 : : {
1111 : : /* We would have to stream externals in the block chain as
1112 : : non-references but we should have dropped them in
1113 : : free-lang-data. */
1114 : 139286 : gcc_assert (!VAR_OR_FUNCTION_DECL_P (t) || !DECL_EXTERNAL (t));
1115 : 139286 : DFS_follow_tree_edge (t);
1116 : : }
1117 : :
1118 : 339684 : DFS_follow_tree_edge (BLOCK_SUPERCONTEXT (expr));
1119 : 339684 : DFS_follow_tree_edge (BLOCK_ABSTRACT_ORIGIN (expr));
1120 : :
1121 : : /* Do not follow BLOCK_NONLOCALIZED_VARS. We cannot handle debug
1122 : : information for early inlined BLOCKs so drop it on the floor instead
1123 : : of ICEing in dwarf2out.cc. */
1124 : :
1125 : : /* BLOCK_FRAGMENT_ORIGIN and BLOCK_FRAGMENT_CHAIN is not live at LTO
1126 : : streaming time. */
1127 : :
1128 : : /* Do not output BLOCK_SUBBLOCKS. Instead on streaming-in this
1129 : : list is re-constructed from BLOCK_SUPERCONTEXT. */
1130 : : }
1131 : :
1132 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1133 : : {
1134 : : unsigned i;
1135 : : tree t;
1136 : :
1137 : : /* Note that the number of BINFO slots has already been emitted in
1138 : : EXPR's header (see streamer_write_tree_header) because this length
1139 : : is needed to build the empty BINFO node on the reader side. */
1140 : 20303 : FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (expr), i, t)
1141 : 10821 : DFS_follow_tree_edge (t);
1142 : 9482 : DFS_follow_tree_edge (BINFO_OFFSET (expr));
1143 : 9482 : DFS_follow_tree_edge (BINFO_VTABLE (expr));
1144 : :
1145 : : /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX,
1146 : : BINFO_BASE_ACCESSES and BINFO_VPTR_INDEX; these are used
1147 : : by C++ FE only. */
1148 : : }
1149 : :
1150 : 6927188 : if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1151 : : {
1152 : : unsigned i;
1153 : : tree index, value;
1154 : :
1155 : 767216 : FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (expr), i, index, value)
1156 : : {
1157 : 529995 : DFS_follow_tree_edge (index);
1158 : 529995 : DFS_follow_tree_edge (value);
1159 : : }
1160 : : }
1161 : :
1162 : 6927188 : if (code == RAW_DATA_CST)
1163 : 19 : DFS_follow_tree_edge (RAW_DATA_OWNER (expr));
1164 : :
1165 : 6927188 : if (code == OMP_CLAUSE)
1166 : : {
1167 : : int i;
1168 : 482 : for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (expr)]; i++)
1169 : 276 : DFS_follow_tree_edge (OMP_CLAUSE_OPERAND (expr, i));
1170 : 206 : DFS_follow_tree_edge (OMP_CLAUSE_CHAIN (expr));
1171 : : }
1172 : :
1173 : : #undef DFS_follow_tree_edge
1174 : 6927188 : }
1175 : :
1176 : : /* Return a hash value for the tree T.
1177 : : CACHE holds hash values of trees outside current SCC. MAP, if non-NULL,
1178 : : may hold hash values if trees inside current SCC. */
1179 : :
1180 : : static hashval_t
1181 : 2736010 : hash_tree (struct streamer_tree_cache_d *cache, hash_map<tree, hashval_t> *map, tree t)
1182 : : {
1183 : 2736010 : inchash::hash hstate;
1184 : :
1185 : : #define visit(SIBLING) \
1186 : : do { \
1187 : : unsigned ix; \
1188 : : if (!SIBLING) \
1189 : : hstate.add_int (0); \
1190 : : else if (streamer_tree_cache_lookup (cache, SIBLING, &ix)) \
1191 : : hstate.add_int (streamer_tree_cache_get_hash (cache, ix)); \
1192 : : else if (map) \
1193 : : hstate.add_int (*map->get (SIBLING)); \
1194 : : else \
1195 : : hstate.add_int (1); \
1196 : : } while (0)
1197 : :
1198 : : /* Hash TS_BASE. */
1199 : 2736010 : enum tree_code code = TREE_CODE (t);
1200 : 2736010 : hstate.add_int (code);
1201 : 2736010 : if (!TYPE_P (t))
1202 : : {
1203 : 2296168 : hstate.add_flag (TREE_SIDE_EFFECTS (t));
1204 : 2296168 : hstate.add_flag (TREE_CONSTANT (t));
1205 : 2296168 : hstate.add_flag (TREE_READONLY (t));
1206 : 2296168 : hstate.add_flag (TREE_PUBLIC (t));
1207 : : }
1208 : 2736010 : hstate.add_flag (TREE_ADDRESSABLE (t));
1209 : 2736010 : hstate.add_flag (TREE_THIS_VOLATILE (t));
1210 : 2736010 : if (DECL_P (t))
1211 : 676401 : hstate.add_flag (DECL_UNSIGNED (t));
1212 : 2059609 : else if (TYPE_P (t))
1213 : 439842 : hstate.add_flag (TYPE_UNSIGNED (t));
1214 : 2736010 : if (TYPE_P (t))
1215 : 439842 : hstate.add_flag (TYPE_ARTIFICIAL (t));
1216 : : else
1217 : 2296168 : hstate.add_flag (TREE_NO_WARNING (t));
1218 : 2736010 : hstate.add_flag (TREE_NOTHROW (t));
1219 : 2736010 : hstate.add_flag (TREE_STATIC (t));
1220 : 2736010 : hstate.add_flag (TREE_PROTECTED (t));
1221 : 2736010 : hstate.add_flag (TREE_DEPRECATED (t));
1222 : 2736010 : if (code != TREE_BINFO)
1223 : 2729752 : hstate.add_flag (TREE_PRIVATE (t));
1224 : 2736010 : if (TYPE_P (t))
1225 : : {
1226 : 439842 : hstate.add_flag (AGGREGATE_TYPE_P (t)
1227 : 439842 : ? TYPE_REVERSE_STORAGE_ORDER (t) : TYPE_SATURATING (t));
1228 : 439842 : hstate.add_flag (TYPE_ADDR_SPACE (t));
1229 : : }
1230 : 2296168 : else if (code == SSA_NAME)
1231 : 0 : hstate.add_flag (SSA_NAME_IS_DEFAULT_DEF (t));
1232 : 2736010 : hstate.commit_flag ();
1233 : :
1234 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_INT_CST))
1235 : 176916 : hstate.add_wide_int (wi::to_widest (t));
1236 : :
1237 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1238 : : {
1239 : 1710 : REAL_VALUE_TYPE r = TREE_REAL_CST (t);
1240 : 1710 : hstate.add_flag (r.cl);
1241 : 1710 : hstate.add_flag (r.sign);
1242 : 1710 : hstate.add_flag (r.signalling);
1243 : 1710 : hstate.add_flag (r.canonical);
1244 : 1710 : hstate.commit_flag ();
1245 : 1710 : hstate.add_int (r.uexp);
1246 : 1710 : hstate.add (r.sig, sizeof (r.sig));
1247 : : }
1248 : :
1249 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1250 : : {
1251 : 0 : FIXED_VALUE_TYPE f = TREE_FIXED_CST (t);
1252 : 0 : hstate.add_int (f.mode);
1253 : 0 : hstate.add_int (f.data.low);
1254 : 0 : hstate.add_int (f.data.high);
1255 : : }
1256 : :
1257 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1258 : : {
1259 : : /* Similar to TYPE_MODE, avoid streaming out host-specific DECL_MODE
1260 : : for aggregate type with offloading enabled, and while streaming-in
1261 : : recompute appropriate DECL_MODE for accelerator. */
1262 : 676401 : if (lto_stream_offload_p
1263 : 0 : && (VAR_P (t)
1264 : 0 : || TREE_CODE (t) == PARM_DECL
1265 : 0 : || TREE_CODE (t) == FIELD_DECL)
1266 : 676401 : && AGGREGATE_TYPE_P (TREE_TYPE (t)))
1267 : 0 : hstate.add_hwi (VOIDmode);
1268 : : else
1269 : 676401 : hstate.add_hwi (DECL_MODE (t));
1270 : 676401 : hstate.add_flag (DECL_NONLOCAL (t));
1271 : 676401 : hstate.add_flag (DECL_VIRTUAL_P (t));
1272 : 676401 : hstate.add_flag (DECL_IGNORED_P (t));
1273 : 676401 : hstate.add_flag (DECL_ABSTRACT_P (t));
1274 : 676401 : hstate.add_flag (DECL_ARTIFICIAL (t));
1275 : 676401 : hstate.add_flag (DECL_USER_ALIGN (t));
1276 : 676401 : hstate.add_flag (DECL_PRESERVE_P (t));
1277 : 676401 : hstate.add_flag (DECL_EXTERNAL (t));
1278 : 676401 : hstate.add_flag (DECL_NOT_GIMPLE_REG_P (t));
1279 : 676401 : hstate.commit_flag ();
1280 : 676401 : hstate.add_int (DECL_ALIGN (t));
1281 : 676401 : if (code == LABEL_DECL)
1282 : : {
1283 : 0 : hstate.add_int (EH_LANDING_PAD_NR (t));
1284 : 0 : hstate.add_int (LABEL_DECL_UID (t));
1285 : : }
1286 : 676401 : else if (code == FIELD_DECL)
1287 : : {
1288 : 79787 : hstate.add_flag (DECL_PACKED (t));
1289 : 79787 : hstate.add_flag (DECL_NONADDRESSABLE_P (t));
1290 : 79787 : hstate.add_flag (DECL_PADDING_P (t));
1291 : 79787 : if (DECL_BIT_FIELD (t))
1292 : 4872 : hstate.add_flag (DECL_FIELD_CXX_ZERO_WIDTH_BIT_FIELD (t));
1293 : : else
1294 : 153528 : hstate.add_flag (DECL_FIELD_ABI_IGNORED (t));
1295 : 79787 : hstate.add_int (DECL_OFFSET_ALIGN (t));
1296 : : }
1297 : 596614 : else if (code == VAR_DECL)
1298 : : {
1299 : 233828 : hstate.add_flag (DECL_HAS_DEBUG_EXPR_P (t));
1300 : 233828 : hstate.add_flag (DECL_NONLOCAL_FRAME (t));
1301 : : }
1302 : 676401 : if (code == RESULT_DECL
1303 : 676401 : || code == PARM_DECL
1304 : : || code == VAR_DECL)
1305 : : {
1306 : 233840 : hstate.add_flag (DECL_BY_REFERENCE (t));
1307 : 233840 : if (code == VAR_DECL
1308 : 233840 : || code == PARM_DECL)
1309 : 233840 : hstate.add_flag (DECL_HAS_VALUE_EXPR_P (t));
1310 : : }
1311 : 676401 : hstate.commit_flag ();
1312 : : }
1313 : :
1314 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1315 : 596612 : hstate.add_int (DECL_REGISTER (t));
1316 : :
1317 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1318 : : {
1319 : 596600 : hstate.add_flag (DECL_COMMON (t));
1320 : 596600 : hstate.add_flag (DECL_DLLIMPORT_P (t));
1321 : 596600 : hstate.add_flag (DECL_WEAK (t));
1322 : 596600 : hstate.add_flag (DECL_SEEN_IN_BIND_EXPR_P (t));
1323 : 596600 : hstate.add_flag (DECL_COMDAT (t));
1324 : 596600 : hstate.add_flag (DECL_VISIBILITY_SPECIFIED (t));
1325 : 596600 : hstate.add_int (DECL_VISIBILITY (t));
1326 : 596600 : if (code == VAR_DECL)
1327 : : {
1328 : : /* DECL_IN_TEXT_SECTION is set during final asm output only. */
1329 : 233828 : hstate.add_flag (DECL_HARD_REGISTER (t));
1330 : 233828 : hstate.add_flag (DECL_IN_CONSTANT_POOL (t));
1331 : : }
1332 : 596600 : if (TREE_CODE (t) == FUNCTION_DECL)
1333 : : {
1334 : 341214 : hstate.add_flag (DECL_FINAL_P (t));
1335 : 341214 : hstate.add_flag (DECL_CXX_CONSTRUCTOR_P (t));
1336 : 341214 : hstate.add_flag (DECL_CXX_DESTRUCTOR_P (t));
1337 : : }
1338 : 596600 : hstate.commit_flag ();
1339 : : }
1340 : :
1341 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1342 : : {
1343 : 341214 : hstate.add_int (DECL_BUILT_IN_CLASS (t));
1344 : 341214 : hstate.add_flag (DECL_STATIC_CONSTRUCTOR (t));
1345 : 341214 : hstate.add_flag (DECL_STATIC_DESTRUCTOR (t));
1346 : 341214 : hstate.add_int ((unsigned)FUNCTION_DECL_DECL_TYPE (t));
1347 : 341214 : hstate.add_flag (DECL_UNINLINABLE (t));
1348 : 341214 : hstate.add_flag (DECL_POSSIBLY_INLINED (t));
1349 : 341214 : hstate.add_flag (DECL_IS_NOVOPS (t));
1350 : 341214 : hstate.add_flag (DECL_IS_RETURNS_TWICE (t));
1351 : 341214 : hstate.add_flag (DECL_IS_MALLOC (t));
1352 : 341214 : hstate.add_flag (DECL_DECLARED_INLINE_P (t));
1353 : 341214 : hstate.add_flag (DECL_STATIC_CHAIN (t));
1354 : 341214 : hstate.add_flag (DECL_NO_INLINE_WARNING_P (t));
1355 : 341214 : hstate.add_flag (DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (t));
1356 : 341214 : hstate.add_flag (DECL_NO_LIMIT_STACK (t));
1357 : 341214 : hstate.add_flag (DECL_DISREGARD_INLINE_LIMITS (t));
1358 : 341214 : hstate.add_flag (DECL_PURE_P (t));
1359 : 341214 : hstate.add_flag (DECL_LOOPING_CONST_OR_PURE_P (t));
1360 : 341214 : hstate.commit_flag ();
1361 : 341214 : if (DECL_BUILT_IN_CLASS (t) != NOT_BUILT_IN)
1362 : 21397 : hstate.add_int (DECL_UNCHECKED_FUNCTION_CODE (t));
1363 : : }
1364 : :
1365 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1366 : : {
1367 : : /* For offloading, avoid streaming out TYPE_MODE for aggregate type since
1368 : : it may be host-specific. For eg, aarch64 uses OImode for ARRAY_TYPE
1369 : : whose size is 256-bits, which is not representable on accelerator.
1370 : : Instead stream out VOIDmode, and while streaming-in, recompute
1371 : : appropriate TYPE_MODE for accelerator. */
1372 : 439842 : if (lto_stream_offload_p
1373 : 0 : && (AGGREGATE_TYPE_P (t) || VECTOR_TYPE_P (t)))
1374 : 0 : hstate.add_hwi (VOIDmode);
1375 : : /* for VECTOR_TYPE, TYPE_MODE reevaluates the mode using target_flags
1376 : : not necessary valid in a global context.
1377 : : Use the raw value previously set by layout_type. */
1378 : : else
1379 : 439842 : hstate.add_hwi (TYPE_MODE_RAW (t));
1380 : : /* TYPE_NO_FORCE_BLK is private to stor-layout and need
1381 : : no streaming. */
1382 : 439842 : hstate.add_flag (TYPE_PACKED (t));
1383 : 439842 : hstate.add_flag (TYPE_RESTRICT (t));
1384 : 439842 : hstate.add_flag (TYPE_USER_ALIGN (t));
1385 : 439842 : hstate.add_flag (TYPE_READONLY (t));
1386 : 439842 : if (RECORD_OR_UNION_TYPE_P (t))
1387 : : {
1388 : 69705 : hstate.add_flag (TYPE_TRANSPARENT_AGGR (t));
1389 : 69705 : hstate.add_flag (TYPE_FINAL_P (t));
1390 : 69705 : hstate.add_flag (TYPE_CXX_ODR_P (t));
1391 : : }
1392 : 370137 : else if (code == ARRAY_TYPE)
1393 : 27824 : hstate.add_flag (TYPE_NONALIASED_COMPONENT (t));
1394 : 439842 : if (code == ARRAY_TYPE || code == INTEGER_TYPE)
1395 : 69844 : hstate.add_flag (TYPE_STRING_FLAG (t));
1396 : 439842 : if (AGGREGATE_TYPE_P (t))
1397 : 97529 : hstate.add_flag (TYPE_TYPELESS_STORAGE (t));
1398 : 439842 : hstate.commit_flag ();
1399 : 439842 : hstate.add_int (TYPE_PRECISION_RAW (t));
1400 : 439842 : hstate.add_int (TYPE_ALIGN (t));
1401 : 439842 : if (!lto_stream_offload_p)
1402 : 439842 : hstate.add_int (TYPE_EMPTY_P (t));
1403 : : }
1404 : :
1405 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
1406 : 0 : hstate.add (TRANSLATION_UNIT_LANGUAGE (t),
1407 : 0 : strlen (TRANSLATION_UNIT_LANGUAGE (t)));
1408 : :
1409 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION)
1410 : : /* We don't stream these when passing things to a different target. */
1411 : 23345 : && !lto_stream_offload_p)
1412 : 23345 : hstate.add_hwi (cl_target_option_hash (TREE_TARGET_OPTION (t)));
1413 : :
1414 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
1415 : 23557 : hstate.add_hwi (cl_optimization_hash (TREE_OPTIMIZATION (t)));
1416 : :
1417 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1418 : 862512 : hstate.merge_hash (IDENTIFIER_HASH_VALUE (t));
1419 : :
1420 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1421 : 4167 : hstate.add (TREE_STRING_POINTER (t), TREE_STRING_LENGTH (t));
1422 : :
1423 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_TYPED))
1424 : : {
1425 : 2689108 : if (code != IDENTIFIER_NODE)
1426 : 1826596 : visit (TREE_TYPE (t));
1427 : : }
1428 : :
1429 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
1430 : : {
1431 : 0 : unsigned int count = vector_cst_encoded_nelts (t);
1432 : 0 : for (unsigned int i = 0; i < count; ++i)
1433 : 0 : visit (VECTOR_CST_ENCODED_ELT (t, i));
1434 : : }
1435 : :
1436 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_POLY_INT_CST))
1437 : 0 : for (unsigned int i = 0; i < NUM_POLY_INT_COEFFS; ++i)
1438 : 0 : visit (POLY_INT_CST_COEFF (t, i));
1439 : :
1440 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
1441 : : {
1442 : 0 : visit (TREE_REALPART (t));
1443 : 0 : visit (TREE_IMAGPART (t));
1444 : : }
1445 : :
1446 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
1447 : : {
1448 : : /* Drop names that were created for anonymous entities. */
1449 : 676401 : if (DECL_NAME (t)
1450 : 659350 : && TREE_CODE (DECL_NAME (t)) == IDENTIFIER_NODE
1451 : 1335751 : && IDENTIFIER_ANON_P (DECL_NAME (t)))
1452 : : ;
1453 : : else
1454 : 676066 : visit (DECL_NAME (t));
1455 : 676401 : if (DECL_FILE_SCOPE_P (t))
1456 : : ;
1457 : : else
1458 : 107882 : visit (DECL_CONTEXT (t));
1459 : : }
1460 : :
1461 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1462 : : {
1463 : 676401 : visit (DECL_SIZE (t));
1464 : 676401 : visit (DECL_SIZE_UNIT (t));
1465 : 676401 : visit (DECL_ATTRIBUTES (t));
1466 : 676401 : if ((code == VAR_DECL
1467 : 676401 : || code == PARM_DECL)
1468 : 676401 : && DECL_HAS_VALUE_EXPR_P (t))
1469 : 0 : visit (DECL_VALUE_EXPR (t));
1470 : 676401 : if (code == VAR_DECL
1471 : 910229 : && DECL_HAS_DEBUG_EXPR_P (t))
1472 : 0 : visit (DECL_DEBUG_EXPR (t));
1473 : : /* ??? Hash DECL_INITIAL as streamed. Needs the output-block to
1474 : : be able to call get_symbol_initial_value. */
1475 : : }
1476 : :
1477 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1478 : : {
1479 : 596600 : if (DECL_ASSEMBLER_NAME_SET_P (t))
1480 : 594338 : visit (DECL_ASSEMBLER_NAME (t));
1481 : : }
1482 : :
1483 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
1484 : : {
1485 : 79787 : visit (DECL_FIELD_OFFSET (t));
1486 : 79787 : visit (DECL_BIT_FIELD_TYPE (t));
1487 : 79787 : visit (DECL_BIT_FIELD_REPRESENTATIVE (t));
1488 : 79787 : visit (DECL_FIELD_BIT_OFFSET (t));
1489 : : }
1490 : :
1491 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1492 : : {
1493 : 341214 : visit (DECL_FUNCTION_PERSONALITY (t));
1494 : 341214 : visit (DECL_FUNCTION_SPECIFIC_TARGET (t));
1495 : 341214 : visit (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (t));
1496 : : }
1497 : :
1498 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_TYPE_COMMON))
1499 : : {
1500 : 439842 : visit (TYPE_SIZE (t));
1501 : 439842 : visit (TYPE_SIZE_UNIT (t));
1502 : 439842 : visit (TYPE_ATTRIBUTES (t));
1503 : 439842 : visit (TYPE_NAME (t));
1504 : 439842 : visit (TYPE_MAIN_VARIANT (t));
1505 : 439842 : if (TYPE_FILE_SCOPE_P (t))
1506 : : ;
1507 : : else
1508 : 15141 : visit (TYPE_CONTEXT (t));
1509 : : }
1510 : :
1511 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_TYPE_NON_COMMON))
1512 : : {
1513 : 439842 : if (code == ARRAY_TYPE)
1514 : 27824 : visit (TYPE_DOMAIN (t));
1515 : 412018 : else if (RECORD_OR_UNION_TYPE_P (t))
1516 : 171802 : for (tree f = TYPE_FIELDS (t); f; f = TREE_CHAIN (f))
1517 : 102097 : visit (f);
1518 : 342313 : else if (code == FUNCTION_TYPE
1519 : 342313 : || code == METHOD_TYPE)
1520 : 109252 : visit (TYPE_ARG_TYPES (t));
1521 : 439842 : if (!POINTER_TYPE_P (t))
1522 : 257875 : visit (TYPE_MIN_VALUE_RAW (t));
1523 : 439842 : visit (TYPE_MAX_VALUE_RAW (t));
1524 : : }
1525 : :
1526 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_LIST))
1527 : : {
1528 : 513339 : visit (TREE_PURPOSE (t));
1529 : 513339 : visit (TREE_VALUE (t));
1530 : 513339 : visit (TREE_CHAIN (t));
1531 : : }
1532 : :
1533 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1534 : 0 : for (int i = 0; i < TREE_VEC_LENGTH (t); ++i)
1535 : 0 : visit (TREE_VEC_ELT (t, i));
1536 : :
1537 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_EXP))
1538 : : {
1539 : 7445 : hstate.add_hwi (TREE_OPERAND_LENGTH (t));
1540 : 18620 : for (int i = 0; i < TREE_OPERAND_LENGTH (t); ++i)
1541 : 11175 : visit (TREE_OPERAND (t, i));
1542 : : }
1543 : :
1544 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1545 : : {
1546 : : unsigned i;
1547 : : tree b;
1548 : 12645 : FOR_EACH_VEC_ELT (*BINFO_BASE_BINFOS (t), i, b)
1549 : 6387 : visit (b);
1550 : 6258 : visit (BINFO_OFFSET (t));
1551 : 6258 : visit (BINFO_VTABLE (t));
1552 : : /* Do not walk BINFO_INHERITANCE_CHAIN, BINFO_SUBVTT_INDEX
1553 : : BINFO_BASE_ACCESSES and BINFO_VPTR_INDEX; these are used
1554 : : by C++ FE only. */
1555 : : }
1556 : :
1557 : 2736010 : if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
1558 : : {
1559 : 384 : unsigned i;
1560 : 384 : tree index, value;
1561 : 583 : hstate.add_hwi (CONSTRUCTOR_NELTS (t));
1562 : 1718 : FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (t), i, index, value)
1563 : : {
1564 : 1334 : visit (index);
1565 : 1334 : visit (value);
1566 : : }
1567 : : }
1568 : :
1569 : 2736010 : if (code == OMP_CLAUSE)
1570 : : {
1571 : 128 : int i;
1572 : 128 : HOST_WIDE_INT val;
1573 : :
1574 : 128 : hstate.add_hwi (OMP_CLAUSE_CODE (t));
1575 : 128 : switch (OMP_CLAUSE_CODE (t))
1576 : : {
1577 : 0 : case OMP_CLAUSE_DEFAULT:
1578 : 0 : val = OMP_CLAUSE_DEFAULT_KIND (t);
1579 : 0 : break;
1580 : 0 : case OMP_CLAUSE_SCHEDULE:
1581 : 0 : val = OMP_CLAUSE_SCHEDULE_KIND (t);
1582 : 0 : break;
1583 : 0 : case OMP_CLAUSE_DEPEND:
1584 : 0 : val = OMP_CLAUSE_DEPEND_KIND (t);
1585 : 0 : break;
1586 : 0 : case OMP_CLAUSE_DOACROSS:
1587 : 0 : val = OMP_CLAUSE_DOACROSS_KIND (t);
1588 : 0 : break;
1589 : 0 : case OMP_CLAUSE_MAP:
1590 : 0 : val = OMP_CLAUSE_MAP_KIND (t);
1591 : 0 : break;
1592 : 0 : case OMP_CLAUSE_PROC_BIND:
1593 : 0 : val = OMP_CLAUSE_PROC_BIND_KIND (t);
1594 : 0 : break;
1595 : 0 : case OMP_CLAUSE_REDUCTION:
1596 : 0 : case OMP_CLAUSE_TASK_REDUCTION:
1597 : 0 : case OMP_CLAUSE_IN_REDUCTION:
1598 : 0 : val = OMP_CLAUSE_REDUCTION_CODE (t);
1599 : 0 : break;
1600 : : default:
1601 : : val = 0;
1602 : : break;
1603 : : }
1604 : 128 : hstate.add_hwi (val);
1605 : 293 : for (i = 0; i < omp_clause_num_ops[OMP_CLAUSE_CODE (t)]; i++)
1606 : 165 : visit (OMP_CLAUSE_OPERAND (t, i));
1607 : 128 : visit (OMP_CLAUSE_CHAIN (t));
1608 : : }
1609 : :
1610 : 2736010 : return hstate.end ();
1611 : :
1612 : : #undef visit
1613 : : }
1614 : :
1615 : : /* Compare two SCC entries by their hash value for qsorting them. */
1616 : :
1617 : : int
1618 : 1503457 : DFS::scc_entry_compare (const void *p1_, const void *p2_)
1619 : : {
1620 : 1503457 : const scc_entry *p1 = (const scc_entry *) p1_;
1621 : 1503457 : const scc_entry *p2 = (const scc_entry *) p2_;
1622 : 1503457 : if (p1->hash < p2->hash)
1623 : : return -1;
1624 : 678380 : else if (p1->hash > p2->hash)
1625 : 656967 : return 1;
1626 : : return 0;
1627 : : }
1628 : :
1629 : : /* Return a hash value for the SCC on the SCC stack from FIRST with SIZE.
1630 : : THIS_REF_P and REF_P are as passed to lto_output_tree for FIRST. */
1631 : :
1632 : : hashval_t
1633 : 2595213 : DFS::hash_scc (struct output_block *ob, unsigned first, unsigned size,
1634 : : bool ref_p, bool this_ref_p)
1635 : : {
1636 : 2595213 : unsigned int last_classes = 0, iterations = 0;
1637 : :
1638 : : /* Compute hash values for the SCC members. */
1639 : 5331223 : for (unsigned i = 0; i < size; ++i)
1640 : 2736010 : sccstack[first+i].hash
1641 : 5472020 : = hash_tree (ob->writer_cache, NULL, sccstack[first+i].t);
1642 : :
1643 : 2595213 : if (size == 1)
1644 : 2530687 : return sccstack[first].hash;
1645 : :
1646 : : /* We aim to get unique hash for every tree within SCC and compute hash value
1647 : : of the whole SCC by combining all values together in a stable (entry-point
1648 : : independent) order. This guarantees that the same SCC regions within
1649 : : different translation units will get the same hash values and therefore
1650 : : will be merged at WPA time.
1651 : :
1652 : : Often the hashes are already unique. In that case we compute the SCC hash
1653 : : by combining individual hash values in an increasing order.
1654 : :
1655 : : If there are duplicates, we seek at least one tree with unique hash (and
1656 : : pick one with minimal hash and this property). Then we obtain a stable
1657 : : order by DFS walk starting from this unique tree and then use the index
1658 : : within this order to make individual hash values unique.
1659 : :
1660 : : If there is no tree with unique hash, we iteratively propagate the hash
1661 : : values across the internal edges of SCC. This usually quickly leads
1662 : : to unique hashes. Consider, for example, an SCC containing two pointers
1663 : : that are identical except for the types they point to and assume that
1664 : : these types are also part of the SCC. The propagation will add the
1665 : : points-to type information into their hash values. */
1666 : 64526 : do
1667 : : {
1668 : : /* Sort the SCC so we can easily check for uniqueness. */
1669 : 64526 : qsort (&sccstack[first], size, sizeof (scc_entry), scc_entry_compare);
1670 : :
1671 : 64526 : unsigned int classes = 1;
1672 : 64526 : int firstunique = -1;
1673 : :
1674 : : /* Find the tree with lowest unique hash (if it exists) and compute
1675 : : the number of equivalence classes. */
1676 : 64526 : if (sccstack[first].hash != sccstack[first+1].hash)
1677 : 64523 : firstunique = 0;
1678 : 205323 : for (unsigned i = 1; i < size; ++i)
1679 : 140797 : if (sccstack[first+i-1].hash != sccstack[first+i].hash)
1680 : : {
1681 : 138839 : classes++;
1682 : 138839 : if (firstunique == -1
1683 : 138839 : && (i == size - 1
1684 : 3 : || sccstack[first+i+1].hash != sccstack[first+i].hash))
1685 : 3 : firstunique = i;
1686 : : }
1687 : :
1688 : : /* If we found a tree with unique hash, stop the iteration. */
1689 : 64526 : if (firstunique != -1
1690 : : /* Also terminate if we run out of iterations or if the number of
1691 : : equivalence classes is no longer increasing.
1692 : : For example a cyclic list of trees that are all equivalent will
1693 : : never have unique entry point; we however do not build such SCCs
1694 : : in our IL. */
1695 : 64526 : || classes <= last_classes || iterations > 16)
1696 : : {
1697 : 64526 : hashval_t scc_hash;
1698 : :
1699 : : /* If some hashes are not unique (CLASSES != SIZE), use the DFS walk
1700 : : starting from FIRSTUNIQUE to obtain a stable order. */
1701 : 64526 : if (classes != size && firstunique != -1)
1702 : : {
1703 : 340 : hash_map <tree, hashval_t> map(size*2);
1704 : :
1705 : : /* Store hash values into a map, so we can associate them with
1706 : : the reordered SCC. */
1707 : 11176 : for (unsigned i = 0; i < size; ++i)
1708 : 10836 : map.put (sccstack[first+i].t, sccstack[first+i].hash);
1709 : :
1710 : 680 : DFS again (ob, sccstack[first+firstunique].t, ref_p, this_ref_p,
1711 : 340 : true);
1712 : 680 : gcc_assert (again.sccstack.length () == size);
1713 : :
1714 : 340 : memcpy (sccstack.address () + first,
1715 : 340 : again.sccstack.address (),
1716 : : sizeof (scc_entry) * size);
1717 : :
1718 : : /* Update hash values of individual members by hashing in the
1719 : : index within the stable order. This ensures uniqueness.
1720 : : Also compute the SCC hash by mixing in all hash values in
1721 : : the stable order we obtained. */
1722 : 340 : sccstack[first].hash = *map.get (sccstack[first].t);
1723 : 340 : scc_hash = sccstack[first].hash;
1724 : 10836 : for (unsigned i = 1; i < size; ++i)
1725 : : {
1726 : 31488 : sccstack[first+i].hash
1727 : 10496 : = iterative_hash_hashval_t (i,
1728 : 10496 : *map.get (sccstack[first+i].t));
1729 : 10496 : scc_hash
1730 : 10496 : = iterative_hash_hashval_t (scc_hash,
1731 : 10496 : sccstack[first+i].hash);
1732 : : }
1733 : 340 : }
1734 : : /* If we got a unique hash value for each tree, then sort already
1735 : : ensured entry-point independent order. Only compute the final
1736 : : SCC hash.
1737 : :
1738 : : If we failed to find the unique entry point, we go by the same
1739 : : route. We will eventually introduce unwanted hash conflicts. */
1740 : : else
1741 : : {
1742 : : scc_hash = sccstack[first].hash;
1743 : 194487 : for (unsigned i = 1; i < size; ++i)
1744 : 130301 : scc_hash
1745 : 130301 : = iterative_hash_hashval_t (scc_hash, sccstack[first+i].hash);
1746 : :
1747 : : /* We cannot 100% guarantee that the hash won't conflict so as
1748 : : to make it impossible to find a unique hash. This however
1749 : : should be an extremely rare case. ICE for now so possible
1750 : : issues are found and evaluated. */
1751 : 64186 : gcc_checking_assert (classes == size);
1752 : : }
1753 : :
1754 : : /* To avoid conflicts across SCCs, iteratively hash the whole SCC
1755 : : hash into the hash of each element. */
1756 : 269849 : for (unsigned i = 0; i < size; ++i)
1757 : 410646 : sccstack[first+i].hash
1758 : 205323 : = iterative_hash_hashval_t (sccstack[first+i].hash, scc_hash);
1759 : 64526 : return scc_hash;
1760 : : }
1761 : :
1762 : 0 : last_classes = classes;
1763 : 0 : iterations++;
1764 : :
1765 : : /* We failed to identify the entry point; propagate hash values across
1766 : : the edges. */
1767 : 0 : hash_map <tree, hashval_t> map(size*2);
1768 : :
1769 : 0 : for (unsigned i = 0; i < size; ++i)
1770 : 0 : map.put (sccstack[first+i].t, sccstack[first+i].hash);
1771 : :
1772 : 0 : for (unsigned i = 0; i < size; i++)
1773 : 0 : sccstack[first+i].hash
1774 : 0 : = hash_tree (ob->writer_cache, &map, sccstack[first+i].t);
1775 : 0 : }
1776 : : while (true);
1777 : : }
1778 : :
1779 : : /* DFS walk EXPR and stream SCCs of tree bodies if they are not
1780 : : already in the streamer cache. Main routine called for
1781 : : each visit of EXPR. */
1782 : :
1783 : : void
1784 : 34922819 : DFS::DFS_write_tree (struct output_block *ob, sccs *from_state,
1785 : : tree expr, bool ref_p, bool this_ref_p)
1786 : : {
1787 : : /* Handle special cases. */
1788 : 34922819 : if (expr == NULL_TREE)
1789 : 25435561 : return;
1790 : :
1791 : : /* Do not DFS walk into indexable trees. */
1792 : 22826241 : if (this_ref_p && tree_is_indexable (expr))
1793 : : return;
1794 : :
1795 : : /* Check if we already streamed EXPR. */
1796 : 16622692 : if (streamer_tree_cache_lookup (ob->writer_cache, expr, NULL))
1797 : : {
1798 : : /* Reference to a local tree makes entry also local. We always process
1799 : : top of stack entry, so set max to number of entries in stack - 1. */
1800 : 7135434 : if (ob->local_trees
1801 : 7135434 : && ob->local_trees->contains (expr))
1802 : 16896 : max_local_entry = sccstack.length () - 1;
1803 : 7135434 : return;
1804 : : }
1805 : :
1806 : 9487258 : worklist w;
1807 : 9487258 : w.expr = expr;
1808 : 9487258 : w.from_state = from_state;
1809 : 9487258 : w.cstate = NULL;
1810 : 9487258 : w.ref_p = ref_p;
1811 : 9487258 : w.this_ref_p = this_ref_p;
1812 : 9487258 : worklist_vec.safe_push (w);
1813 : : }
1814 : :
1815 : :
1816 : : /* Emit the physical representation of tree node EXPR to output block OB.
1817 : : If THIS_REF_P is true, the leaves of EXPR are emitted as references via
1818 : : lto_output_tree_ref. REF_P is used for streaming siblings of EXPR. */
1819 : :
1820 : : void
1821 : 12538517 : lto_output_tree (struct output_block *ob, tree expr,
1822 : : bool ref_p, bool this_ref_p)
1823 : : {
1824 : 12538517 : unsigned ix;
1825 : 12538517 : bool existed_p;
1826 : 12538517 : unsigned int size = ob->main_stream->total_size;
1827 : : /* This is the first time we see EXPR, write all reachable
1828 : : trees to OB. */
1829 : 12538517 : static bool in_dfs_walk;
1830 : :
1831 : 12538517 : if (expr == NULL_TREE)
1832 : : {
1833 : 2786933 : streamer_write_record_start (ob, LTO_null);
1834 : 10507755 : return;
1835 : : }
1836 : :
1837 : 9751584 : if (this_ref_p && tree_is_indexable (expr))
1838 : : {
1839 : 4933889 : enum LTO_tags tag;
1840 : 4933889 : unsigned ix;
1841 : :
1842 : 4933889 : lto_indexable_tree_ref (ob, expr, &tag, &ix);
1843 : 4933889 : streamer_write_record_start (ob, tag);
1844 : 4933889 : streamer_write_uhwi (ob, ix);
1845 : 4933889 : return;
1846 : : }
1847 : :
1848 : 4817695 : existed_p = streamer_tree_cache_lookup (ob->writer_cache, expr, &ix);
1849 : 4817695 : if (existed_p)
1850 : : {
1851 : 1869775 : if (streamer_dump_file)
1852 : : {
1853 : 88 : if (in_dfs_walk)
1854 : 8 : print_node_brief (streamer_dump_file, " Streaming ref to ",
1855 : : expr, 4);
1856 : : else
1857 : 80 : print_node_brief (streamer_dump_file, " Streaming ref to ",
1858 : : expr, 4);
1859 : 88 : fprintf (streamer_dump_file, "\n");
1860 : : }
1861 : : /* If a node has already been streamed out, make sure that
1862 : : we don't write it more than once. Otherwise, the reader
1863 : : will instantiate two different nodes for the same object. */
1864 : 1869775 : streamer_write_record_start (ob, LTO_tree_pickle_reference);
1865 : 1869775 : streamer_write_uhwi (ob, ix);
1866 : 1869775 : lto_stats.num_pickle_refs_output++;
1867 : : }
1868 : : else
1869 : : {
1870 : : /* Protect against recursion which means disconnect between
1871 : : what tree edges we walk in the DFS walk and what edges
1872 : : we stream out. */
1873 : 2947920 : gcc_assert (!in_dfs_walk);
1874 : :
1875 : 2947920 : if (streamer_dump_file)
1876 : : {
1877 : 168 : print_node_brief (streamer_dump_file, " Streaming tree ",
1878 : : expr, 4);
1879 : 168 : fprintf (streamer_dump_file, "\n");
1880 : : }
1881 : :
1882 : : /* Start the DFS walk. */
1883 : : /* Save ob state ... */
1884 : : /* let's see ... */
1885 : 2947920 : in_dfs_walk = true;
1886 : 2947920 : DFS (ob, expr, ref_p, this_ref_p, false);
1887 : :
1888 : : /* Finally append a reference to the tree we were writing. */
1889 : 2947920 : existed_p = streamer_tree_cache_lookup (ob->writer_cache, expr, &ix);
1890 : :
1891 : : /* DFS walk above possibly skipped streaming EXPR itself to let us inline
1892 : : it. */
1893 : 2947920 : if (!existed_p)
1894 : 2031971 : lto_output_tree_1 (ob, expr, 0, ref_p, this_ref_p);
1895 : 915949 : else if (this_ref_p)
1896 : : {
1897 : 11 : if (streamer_dump_file)
1898 : : {
1899 : 0 : print_node_brief (streamer_dump_file,
1900 : : " Streaming final ref to ",
1901 : : expr, 4);
1902 : 0 : fprintf (streamer_dump_file, "\n");
1903 : : }
1904 : 11 : streamer_write_record_start (ob, LTO_tree_pickle_reference);
1905 : 11 : streamer_write_uhwi (ob, ix);
1906 : : }
1907 : 2947920 : in_dfs_walk = false;
1908 : 2947920 : lto_stats.num_pickle_refs_output++;
1909 : : }
1910 : 4817695 : if (streamer_dump_file && !in_dfs_walk)
1911 : 248 : fprintf (streamer_dump_file, " %u bytes\n",
1912 : 248 : ob->main_stream->total_size - size);
1913 : : }
1914 : :
1915 : :
1916 : : /* Output to OB a list of try/catch handlers starting with FIRST. */
1917 : :
1918 : : static void
1919 : 298 : output_eh_try_list (struct output_block *ob, eh_catch first)
1920 : : {
1921 : 298 : eh_catch n;
1922 : :
1923 : 685 : for (n = first; n; n = n->next_catch)
1924 : : {
1925 : 387 : streamer_write_record_start (ob, LTO_eh_catch);
1926 : 387 : stream_write_tree (ob, n->type_list, true);
1927 : 387 : stream_write_tree (ob, n->filter_list, true);
1928 : 387 : stream_write_tree (ob, n->label, true);
1929 : : }
1930 : :
1931 : 298 : streamer_write_record_start (ob, LTO_null);
1932 : 298 : }
1933 : :
1934 : :
1935 : : /* Output EH region R in function FN to OB. CURR_RN is the slot index
1936 : : that is being emitted in FN->EH->REGION_ARRAY. This is used to
1937 : : detect EH region sharing. */
1938 : :
1939 : : static void
1940 : 18170 : output_eh_region (struct output_block *ob, eh_region r)
1941 : : {
1942 : 18170 : enum LTO_tags tag;
1943 : :
1944 : 18170 : if (r == NULL)
1945 : : {
1946 : 7532 : streamer_write_record_start (ob, LTO_null);
1947 : 7532 : return;
1948 : : }
1949 : :
1950 : 10638 : if (r->type == ERT_CLEANUP)
1951 : : tag = LTO_ert_cleanup;
1952 : : else if (r->type == ERT_TRY)
1953 : : tag = LTO_ert_try;
1954 : : else if (r->type == ERT_ALLOWED_EXCEPTIONS)
1955 : : tag = LTO_ert_allowed_exceptions;
1956 : : else if (r->type == ERT_MUST_NOT_THROW)
1957 : : tag = LTO_ert_must_not_throw;
1958 : : else
1959 : 0 : gcc_unreachable ();
1960 : :
1961 : 10638 : streamer_write_record_start (ob, tag);
1962 : 10638 : streamer_write_hwi (ob, r->index);
1963 : :
1964 : 10638 : if (r->outer)
1965 : 3154 : streamer_write_hwi (ob, r->outer->index);
1966 : : else
1967 : 7484 : streamer_write_zero (ob);
1968 : :
1969 : 10638 : if (r->inner)
1970 : 1845 : streamer_write_hwi (ob, r->inner->index);
1971 : : else
1972 : 8793 : streamer_write_zero (ob);
1973 : :
1974 : 10638 : if (r->next_peer)
1975 : 4500 : streamer_write_hwi (ob, r->next_peer->index);
1976 : : else
1977 : 6138 : streamer_write_zero (ob);
1978 : :
1979 : 10638 : if (r->type == ERT_TRY)
1980 : : {
1981 : 298 : output_eh_try_list (ob, r->u.eh_try.first_catch);
1982 : : }
1983 : 10340 : else if (r->type == ERT_ALLOWED_EXCEPTIONS)
1984 : : {
1985 : 324 : stream_write_tree (ob, r->u.allowed.type_list, true);
1986 : 324 : stream_write_tree (ob, r->u.allowed.label, true);
1987 : 324 : streamer_write_uhwi (ob, r->u.allowed.filter);
1988 : : }
1989 : 10016 : else if (r->type == ERT_MUST_NOT_THROW)
1990 : : {
1991 : 5414 : stream_write_tree (ob, r->u.must_not_throw.failure_decl, true);
1992 : 5414 : bitpack_d bp = bitpack_create (ob->main_stream);
1993 : 5414 : stream_output_location (ob, &bp, r->u.must_not_throw.failure_loc);
1994 : 5414 : streamer_write_bitpack (&bp);
1995 : : }
1996 : :
1997 : 10638 : if (r->landing_pads)
1998 : 3106 : streamer_write_hwi (ob, r->landing_pads->index);
1999 : : else
2000 : 7532 : streamer_write_zero (ob);
2001 : : }
2002 : :
2003 : :
2004 : : /* Output landing pad LP to OB. */
2005 : :
2006 : : static void
2007 : 8303 : output_eh_lp (struct output_block *ob, eh_landing_pad lp)
2008 : : {
2009 : 8303 : if (lp == NULL)
2010 : : {
2011 : 5149 : streamer_write_record_start (ob, LTO_null);
2012 : 5149 : return;
2013 : : }
2014 : :
2015 : 3154 : streamer_write_record_start (ob, LTO_eh_landing_pad);
2016 : 3154 : streamer_write_hwi (ob, lp->index);
2017 : 3154 : if (lp->next_lp)
2018 : 48 : streamer_write_hwi (ob, lp->next_lp->index);
2019 : : else
2020 : 3106 : streamer_write_zero (ob);
2021 : :
2022 : 3154 : if (lp->region)
2023 : 3154 : streamer_write_hwi (ob, lp->region->index);
2024 : : else
2025 : 0 : streamer_write_zero (ob);
2026 : :
2027 : 3154 : stream_write_tree (ob, lp->post_landing_pad, true);
2028 : : }
2029 : :
2030 : :
2031 : : /* Output the existing eh_table to OB. */
2032 : :
2033 : : static void
2034 : 106518 : output_eh_regions (struct output_block *ob, struct function *fn)
2035 : : {
2036 : 106518 : if (fn->eh && fn->eh->region_tree)
2037 : : {
2038 : 4293 : unsigned i;
2039 : 4293 : eh_region eh;
2040 : 4293 : eh_landing_pad lp;
2041 : 4293 : tree ttype;
2042 : :
2043 : 4293 : streamer_write_record_start (ob, LTO_eh_table);
2044 : :
2045 : : /* Emit the index of the root of the EH region tree. */
2046 : 4293 : streamer_write_hwi (ob, fn->eh->region_tree->index);
2047 : :
2048 : : /* Emit all the EH regions in the region array. */
2049 : 4293 : streamer_write_hwi (ob, vec_safe_length (fn->eh->region_array));
2050 : 26756 : FOR_EACH_VEC_SAFE_ELT (fn->eh->region_array, i, eh)
2051 : 18170 : output_eh_region (ob, eh);
2052 : :
2053 : : /* Emit all landing pads. */
2054 : 4293 : streamer_write_hwi (ob, vec_safe_length (fn->eh->lp_array));
2055 : 16889 : FOR_EACH_VEC_SAFE_ELT (fn->eh->lp_array, i, lp)
2056 : 8303 : output_eh_lp (ob, lp);
2057 : :
2058 : : /* Emit all the runtime type data. */
2059 : 4293 : streamer_write_hwi (ob, vec_safe_length (fn->eh->ttype_data));
2060 : 8586 : FOR_EACH_VEC_SAFE_ELT (fn->eh->ttype_data, i, ttype)
2061 : 0 : stream_write_tree (ob, ttype, true);
2062 : :
2063 : : /* Emit the table of action chains. */
2064 : 4293 : if (targetm.arm_eabi_unwinder)
2065 : : {
2066 : 0 : tree t;
2067 : 0 : streamer_write_hwi (ob, vec_safe_length (fn->eh->ehspec_data.arm_eabi));
2068 : 0 : FOR_EACH_VEC_SAFE_ELT (fn->eh->ehspec_data.arm_eabi, i, t)
2069 : 0 : stream_write_tree (ob, t, true);
2070 : : }
2071 : : else
2072 : : {
2073 : 4293 : uchar c;
2074 : 4293 : streamer_write_hwi (ob, vec_safe_length (fn->eh->ehspec_data.other));
2075 : 8586 : FOR_EACH_VEC_SAFE_ELT (fn->eh->ehspec_data.other, i, c)
2076 : 0 : streamer_write_char_stream (ob->main_stream, c);
2077 : : }
2078 : : }
2079 : :
2080 : : /* The LTO_null either terminates the record or indicates that there
2081 : : are no eh_records at all. */
2082 : 106518 : streamer_write_record_start (ob, LTO_null);
2083 : 106518 : }
2084 : :
2085 : :
2086 : : /* Output all of the active ssa names to the ssa_names stream. */
2087 : :
2088 : : static void
2089 : 106518 : output_ssa_names (struct output_block *ob, struct function *fn)
2090 : : {
2091 : 106518 : unsigned int i, len;
2092 : :
2093 : 106518 : len = vec_safe_length (SSANAMES (fn));
2094 : 106518 : streamer_write_uhwi (ob, len);
2095 : :
2096 : 1700124 : for (i = 1; i < len; i++)
2097 : : {
2098 : 1593606 : tree ptr = (*SSANAMES (fn))[i];
2099 : :
2100 : 2189102 : if (ptr == NULL_TREE
2101 : 1587561 : || SSA_NAME_IN_FREE_LIST (ptr)
2102 : 1587561 : || virtual_operand_p (ptr)
2103 : : /* Simply skip unreleased SSA names. */
2104 : 2594586 : || (! SSA_NAME_IS_DEFAULT_DEF (ptr)
2105 : 897677 : && (! SSA_NAME_DEF_STMT (ptr)
2106 : 897677 : || ! gimple_bb (SSA_NAME_DEF_STMT (ptr)))))
2107 : 595496 : continue;
2108 : :
2109 : 998110 : streamer_write_uhwi (ob, i);
2110 : 998110 : streamer_write_char_stream (ob->main_stream,
2111 : 998110 : SSA_NAME_IS_DEFAULT_DEF (ptr));
2112 : 998110 : if (SSA_NAME_VAR (ptr))
2113 : 288740 : stream_write_tree (ob, SSA_NAME_VAR (ptr), true);
2114 : : else
2115 : : /* ??? This drops SSA_NAME_IDENTIFIER on the floor. */
2116 : 709370 : stream_write_tree (ob, TREE_TYPE (ptr), true);
2117 : : }
2118 : :
2119 : 106518 : streamer_write_zero (ob);
2120 : 106518 : }
2121 : :
2122 : :
2123 : :
2124 : : /* Output the cfg. */
2125 : :
2126 : : static void
2127 : 106518 : output_cfg (struct output_block *ob, struct function *fn)
2128 : : {
2129 : 106518 : struct lto_output_stream *tmp_stream = ob->main_stream;
2130 : 106518 : basic_block bb;
2131 : :
2132 : 106518 : ob->main_stream = ob->cfg_stream;
2133 : :
2134 : 106518 : streamer_write_enum (ob->main_stream, profile_status_d, PROFILE_LAST,
2135 : : profile_status_for_fn (fn));
2136 : :
2137 : : /* Output the number of the highest basic block. */
2138 : 106518 : streamer_write_uhwi (ob, last_basic_block_for_fn (fn));
2139 : :
2140 : 1009249 : FOR_ALL_BB_FN (bb, fn)
2141 : : {
2142 : 902731 : edge_iterator ei;
2143 : 902731 : edge e;
2144 : :
2145 : 902731 : streamer_write_hwi (ob, bb->index);
2146 : :
2147 : : /* Output the successors and the edge flags. */
2148 : 1696296 : streamer_write_uhwi (ob, EDGE_COUNT (bb->succs));
2149 : 1929069 : FOR_EACH_EDGE (e, ei, bb->succs)
2150 : : {
2151 : 1026338 : bitpack_d bp = bitpack_create (ob->main_stream);
2152 : 1026338 : bp_pack_var_len_unsigned (&bp, e->dest->index);
2153 : 1026338 : bp_pack_var_len_unsigned (&bp, e->flags);
2154 : 1026338 : stream_output_location_and_block (ob, &bp, e->goto_locus);
2155 : 1026338 : e->probability.stream_out (ob);
2156 : : }
2157 : : }
2158 : :
2159 : 106518 : streamer_write_hwi (ob, -1);
2160 : :
2161 : 106518 : bb = ENTRY_BLOCK_PTR_FOR_FN (fn);
2162 : 902731 : while (bb->next_bb)
2163 : : {
2164 : 796213 : streamer_write_hwi (ob, bb->next_bb->index);
2165 : 796213 : bb = bb->next_bb;
2166 : : }
2167 : :
2168 : 106518 : streamer_write_hwi (ob, -1);
2169 : :
2170 : : /* Output the number of loops. */
2171 : 106518 : streamer_write_uhwi (ob, number_of_loops (fn));
2172 : :
2173 : : /* Output each loop, skipping the tree root which has number zero. */
2174 : 359534 : for (unsigned i = 1; i < number_of_loops (fn); ++i)
2175 : : {
2176 : 73249 : class loop *loop = get_loop (fn, i);
2177 : :
2178 : : /* Write the index of the loop header. That's enough to rebuild
2179 : : the loop tree on the reader side. Stream -1 for an unused
2180 : : loop entry. */
2181 : 73249 : if (!loop)
2182 : : {
2183 : 25283 : streamer_write_hwi (ob, -1);
2184 : 25283 : continue;
2185 : : }
2186 : : else
2187 : 47966 : streamer_write_hwi (ob, loop->header->index);
2188 : :
2189 : : /* Write everything copy_loop_info copies. */
2190 : 47966 : streamer_write_enum (ob->main_stream,
2191 : : loop_estimation, EST_LAST, loop->estimate_state);
2192 : 47966 : streamer_write_hwi (ob, loop->any_upper_bound);
2193 : 47966 : if (loop->any_upper_bound)
2194 : : {
2195 : 39245 : widest_int w = widest_int::from (loop->nb_iterations_upper_bound,
2196 : 39245 : SIGNED);
2197 : 39245 : streamer_write_widest_int (ob, w);
2198 : 39245 : }
2199 : 47966 : streamer_write_hwi (ob, loop->any_likely_upper_bound);
2200 : 47966 : if (loop->any_likely_upper_bound)
2201 : : {
2202 : 39247 : widest_int w
2203 : 39247 : = widest_int::from (loop->nb_iterations_likely_upper_bound,
2204 : 39247 : SIGNED);
2205 : 39247 : streamer_write_widest_int (ob, w);
2206 : 39247 : }
2207 : 47966 : streamer_write_hwi (ob, loop->any_estimate);
2208 : 47966 : if (loop->any_estimate)
2209 : : {
2210 : 32765 : widest_int w = widest_int::from (loop->nb_iterations_estimate,
2211 : 32765 : SIGNED);
2212 : 32765 : streamer_write_widest_int (ob, w);
2213 : 32765 : }
2214 : :
2215 : : /* Write OMP SIMD related info. */
2216 : 47966 : streamer_write_hwi (ob, loop->safelen);
2217 : 47966 : streamer_write_hwi (ob, loop->unroll);
2218 : 47966 : streamer_write_hwi (ob, loop->owned_clique);
2219 : 47966 : streamer_write_hwi (ob, loop->dont_vectorize);
2220 : 47966 : streamer_write_hwi (ob, loop->force_vectorize);
2221 : 47966 : streamer_write_hwi (ob, loop->finite_p);
2222 : 47966 : stream_write_tree (ob, loop->simduid, true);
2223 : : }
2224 : :
2225 : 106518 : ob->main_stream = tmp_stream;
2226 : 106518 : }
2227 : :
2228 : : /* Create the header in the file using OB. If the section type is for
2229 : : a function, set FN to the decl for that function. */
2230 : :
2231 : : void
2232 : 254264 : produce_symbol_asm (struct output_block *ob, tree fn, int output_order)
2233 : : {
2234 : 254264 : enum lto_section_type section_type = ob->section_type;
2235 : 254264 : struct lto_function_header header;
2236 : 254264 : char *section_name;
2237 : :
2238 : 254264 : if (section_type == LTO_section_function_body)
2239 : : {
2240 : 117477 : const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (fn));
2241 : 117477 : section_name = lto_get_section_name (section_type, name,
2242 : : output_order, NULL);
2243 : : }
2244 : : else
2245 : 136787 : section_name = lto_get_section_name (section_type, NULL, 0, NULL);
2246 : :
2247 : 254264 : lto_begin_section (section_name, !flag_wpa);
2248 : 254264 : free (section_name);
2249 : :
2250 : : /* The entire header is stream computed here. */
2251 : 254264 : memset (&header, 0, sizeof (struct lto_function_header));
2252 : :
2253 : 254264 : if (section_type == LTO_section_function_body)
2254 : 117477 : header.cfg_size = ob->cfg_stream->total_size;
2255 : 254264 : header.main_size = ob->main_stream->total_size;
2256 : 254264 : header.string_size = ob->string_stream->total_size;
2257 : 254264 : lto_write_data (&header, sizeof header);
2258 : :
2259 : : /* Put all of the gimple and the string table out the asm file as a
2260 : : block of text. */
2261 : 254264 : if (section_type == LTO_section_function_body)
2262 : 117477 : lto_write_stream (ob->cfg_stream);
2263 : 254264 : lto_write_stream (ob->main_stream);
2264 : 254264 : lto_write_stream (ob->string_stream);
2265 : :
2266 : 254264 : lto_end_section ();
2267 : 254264 : }
2268 : :
2269 : : /* Wrapper for unused arguments. */
2270 : :
2271 : : void
2272 : 136787 : produce_asm (struct output_block *ob)
2273 : : {
2274 : 136787 : produce_symbol_asm (ob, NULL, -1);
2275 : 136787 : }
2276 : :
2277 : :
2278 : : /* Output the base body of struct function FN using output block OB. */
2279 : :
2280 : : static void
2281 : 106518 : output_struct_function_base (struct output_block *ob, struct function *fn)
2282 : : {
2283 : 106518 : struct bitpack_d bp;
2284 : 106518 : unsigned i;
2285 : 106518 : tree t;
2286 : :
2287 : : /* Output the static chain and non-local goto save area. */
2288 : 106518 : stream_write_tree (ob, fn->static_chain_decl, true);
2289 : 106518 : stream_write_tree (ob, fn->nonlocal_goto_save_area, true);
2290 : :
2291 : : /* Output all the local variables in the function. */
2292 : 106518 : streamer_write_hwi (ob, vec_safe_length (fn->local_decls));
2293 : 375051 : FOR_EACH_VEC_SAFE_ELT (fn->local_decls, i, t)
2294 : 162015 : stream_write_tree (ob, t, true);
2295 : :
2296 : : /* Output current IL state of the function. */
2297 : 106518 : streamer_write_uhwi (ob, fn->curr_properties);
2298 : :
2299 : : /* Write all the attributes for FN. */
2300 : 106518 : bp = bitpack_create (ob->main_stream);
2301 : 106518 : bp_pack_value (&bp, fn->is_thunk, 1);
2302 : 106518 : bp_pack_value (&bp, fn->has_local_explicit_reg_vars, 1);
2303 : 106518 : bp_pack_value (&bp, fn->returns_pcc_struct, 1);
2304 : 106518 : bp_pack_value (&bp, fn->returns_struct, 1);
2305 : 106518 : bp_pack_value (&bp, fn->can_throw_non_call_exceptions, 1);
2306 : 106518 : bp_pack_value (&bp, fn->can_delete_dead_exceptions, 1);
2307 : 106518 : bp_pack_value (&bp, fn->always_inline_functions_inlined, 1);
2308 : 106518 : bp_pack_value (&bp, fn->after_inlining, 1);
2309 : 106518 : bp_pack_value (&bp, fn->stdarg, 1);
2310 : 106518 : bp_pack_value (&bp, fn->has_nonlocal_label, 1);
2311 : 106518 : bp_pack_value (&bp, fn->has_forced_label_in_static, 1);
2312 : 106518 : bp_pack_value (&bp, fn->calls_alloca, 1);
2313 : 106518 : bp_pack_value (&bp, fn->calls_setjmp, 1);
2314 : 106518 : bp_pack_value (&bp, fn->calls_eh_return, 1);
2315 : 106518 : bp_pack_value (&bp, fn->has_force_vectorize_loops, 1);
2316 : 106518 : bp_pack_value (&bp, fn->has_simduid_loops, 1);
2317 : 106518 : bp_pack_value (&bp, fn->has_musttail, 1);
2318 : 106518 : bp_pack_value (&bp, fn->has_unroll, 1);
2319 : 106518 : bp_pack_value (&bp, fn->assume_function, 1);
2320 : 106518 : bp_pack_value (&bp, fn->va_list_fpr_size, 8);
2321 : 106518 : bp_pack_value (&bp, fn->va_list_gpr_size, 8);
2322 : 106518 : bp_pack_value (&bp, fn->last_clique, sizeof (short) * 8);
2323 : :
2324 : : /* Output the function start and end loci. */
2325 : 106518 : stream_output_location (ob, &bp, fn->function_start_locus);
2326 : 106518 : stream_output_location (ob, &bp, fn->function_end_locus);
2327 : :
2328 : : /* Save the instance discriminator if present. */
2329 : 106518 : int *instance_number_p = NULL;
2330 : 106518 : if (decl_to_instance_map)
2331 : 0 : instance_number_p = decl_to_instance_map->get (fn->decl);
2332 : 106518 : bp_pack_value (&bp, !!instance_number_p, 1);
2333 : 106518 : if (instance_number_p)
2334 : 0 : bp_pack_value (&bp, *instance_number_p, sizeof (int) * CHAR_BIT);
2335 : :
2336 : 106518 : streamer_write_bitpack (&bp);
2337 : 106518 : }
2338 : :
2339 : :
2340 : : /* Collect all leaf BLOCKs beyond ROOT into LEAFS. */
2341 : :
2342 : : static void
2343 : 240538 : collect_block_tree_leafs (tree root, vec<tree> &leafs)
2344 : : {
2345 : 447361 : for (root = BLOCK_SUBBLOCKS (root); root; root = BLOCK_CHAIN (root))
2346 : 206823 : if (! BLOCK_SUBBLOCKS (root))
2347 : 72803 : leafs.safe_push (root);
2348 : : else
2349 : 134020 : collect_block_tree_leafs (root, leafs);
2350 : 240538 : }
2351 : :
2352 : : /* This performs function body modifications that are needed for streaming
2353 : : to work. */
2354 : :
2355 : : void
2356 : 106515 : lto_prepare_function_for_streaming (struct cgraph_node *node)
2357 : : {
2358 : 106515 : struct function *fn = DECL_STRUCT_FUNCTION (node->decl);
2359 : 106515 : basic_block bb;
2360 : :
2361 : 213030 : if (number_of_loops (fn))
2362 : : {
2363 : 106515 : push_cfun (fn);
2364 : 106515 : loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
2365 : 106515 : loop_optimizer_finalize ();
2366 : 106515 : pop_cfun ();
2367 : : }
2368 : : /* We will renumber the statements. The code that does this uses
2369 : : the same ordering that we use for serializing them so we can use
2370 : : the same code on the other end and not have to write out the
2371 : : statement numbers. We do not assign UIDs to PHIs here because
2372 : : virtual PHIs get re-computed on-the-fly which would make numbers
2373 : : inconsistent. */
2374 : 106515 : set_gimple_stmt_max_uid (fn, 0);
2375 : 1009237 : FOR_ALL_BB_FN (bb, fn)
2376 : : {
2377 : 1057115 : for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
2378 : 154393 : gsi_next (&gsi))
2379 : : {
2380 : 154393 : gphi *stmt = gsi.phi ();
2381 : :
2382 : : /* Virtual PHIs are not going to be streamed. */
2383 : 308786 : if (!virtual_operand_p (gimple_phi_result (stmt)))
2384 : 88896 : gimple_set_uid (stmt, inc_gimple_stmt_max_uid (fn));
2385 : : }
2386 : 3465479 : for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
2387 : 1660035 : gsi_next (&gsi))
2388 : : {
2389 : 1660035 : gimple *stmt = gsi_stmt (gsi);
2390 : 1660035 : gimple_set_uid (stmt, inc_gimple_stmt_max_uid (fn));
2391 : : }
2392 : : }
2393 : : /* To avoid keeping duplicate gimple IDs in the statements, renumber
2394 : : virtual phis now. */
2395 : 1009237 : FOR_ALL_BB_FN (bb, fn)
2396 : : {
2397 : 1057115 : for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
2398 : 154393 : gsi_next (&gsi))
2399 : : {
2400 : 154393 : gphi *stmt = gsi.phi ();
2401 : 374283 : if (virtual_operand_p (gimple_phi_result (stmt)))
2402 : 65497 : gimple_set_uid (stmt, inc_gimple_stmt_max_uid (fn));
2403 : : }
2404 : : }
2405 : :
2406 : 106515 : }
2407 : :
2408 : : /* Emit the chain of tree nodes starting at T. OB is the output block
2409 : : to write to. REF_P is true if chain elements should be emitted
2410 : : as references. */
2411 : :
2412 : : static void
2413 : 106665 : streamer_write_chain (struct output_block *ob, tree t, bool ref_p)
2414 : : {
2415 : 422555 : while (t)
2416 : : {
2417 : : /* We avoid outputting external vars or functions by reference
2418 : : to the global decls section as we do not want to have them
2419 : : enter decl merging. We should not need to do this anymore because
2420 : : free_lang_data removes them from block scopes. */
2421 : 315890 : gcc_assert (!VAR_OR_FUNCTION_DECL_P (t) || !DECL_EXTERNAL (t));
2422 : 315890 : stream_write_tree (ob, t, ref_p);
2423 : :
2424 : 315890 : t = TREE_CHAIN (t);
2425 : : }
2426 : :
2427 : : /* Write a sentinel to terminate the chain. */
2428 : 106665 : stream_write_tree (ob, NULL_TREE, ref_p);
2429 : 106665 : }
2430 : :
2431 : : /* Output the body of function NODE->DECL. */
2432 : :
2433 : : static void
2434 : 106665 : output_function (struct cgraph_node *node, int output_order)
2435 : : {
2436 : 106665 : tree function;
2437 : 106665 : struct function *fn;
2438 : 106665 : basic_block bb;
2439 : 106665 : struct output_block *ob;
2440 : :
2441 : 106665 : if (streamer_dump_file)
2442 : 8 : fprintf (streamer_dump_file, "\nStreaming body of %s\n",
2443 : : node->dump_name ());
2444 : :
2445 : 106665 : function = node->decl;
2446 : 106665 : fn = DECL_STRUCT_FUNCTION (function);
2447 : 106665 : ob = create_output_block (LTO_section_function_body);
2448 : :
2449 : 106665 : ob->symbol = node;
2450 : :
2451 : 106665 : gcc_assert (current_function_decl == NULL_TREE && cfun == NULL);
2452 : :
2453 : : /* Make string 0 be a NULL string. */
2454 : 106665 : streamer_write_char_stream (ob->string_stream, 0);
2455 : :
2456 : 106665 : streamer_write_record_start (ob, LTO_function);
2457 : :
2458 : : /* Output decls for parameters and args. */
2459 : 106665 : stream_write_tree (ob, DECL_RESULT (function), true);
2460 : 106665 : streamer_write_chain (ob, DECL_ARGUMENTS (function), true);
2461 : :
2462 : : /* Output debug args if available. */
2463 : 106665 : vec<tree, va_gc> **debugargs = decl_debug_args_lookup (function);
2464 : 106665 : if (! debugargs)
2465 : 106636 : streamer_write_uhwi (ob, 0);
2466 : : else
2467 : : {
2468 : 29 : streamer_write_uhwi (ob, (*debugargs)->length ());
2469 : 103 : for (unsigned i = 0; i < (*debugargs)->length (); ++i)
2470 : 74 : stream_write_tree (ob, (**debugargs)[i], true);
2471 : : }
2472 : :
2473 : : /* Output DECL_INITIAL for the function, which contains the tree of
2474 : : lexical scopes. */
2475 : 106665 : stream_write_tree (ob, DECL_INITIAL (function), true);
2476 : : /* As we do not recurse into BLOCK_SUBBLOCKS but only BLOCK_SUPERCONTEXT
2477 : : collect block tree leafs and stream those. */
2478 : 106665 : auto_vec<tree> block_tree_leafs;
2479 : 106665 : if (DECL_INITIAL (function) && DECL_INITIAL (function) != error_mark_node)
2480 : 106518 : collect_block_tree_leafs (DECL_INITIAL (function), block_tree_leafs);
2481 : 106665 : streamer_write_uhwi (ob, block_tree_leafs.length ());
2482 : 179468 : for (unsigned i = 0; i < block_tree_leafs.length (); ++i)
2483 : 72803 : stream_write_tree (ob, block_tree_leafs[i], true);
2484 : :
2485 : : /* We also stream abstract functions where we stream only stuff needed for
2486 : : debug info. */
2487 : 106665 : if (gimple_has_body_p (function))
2488 : : {
2489 : 106518 : streamer_write_uhwi (ob, 1);
2490 : 106518 : output_struct_function_base (ob, fn);
2491 : :
2492 : 106518 : output_cfg (ob, fn);
2493 : :
2494 : : /* Output all the SSA names used in the function. */
2495 : 106518 : output_ssa_names (ob, fn);
2496 : :
2497 : : /* Output any exception handling regions. */
2498 : 106518 : output_eh_regions (ob, fn);
2499 : :
2500 : : /* Output the code for the function. */
2501 : 1009249 : FOR_ALL_BB_FN (bb, fn)
2502 : 902731 : output_bb (ob, bb, fn);
2503 : :
2504 : : /* The terminator for this function. */
2505 : 106518 : streamer_write_record_start (ob, LTO_null);
2506 : : }
2507 : : else
2508 : 147 : streamer_write_uhwi (ob, 0);
2509 : :
2510 : : /* Create a section to hold the pickled output of this function. */
2511 : 106665 : produce_symbol_asm (ob, function, output_order);
2512 : :
2513 : 106665 : destroy_output_block (ob);
2514 : 106665 : if (streamer_dump_file)
2515 : 8 : fprintf (streamer_dump_file, "Finished streaming %s\n",
2516 : : node->dump_name ());
2517 : 106665 : }
2518 : :
2519 : : /* Output the body of function NODE->DECL. */
2520 : :
2521 : : static void
2522 : 10812 : output_constructor (struct varpool_node *node, int output_order)
2523 : : {
2524 : 10812 : tree var = node->decl;
2525 : 10812 : struct output_block *ob;
2526 : :
2527 : 10812 : if (streamer_dump_file)
2528 : 4 : fprintf (streamer_dump_file, "\nStreaming constructor of %s\n",
2529 : : node->dump_name ());
2530 : :
2531 : 10812 : timevar_push (TV_IPA_LTO_CTORS_OUT);
2532 : 10812 : ob = create_output_block (LTO_section_function_body);
2533 : :
2534 : 10812 : ob->symbol = node;
2535 : :
2536 : : /* Make string 0 be a NULL string. */
2537 : 10812 : streamer_write_char_stream (ob->string_stream, 0);
2538 : :
2539 : : /* Output DECL_INITIAL for the function, which contains the tree of
2540 : : lexical scopes. */
2541 : 10812 : stream_write_tree (ob, DECL_INITIAL (var), true);
2542 : :
2543 : : /* Create a section to hold the pickled output of this function. */
2544 : 10812 : produce_symbol_asm (ob, var, output_order);
2545 : :
2546 : 10812 : destroy_output_block (ob);
2547 : 10812 : if (streamer_dump_file)
2548 : 4 : fprintf (streamer_dump_file, "Finished streaming %s\n",
2549 : : node->dump_name ());
2550 : 10812 : timevar_pop (TV_IPA_LTO_CTORS_OUT);
2551 : 10812 : }
2552 : :
2553 : :
2554 : : /* Emit toplevel asms. */
2555 : :
2556 : : void
2557 : 32481 : lto_output_toplevel_asms (void)
2558 : : {
2559 : 32481 : struct output_block *ob;
2560 : 32481 : struct asm_node *can;
2561 : 32481 : char *section_name;
2562 : 32481 : struct lto_simple_header_with_strings header;
2563 : :
2564 : 32481 : if (!symtab->first_asm_symbol ())
2565 : 32415 : return;
2566 : :
2567 : 66 : ob = create_output_block (LTO_section_asm);
2568 : :
2569 : : /* Make string 0 be a NULL string. */
2570 : 66 : streamer_write_char_stream (ob->string_stream, 0);
2571 : :
2572 : 132 : for (can = symtab->first_asm_symbol (); can; can = can->next)
2573 : : {
2574 : 66 : if (TREE_CODE (can->asm_str) != STRING_CST)
2575 : : {
2576 : 0 : sorry_at (EXPR_LOCATION (can->asm_str),
2577 : : "LTO streaming of toplevel extended %<asm%> "
2578 : : "unimplemented");
2579 : 0 : continue;
2580 : : }
2581 : 66 : streamer_write_string_cst (ob, ob->main_stream, can->asm_str);
2582 : 66 : streamer_write_hwi (ob, can->order);
2583 : : }
2584 : :
2585 : 66 : streamer_write_string_cst (ob, ob->main_stream, NULL_TREE);
2586 : :
2587 : 66 : section_name = lto_get_section_name (LTO_section_asm, NULL, 0, NULL);
2588 : 66 : lto_begin_section (section_name, !flag_wpa);
2589 : 66 : free (section_name);
2590 : :
2591 : : /* The entire header stream is computed here. */
2592 : 66 : memset (&header, 0, sizeof (header));
2593 : :
2594 : 66 : header.main_size = ob->main_stream->total_size;
2595 : 66 : header.string_size = ob->string_stream->total_size;
2596 : 66 : lto_write_data (&header, sizeof header);
2597 : :
2598 : : /* Put all of the gimple and the string table out the asm file as a
2599 : : block of text. */
2600 : 66 : lto_write_stream (ob->main_stream);
2601 : 66 : lto_write_stream (ob->string_stream);
2602 : :
2603 : 66 : lto_end_section ();
2604 : :
2605 : 66 : destroy_output_block (ob);
2606 : : }
2607 : :
2608 : :
2609 : : /* Copy the function body or variable constructor of NODE without deserializing. */
2610 : :
2611 : : static void
2612 : 34183 : copy_function_or_variable (struct symtab_node *node, int output_order)
2613 : : {
2614 : 34183 : tree function = node->decl;
2615 : 34183 : struct lto_file_decl_data *file_data = node->lto_file_data;
2616 : 34183 : const char *data;
2617 : 34183 : size_t len;
2618 : 34183 : const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (function));
2619 : 34183 : char *section_name =
2620 : 34183 : lto_get_section_name (LTO_section_function_body, name, output_order, NULL);
2621 : 34183 : size_t i, j;
2622 : 34183 : struct lto_in_decl_state *in_state;
2623 : 34183 : struct lto_out_decl_state *out_state = lto_get_out_decl_state ();
2624 : :
2625 : 34183 : if (streamer_dump_file)
2626 : 0 : fprintf (streamer_dump_file, "Copying section for %s\n", name);
2627 : 34183 : lto_begin_section (section_name, false);
2628 : 34183 : free (section_name);
2629 : :
2630 : : /* We may have renamed the declaration, e.g., a static function. */
2631 : 34183 : name = lto_get_decl_name_mapping (file_data, name);
2632 : :
2633 : 68366 : data = lto_get_raw_section_data (file_data, LTO_section_function_body,
2634 : 34183 : name, node->order - file_data->order_base,
2635 : : &len);
2636 : 34183 : gcc_assert (data);
2637 : :
2638 : : /* Do a bit copy of the function body. */
2639 : 34183 : lto_write_raw_data (data, len);
2640 : :
2641 : : /* Copy decls. */
2642 : 34183 : in_state =
2643 : 34183 : lto_get_function_in_decl_state (node->lto_file_data, function);
2644 : 34183 : out_state->compressed = in_state->compressed;
2645 : 34183 : gcc_assert (in_state);
2646 : :
2647 : 68366 : for (i = 0; i < LTO_N_DECL_STREAMS; i++)
2648 : : {
2649 : 34183 : size_t n = vec_safe_length (in_state->streams[i]);
2650 : 34183 : vec<tree, va_gc> *trees = in_state->streams[i];
2651 : 34183 : struct lto_tree_ref_encoder *encoder = &(out_state->streams[i]);
2652 : :
2653 : : /* The out state must have the same indices and the in state.
2654 : : So just copy the vector. All the encoders in the in state
2655 : : must be empty where we reach here. */
2656 : 34183 : gcc_assert (lto_tree_ref_encoder_size (encoder) == 0);
2657 : 34183 : encoder->trees.reserve_exact (n);
2658 : 511044 : for (j = 0; j < n; j++)
2659 : 442678 : encoder->trees.safe_push ((*trees)[j]);
2660 : : }
2661 : :
2662 : 34183 : lto_free_raw_section_data (file_data, LTO_section_function_body, name,
2663 : : data, len);
2664 : 34183 : lto_end_section ();
2665 : 34183 : }
2666 : :
2667 : : /* Wrap symbol references in *TP inside a type-preserving MEM_REF. */
2668 : :
2669 : : static tree
2670 : 789901 : wrap_refs (tree *tp, int *ws, void *)
2671 : : {
2672 : 789901 : tree t = *tp;
2673 : 789901 : if (handled_component_p (t)
2674 : 174 : && VAR_P (TREE_OPERAND (t, 0))
2675 : 118 : && TREE_PUBLIC (TREE_OPERAND (t, 0)))
2676 : : {
2677 : 81 : tree decl = TREE_OPERAND (t, 0);
2678 : 81 : tree ptrtype = build_pointer_type (TREE_TYPE (decl));
2679 : 81 : TREE_OPERAND (t, 0) = build2 (MEM_REF, TREE_TYPE (decl),
2680 : : build1 (ADDR_EXPR, ptrtype, decl),
2681 : : build_int_cst (ptrtype, 0));
2682 : 81 : TREE_THIS_VOLATILE (TREE_OPERAND (t, 0)) = TREE_THIS_VOLATILE (decl);
2683 : 81 : *ws = 0;
2684 : : }
2685 : 789820 : else if (TREE_CODE (t) == CONSTRUCTOR)
2686 : : ;
2687 : 572536 : else if (!EXPR_P (t))
2688 : 333103 : *ws = 0;
2689 : 789901 : return NULL_TREE;
2690 : : }
2691 : :
2692 : : /* Remove functions that are no longer used from offload_funcs, and mark the
2693 : : remaining ones with DECL_PRESERVE_P. */
2694 : :
2695 : : static void
2696 : 32846 : prune_offload_funcs (void)
2697 : : {
2698 : 32846 : if (!offload_funcs)
2699 : 32846 : return;
2700 : :
2701 : 0 : unsigned ix, ix2;
2702 : 0 : tree *elem_ptr;
2703 : 0 : VEC_ORDERED_REMOVE_IF (*offload_funcs, ix, ix2, elem_ptr,
2704 : : cgraph_node::get (*elem_ptr) == NULL);
2705 : :
2706 : : tree fn_decl;
2707 : 0 : FOR_EACH_VEC_ELT (*offload_funcs, ix, fn_decl)
2708 : 0 : DECL_PRESERVE_P (fn_decl) = 1;
2709 : : }
2710 : :
2711 : : /* Produce LTO section that contains global information
2712 : : about LTO bytecode. */
2713 : :
2714 : : static void
2715 : 32846 : produce_lto_section ()
2716 : : {
2717 : : /* Stream LTO meta section. */
2718 : 32846 : output_block *ob = create_output_block (LTO_section_lto);
2719 : :
2720 : 32846 : char * section_name = lto_get_section_name (LTO_section_lto, NULL, 0, NULL);
2721 : 32846 : lto_begin_section (section_name, false);
2722 : 32846 : free (section_name);
2723 : :
2724 : : #ifdef HAVE_ZSTD_H
2725 : 32846 : lto_compression compression = ZSTD;
2726 : : #else
2727 : : lto_compression compression = ZLIB;
2728 : : #endif
2729 : :
2730 : 32846 : bool slim_object = flag_generate_lto && !flag_fat_lto_objects;
2731 : 32846 : lto_section s
2732 : 32846 : = { LTO_major_version, LTO_minor_version, slim_object, 0, 0 };
2733 : 32846 : s.set_compression (compression);
2734 : 32846 : lto_write_data (&s, sizeof s);
2735 : 32846 : lto_end_section ();
2736 : 32846 : destroy_output_block (ob);
2737 : 32846 : }
2738 : :
2739 : : /* Compare symbols to get them sorted by filename (to optimize streaming) */
2740 : :
2741 : : static int
2742 : 3345134 : cmp_symbol_files (const void *pn1, const void *pn2, void *id_map_)
2743 : : {
2744 : 3345134 : const symtab_node *n1 = *(const symtab_node * const *)pn1;
2745 : 3345134 : const symtab_node *n2 = *(const symtab_node * const *)pn2;
2746 : 3345134 : hash_map<lto_file_decl_data *, int> *id_map
2747 : : = (hash_map<lto_file_decl_data *, int> *)id_map_;
2748 : :
2749 : 3345134 : int file_order1 = n1->lto_file_data ? n1->lto_file_data->order : -1;
2750 : 3345134 : int file_order2 = n2->lto_file_data ? n2->lto_file_data->order : -1;
2751 : :
2752 : : /* Order files same way as they appeared in the command line to reduce
2753 : : seeking while copying sections. */
2754 : 3345134 : if (file_order1 != file_order2)
2755 : 42541 : return file_order1 - file_order2;
2756 : :
2757 : : /* Order within static library. */
2758 : 3302593 : if (n1->lto_file_data && n1->lto_file_data->id != n2->lto_file_data->id)
2759 : 8906 : return *id_map->get (n1->lto_file_data) - *id_map->get (n2->lto_file_data);
2760 : :
2761 : : /* And finaly order by the definition order. */
2762 : 3293687 : return n1->order - n2->order;
2763 : : }
2764 : :
2765 : : /* Compare ints, callback for qsort. */
2766 : :
2767 : : static int
2768 : 31831447 : cmp_int (const void *a, const void *b)
2769 : : {
2770 : 31831447 : int ia = *(int const*) a;
2771 : 31831447 : int ib = *(int const*) b;
2772 : 31831447 : return ia - ib;
2773 : : }
2774 : :
2775 : : /* Create order mapping independent on symbols outside of the partition.
2776 : : Results in stable order values for incremental LTO.
2777 : :
2778 : : Remapping is not done in place, because symbols can be used
2779 : : by multiple partitions. */
2780 : :
2781 : : static void
2782 : 32846 : create_order_remap (lto_symtab_encoder_t encoder)
2783 : : {
2784 : 32846 : auto_vec<int> orders;
2785 : 32846 : unsigned i;
2786 : 32846 : struct asm_node* anode;
2787 : 32846 : encoder->order_remap = new hash_map<int_hash<int, -1, -2>, int>;
2788 : 32846 : unsigned n_nodes = lto_symtab_encoder_size (encoder);
2789 : :
2790 : 739840 : for (i = 0; i < n_nodes; i++)
2791 : 706994 : orders.safe_push (lto_symtab_encoder_deref (encoder, i)->order);
2792 : :
2793 : 32846 : if (!asm_nodes_output)
2794 : : {
2795 : 32547 : for (anode = symtab->first_asm_symbol (); anode; anode = anode->next)
2796 : 66 : orders.safe_push (anode->order);
2797 : : }
2798 : :
2799 : 32846 : orders.qsort (cmp_int);
2800 : 32846 : int ord = 0;
2801 : 32846 : int last_order = -1;
2802 : 739906 : for (i = 0; i < orders.length (); i++)
2803 : : {
2804 : 707060 : int order = orders[i];
2805 : 707060 : if (order != last_order)
2806 : : {
2807 : 678811 : last_order = order;
2808 : 678811 : encoder->order_remap->put (order, ord);
2809 : 678811 : ord++;
2810 : : }
2811 : : }
2812 : :
2813 : : /* Asm nodes are currently always output only into first partition.
2814 : : We can remap already here. */
2815 : 32846 : if (!asm_nodes_output)
2816 : : {
2817 : 32547 : for (anode = symtab->first_asm_symbol (); anode; anode = anode->next)
2818 : 66 : anode->order = *encoder->order_remap->get (anode->order);
2819 : : }
2820 : 32846 : }
2821 : :
2822 : : /* Main entry point from the pass manager. */
2823 : :
2824 : : void
2825 : 32846 : lto_output (void)
2826 : : {
2827 : 32846 : struct lto_out_decl_state *decl_state;
2828 : 32846 : bitmap output = NULL;
2829 : 32846 : bitmap_obstack output_obstack;
2830 : 32846 : unsigned int i, n_nodes;
2831 : 32846 : lto_symtab_encoder_t encoder = lto_get_out_decl_state ()->symtab_node_encoder;
2832 : 32846 : auto_vec<symtab_node *> symbols_to_copy;
2833 : :
2834 : 32846 : create_order_remap (encoder);
2835 : :
2836 : 32846 : prune_offload_funcs ();
2837 : :
2838 : 32846 : if (flag_checking)
2839 : : {
2840 : 32840 : bitmap_obstack_initialize (&output_obstack);
2841 : 32840 : output = BITMAP_ALLOC (&output_obstack);
2842 : : }
2843 : :
2844 : : /* Initialize the streamer. */
2845 : 32846 : lto_streamer_init ();
2846 : :
2847 : 32846 : produce_lto_section ();
2848 : :
2849 : 32846 : n_nodes = lto_symtab_encoder_size (encoder);
2850 : : /* Prepare vector of functions to output and then sort it to optimize
2851 : : section copying. */
2852 : 739840 : for (i = 0; i < n_nodes; i++)
2853 : : {
2854 : 706994 : symtab_node *snode = lto_symtab_encoder_deref (encoder, i);
2855 : 706994 : if (snode->alias)
2856 : 12797 : continue;
2857 : 694197 : if (cgraph_node *node = dyn_cast <cgraph_node *> (snode))
2858 : : {
2859 : 410413 : if (lto_symtab_encoder_encode_body_p (encoder, node)
2860 : 410413 : && !node->clone_of)
2861 : 136419 : symbols_to_copy.safe_push (node);
2862 : : }
2863 : 990778 : else if (varpool_node *node = dyn_cast <varpool_node *> (snode))
2864 : : {
2865 : : /* Wrap symbol references inside the ctor in a type
2866 : : preserving MEM_REF. */
2867 : 283784 : tree ctor = DECL_INITIAL (node->decl);
2868 : 283784 : if (ctor && !in_lto_p)
2869 : 18998 : walk_tree (&ctor, wrap_refs, NULL, NULL);
2870 : 283784 : if (get_symbol_initial_value (encoder, node->decl) == error_mark_node
2871 : 283784 : && lto_symtab_encoder_encode_initializer_p (encoder, node))
2872 : 15241 : symbols_to_copy.safe_push (node);
2873 : : }
2874 : : }
2875 : : /* Map the section hash to an order it appears in symbols_to_copy
2876 : : since we want to sort same ID symbols next to each other but need
2877 : : to avoid making overall order depend on the actual hash value. */
2878 : 32846 : int order = 0;
2879 : 32846 : hash_map<lto_file_decl_data *, int> id_map;
2880 : 184506 : for (i = 0; i < symbols_to_copy.length (); ++i)
2881 : : {
2882 : 151660 : symtab_node *snode = symbols_to_copy[i];
2883 : 151660 : if (snode->lto_file_data)
2884 : : {
2885 : 34183 : bool existed_p = false;
2886 : 34183 : int &ord = id_map.get_or_insert (snode->lto_file_data, &existed_p);
2887 : 34183 : if (!existed_p)
2888 : 9411 : ord = order++;
2889 : : }
2890 : : }
2891 : 32846 : symbols_to_copy.sort (cmp_symbol_files, (void *)&id_map);
2892 : 184506 : for (i = 0; i < symbols_to_copy.length (); i++)
2893 : : {
2894 : 151660 : symtab_node *snode = symbols_to_copy[i];
2895 : 151660 : cgraph_node *cnode;
2896 : 151660 : varpool_node *vnode;
2897 : :
2898 : 151660 : int output_order = *encoder->order_remap->get (snode->order);
2899 : :
2900 : 151660 : if (flag_checking)
2901 : 151658 : gcc_assert (bitmap_set_bit (output, DECL_UID (snode->decl)));
2902 : :
2903 : 151660 : decl_state = lto_new_out_decl_state ();
2904 : 151660 : lto_push_out_decl_state (decl_state);
2905 : :
2906 : 151660 : if ((cnode = dyn_cast <cgraph_node *> (snode))
2907 : 136419 : && (gimple_has_body_p (cnode->decl)
2908 : 29901 : || (!flag_wpa
2909 : 288 : && flag_incremental_link != INCREMENTAL_LINK_LTO)
2910 : : /* Thunks have no body but they may be synthetized
2911 : : at WPA time. */
2912 : 29755 : || DECL_ARGUMENTS (cnode->decl)))
2913 : 106665 : output_function (cnode, output_order);
2914 : 44995 : else if ((vnode = dyn_cast <varpool_node *> (snode))
2915 : 15241 : && (DECL_INITIAL (vnode->decl) != error_mark_node
2916 : 4429 : || (!flag_wpa
2917 : 43 : && flag_incremental_link != INCREMENTAL_LINK_LTO)))
2918 : 10812 : output_constructor (vnode, output_order);
2919 : : else
2920 : 34183 : copy_function_or_variable (snode, output_order);
2921 : 151660 : gcc_assert (lto_get_out_decl_state () == decl_state);
2922 : 151660 : lto_pop_out_decl_state ();
2923 : 151660 : lto_record_function_out_decl_state (snode->decl, decl_state);
2924 : : }
2925 : :
2926 : : /* Emit the callgraph after emitting function bodies. This needs to
2927 : : be done now to make sure that all the statements in every function
2928 : : have been renumbered so that edges can be associated with call
2929 : : statements using the statement UIDs. */
2930 : 32846 : output_symtab ();
2931 : :
2932 : 32846 : if (lto_get_out_decl_state ()->output_offload_tables_p)
2933 : 8633 : output_offload_tables ();
2934 : :
2935 : 32846 : if (flag_checking)
2936 : : {
2937 : 32840 : BITMAP_FREE (output);
2938 : 32840 : bitmap_obstack_release (&output_obstack);
2939 : : }
2940 : 32846 : }
2941 : :
2942 : : /* Write each node in encoded by ENCODER to OB, as well as those reachable
2943 : : from it and required for correct representation of its semantics.
2944 : : Each node in ENCODER must be a global declaration or a type. A node
2945 : : is written only once, even if it appears multiple times in the
2946 : : vector. Certain transitively-reachable nodes, such as those
2947 : : representing expressions, may be duplicated, but such nodes
2948 : : must not appear in ENCODER itself. */
2949 : :
2950 : : static void
2951 : 184506 : write_global_stream (struct output_block *ob,
2952 : : struct lto_tree_ref_encoder *encoder)
2953 : : {
2954 : 184506 : tree t;
2955 : 184506 : size_t index;
2956 : 184506 : const size_t size = lto_tree_ref_encoder_size (encoder);
2957 : :
2958 : 2780949 : for (index = 0; index < size; index++)
2959 : : {
2960 : 2596443 : t = lto_tree_ref_encoder_get_tree (encoder, index);
2961 : 2596443 : if (streamer_dump_file)
2962 : : {
2963 : 176 : fprintf (streamer_dump_file, " %i:", (int)index);
2964 : 176 : print_node_brief (streamer_dump_file, "", t, 4);
2965 : 176 : fprintf (streamer_dump_file, "\n");
2966 : : }
2967 : 2596443 : if (!streamer_tree_cache_lookup (ob->writer_cache, t, NULL))
2968 : 915938 : stream_write_tree (ob, t, false);
2969 : : }
2970 : 184506 : }
2971 : :
2972 : :
2973 : : /* Write a sequence of indices into the globals vector corresponding
2974 : : to the trees in ENCODER. These are used by the reader to map the
2975 : : indices used to refer to global entities within function bodies to
2976 : : their referents. */
2977 : :
2978 : : static void
2979 : 184506 : write_global_references (struct output_block *ob,
2980 : : struct lto_tree_ref_encoder *encoder)
2981 : : {
2982 : 184506 : tree t;
2983 : 184506 : uint32_t index;
2984 : 184506 : const uint32_t size = lto_tree_ref_encoder_size (encoder);
2985 : :
2986 : : /* Write size and slot indexes as 32-bit unsigned numbers. */
2987 : 184506 : uint32_t *data = XNEWVEC (uint32_t, size + 1);
2988 : 184506 : data[0] = size;
2989 : :
2990 : 2780949 : for (index = 0; index < size; index++)
2991 : : {
2992 : 2596443 : unsigned slot_num;
2993 : :
2994 : 2596443 : t = lto_tree_ref_encoder_get_tree (encoder, index);
2995 : 2596443 : streamer_tree_cache_lookup (ob->writer_cache, t, &slot_num);
2996 : 2596443 : gcc_assert (slot_num != (unsigned)-1);
2997 : 2596443 : data[index + 1] = slot_num;
2998 : : }
2999 : :
3000 : 184506 : lto_write_data (data, sizeof (int32_t) * (size + 1));
3001 : 184506 : free (data);
3002 : 184506 : }
3003 : :
3004 : :
3005 : : /* Write all the streams in an lto_out_decl_state STATE using
3006 : : output block OB and output stream OUT_STREAM. */
3007 : :
3008 : : void
3009 : 184506 : lto_output_decl_state_streams (struct output_block *ob,
3010 : : struct lto_out_decl_state *state)
3011 : : {
3012 : 184506 : int i;
3013 : :
3014 : 369012 : for (i = 0; i < LTO_N_DECL_STREAMS; i++)
3015 : 184506 : write_global_stream (ob, &state->streams[i]);
3016 : 184506 : }
3017 : :
3018 : :
3019 : : /* Write all the references in an lto_out_decl_state STATE using
3020 : : output block OB and output stream OUT_STREAM. */
3021 : :
3022 : : void
3023 : 184506 : lto_output_decl_state_refs (struct output_block *ob,
3024 : : struct lto_out_decl_state *state)
3025 : : {
3026 : 184506 : unsigned i;
3027 : 184506 : unsigned ref;
3028 : 184506 : tree decl;
3029 : :
3030 : : /* Write reference to FUNCTION_DECL. If there is not function,
3031 : : write reference to void_type_node. */
3032 : 184506 : decl = (state->fn_decl) ? state->fn_decl : void_type_node;
3033 : 184506 : streamer_tree_cache_lookup (ob->writer_cache, decl, &ref);
3034 : 184506 : gcc_assert (ref != (unsigned)-1);
3035 : 184506 : ref = ref * 2 + (state->compressed ? 1 : 0);
3036 : 184506 : lto_write_data (&ref, sizeof (uint32_t));
3037 : :
3038 : 553518 : for (i = 0; i < LTO_N_DECL_STREAMS; i++)
3039 : 184506 : write_global_references (ob, &state->streams[i]);
3040 : 184506 : }
3041 : :
3042 : :
3043 : : /* Return the written size of STATE. */
3044 : :
3045 : : static size_t
3046 : 184506 : lto_out_decl_state_written_size (struct lto_out_decl_state *state)
3047 : : {
3048 : 184506 : int i;
3049 : 184506 : size_t size;
3050 : :
3051 : 184506 : size = sizeof (int32_t); /* fn_ref. */
3052 : 0 : for (i = 0; i < LTO_N_DECL_STREAMS; i++)
3053 : : {
3054 : 184506 : size += sizeof (int32_t); /* vector size. */
3055 : 0 : size += (lto_tree_ref_encoder_size (&state->streams[i])
3056 : 0 : * sizeof (int32_t));
3057 : : }
3058 : 184506 : return size;
3059 : : }
3060 : :
3061 : :
3062 : : /* Write symbol T into STREAM in CACHE. SEEN specifies symbols we wrote
3063 : : so far. */
3064 : :
3065 : : static void
3066 : 540970 : write_symbol (struct streamer_tree_cache_d *cache,
3067 : : tree t, hash_set<const char *> *seen, bool alias)
3068 : : {
3069 : 540970 : const char *name;
3070 : 540970 : enum gcc_plugin_symbol_kind kind;
3071 : 540970 : enum gcc_plugin_symbol_visibility visibility = GCCPV_DEFAULT;
3072 : 540970 : unsigned slot_num;
3073 : 540970 : uint64_t size;
3074 : 540970 : const char *comdat;
3075 : 540970 : unsigned char c;
3076 : :
3077 : 540970 : gcc_assert (VAR_OR_FUNCTION_DECL_P (t));
3078 : :
3079 : 540970 : name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (t));
3080 : :
3081 : : /* This behaves like assemble_name_raw in varasm.cc, performing the
3082 : : same name manipulations that ASM_OUTPUT_LABELREF does. */
3083 : 540970 : name = IDENTIFIER_POINTER ((*targetm.asm_out.mangle_assembler_name) (name));
3084 : :
3085 : 540970 : if (seen->add (name))
3086 : 769 : return;
3087 : :
3088 : 540201 : streamer_tree_cache_lookup (cache, t, &slot_num);
3089 : 540201 : gcc_assert (slot_num != (unsigned)-1);
3090 : :
3091 : 540201 : if (DECL_EXTERNAL (t))
3092 : : {
3093 : 214664 : if (DECL_WEAK (t))
3094 : : kind = GCCPK_WEAKUNDEF;
3095 : : else
3096 : 214635 : kind = GCCPK_UNDEF;
3097 : : }
3098 : : else
3099 : : {
3100 : 325537 : if (DECL_WEAK (t))
3101 : : kind = GCCPK_WEAKDEF;
3102 : 313765 : else if (DECL_COMMON (t))
3103 : : kind = GCCPK_COMMON;
3104 : : else
3105 : 313704 : kind = GCCPK_DEF;
3106 : :
3107 : : /* When something is defined, it should have node attached. */
3108 : 325537 : gcc_assert (alias || !VAR_P (t) || varpool_node::get (t)->definition);
3109 : 325537 : gcc_assert (alias || TREE_CODE (t) != FUNCTION_DECL
3110 : : || (cgraph_node::get (t)
3111 : : && cgraph_node::get (t)->definition));
3112 : : }
3113 : :
3114 : : /* Imitate what default_elf_asm_output_external do.
3115 : : When symbol is external, we need to output it with DEFAULT visibility
3116 : : when compiling with -fvisibility=default, while with HIDDEN visibility
3117 : : when symbol has attribute (visibility("hidden")) specified.
3118 : : targetm.binds_local_p check DECL_VISIBILITY_SPECIFIED and gets this
3119 : : right. */
3120 : :
3121 : 540201 : if (DECL_EXTERNAL (t)
3122 : 540201 : && !targetm.binds_local_p (t))
3123 : : visibility = GCCPV_DEFAULT;
3124 : : else
3125 : 325589 : switch (DECL_VISIBILITY (t))
3126 : : {
3127 : : case VISIBILITY_DEFAULT:
3128 : : visibility = GCCPV_DEFAULT;
3129 : : break;
3130 : : case VISIBILITY_PROTECTED:
3131 : 540201 : visibility = GCCPV_PROTECTED;
3132 : : break;
3133 : : case VISIBILITY_HIDDEN:
3134 : : visibility = GCCPV_HIDDEN;
3135 : : break;
3136 : : case VISIBILITY_INTERNAL:
3137 : : visibility = GCCPV_INTERNAL;
3138 : : break;
3139 : : }
3140 : :
3141 : 540201 : if (kind == GCCPK_COMMON
3142 : 61 : && DECL_SIZE_UNIT (t)
3143 : 540262 : && TREE_CODE (DECL_SIZE_UNIT (t)) == INTEGER_CST)
3144 : 61 : size = TREE_INT_CST_LOW (DECL_SIZE_UNIT (t));
3145 : : else
3146 : 540140 : size = 0;
3147 : :
3148 : 540201 : if (DECL_ONE_ONLY (t))
3149 : 11730 : comdat = IDENTIFIER_POINTER (decl_comdat_group_id (t));
3150 : : else
3151 : : comdat = "";
3152 : :
3153 : 540201 : lto_write_data (name, strlen (name) + 1);
3154 : 540201 : lto_write_data (comdat, strlen (comdat) + 1);
3155 : 540201 : c = (unsigned char) kind;
3156 : 540201 : lto_write_data (&c, 1);
3157 : 540201 : c = (unsigned char) visibility;
3158 : 540201 : lto_write_data (&c, 1);
3159 : 540201 : lto_write_data (&size, 8);
3160 : 540201 : lto_write_data (&slot_num, 4);
3161 : : }
3162 : :
3163 : : /* Write extension information for symbols (symbol type, section flags). */
3164 : :
3165 : : static void
3166 : 540970 : write_symbol_extension_info (tree t)
3167 : : {
3168 : 540970 : unsigned char c;
3169 : 540970 : c = ((unsigned char) TREE_CODE (t) == VAR_DECL
3170 : : ? GCCST_VARIABLE : GCCST_FUNCTION);
3171 : 540970 : lto_write_data (&c, 1);
3172 : 540970 : unsigned char section_kind = 0;
3173 : 540970 : if (VAR_P (t))
3174 : : {
3175 : 232812 : section *s = get_variable_section (t, false);
3176 : 232812 : if (s->common.flags & SECTION_BSS)
3177 : 223095 : section_kind |= GCCSSK_BSS;
3178 : : }
3179 : 540970 : lto_write_data (§ion_kind, 1);
3180 : 540970 : }
3181 : :
3182 : : /* Write an IL symbol table to OB.
3183 : : SET and VSET are cgraph/varpool node sets we are outputting. */
3184 : :
3185 : : static unsigned int
3186 : 23852 : produce_symtab (struct output_block *ob)
3187 : : {
3188 : 23852 : unsigned int streamed_symbols = 0;
3189 : 23852 : struct streamer_tree_cache_d *cache = ob->writer_cache;
3190 : 23852 : char *section_name = lto_get_section_name (LTO_section_symtab, NULL, 0, NULL);
3191 : 23852 : lto_symtab_encoder_t encoder = ob->decl_state->symtab_node_encoder;
3192 : 23852 : lto_symtab_encoder_iterator lsei;
3193 : :
3194 : 23852 : lto_begin_section (section_name, false);
3195 : 23852 : free (section_name);
3196 : :
3197 : 23852 : hash_set<const char *> seen;
3198 : :
3199 : : /* Write the symbol table.
3200 : : First write everything defined and then all declarations.
3201 : : This is necessary to handle cases where we have duplicated symbols. */
3202 : 23852 : for (lsei = lsei_start (encoder);
3203 : 619040 : !lsei_end_p (lsei); lsei_next (&lsei))
3204 : : {
3205 : 595188 : symtab_node *node = lsei_node (lsei);
3206 : :
3207 : 595188 : if (DECL_EXTERNAL (node->decl) || !node->output_to_lto_symbol_table_p ())
3208 : 269651 : continue;
3209 : 325537 : write_symbol (cache, node->decl, &seen, false);
3210 : 325537 : ++streamed_symbols;
3211 : : }
3212 : 619040 : for (lsei = lsei_start (encoder);
3213 : 619040 : !lsei_end_p (lsei); lsei_next (&lsei))
3214 : : {
3215 : 595188 : symtab_node *node = lsei_node (lsei);
3216 : :
3217 : 595188 : if (!DECL_EXTERNAL (node->decl) || !node->output_to_lto_symbol_table_p ())
3218 : 379755 : continue;
3219 : 215433 : write_symbol (cache, node->decl, &seen, false);
3220 : 215433 : ++streamed_symbols;
3221 : : }
3222 : :
3223 : 23852 : lto_end_section ();
3224 : :
3225 : 23852 : return streamed_symbols;
3226 : 23852 : }
3227 : :
3228 : : /* Symtab extension version. */
3229 : : #define LTO_SYMTAB_EXTENSION_VERSION 1
3230 : :
3231 : : /* Write an IL symbol table extension to OB.
3232 : : SET and VSET are cgraph/varpool node sets we are outputting. */
3233 : :
3234 : : static void
3235 : 23852 : produce_symtab_extension (struct output_block *ob,
3236 : : unsigned int previous_streamed_symbols)
3237 : : {
3238 : 23852 : unsigned int streamed_symbols = 0;
3239 : 23852 : char *section_name = lto_get_section_name (LTO_section_symtab_extension,
3240 : : NULL, 0, NULL);
3241 : 23852 : lto_symtab_encoder_t encoder = ob->decl_state->symtab_node_encoder;
3242 : 23852 : lto_symtab_encoder_iterator lsei;
3243 : :
3244 : 23852 : lto_begin_section (section_name, false);
3245 : 23852 : free (section_name);
3246 : :
3247 : 23852 : unsigned char version = LTO_SYMTAB_EXTENSION_VERSION;
3248 : 23852 : lto_write_data (&version, 1);
3249 : :
3250 : : /* Write the symbol table.
3251 : : First write everything defined and then all declarations.
3252 : : This is necessary to handle cases where we have duplicated symbols. */
3253 : 23852 : for (lsei = lsei_start (encoder);
3254 : 619040 : !lsei_end_p (lsei); lsei_next (&lsei))
3255 : : {
3256 : 595188 : symtab_node *node = lsei_node (lsei);
3257 : :
3258 : 595188 : if (DECL_EXTERNAL (node->decl) || !node->output_to_lto_symbol_table_p ())
3259 : 269651 : continue;
3260 : 325537 : write_symbol_extension_info (node->decl);
3261 : 325537 : ++streamed_symbols;
3262 : : }
3263 : 619040 : for (lsei = lsei_start (encoder);
3264 : 619040 : !lsei_end_p (lsei); lsei_next (&lsei))
3265 : : {
3266 : 595188 : symtab_node *node = lsei_node (lsei);
3267 : :
3268 : 595188 : if (!DECL_EXTERNAL (node->decl) || !node->output_to_lto_symbol_table_p ())
3269 : 379755 : continue;
3270 : 215433 : write_symbol_extension_info (node->decl);
3271 : 215433 : ++streamed_symbols;
3272 : : }
3273 : :
3274 : 23852 : gcc_assert (previous_streamed_symbols == streamed_symbols);
3275 : 23852 : lto_end_section ();
3276 : 23852 : }
3277 : :
3278 : :
3279 : : /* Init the streamer_mode_table for output, where we collect info on what
3280 : : machine_mode values have been streamed. */
3281 : : void
3282 : 32846 : lto_output_init_mode_table (void)
3283 : : {
3284 : 32846 : memset (streamer_mode_table, '\0', MAX_MACHINE_MODE);
3285 : 32846 : }
3286 : :
3287 : :
3288 : : /* Write the mode table. */
3289 : : static void
3290 : 0 : lto_write_mode_table (void)
3291 : : {
3292 : 0 : struct output_block *ob;
3293 : 0 : ob = create_output_block (LTO_section_mode_table);
3294 : 0 : bitpack_d bp = bitpack_create (ob->main_stream);
3295 : :
3296 : 0 : if (lto_stream_offload_p)
3297 : 0 : bp_pack_value (&bp, NUM_POLY_INT_COEFFS, MAX_NUM_POLY_INT_COEFFS_BITS);
3298 : :
3299 : : /* Ensure that for GET_MODE_INNER (m) != m we have
3300 : : also the inner mode marked. */
3301 : 0 : for (int i = 0; i < (int) MAX_MACHINE_MODE; i++)
3302 : 0 : if (streamer_mode_table[i])
3303 : : {
3304 : 0 : machine_mode m = (machine_mode) i;
3305 : 0 : machine_mode inner_m = GET_MODE_INNER (m);
3306 : 0 : if (inner_m != m)
3307 : 0 : streamer_mode_table[(int) inner_m] = 1;
3308 : : }
3309 : :
3310 : : /* Pack the mode_bits value within 5 bits (up to 31) in the beginning. */
3311 : 0 : unsigned mode_bits = ceil_log2 (MAX_MACHINE_MODE);
3312 : 0 : bp_pack_value (&bp, mode_bits, 5);
3313 : :
3314 : : /* First stream modes that have GET_MODE_INNER (m) == m,
3315 : : so that we can refer to them afterwards. */
3316 : 0 : for (int pass = 0; pass < 2; pass++)
3317 : 0 : for (int i = 0; i < (int) MAX_MACHINE_MODE; i++)
3318 : 0 : if (streamer_mode_table[i] && i != (int) VOIDmode && i != (int) BLKmode)
3319 : : {
3320 : 0 : machine_mode m = (machine_mode) i;
3321 : 0 : if ((GET_MODE_INNER (m) == m) ^ (pass == 0))
3322 : 0 : continue;
3323 : 0 : bp_pack_value (&bp, m, mode_bits);
3324 : 0 : bp_pack_enum (&bp, mode_class, MAX_MODE_CLASS, GET_MODE_CLASS (m));
3325 : 0 : bp_pack_poly_value (&bp, GET_MODE_SIZE (m), 16);
3326 : 0 : bp_pack_poly_value (&bp, GET_MODE_PRECISION (m), 16);
3327 : 0 : bp_pack_value (&bp, GET_MODE_INNER (m), mode_bits);
3328 : 0 : bp_pack_poly_value (&bp, GET_MODE_NUNITS (m), 16);
3329 : 0 : switch (GET_MODE_CLASS (m))
3330 : : {
3331 : 0 : case MODE_FRACT:
3332 : 0 : case MODE_UFRACT:
3333 : 0 : case MODE_ACCUM:
3334 : 0 : case MODE_UACCUM:
3335 : 0 : bp_pack_value (&bp, GET_MODE_IBIT (m), 8);
3336 : 0 : bp_pack_value (&bp, GET_MODE_FBIT (m), 8);
3337 : 0 : break;
3338 : 0 : case MODE_FLOAT:
3339 : 0 : case MODE_DECIMAL_FLOAT:
3340 : 0 : bp_pack_string (ob, &bp, REAL_MODE_FORMAT (m)->name, true);
3341 : 0 : break;
3342 : : default:
3343 : : break;
3344 : : }
3345 : 0 : bp_pack_string (ob, &bp, GET_MODE_NAME (m), true);
3346 : : }
3347 : 0 : bp_pack_value (&bp, VOIDmode, mode_bits);
3348 : :
3349 : 0 : streamer_write_bitpack (&bp);
3350 : :
3351 : 0 : char *section_name
3352 : 0 : = lto_get_section_name (LTO_section_mode_table, NULL, 0, NULL);
3353 : 0 : lto_begin_section (section_name, !flag_wpa);
3354 : 0 : free (section_name);
3355 : :
3356 : : /* The entire header stream is computed here. */
3357 : 0 : struct lto_simple_header_with_strings header;
3358 : 0 : memset (&header, 0, sizeof (header));
3359 : :
3360 : 0 : header.main_size = ob->main_stream->total_size;
3361 : 0 : header.string_size = ob->string_stream->total_size;
3362 : 0 : lto_write_data (&header, sizeof header);
3363 : :
3364 : : /* Put all of the gimple and the string table out the asm file as a
3365 : : block of text. */
3366 : 0 : lto_write_stream (ob->main_stream);
3367 : 0 : lto_write_stream (ob->string_stream);
3368 : :
3369 : 0 : lto_end_section ();
3370 : 0 : destroy_output_block (ob);
3371 : 0 : }
3372 : :
3373 : :
3374 : : /* This pass is run after all of the functions are serialized and all
3375 : : of the IPA passes have written their serialized forms. This pass
3376 : : causes the vector of all of the global decls and types used from
3377 : : this file to be written in to a section that can then be read in to
3378 : : recover these on other side. */
3379 : :
3380 : : void
3381 : 32846 : produce_asm_for_decls (void)
3382 : : {
3383 : 32846 : struct lto_out_decl_state *out_state;
3384 : 32846 : struct lto_out_decl_state *fn_out_state;
3385 : 32846 : struct lto_decl_header header;
3386 : 32846 : char *section_name;
3387 : 32846 : struct output_block *ob;
3388 : 32846 : unsigned idx, num_fns;
3389 : 32846 : size_t decl_state_size;
3390 : 32846 : int32_t num_decl_states;
3391 : :
3392 : 32846 : ob = create_output_block (LTO_section_decls);
3393 : :
3394 : 32846 : memset (&header, 0, sizeof (struct lto_decl_header));
3395 : :
3396 : 32846 : section_name = lto_get_section_name (LTO_section_decls, NULL, 0, NULL);
3397 : 32846 : lto_begin_section (section_name, !flag_wpa);
3398 : 32846 : free (section_name);
3399 : :
3400 : : /* Make string 0 be a NULL string. */
3401 : 32846 : streamer_write_char_stream (ob->string_stream, 0);
3402 : :
3403 : 32846 : gcc_assert (!alias_pairs);
3404 : :
3405 : : /* Get rid of the global decl state hash tables to save some memory. */
3406 : 32846 : out_state = lto_get_out_decl_state ();
3407 : 98538 : for (int i = 0; i < LTO_N_DECL_STREAMS; i++)
3408 : 32846 : if (out_state->streams[i].tree_hash_table)
3409 : : {
3410 : 32846 : delete out_state->streams[i].tree_hash_table;
3411 : 32846 : out_state->streams[i].tree_hash_table = NULL;
3412 : : }
3413 : :
3414 : : /* Write the global symbols. */
3415 : 32846 : if (streamer_dump_file)
3416 : 4 : fprintf (streamer_dump_file, "Outputting global stream\n");
3417 : 32846 : lto_output_decl_state_streams (ob, out_state);
3418 : 32846 : num_fns = lto_function_decl_states.length ();
3419 : 184506 : for (idx = 0; idx < num_fns; idx++)
3420 : : {
3421 : 151660 : fn_out_state =
3422 : 151660 : lto_function_decl_states[idx];
3423 : 151660 : if (streamer_dump_file)
3424 : 24 : fprintf (streamer_dump_file, "Outputting stream for %s\n",
3425 : 12 : IDENTIFIER_POINTER
3426 : : (DECL_ASSEMBLER_NAME (fn_out_state->fn_decl)));
3427 : 151660 : lto_output_decl_state_streams (ob, fn_out_state);
3428 : : }
3429 : :
3430 : : /* Currently not used. This field would allow us to preallocate
3431 : : the globals vector, so that it need not be resized as it is extended. */
3432 : 32846 : header.num_nodes = -1;
3433 : :
3434 : : /* Compute the total size of all decl out states. */
3435 : 32846 : decl_state_size = sizeof (int32_t);
3436 : 32846 : decl_state_size += lto_out_decl_state_written_size (out_state);
3437 : 184506 : for (idx = 0; idx < num_fns; idx++)
3438 : : {
3439 : 151660 : fn_out_state =
3440 : 151660 : lto_function_decl_states[idx];
3441 : 302643 : decl_state_size += lto_out_decl_state_written_size (fn_out_state);
3442 : : }
3443 : 32846 : header.decl_state_size = decl_state_size;
3444 : :
3445 : 32846 : header.main_size = ob->main_stream->total_size;
3446 : 32846 : header.string_size = ob->string_stream->total_size;
3447 : :
3448 : 32846 : lto_write_data (&header, sizeof header);
3449 : :
3450 : : /* Write the main out-decl state, followed by out-decl states of
3451 : : functions. */
3452 : 32846 : num_decl_states = num_fns + 1;
3453 : 32846 : lto_write_data (&num_decl_states, sizeof (num_decl_states));
3454 : 32846 : lto_output_decl_state_refs (ob, out_state);
3455 : 217352 : for (idx = 0; idx < num_fns; idx++)
3456 : : {
3457 : 151660 : fn_out_state = lto_function_decl_states[idx];
3458 : 151660 : lto_output_decl_state_refs (ob, fn_out_state);
3459 : : }
3460 : :
3461 : 32846 : lto_write_stream (ob->main_stream);
3462 : 32846 : lto_write_stream (ob->string_stream);
3463 : :
3464 : 32846 : lto_end_section ();
3465 : :
3466 : : /* Write the symbol table. It is used by linker to determine dependencies
3467 : : and thus we can skip it for WPA. */
3468 : 32846 : if (!flag_wpa)
3469 : : {
3470 : 23852 : unsigned int streamed_symbols = produce_symtab (ob);
3471 : 23852 : produce_symtab_extension (ob, streamed_symbols);
3472 : : }
3473 : :
3474 : : /* Write command line opts. */
3475 : 32846 : lto_write_options ();
3476 : :
3477 : : /* Deallocate memory and clean up. */
3478 : 217352 : for (idx = 0; idx < num_fns; idx++)
3479 : : {
3480 : 151660 : fn_out_state =
3481 : 151660 : lto_function_decl_states[idx];
3482 : 151660 : lto_delete_out_decl_state (fn_out_state);
3483 : : }
3484 : 32846 : lto_symtab_encoder_delete (ob->decl_state->symtab_node_encoder);
3485 : 32846 : lto_function_decl_states.release ();
3486 : 32846 : destroy_output_block (ob);
3487 : 32846 : if (lto_stream_offload_p)
3488 : 0 : lto_write_mode_table ();
3489 : 32846 : }
|