]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/lto-streamer-in.c
2019-04-15 Richard Biener <rguenther@suse.de>
[thirdparty/gcc.git] / gcc / lto-streamer-in.c
CommitLineData
7bfefa9d 1/* Read the GIMPLE representation from a file stream.
2
fbd26352 3 Copyright (C) 2009-2019 Free Software Foundation, Inc.
7bfefa9d 4 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5 Re-implemented by Diego Novillo <dnovillo@google.com>
6
7This file is part of GCC.
8
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
11Software Foundation; either version 3, or (at your option) any later
12version.
13
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
18
19You should have received a copy of the GNU General Public License
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
22
23#include "config.h"
24#include "system.h"
25#include "coretypes.h"
9ef16211 26#include "backend.h"
7c29e30e 27#include "target.h"
28#include "rtl.h"
9ef16211 29#include "tree.h"
30#include "gimple.h"
7c29e30e 31#include "cfghooks.h"
32#include "tree-pass.h"
9ef16211 33#include "ssa.h"
7c29e30e 34#include "gimple-streamer.h"
7bfefa9d 35#include "toplev.h"
dcf1a1ec 36#include "gimple-iterator.h"
073c1fd5 37#include "tree-cfg.h"
073c1fd5 38#include "tree-into-ssa.h"
39#include "tree-dfa.h"
69ee5dbb 40#include "tree-ssa.h"
7bfefa9d 41#include "except.h"
1140c305 42#include "cgraph.h"
7a569539 43#include "cfgloop.h"
7b53e714 44#include "debug.h"
7a569539 45
7bfefa9d 46
d9dd21a8 47struct freeing_string_slot_hasher : string_slot_hasher
48{
49 static inline void remove (value_type *);
50};
51
52inline void
53freeing_string_slot_hasher::remove (value_type *v)
54{
55 free (v);
56}
57
7bfefa9d 58/* The table to hold the file names. */
c1f445d2 59static hash_table<freeing_string_slot_hasher> *file_name_hash_table;
7bfefa9d 60
61
62/* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
63 number of valid tag values to check. */
64
2541503d 65void
7bfefa9d 66lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
67{
68 va_list ap;
69 int i;
70
71 va_start (ap, ntags);
72 for (i = 0; i < ntags; i++)
73 if ((unsigned) actual == va_arg (ap, unsigned))
74 {
75 va_end (ap);
76 return;
77 }
78
79 va_end (ap);
80 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
81}
82
83
284cc480 84/* Read LENGTH bytes from STREAM to ADDR. */
85
86void
87lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
88{
89 size_t i;
8a1306ed 90 unsigned char *const buffer = (unsigned char *) addr;
284cc480 91
92 for (i = 0; i < length; i++)
7f385784 93 buffer[i] = streamer_read_uchar (ib);
284cc480 94}
95
96
7bfefa9d 97/* Lookup STRING in file_name_hash_table. If found, return the existing
98 string, otherwise insert STRING as the canonical version. */
99
100static const char *
101canon_file_name (const char *string)
102{
d9dd21a8 103 string_slot **slot;
7bfefa9d 104 struct string_slot s_slot;
c56fba00 105 size_t len = strlen (string);
106
7bfefa9d 107 s_slot.s = string;
c56fba00 108 s_slot.len = len;
7bfefa9d 109
c1f445d2 110 slot = file_name_hash_table->find_slot (&s_slot, INSERT);
7bfefa9d 111 if (*slot == NULL)
112 {
7bfefa9d 113 char *saved_string;
114 struct string_slot *new_slot;
115
7bfefa9d 116 saved_string = (char *) xmalloc (len + 1);
117 new_slot = XCNEW (struct string_slot);
c56fba00 118 memcpy (saved_string, string, len + 1);
7bfefa9d 119 new_slot->s = saved_string;
c56fba00 120 new_slot->len = len;
7bfefa9d 121 *slot = new_slot;
122 return saved_string;
123 }
124 else
125 {
d9dd21a8 126 struct string_slot *old_slot = *slot;
7bfefa9d 127 return old_slot->s;
128 }
129}
130
da6f3259 131/* Pointer to currently alive instance of lto_location_cache. */
7bfefa9d 132
da6f3259 133lto_location_cache *lto_location_cache::current_cache;
7bfefa9d 134
da6f3259 135/* Sort locations in source order. Start with file from last application. */
136
137int
138lto_location_cache::cmp_loc (const void *pa, const void *pb)
139{
140 const cached_location *a = ((const cached_location *)pa);
141 const cached_location *b = ((const cached_location *)pb);
142 const char *current_file = current_cache->current_file;
143 int current_line = current_cache->current_line;
144
145 if (a->file == current_file && b->file != current_file)
146 return -1;
147 if (a->file != current_file && b->file == current_file)
148 return 1;
149 if (a->file == current_file && b->file == current_file)
150 {
151 if (a->line == current_line && b->line != current_line)
152 return -1;
153 if (a->line != current_line && b->line == current_line)
154 return 1;
155 }
156 if (a->file != b->file)
157 return strcmp (a->file, b->file);
ac07ea08 158 if (a->sysp != b->sysp)
159 return a->sysp ? 1 : -1;
da6f3259 160 if (a->line != b->line)
161 return a->line - b->line;
162 return a->col - b->col;
163}
164
165/* Apply all changes in location cache. Add locations into linemap and patch
166 trees. */
167
168bool
169lto_location_cache::apply_location_cache ()
170{
171 static const char *prev_file;
172 if (!loc_cache.length ())
173 return false;
174 if (loc_cache.length () > 1)
175 loc_cache.qsort (cmp_loc);
176
177 for (unsigned int i = 0; i < loc_cache.length (); i++)
178 {
179 struct cached_location loc = loc_cache[i];
180
181 if (current_file != loc.file)
182 linemap_add (line_table, prev_file ? LC_RENAME : LC_ENTER,
ac07ea08 183 loc.sysp, loc.file, loc.line);
da6f3259 184 else if (current_line != loc.line)
185 {
186 int max = loc.col;
187
188 for (unsigned int j = i + 1; j < loc_cache.length (); j++)
189 if (loc.file != loc_cache[j].file
190 || loc.line != loc_cache[j].line)
191 break;
192 else if (max < loc_cache[j].col)
193 max = loc_cache[j].col;
194 linemap_line_start (line_table, loc.line, max + 1);
195 }
196 gcc_assert (*loc.loc == BUILTINS_LOCATION + 1);
197 if (current_file == loc.file && current_line == loc.line
198 && current_col == loc.col)
199 *loc.loc = current_loc;
200 else
201 current_loc = *loc.loc = linemap_position_for_column (line_table,
202 loc.col);
203 current_line = loc.line;
204 prev_file = current_file = loc.file;
205 current_col = loc.col;
206 }
207 loc_cache.truncate (0);
208 accepted_length = 0;
209 return true;
210}
211
212/* Tree merging did not suceed; mark all changes in the cache as accepted. */
213
214void
215lto_location_cache::accept_location_cache ()
216{
217 gcc_assert (current_cache == this);
218 accepted_length = loc_cache.length ();
219}
220
221/* Tree merging did suceed; throw away recent changes. */
222
223void
224lto_location_cache::revert_location_cache ()
225{
226 loc_cache.truncate (accepted_length);
227}
228
229/* Read a location bitpack from input block IB and either update *LOC directly
230 or add it to the location cache.
231 It is neccesary to call apply_location_cache to get *LOC updated. */
232
233void
234lto_location_cache::input_location (location_t *loc, struct bitpack_d *bp,
235 struct data_in *data_in)
7bfefa9d 236{
da6f3259 237 static const char *stream_file;
238 static int stream_line;
239 static int stream_col;
ac07ea08 240 static bool stream_sysp;
a12c2487 241 bool file_change, line_change, column_change;
da6f3259 242
243 gcc_assert (current_cache == this);
7bfefa9d 244
43f418e7 245 *loc = bp_unpack_int_in_range (bp, "location", 0, RESERVED_LOCATION_COUNT);
246
247 if (*loc < RESERVED_LOCATION_COUNT)
248 return;
249
250 /* Keep value RESERVED_LOCATION_COUNT in *loc as linemap lookups will
251 ICE on it. */
7bfefa9d 252
a12c2487 253 file_change = bp_unpack_value (bp, 1);
ab3c0986 254 line_change = bp_unpack_value (bp, 1);
255 column_change = bp_unpack_value (bp, 1);
256
a12c2487 257 if (file_change)
ac07ea08 258 {
259 stream_file = canon_file_name (bp_unpack_string (data_in, bp));
260 stream_sysp = bp_unpack_value (bp, 1);
261 }
a12c2487 262
a12c2487 263 if (line_change)
da6f3259 264 stream_line = bp_unpack_var_len_unsigned (bp);
7bfefa9d 265
a12c2487 266 if (column_change)
da6f3259 267 stream_col = bp_unpack_var_len_unsigned (bp);
a12c2487 268
da6f3259 269 /* This optimization saves location cache operations druing gimple
270 streaming. */
271
272 if (current_file == stream_file && current_line == stream_line
ac07ea08 273 && current_col == stream_col && current_sysp == stream_sysp)
cb0ae7a9 274 {
da6f3259 275 *loc = current_loc;
276 return;
cb0ae7a9 277 }
a12c2487 278
ac07ea08 279 struct cached_location entry
280 = {stream_file, loc, stream_line, stream_col, stream_sysp};
da6f3259 281 loc_cache.safe_push (entry);
282}
283
284/* Read a location bitpack from input block IB and either update *LOC directly
285 or add it to the location cache.
286 It is neccesary to call apply_location_cache to get *LOC updated. */
287
288void
289lto_input_location (location_t *loc, struct bitpack_d *bp,
290 struct data_in *data_in)
291{
292 data_in->location_cache.input_location (loc, bp, data_in);
a12c2487 293}
294
da6f3259 295/* Read location and return it instead of going through location caching.
296 This should be used only when the resulting location is not going to be
297 discarded. */
298
299location_t
300stream_input_location_now (struct bitpack_d *bp, struct data_in *data_in)
301{
302 location_t loc;
303 stream_input_location (&loc, bp, data_in);
304 data_in->location_cache.apply_location_cache ();
305 return loc;
306}
cb0ae7a9 307
7bfefa9d 308/* Read a reference to a tree node from DATA_IN using input block IB.
309 TAG is the expected node that should be found in IB, if TAG belongs
310 to one of the indexable trees, expect to read a reference index to
311 be looked up in one of the symbol tables, otherwise read the pysical
515cf651 312 representation of the tree using stream_read_tree. FN is the
7bfefa9d 313 function scope for the read tree. */
314
2541503d 315tree
48e1416a 316lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
7bfefa9d 317 struct function *fn, enum LTO_tags tag)
318{
319 unsigned HOST_WIDE_INT ix_u;
320 tree result = NULL_TREE;
321
c40a5c1b 322 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_namelist_decl_ref);
7bfefa9d 323
324 switch (tag)
325 {
326 case LTO_type_ref:
7f385784 327 ix_u = streamer_read_uhwi (ib);
7bfefa9d 328 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
329 break;
330
331 case LTO_ssa_name_ref:
7f385784 332 ix_u = streamer_read_uhwi (ib);
f1f41a6c 333 result = (*SSANAMES (fn))[ix_u];
7bfefa9d 334 break;
335
336 case LTO_field_decl_ref:
7f385784 337 ix_u = streamer_read_uhwi (ib);
7bfefa9d 338 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
339 break;
340
341 case LTO_function_decl_ref:
7f385784 342 ix_u = streamer_read_uhwi (ib);
7bfefa9d 343 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
344 break;
345
346 case LTO_type_decl_ref:
7f385784 347 ix_u = streamer_read_uhwi (ib);
7bfefa9d 348 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
349 break;
350
351 case LTO_namespace_decl_ref:
7f385784 352 ix_u = streamer_read_uhwi (ib);
7bfefa9d 353 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
354 break;
355
356 case LTO_global_decl_ref:
357 case LTO_result_decl_ref:
358 case LTO_const_decl_ref:
359 case LTO_imported_decl_ref:
360 case LTO_label_decl_ref:
23bdc9ca 361 case LTO_translation_unit_decl_ref:
6541e9a1 362 case LTO_namelist_decl_ref:
7f385784 363 ix_u = streamer_read_uhwi (ib);
7bfefa9d 364 result = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
7bfefa9d 365 break;
366
367 default:
368 gcc_unreachable ();
369 }
370
371 gcc_assert (result);
372
373 return result;
374}
375
376
377/* Read and return a double-linked list of catch handlers from input
378 block IB, using descriptors in DATA_IN. */
379
380static struct eh_catch_d *
381lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
382 eh_catch *last_p)
383{
384 eh_catch first;
385 enum LTO_tags tag;
386
387 *last_p = first = NULL;
7f385784 388 tag = streamer_read_record_start (ib);
7bfefa9d 389 while (tag)
390 {
391 tree list;
392 eh_catch n;
393
394 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
395
396 /* Read the catch node. */
25a27413 397 n = ggc_cleared_alloc<eh_catch_d> ();
515cf651 398 n->type_list = stream_read_tree (ib, data_in);
399 n->filter_list = stream_read_tree (ib, data_in);
400 n->label = stream_read_tree (ib, data_in);
7bfefa9d 401
402 /* Register all the types in N->FILTER_LIST. */
403 for (list = n->filter_list; list; list = TREE_CHAIN (list))
404 add_type_for_runtime (TREE_VALUE (list));
405
406 /* Chain N to the end of the list. */
407 if (*last_p)
408 (*last_p)->next_catch = n;
409 n->prev_catch = *last_p;
410 *last_p = n;
411
412 /* Set the head of the list the first time through the loop. */
413 if (first == NULL)
414 first = n;
415
7f385784 416 tag = streamer_read_record_start (ib);
7bfefa9d 417 }
418
419 return first;
420}
421
422
423/* Read and return EH region IX from input block IB, using descriptors
424 in DATA_IN. */
425
426static eh_region
427input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
428{
429 enum LTO_tags tag;
430 eh_region r;
431
432 /* Read the region header. */
7f385784 433 tag = streamer_read_record_start (ib);
7bfefa9d 434 if (tag == LTO_null)
435 return NULL;
436
25a27413 437 r = ggc_cleared_alloc<eh_region_d> ();
7f385784 438 r->index = streamer_read_hwi (ib);
7bfefa9d 439
440 gcc_assert (r->index == ix);
441
442 /* Read all the region pointers as region numbers. We'll fix up
443 the pointers once the whole array has been read. */
7f385784 444 r->outer = (eh_region) (intptr_t) streamer_read_hwi (ib);
445 r->inner = (eh_region) (intptr_t) streamer_read_hwi (ib);
446 r->next_peer = (eh_region) (intptr_t) streamer_read_hwi (ib);
7bfefa9d 447
448 switch (tag)
449 {
450 case LTO_ert_cleanup:
451 r->type = ERT_CLEANUP;
452 break;
453
454 case LTO_ert_try:
455 {
456 struct eh_catch_d *last_catch;
457 r->type = ERT_TRY;
458 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
459 &last_catch);
460 r->u.eh_try.last_catch = last_catch;
461 break;
462 }
463
464 case LTO_ert_allowed_exceptions:
465 {
466 tree l;
467
468 r->type = ERT_ALLOWED_EXCEPTIONS;
515cf651 469 r->u.allowed.type_list = stream_read_tree (ib, data_in);
470 r->u.allowed.label = stream_read_tree (ib, data_in);
7f385784 471 r->u.allowed.filter = streamer_read_uhwi (ib);
7bfefa9d 472
473 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
474 add_type_for_runtime (TREE_VALUE (l));
475 }
476 break;
477
478 case LTO_ert_must_not_throw:
ec180527 479 {
480 r->type = ERT_MUST_NOT_THROW;
481 r->u.must_not_throw.failure_decl = stream_read_tree (ib, data_in);
482 bitpack_d bp = streamer_read_bitpack (ib);
483 r->u.must_not_throw.failure_loc
da6f3259 484 = stream_input_location_now (&bp, data_in);
ec180527 485 }
7bfefa9d 486 break;
487
488 default:
489 gcc_unreachable ();
490 }
491
7f385784 492 r->landing_pads = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
7bfefa9d 493
494 return r;
495}
496
497
498/* Read and return EH landing pad IX from input block IB, using descriptors
499 in DATA_IN. */
500
501static eh_landing_pad
502input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
503{
504 enum LTO_tags tag;
505 eh_landing_pad lp;
506
507 /* Read the landing pad header. */
7f385784 508 tag = streamer_read_record_start (ib);
7bfefa9d 509 if (tag == LTO_null)
510 return NULL;
511
512 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
513
25a27413 514 lp = ggc_cleared_alloc<eh_landing_pad_d> ();
7f385784 515 lp->index = streamer_read_hwi (ib);
7bfefa9d 516 gcc_assert (lp->index == ix);
7f385784 517 lp->next_lp = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
518 lp->region = (eh_region) (intptr_t) streamer_read_hwi (ib);
515cf651 519 lp->post_landing_pad = stream_read_tree (ib, data_in);
7bfefa9d 520
521 return lp;
522}
523
524
525/* After reading the EH regions, pointers to peer and children regions
526 are region numbers. This converts all these region numbers into
527 real pointers into the rematerialized regions for FN. ROOT_REGION
528 is the region number for the root EH region in FN. */
529
530static void
531fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
532{
533 unsigned i;
f1f41a6c 534 vec<eh_region, va_gc> *eh_array = fn->eh->region_array;
535 vec<eh_landing_pad, va_gc> *lp_array = fn->eh->lp_array;
7bfefa9d 536 eh_region r;
537 eh_landing_pad lp;
538
539 gcc_assert (eh_array && lp_array);
540
541 gcc_assert (root_region >= 0);
f1f41a6c 542 fn->eh->region_tree = (*eh_array)[root_region];
7bfefa9d 543
f1f41a6c 544#define FIXUP_EH_REGION(r) (r) = (*eh_array)[(HOST_WIDE_INT) (intptr_t) (r)]
545#define FIXUP_EH_LP(p) (p) = (*lp_array)[(HOST_WIDE_INT) (intptr_t) (p)]
7bfefa9d 546
547 /* Convert all the index numbers stored in pointer fields into
548 pointers to the corresponding slots in the EH region array. */
f1f41a6c 549 FOR_EACH_VEC_ELT (*eh_array, i, r)
7bfefa9d 550 {
551 /* The array may contain NULL regions. */
552 if (r == NULL)
553 continue;
554
555 gcc_assert (i == (unsigned) r->index);
556 FIXUP_EH_REGION (r->outer);
557 FIXUP_EH_REGION (r->inner);
558 FIXUP_EH_REGION (r->next_peer);
559 FIXUP_EH_LP (r->landing_pads);
560 }
561
562 /* Convert all the index numbers stored in pointer fields into
563 pointers to the corresponding slots in the EH landing pad array. */
f1f41a6c 564 FOR_EACH_VEC_ELT (*lp_array, i, lp)
7bfefa9d 565 {
566 /* The array may contain NULL landing pads. */
567 if (lp == NULL)
568 continue;
569
570 gcc_assert (i == (unsigned) lp->index);
571 FIXUP_EH_LP (lp->next_lp);
572 FIXUP_EH_REGION (lp->region);
573 }
574
575#undef FIXUP_EH_REGION
576#undef FIXUP_EH_LP
577}
578
579
580/* Initialize EH support. */
581
2541503d 582void
7bfefa9d 583lto_init_eh (void)
584{
eecdda7c 585 static bool eh_initialized_p = false;
586
587 if (eh_initialized_p)
588 return;
589
7bfefa9d 590 /* Contrary to most other FEs, we only initialize EH support when at
591 least one of the files in the set contains exception regions in
592 it. Since this happens much later than the call to init_eh in
593 lang_dependent_init, we have to set flag_exceptions and call
594 init_eh again to initialize the EH tables. */
595 flag_exceptions = 1;
596 init_eh ();
597
eecdda7c 598 eh_initialized_p = true;
7bfefa9d 599}
600
601
602/* Read the exception table for FN from IB using the data descriptors
603 in DATA_IN. */
604
605static void
606input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
607 struct function *fn)
608{
609 HOST_WIDE_INT i, root_region, len;
610 enum LTO_tags tag;
48e1416a 611
7f385784 612 tag = streamer_read_record_start (ib);
7bfefa9d 613 if (tag == LTO_null)
614 return;
615
616 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
617
618 /* If the file contains EH regions, then it was compiled with
619 -fexceptions. In that case, initialize the backend EH
620 machinery. */
eecdda7c 621 lto_init_eh ();
7bfefa9d 622
623 gcc_assert (fn->eh);
624
7f385784 625 root_region = streamer_read_hwi (ib);
7bfefa9d 626 gcc_assert (root_region == (int) root_region);
627
628 /* Read the EH region array. */
7f385784 629 len = streamer_read_hwi (ib);
7bfefa9d 630 gcc_assert (len == (int) len);
631 if (len > 0)
632 {
f1f41a6c 633 vec_safe_grow_cleared (fn->eh->region_array, len);
7bfefa9d 634 for (i = 0; i < len; i++)
635 {
636 eh_region r = input_eh_region (ib, data_in, i);
f1f41a6c 637 (*fn->eh->region_array)[i] = r;
7bfefa9d 638 }
639 }
640
641 /* Read the landing pads. */
7f385784 642 len = streamer_read_hwi (ib);
7bfefa9d 643 gcc_assert (len == (int) len);
644 if (len > 0)
645 {
f1f41a6c 646 vec_safe_grow_cleared (fn->eh->lp_array, len);
7bfefa9d 647 for (i = 0; i < len; i++)
648 {
649 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
f1f41a6c 650 (*fn->eh->lp_array)[i] = lp;
7bfefa9d 651 }
652 }
653
654 /* Read the runtime type data. */
7f385784 655 len = streamer_read_hwi (ib);
7bfefa9d 656 gcc_assert (len == (int) len);
657 if (len > 0)
658 {
f1f41a6c 659 vec_safe_grow_cleared (fn->eh->ttype_data, len);
7bfefa9d 660 for (i = 0; i < len; i++)
661 {
515cf651 662 tree ttype = stream_read_tree (ib, data_in);
f1f41a6c 663 (*fn->eh->ttype_data)[i] = ttype;
7bfefa9d 664 }
665 }
666
667 /* Read the table of action chains. */
7f385784 668 len = streamer_read_hwi (ib);
7bfefa9d 669 gcc_assert (len == (int) len);
670 if (len > 0)
671 {
672 if (targetm.arm_eabi_unwinder)
673 {
f1f41a6c 674 vec_safe_grow_cleared (fn->eh->ehspec_data.arm_eabi, len);
7bfefa9d 675 for (i = 0; i < len; i++)
676 {
515cf651 677 tree t = stream_read_tree (ib, data_in);
f1f41a6c 678 (*fn->eh->ehspec_data.arm_eabi)[i] = t;
7bfefa9d 679 }
680 }
681 else
682 {
f1f41a6c 683 vec_safe_grow_cleared (fn->eh->ehspec_data.other, len);
7bfefa9d 684 for (i = 0; i < len; i++)
685 {
7f385784 686 uchar c = streamer_read_uchar (ib);
f1f41a6c 687 (*fn->eh->ehspec_data.other)[i] = c;
7bfefa9d 688 }
689 }
690 }
691
692 /* Reconstruct the EH region tree by fixing up the peer/children
693 pointers. */
694 fixup_eh_region_pointers (fn, root_region);
695
7f385784 696 tag = streamer_read_record_start (ib);
7bfefa9d 697 lto_tag_check_range (tag, LTO_null, LTO_null);
698}
699
700
701/* Make a new basic block with index INDEX in function FN. */
702
703static basic_block
704make_new_block (struct function *fn, unsigned int index)
705{
706 basic_block bb = alloc_block ();
707 bb->index = index;
98e6ab47 708 SET_BASIC_BLOCK_FOR_FN (fn, index, bb);
a28770e1 709 n_basic_blocks_for_fn (fn)++;
7bfefa9d 710 return bb;
711}
712
713
714/* Read the CFG for function FN from input block IB. */
715
48e1416a 716static void
9978ce6d 717input_cfg (struct lto_input_block *ib, struct data_in *data_in,
ea5d3981 718 struct function *fn)
7bfefa9d 719{
720 unsigned int bb_count;
721 basic_block p_bb;
722 unsigned int i;
723 int index;
724
725 init_empty_tree_cfg_for_function (fn);
5084b2e4 726 init_ssa_operands (fn);
7bfefa9d 727
3bedbae3 728 profile_status_for_fn (fn) = streamer_read_enum (ib, profile_status_d,
729 PROFILE_LAST);
7bfefa9d 730
7f385784 731 bb_count = streamer_read_uhwi (ib);
7bfefa9d 732
776b0663 733 last_basic_block_for_fn (fn) = bb_count;
98e6ab47 734 if (bb_count > basic_block_info_for_fn (fn)->length ())
735 vec_safe_grow_cleared (basic_block_info_for_fn (fn), bb_count);
7bfefa9d 736
dbd64d47 737 if (bb_count > label_to_block_map_for_fn (fn)->length ())
738 vec_safe_grow_cleared (label_to_block_map_for_fn (fn), bb_count);
7bfefa9d 739
7f385784 740 index = streamer_read_hwi (ib);
7bfefa9d 741 while (index != -1)
742 {
98e6ab47 743 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
7bfefa9d 744 unsigned int edge_count;
745
746 if (bb == NULL)
747 bb = make_new_block (fn, index);
748
7f385784 749 edge_count = streamer_read_uhwi (ib);
7bfefa9d 750
751 /* Connect up the CFG. */
752 for (i = 0; i < edge_count; i++)
753 {
754 unsigned int dest_index;
755 unsigned int edge_flags;
756 basic_block dest;
720cfc43 757 profile_probability probability;
7bfefa9d 758 edge e;
759
7f385784 760 dest_index = streamer_read_uhwi (ib);
720cfc43 761 probability = profile_probability::stream_in (ib);
7f385784 762 edge_flags = streamer_read_uhwi (ib);
7bfefa9d 763
98e6ab47 764 dest = BASIC_BLOCK_FOR_FN (fn, dest_index);
7bfefa9d 765
48e1416a 766 if (dest == NULL)
7bfefa9d 767 dest = make_new_block (fn, dest_index);
768
769 e = make_edge (bb, dest, edge_flags);
770 e->probability = probability;
7bfefa9d 771 }
772
7f385784 773 index = streamer_read_hwi (ib);
7bfefa9d 774 }
775
34154e27 776 p_bb = ENTRY_BLOCK_PTR_FOR_FN (fn);
7f385784 777 index = streamer_read_hwi (ib);
7bfefa9d 778 while (index != -1)
779 {
98e6ab47 780 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
7bfefa9d 781 bb->prev_bb = p_bb;
782 p_bb->next_bb = bb;
783 p_bb = bb;
7f385784 784 index = streamer_read_hwi (ib);
7bfefa9d 785 }
7a569539 786
787 /* ??? The cfgloop interface is tied to cfun. */
788 gcc_assert (cfun == fn);
789
790 /* Input the loop tree. */
791 unsigned n_loops = streamer_read_uhwi (ib);
792 if (n_loops == 0)
793 return;
794
25a27413 795 struct loops *loops = ggc_cleared_alloc<struct loops> ();
7a569539 796 init_loops_structure (fn, loops, n_loops);
41f75a99 797 set_loops_for_fn (fn, loops);
7a569539 798
799 /* Input each loop and associate it with its loop header so
800 flow_loops_find can rebuild the loop tree. */
801 for (unsigned i = 1; i < n_loops; ++i)
802 {
803 int header_index = streamer_read_hwi (ib);
804 if (header_index == -1)
805 {
806 loops->larray->quick_push (NULL);
807 continue;
808 }
809
810 struct loop *loop = alloc_loop ();
98e6ab47 811 loop->header = BASIC_BLOCK_FOR_FN (fn, header_index);
7a569539 812 loop->header->loop_father = loop;
813
814 /* Read everything copy_loop_info copies. */
815 loop->estimate_state = streamer_read_enum (ib, loop_estimation, EST_LAST);
816 loop->any_upper_bound = streamer_read_hwi (ib);
817 if (loop->any_upper_bound)
8cf48217 818 loop->nb_iterations_upper_bound = streamer_read_widest_int (ib);
8e3ffe30 819 loop->any_likely_upper_bound = streamer_read_hwi (ib);
820 if (loop->any_likely_upper_bound)
8cf48217 821 loop->nb_iterations_likely_upper_bound = streamer_read_widest_int (ib);
7a569539 822 loop->any_estimate = streamer_read_hwi (ib);
823 if (loop->any_estimate)
8cf48217 824 loop->nb_iterations_estimate = streamer_read_widest_int (ib);
7a569539 825
9978ce6d 826 /* Read OMP SIMD related info. */
827 loop->safelen = streamer_read_hwi (ib);
2a09b28c 828 loop->unroll = streamer_read_hwi (ib);
f13ef067 829 loop->owned_clique = streamer_read_hwi (ib);
eb71996d 830 loop->dont_vectorize = streamer_read_hwi (ib);
4c73695b 831 loop->force_vectorize = streamer_read_hwi (ib);
9978ce6d 832 loop->simduid = stream_read_tree (ib, data_in);
833
41f75a99 834 place_new_loop (fn, loop);
7a569539 835
836 /* flow_loops_find doesn't like loops not in the tree, hook them
837 all as siblings of the tree root temporarily. */
838 flow_loop_tree_node_add (loops->tree_root, loop);
839 }
840
841 /* Rebuild the loop tree. */
41f75a99 842 flow_loops_find (loops);
7bfefa9d 843}
844
845
7bfefa9d 846/* Read the SSA names array for function FN from DATA_IN using input
847 block IB. */
848
849static void
850input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
851 struct function *fn)
852{
853 unsigned int i, size;
854
7f385784 855 size = streamer_read_uhwi (ib);
7bfefa9d 856 init_ssanames (fn, size);
857
7f385784 858 i = streamer_read_uhwi (ib);
7bfefa9d 859 while (i)
860 {
861 tree ssa_name, name;
862 bool is_default_def;
863
864 /* Skip over the elements that had been freed. */
f1f41a6c 865 while (SSANAMES (fn)->length () < i)
866 SSANAMES (fn)->quick_push (NULL_TREE);
7bfefa9d 867
7f385784 868 is_default_def = (streamer_read_uchar (ib) != 0);
515cf651 869 name = stream_read_tree (ib, data_in);
f29d86c7 870 ssa_name = make_ssa_name_fn (fn, name, NULL);
7bfefa9d 871
872 if (is_default_def)
f29d86c7 873 {
874 set_ssa_default_def (cfun, SSA_NAME_VAR (ssa_name), ssa_name);
875 SSA_NAME_DEF_STMT (ssa_name) = gimple_build_nop ();
876 }
7bfefa9d 877
7f385784 878 i = streamer_read_uhwi (ib);
48e1416a 879 }
7bfefa9d 880}
881
7bfefa9d 882
883/* Go through all NODE edges and fixup call_stmt pointers
884 so they point to STMTS. */
885
886static void
42acab1c 887fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple **stmts,
4d044066 888 struct function *fn)
7bfefa9d 889{
75b11edb 890#define STMT_UID_NOT_IN_RANGE(uid) \
891 (gimple_stmt_max_uid (fn) < uid || uid == 0)
892
7bfefa9d 893 struct cgraph_edge *cedge;
51ce5652 894 struct ipa_ref *ref = NULL;
4d044066 895 unsigned int i;
896
7bfefa9d 897 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
4d044066 898 {
75b11edb 899 if (STMT_UID_NOT_IN_RANGE (cedge->lto_stmt_uid))
c05be867 900 fatal_error (input_location,
901 "Cgraph edge statement index out of range");
1a91d914 902 cedge->call_stmt = as_a <gcall *> (stmts[cedge->lto_stmt_uid - 1]);
4d044066 903 if (!cedge->call_stmt)
c05be867 904 fatal_error (input_location,
905 "Cgraph edge statement index not found");
4d044066 906 }
799c8711 907 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
4d044066 908 {
75b11edb 909 if (STMT_UID_NOT_IN_RANGE (cedge->lto_stmt_uid))
c05be867 910 fatal_error (input_location,
911 "Cgraph edge statement index out of range");
1a91d914 912 cedge->call_stmt = as_a <gcall *> (stmts[cedge->lto_stmt_uid - 1]);
4d044066 913 if (!cedge->call_stmt)
c05be867 914 fatal_error (input_location, "Cgraph edge statement index not found");
4d044066 915 }
51ce5652 916 for (i = 0; node->iterate_reference (i, ref); i++)
4d044066 917 if (ref->lto_stmt_uid)
918 {
75b11edb 919 if (STMT_UID_NOT_IN_RANGE (ref->lto_stmt_uid))
c05be867 920 fatal_error (input_location,
921 "Reference statement index out of range");
4d044066 922 ref->stmt = stmts[ref->lto_stmt_uid - 1];
923 if (!ref->stmt)
c05be867 924 fatal_error (input_location, "Reference statement index not found");
4d044066 925 }
7bfefa9d 926}
927
4d044066 928
7bfefa9d 929/* Fixup call_stmt pointers in NODE and all clones. */
930
931static void
42acab1c 932fixup_call_stmt_edges (struct cgraph_node *orig, gimple **stmts)
7bfefa9d 933{
934 struct cgraph_node *node;
4d044066 935 struct function *fn;
7bfefa9d 936
937 while (orig->clone_of)
938 orig = orig->clone_of;
02774f2d 939 fn = DECL_STRUCT_FUNCTION (orig->decl);
7bfefa9d 940
75b11edb 941 if (!orig->thunk.thunk_p)
942 fixup_call_stmt_edges_1 (orig, stmts, fn);
7bfefa9d 943 if (orig->clones)
944 for (node = orig->clones; node != orig;)
945 {
6a353dda 946 if (!node->thunk.thunk_p)
947 fixup_call_stmt_edges_1 (node, stmts, fn);
7bfefa9d 948 if (node->clones)
949 node = node->clones;
950 else if (node->next_sibling_clone)
951 node = node->next_sibling_clone;
952 else
953 {
954 while (node != orig && !node->next_sibling_clone)
955 node = node->clone_of;
956 if (node != orig)
957 node = node->next_sibling_clone;
958 }
959 }
960}
961
e4fc8eb2 962
963/* Input the base body of struct function FN from DATA_IN
964 using input block IB. */
7bfefa9d 965
966static void
e4fc8eb2 967input_struct_function_base (struct function *fn, struct data_in *data_in,
968 struct lto_input_block *ib)
7bfefa9d 969{
30baba90 970 struct bitpack_d bp;
2ab2ce89 971 int len;
7bfefa9d 972
e4fc8eb2 973 /* Read the static chain and non-local goto save area. */
974 fn->static_chain_decl = stream_read_tree (ib, data_in);
975 fn->nonlocal_goto_save_area = stream_read_tree (ib, data_in);
7bfefa9d 976
e4fc8eb2 977 /* Read all the local symbols. */
978 len = streamer_read_hwi (ib);
979 if (len > 0)
980 {
981 int i;
f1f41a6c 982 vec_safe_grow_cleared (fn->local_decls, len);
e4fc8eb2 983 for (i = 0; i < len; i++)
984 {
985 tree t = stream_read_tree (ib, data_in);
f1f41a6c 986 (*fn->local_decls)[i] = t;
e4fc8eb2 987 }
988 }
989
e4fc8eb2 990 /* Input the current IL state of the function. */
991 fn->curr_properties = streamer_read_uhwi (ib);
7bfefa9d 992
993 /* Read all the attributes for FN. */
7f385784 994 bp = streamer_read_bitpack (ib);
30baba90 995 fn->is_thunk = bp_unpack_value (&bp, 1);
996 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
30baba90 997 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
998 fn->returns_struct = bp_unpack_value (&bp, 1);
999 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
bc0dfc8d 1000 fn->can_delete_dead_exceptions = bp_unpack_value (&bp, 1);
30baba90 1001 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
1002 fn->after_inlining = bp_unpack_value (&bp, 1);
30baba90 1003 fn->stdarg = bp_unpack_value (&bp, 1);
1004 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
37af779a 1005 fn->has_forced_label_in_static = bp_unpack_value (&bp, 1);
30baba90 1006 fn->calls_alloca = bp_unpack_value (&bp, 1);
1007 fn->calls_setjmp = bp_unpack_value (&bp, 1);
4c73695b 1008 fn->has_force_vectorize_loops = bp_unpack_value (&bp, 1);
9978ce6d 1009 fn->has_simduid_loops = bp_unpack_value (&bp, 1);
30baba90 1010 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
1011 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
e70d82fd 1012 fn->last_clique = bp_unpack_value (&bp, sizeof (short) * 8);
ec180527 1013
1014 /* Input the function start and end loci. */
da6f3259 1015 fn->function_start_locus = stream_input_location_now (&bp, data_in);
1016 fn->function_end_locus = stream_input_location_now (&bp, data_in);
f89ca6e1 1017
1018 /* Restore the instance discriminators if present. */
1019 int instance_number = bp_unpack_value (&bp, 1);
1020 if (instance_number)
1021 {
1022 instance_number = bp_unpack_value (&bp, sizeof (int) * CHAR_BIT);
1023 maybe_create_decl_to_instance_map ()->put (fn->decl, instance_number);
1024 }
e4fc8eb2 1025}
7bfefa9d 1026
115697e0 1027
e4fc8eb2 1028/* Read the body of function FN_DECL from DATA_IN using input block IB. */
7b76dcb9 1029
e4fc8eb2 1030static void
1031input_function (tree fn_decl, struct data_in *data_in,
4df870fd 1032 struct lto_input_block *ib, struct lto_input_block *ib_cfg)
e4fc8eb2 1033{
1034 struct function *fn;
1035 enum LTO_tags tag;
42acab1c 1036 gimple **stmts;
e4fc8eb2 1037 basic_block bb;
1038 struct cgraph_node *node;
7bfefa9d 1039
e4fc8eb2 1040 tag = streamer_read_record_start (ib);
4df870fd 1041 lto_tag_check (tag, LTO_function);
1042
1043 /* Read decls for parameters and args. */
1044 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in);
1045 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in);
1046
7b53e714 1047 /* Read debug args if available. */
1048 unsigned n_debugargs = streamer_read_uhwi (ib);
1049 if (n_debugargs)
1050 {
1051 vec<tree, va_gc> **debugargs = decl_debug_args_insert (fn_decl);
1052 vec_safe_grow (*debugargs, n_debugargs);
1053 for (unsigned i = 0; i < n_debugargs; ++i)
1054 (**debugargs)[i] = stream_read_tree (ib, data_in);
1055 }
1056
4df870fd 1057 /* Read the tree of lexical scopes for the function. */
1058 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in);
5239471b 1059 unsigned block_leaf_count = streamer_read_uhwi (ib);
1060 while (block_leaf_count--)
1061 stream_read_tree (ib, data_in);
4df870fd 1062
1063 if (!streamer_read_uhwi (ib))
1064 return;
1065
1066 push_struct_function (fn_decl);
1067 fn = DECL_STRUCT_FUNCTION (fn_decl);
1068 init_tree_ssa (fn);
1069 /* We input IL in SSA form. */
1070 cfun->gimple_df->in_ssa_p = true;
e4fc8eb2 1071
1072 gimple_register_cfg_hooks ();
e4fc8eb2 1073
415d1b9a 1074 node = cgraph_node::get (fn_decl);
5037630b 1075 if (!node)
415d1b9a 1076 node = cgraph_node::create (fn_decl);
e4fc8eb2 1077 input_struct_function_base (fn, data_in, ib);
ea5d3981 1078 input_cfg (ib_cfg, data_in, fn);
7bfefa9d 1079
1080 /* Read all the SSA names. */
1081 input_ssa_names (ib, data_in, fn);
1082
1083 /* Read the exception handling regions in the function. */
1084 input_eh_regions (ib, data_in, fn);
1085
7bfefa9d 1086 gcc_assert (DECL_INITIAL (fn_decl));
1087 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
1088
7bfefa9d 1089 /* Read all the basic blocks. */
7f385784 1090 tag = streamer_read_record_start (ib);
7bfefa9d 1091 while (tag)
1092 {
c470c5a9 1093 input_bb (ib, tag, data_in, fn,
1094 node->count_materialization_scale);
7f385784 1095 tag = streamer_read_record_start (ib);
7bfefa9d 1096 }
1097
1098 /* Fix up the call statements that are mentioned in the callgraph
1099 edges. */
d55c4ba8 1100 set_gimple_stmt_max_uid (cfun, 0);
ed7d889a 1101 FOR_ALL_BB_FN (bb, cfun)
d55c4ba8 1102 {
1103 gimple_stmt_iterator gsi;
62732f86 1104 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1105 {
42acab1c 1106 gimple *stmt = gsi_stmt (gsi);
62732f86 1107 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
1108 }
d55c4ba8 1109 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
1110 {
42acab1c 1111 gimple *stmt = gsi_stmt (gsi);
d55c4ba8 1112 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
1113 }
1114 }
42acab1c 1115 stmts = (gimple **) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple *));
ed7d889a 1116 FOR_ALL_BB_FN (bb, cfun)
7bfefa9d 1117 {
62732f86 1118 gimple_stmt_iterator bsi = gsi_start_phis (bb);
1119 while (!gsi_end_p (bsi))
1120 {
42acab1c 1121 gimple *stmt = gsi_stmt (bsi);
62732f86 1122 gsi_next (&bsi);
1123 stmts[gimple_uid (stmt)] = stmt;
1124 }
1125 bsi = gsi_start_bb (bb);
a33da2f4 1126 while (!gsi_end_p (bsi))
7bfefa9d 1127 {
42acab1c 1128 gimple *stmt = gsi_stmt (bsi);
99dde1f1 1129 bool remove = false;
a33da2f4 1130 /* If we're recompiling LTO objects with debug stmts but
1131 we're not supposed to have debug stmts, remove them now.
1132 We can't remove them earlier because this would cause uid
1133 mismatches in fixups, but we can do it at this point, as
99dde1f1 1134 long as debug stmts don't require fixups.
1135 Similarly remove all IFN_*SAN_* internal calls */
1136 if (!flag_wpa)
1137 {
90567983 1138 if (is_gimple_debug (stmt)
1139 && (gimple_debug_nonbind_marker_p (stmt)
1140 ? !MAY_HAVE_DEBUG_MARKER_STMTS
1141 : !MAY_HAVE_DEBUG_BIND_STMTS))
99dde1f1 1142 remove = true;
1143 if (is_gimple_call (stmt)
1144 && gimple_call_internal_p (stmt))
1145 {
5c222558 1146 bool replace = false;
99dde1f1 1147 switch (gimple_call_internal_fn (stmt))
1148 {
1149 case IFN_UBSAN_NULL:
1150 if ((flag_sanitize
1151 & (SANITIZE_NULL | SANITIZE_ALIGNMENT)) == 0)
5c222558 1152 replace = true;
99dde1f1 1153 break;
1154 case IFN_UBSAN_BOUNDS:
1155 if ((flag_sanitize & SANITIZE_BOUNDS) == 0)
5c222558 1156 replace = true;
99dde1f1 1157 break;
1158 case IFN_UBSAN_VPTR:
1159 if ((flag_sanitize & SANITIZE_VPTR) == 0)
5c222558 1160 replace = true;
99dde1f1 1161 break;
1162 case IFN_UBSAN_OBJECT_SIZE:
1163 if ((flag_sanitize & SANITIZE_OBJECT_SIZE) == 0)
5c222558 1164 replace = true;
99dde1f1 1165 break;
b4fce8f9 1166 case IFN_UBSAN_PTR:
1167 if ((flag_sanitize & SANITIZE_POINTER_OVERFLOW) == 0)
5c222558 1168 replace = true;
b4fce8f9 1169 break;
99dde1f1 1170 case IFN_ASAN_MARK:
1171 if ((flag_sanitize & SANITIZE_ADDRESS) == 0)
5c222558 1172 replace = true;
99dde1f1 1173 break;
1174 case IFN_TSAN_FUNC_EXIT:
1175 if ((flag_sanitize & SANITIZE_THREAD) == 0)
5c222558 1176 replace = true;
99dde1f1 1177 break;
1178 default:
1179 break;
1180 }
5c222558 1181 if (replace)
1182 {
1183 gimple_call_set_internal_fn (as_a <gcall *> (stmt),
1184 IFN_NOP);
1185 update_stmt (stmt);
1186 }
99dde1f1 1187 }
1188 }
1189 if (remove)
a33da2f4 1190 {
1191 gimple_stmt_iterator gsi = bsi;
1192 gsi_next (&bsi);
99dde1f1 1193 unlink_stmt_vdef (stmt);
1194 release_defs (stmt);
a33da2f4 1195 gsi_remove (&gsi, true);
1196 }
1197 else
1198 {
1199 gsi_next (&bsi);
1200 stmts[gimple_uid (stmt)] = stmt;
90567983 1201
1202 /* Remember that the input function has begin stmt
1203 markers, so that we know to expect them when emitting
1204 debug info. */
1205 if (!cfun->debug_nonbind_markers
1206 && gimple_debug_nonbind_marker_p (stmt))
1207 cfun->debug_nonbind_markers = true;
a33da2f4 1208 }
7bfefa9d 1209 }
1210 }
1211
1212 /* Set the gimple body to the statement sequence in the entry
1213 basic block. FIXME lto, this is fairly hacky. The existence
1214 of a gimple body is used by the cgraph routines, but we should
1215 really use the presence of the CFG. */
1216 {
34154e27 1217 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs);
7bfefa9d 1218 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1219 }
1220
688b6bc6 1221 update_max_bb_count ();
90464c8b 1222 fixup_call_stmt_edges (node, stmts);
1223 execute_all_ipa_stmt_fixups (node, stmts);
7bfefa9d 1224
48e1416a 1225 update_ssa (TODO_update_ssa_only_virtuals);
8867b500 1226 free_dominance_info (CDI_DOMINATORS);
1227 free_dominance_info (CDI_POST_DOMINATORS);
7bfefa9d 1228 free (stmts);
bb251465 1229 pop_cfun ();
7bfefa9d 1230}
1231
afb0d513 1232/* Read the body of function FN_DECL from DATA_IN using input block IB. */
1233
1234static void
1235input_constructor (tree var, struct data_in *data_in,
1236 struct lto_input_block *ib)
1237{
1238 DECL_INITIAL (var) = stream_read_tree (ib, data_in);
1239}
1240
7bfefa9d 1241
7e4b741c 1242/* Read the body from DATA for function NODE and fill it in.
7bfefa9d 1243 FILE_DATA are the global decls and types. SECTION_TYPE is either
1244 LTO_section_function_body or LTO_section_static_initializer. If
1245 section type is LTO_section_function_body, FN must be the decl for
1246 that function. */
1247
48e1416a 1248static void
afb0d513 1249lto_read_body_or_constructor (struct lto_file_decl_data *file_data, struct symtab_node *node,
1250 const char *data, enum lto_section_type section_type)
7bfefa9d 1251{
1252 const struct lto_function_header *header;
1253 struct data_in *data_in;
949e5786 1254 int cfg_offset;
1255 int main_offset;
1256 int string_offset;
02774f2d 1257 tree fn_decl = node->decl;
7bfefa9d 1258
1259 header = (const struct lto_function_header *) data;
afb0d513 1260 if (TREE_CODE (node->decl) == FUNCTION_DECL)
1261 {
1262 cfg_offset = sizeof (struct lto_function_header);
1263 main_offset = cfg_offset + header->cfg_size;
1264 string_offset = main_offset + header->main_size;
afb0d513 1265 }
1266 else
1267 {
1268 main_offset = sizeof (struct lto_function_header);
1269 string_offset = main_offset + header->main_size;
afb0d513 1270 }
48e1416a 1271
7bfefa9d 1272 data_in = lto_data_in_create (file_data, data + string_offset,
1e094109 1273 header->string_size, vNULL);
7bfefa9d 1274
7bfefa9d 1275 if (section_type == LTO_section_function_body)
1276 {
7bfefa9d 1277 struct lto_in_decl_state *decl_state;
4c42fa78 1278 unsigned from;
7bfefa9d 1279
53f79206 1280 gcc_checking_assert (node);
5aabc5f2 1281
7bfefa9d 1282 /* Use the function's decl state. */
1283 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1284 gcc_assert (decl_state);
1285 file_data->current_decl_state = decl_state;
1286
7bfefa9d 1287
1288 /* Set up the struct function. */
f1f41a6c 1289 from = data_in->reader_cache->nodes.length ();
2e971afd 1290 lto_input_block ib_main (data + main_offset, header->main_size,
1291 file_data->mode_table);
afb0d513 1292 if (TREE_CODE (node->decl) == FUNCTION_DECL)
472ca566 1293 {
2e971afd 1294 lto_input_block ib_cfg (data + cfg_offset, header->cfg_size,
1295 file_data->mode_table);
472ca566 1296 input_function (fn_decl, data_in, &ib_main, &ib_cfg);
1297 }
afb0d513 1298 else
1299 input_constructor (fn_decl, data_in, &ib_main);
da6f3259 1300 data_in->location_cache.apply_location_cache ();
4c42fa78 1301 /* And fixup types we streamed locally. */
1302 {
1303 struct streamer_tree_cache_d *cache = data_in->reader_cache;
f1f41a6c 1304 unsigned len = cache->nodes.length ();
4c42fa78 1305 unsigned i;
1306 for (i = len; i-- > from;)
1307 {
8ceff600 1308 tree t = streamer_tree_cache_get_tree (cache, i);
4c42fa78 1309 if (t == NULL_TREE)
1310 continue;
1311
1312 if (TYPE_P (t))
1313 {
1314 gcc_assert (TYPE_CANONICAL (t) == NULL_TREE);
b89bfdca 1315 if (type_with_alias_set_p (t)
1316 && canonical_type_used_p (t))
1317 TYPE_CANONICAL (t) = TYPE_MAIN_VARIANT (t);
4c42fa78 1318 if (TYPE_MAIN_VARIANT (t) != t)
1319 {
1320 gcc_assert (TYPE_NEXT_VARIANT (t) == NULL_TREE);
1321 TYPE_NEXT_VARIANT (t)
1322 = TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t));
1323 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t)) = t;
1324 }
1325 }
1326 }
1327 }
7bfefa9d 1328
7bfefa9d 1329 /* Restore decl state */
1330 file_data->current_decl_state = file_data->global_decl_state;
7bfefa9d 1331 }
7bfefa9d 1332
7bfefa9d 1333 lto_data_in_delete (data_in);
1334}
1335
1336
7e4b741c 1337/* Read the body of NODE using DATA. FILE_DATA holds the global
7bfefa9d 1338 decls and types. */
1339
48e1416a 1340void
7bfefa9d 1341lto_input_function_body (struct lto_file_decl_data *file_data,
7e4b741c 1342 struct cgraph_node *node, const char *data)
7bfefa9d 1343{
afb0d513 1344 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
1345}
1346
1347/* Read the body of NODE using DATA. FILE_DATA holds the global
1348 decls and types. */
1349
1350void
1351lto_input_variable_constructor (struct lto_file_decl_data *file_data,
1352 struct varpool_node *node, const char *data)
1353{
1354 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
7bfefa9d 1355}
1356
1357
7b53e714 1358/* Queue of acummulated decl -> DIE mappings. Similar to locations those
1359 are only applied to prevailing tree nodes during tree merging. */
1360vec<dref_entry> dref_queue;
1361
8ceff600 1362/* Read the physical representation of a tree node EXPR from
1363 input block IB using the per-file context in DATA_IN. */
1364
1365static void
1366lto_read_tree_1 (struct lto_input_block *ib, struct data_in *data_in, tree expr)
1367{
1368 /* Read all the bitfield values in EXPR. Note that for LTO, we
1369 only write language-independent bitfields, so no more unpacking is
1370 needed. */
1371 streamer_read_tree_bitfields (ib, data_in, expr);
1372
1373 /* Read all the pointer fields in EXPR. */
1374 streamer_read_tree_body (ib, data_in, expr);
1375
1376 /* Read any LTO-specific data not read by the tree streamer. */
1377 if (DECL_P (expr)
1378 && TREE_CODE (expr) != FUNCTION_DECL
1379 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1380 DECL_INITIAL (expr) = stream_read_tree (ib, data_in);
7b53e714 1381
1382 /* Stream references to early generated DIEs. Keep in sync with the
1383 trees handled in dwarf2out_register_external_die. */
1384 if ((DECL_P (expr)
1385 && TREE_CODE (expr) != FIELD_DECL
1386 && TREE_CODE (expr) != DEBUG_EXPR_DECL
1387 && TREE_CODE (expr) != TYPE_DECL)
1388 || TREE_CODE (expr) == BLOCK)
1389 {
1390 const char *str = streamer_read_string (data_in, ib);
1391 if (str)
1392 {
1393 unsigned HOST_WIDE_INT off = streamer_read_uhwi (ib);
1394 dref_entry e = { expr, str, off };
1395 dref_queue.safe_push (e);
1396 }
1397 }
8ceff600 1398}
1399
515cf651 1400/* Read the physical representation of a tree node with tag TAG from
1401 input block IB using the per-file context in DATA_IN. */
7bfefa9d 1402
515cf651 1403static tree
1404lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
8ceff600 1405 enum LTO_tags tag, hashval_t hash)
a0605d65 1406{
515cf651 1407 /* Instantiate a new tree node. */
7f385784 1408 tree result = streamer_alloc_tree (ib, data_in, tag);
515cf651 1409
1410 /* Enter RESULT in the reader cache. This will make RESULT
1411 available so that circular references in the rest of the tree
1412 structure can be resolved in subsequent calls to stream_read_tree. */
8ceff600 1413 streamer_tree_cache_append (data_in->reader_cache, result, hash);
515cf651 1414
8ceff600 1415 lto_read_tree_1 (ib, data_in, result);
515cf651 1416
8ceff600 1417 /* end_marker = */ streamer_read_uchar (ib);
515cf651 1418
8ceff600 1419 return result;
1420}
515cf651 1421
515cf651 1422
8ceff600 1423/* Populate the reader cache with trees materialized from the SCC
1424 following in the IB, DATA_IN stream. */
515cf651 1425
8ceff600 1426hashval_t
1427lto_input_scc (struct lto_input_block *ib, struct data_in *data_in,
1428 unsigned *len, unsigned *entry_len)
1429{
1430 /* A blob of unnamed tree nodes, fill the cache from it and
1431 recurse. */
1432 unsigned size = streamer_read_uhwi (ib);
1433 hashval_t scc_hash = streamer_read_uhwi (ib);
1434 unsigned scc_entry_len = 1;
515cf651 1435
8ceff600 1436 if (size == 1)
1437 {
1438 enum LTO_tags tag = streamer_read_record_start (ib);
1439 lto_input_tree_1 (ib, data_in, tag, scc_hash);
1440 }
1441 else
1442 {
1443 unsigned int first = data_in->reader_cache->nodes.length ();
1444 tree result;
1445
1446 scc_entry_len = streamer_read_uhwi (ib);
1447
1448 /* Materialize size trees by reading their headers. */
1449 for (unsigned i = 0; i < size; ++i)
1450 {
1451 enum LTO_tags tag = streamer_read_record_start (ib);
1452 if (tag == LTO_null
1453 || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1454 || tag == LTO_tree_pickle_reference
8ceff600 1455 || tag == LTO_integer_cst
1456 || tag == LTO_tree_scc)
1457 gcc_unreachable ();
1458
1459 result = streamer_alloc_tree (ib, data_in, tag);
1460 streamer_tree_cache_append (data_in->reader_cache, result, 0);
1461 }
1462
1463 /* Read the tree bitpacks and references. */
1464 for (unsigned i = 0; i < size; ++i)
1465 {
1466 result = streamer_tree_cache_get_tree (data_in->reader_cache,
1467 first + i);
1468 lto_read_tree_1 (ib, data_in, result);
1469 /* end_marker = */ streamer_read_uchar (ib);
1470 }
1471 }
1472
1473 *len = size;
1474 *entry_len = scc_entry_len;
1475 return scc_hash;
515cf651 1476}
1477
1478
1479/* Read a tree from input block IB using the per-file context in
1480 DATA_IN. This context is used, for example, to resolve references
1481 to previously read nodes. */
1482
1483tree
8ceff600 1484lto_input_tree_1 (struct lto_input_block *ib, struct data_in *data_in,
1485 enum LTO_tags tag, hashval_t hash)
515cf651 1486{
515cf651 1487 tree result;
1488
515cf651 1489 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
1490
1491 if (tag == LTO_null)
1492 result = NULL_TREE;
c40a5c1b 1493 else if (tag >= LTO_field_decl_ref && tag <= LTO_namelist_decl_ref)
515cf651 1494 {
1495 /* If TAG is a reference to an indexable tree, the next value
1496 in IB is the index into the table where we expect to find
1497 that tree. */
1498 result = lto_input_tree_ref (ib, data_in, cfun, tag);
1499 }
1500 else if (tag == LTO_tree_pickle_reference)
1501 {
1502 /* If TAG is a reference to a previously read tree, look it up in
1503 the reader cache. */
7f385784 1504 result = streamer_get_pickled_tree (ib, data_in);
515cf651 1505 }
42603940 1506 else if (tag == LTO_integer_cst)
515cf651 1507 {
e913b5cd 1508 /* For shared integer constants in singletons we can use the
1509 existing tree integer constant merging code. */
8ceff600 1510 tree type = stream_read_tree (ib, data_in);
e913b5cd 1511 unsigned HOST_WIDE_INT len = streamer_read_uhwi (ib);
1512 unsigned HOST_WIDE_INT i;
ddb1be65 1513 HOST_WIDE_INT a[WIDE_INT_MAX_ELTS];
e913b5cd 1514
1515 for (i = 0; i < len; i++)
1516 a[i] = streamer_read_hwi (ib);
a12aa4cc 1517 gcc_assert (TYPE_PRECISION (type) <= MAX_BITSIZE_MODE_ANY_INT);
e913b5cd 1518 result = wide_int_to_tree (type, wide_int::from_array
05363b4a 1519 (a, len, TYPE_PRECISION (type)));
8ceff600 1520 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1521 }
1522 else if (tag == LTO_tree_scc)
5510bd70 1523 gcc_unreachable ();
515cf651 1524 else
1525 {
1526 /* Otherwise, materialize a new node from IB. */
8ceff600 1527 result = lto_read_tree (ib, data_in, tag, hash);
515cf651 1528 }
1529
1530 return result;
a0605d65 1531}
1532
8ceff600 1533tree
1534lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
1535{
5510bd70 1536 enum LTO_tags tag;
1537
1538 /* Input and skip SCCs. */
1539 while ((tag = streamer_read_record_start (ib)) == LTO_tree_scc)
1540 {
1541 unsigned len, entry_len;
1542 lto_input_scc (ib, data_in, &len, &entry_len);
7b53e714 1543
1544 /* Register DECLs with the debuginfo machinery. */
1545 while (!dref_queue.is_empty ())
1546 {
1547 dref_entry e = dref_queue.pop ();
1548 debug_hooks->register_external_die (e.decl, e.sym, e.off);
1549 }
5510bd70 1550 }
1551 return lto_input_tree_1 (ib, data_in, tag, 0);
8ceff600 1552}
1553
a0605d65 1554
65d1b157 1555/* Input toplevel asms. */
1556
1557void
f1007c72 1558lto_input_toplevel_asms (struct lto_file_decl_data *file_data, int order_base)
65d1b157 1559{
1560 size_t len;
1561 const char *data = lto_get_section_data (file_data, LTO_section_asm,
1562 NULL, &len);
472ca566 1563 const struct lto_simple_header_with_strings *header
1564 = (const struct lto_simple_header_with_strings *) data;
949e5786 1565 int string_offset;
65d1b157 1566 struct data_in *data_in;
65d1b157 1567 tree str;
1568
1569 if (! data)
1570 return;
1571
1572 string_offset = sizeof (*header) + header->main_size;
1573
2e971afd 1574 lto_input_block ib (data + sizeof (*header), header->main_size,
1575 file_data->mode_table);
65d1b157 1576
1577 data_in = lto_data_in_create (file_data, data + string_offset,
1e094109 1578 header->string_size, vNULL);
65d1b157 1579
65d1b157 1580 while ((str = streamer_read_string_cst (data_in, &ib)))
f1007c72 1581 {
35ee1c66 1582 asm_node *node = symtab->finalize_toplevel_asm (str);
f1007c72 1583 node->order = streamer_read_hwi (&ib) + order_base;
35ee1c66 1584 if (node->order >= symtab->order)
1585 symtab->order = node->order + 1;
f1007c72 1586 }
65d1b157 1587
65d1b157 1588 lto_data_in_delete (data_in);
1589
1590 lto_free_section_data (file_data, LTO_section_asm, NULL, data, len);
1591}
1592
1593
2e971afd 1594/* Input mode table. */
1595
1596void
1597lto_input_mode_table (struct lto_file_decl_data *file_data)
1598{
1599 size_t len;
1600 const char *data = lto_get_section_data (file_data, LTO_section_mode_table,
1601 NULL, &len);
1602 if (! data)
1603 {
1604 internal_error ("cannot read LTO mode table from %s",
1605 file_data->file_name);
1606 return;
1607 }
1608
1609 unsigned char *table = ggc_cleared_vec_alloc<unsigned char> (1 << 8);
1610 file_data->mode_table = table;
1611 const struct lto_simple_header_with_strings *header
1612 = (const struct lto_simple_header_with_strings *) data;
1613 int string_offset;
1614 struct data_in *data_in;
1615 string_offset = sizeof (*header) + header->main_size;
1616
1617 lto_input_block ib (data + sizeof (*header), header->main_size, NULL);
1618 data_in = lto_data_in_create (file_data, data + string_offset,
1619 header->string_size, vNULL);
1620 bitpack_d bp = streamer_read_bitpack (&ib);
1621
1622 table[VOIDmode] = VOIDmode;
1623 table[BLKmode] = BLKmode;
1624 unsigned int m;
1625 while ((m = bp_unpack_value (&bp, 8)) != VOIDmode)
1626 {
1627 enum mode_class mclass
1628 = bp_unpack_enum (&bp, mode_class, MAX_MODE_CLASS);
52acb7ae 1629 poly_uint16 size = bp_unpack_poly_value (&bp, 16);
3ce67adc 1630 poly_uint16 prec = bp_unpack_poly_value (&bp, 16);
b308f4a0 1631 machine_mode inner = (machine_mode) bp_unpack_value (&bp, 8);
ba7efd65 1632 poly_uint16 nunits = bp_unpack_poly_value (&bp, 16);
2e971afd 1633 unsigned int ibit = 0, fbit = 0;
1634 unsigned int real_fmt_len = 0;
1635 const char *real_fmt_name = NULL;
1636 switch (mclass)
1637 {
1638 case MODE_FRACT:
1639 case MODE_UFRACT:
1640 case MODE_ACCUM:
1641 case MODE_UACCUM:
1642 ibit = bp_unpack_value (&bp, 8);
1643 fbit = bp_unpack_value (&bp, 8);
1644 break;
1645 case MODE_FLOAT:
1646 case MODE_DECIMAL_FLOAT:
1647 real_fmt_name = bp_unpack_indexed_string (data_in, &bp,
1648 &real_fmt_len);
1649 break;
1650 default:
1651 break;
1652 }
1653 /* First search just the GET_CLASS_NARROWEST_MODE to wider modes,
1654 if not found, fallback to all modes. */
1655 int pass;
1656 for (pass = 0; pass < 2; pass++)
1657 for (machine_mode mr = pass ? VOIDmode
1658 : GET_CLASS_NARROWEST_MODE (mclass);
1659 pass ? mr < MAX_MACHINE_MODE : mr != VOIDmode;
7231f6b9 1660 pass ? mr = (machine_mode) (mr + 1)
28ebc73c 1661 : mr = GET_MODE_WIDER_MODE (mr).else_void ())
2e971afd 1662 if (GET_MODE_CLASS (mr) != mclass
52acb7ae 1663 || maybe_ne (GET_MODE_SIZE (mr), size)
3ce67adc 1664 || maybe_ne (GET_MODE_PRECISION (mr), prec)
b308f4a0 1665 || (inner == m
1666 ? GET_MODE_INNER (mr) != mr
1667 : GET_MODE_INNER (mr) != table[(int) inner])
2e971afd 1668 || GET_MODE_IBIT (mr) != ibit
1669 || GET_MODE_FBIT (mr) != fbit
ba7efd65 1670 || maybe_ne (GET_MODE_NUNITS (mr), nunits))
2e971afd 1671 continue;
1672 else if ((mclass == MODE_FLOAT || mclass == MODE_DECIMAL_FLOAT)
1673 && strcmp (REAL_MODE_FORMAT (mr)->name, real_fmt_name) != 0)
1674 continue;
1675 else
1676 {
1677 table[m] = mr;
1678 pass = 2;
1679 break;
1680 }
1681 unsigned int mname_len;
1682 const char *mname = bp_unpack_indexed_string (data_in, &bp, &mname_len);
1683 if (pass == 2)
1684 {
1685 switch (mclass)
1686 {
8464736b 1687 case MODE_VECTOR_BOOL:
2e971afd 1688 case MODE_VECTOR_INT:
1689 case MODE_VECTOR_FLOAT:
1690 case MODE_VECTOR_FRACT:
1691 case MODE_VECTOR_UFRACT:
1692 case MODE_VECTOR_ACCUM:
1693 case MODE_VECTOR_UACCUM:
1694 /* For unsupported vector modes just use BLKmode,
1695 if the scalar mode is supported. */
b308f4a0 1696 if (table[(int) inner] != VOIDmode)
2e971afd 1697 {
1698 table[m] = BLKmode;
1699 break;
1700 }
1701 /* FALLTHRU */
1702 default:
1703 fatal_error (UNKNOWN_LOCATION, "unsupported mode %s\n", mname);
1704 break;
1705 }
1706 }
1707 }
1708 lto_data_in_delete (data_in);
1709
1710 lto_free_section_data (file_data, LTO_section_mode_table, NULL, data, len);
1711}
1712
1713
7bfefa9d 1714/* Initialization for the LTO reader. */
1715
1716void
a0605d65 1717lto_reader_init (void)
7bfefa9d 1718{
1719 lto_streamer_init ();
c1f445d2 1720 file_name_hash_table
1721 = new hash_table<freeing_string_slot_hasher> (37);
7bfefa9d 1722}
1723
1724
1725/* Create a new data_in object for FILE_DATA. STRINGS is the string
1726 table to use with LEN strings. RESOLUTIONS is the vector of linker
1727 resolutions (NULL if not using a linker plugin). */
1728
1729struct data_in *
1730lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
1731 unsigned len,
f1f41a6c 1732 vec<ld_plugin_symbol_resolution_t> resolutions)
7bfefa9d 1733{
da6f3259 1734 struct data_in *data_in = new (struct data_in);
7bfefa9d 1735 data_in->file_data = file_data;
1736 data_in->strings = strings;
1737 data_in->strings_len = len;
1738 data_in->globals_resolution = resolutions;
b1e946ea 1739 data_in->reader_cache = streamer_tree_cache_create (false, false, true);
7bfefa9d 1740 return data_in;
1741}
1742
1743
1744/* Remove DATA_IN. */
1745
1746void
1747lto_data_in_delete (struct data_in *data_in)
1748{
f1f41a6c 1749 data_in->globals_resolution.release ();
7f385784 1750 streamer_tree_cache_delete (data_in->reader_cache);
da6f3259 1751 delete data_in;
7bfefa9d 1752}