]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/lto-streamer-in.c
* gimple.h: Remove all includes.
[thirdparty/gcc.git] / gcc / lto-streamer-in.c
1 /* Read the GIMPLE representation from a file stream.
2
3 Copyright (C) 2009-2013 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 "tm.h"
27 #include "toplev.h"
28 #include "tree.h"
29 #include "stringpool.h"
30 #include "expr.h"
31 #include "flags.h"
32 #include "params.h"
33 #include "input.h"
34 #include "hashtab.h"
35 #include "basic-block.h"
36 #include "tree-ssa-alias.h"
37 #include "internal-fn.h"
38 #include "gimple-expr.h"
39 #include "is-a.h"
40 #include "gimple.h"
41 #include "gimple-iterator.h"
42 #include "gimple-ssa.h"
43 #include "tree-cfg.h"
44 #include "tree-ssanames.h"
45 #include "tree-into-ssa.h"
46 #include "tree-dfa.h"
47 #include "tree-ssa.h"
48 #include "tree-pass.h"
49 #include "function.h"
50 #include "diagnostic.h"
51 #include "except.h"
52 #include "debug.h"
53 #include "ipa-utils.h"
54 #include "data-streamer.h"
55 #include "gimple-streamer.h"
56 #include "lto-streamer.h"
57 #include "tree-streamer.h"
58 #include "tree-pass.h"
59 #include "streamer-hooks.h"
60 #include "cfgloop.h"
61
62
63 struct freeing_string_slot_hasher : string_slot_hasher
64 {
65 static inline void remove (value_type *);
66 };
67
68 inline void
69 freeing_string_slot_hasher::remove (value_type *v)
70 {
71 free (v);
72 }
73
74 /* The table to hold the file names. */
75 static hash_table <freeing_string_slot_hasher> file_name_hash_table;
76
77
78 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
79 number of valid tag values to check. */
80
81 void
82 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
83 {
84 va_list ap;
85 int i;
86
87 va_start (ap, ntags);
88 for (i = 0; i < ntags; i++)
89 if ((unsigned) actual == va_arg (ap, unsigned))
90 {
91 va_end (ap);
92 return;
93 }
94
95 va_end (ap);
96 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
97 }
98
99
100 /* Read LENGTH bytes from STREAM to ADDR. */
101
102 void
103 lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
104 {
105 size_t i;
106 unsigned char *const buffer = (unsigned char *const) addr;
107
108 for (i = 0; i < length; i++)
109 buffer[i] = streamer_read_uchar (ib);
110 }
111
112
113 /* Lookup STRING in file_name_hash_table. If found, return the existing
114 string, otherwise insert STRING as the canonical version. */
115
116 static const char *
117 canon_file_name (const char *string)
118 {
119 string_slot **slot;
120 struct string_slot s_slot;
121 size_t len = strlen (string);
122
123 s_slot.s = string;
124 s_slot.len = len;
125
126 slot = file_name_hash_table.find_slot (&s_slot, INSERT);
127 if (*slot == NULL)
128 {
129 char *saved_string;
130 struct string_slot *new_slot;
131
132 saved_string = (char *) xmalloc (len + 1);
133 new_slot = XCNEW (struct string_slot);
134 memcpy (saved_string, string, len + 1);
135 new_slot->s = saved_string;
136 new_slot->len = len;
137 *slot = new_slot;
138 return saved_string;
139 }
140 else
141 {
142 struct string_slot *old_slot = *slot;
143 return old_slot->s;
144 }
145 }
146
147
148 /* Read a location bitpack from input block IB. */
149
150 location_t
151 lto_input_location (struct bitpack_d *bp, struct data_in *data_in)
152 {
153 static const char *current_file;
154 static int current_line;
155 static int current_col;
156 bool file_change, line_change, column_change;
157 unsigned len;
158 bool prev_file = current_file != NULL;
159
160 if (bp_unpack_value (bp, 1))
161 return UNKNOWN_LOCATION;
162
163 file_change = bp_unpack_value (bp, 1);
164 line_change = bp_unpack_value (bp, 1);
165 column_change = bp_unpack_value (bp, 1);
166
167 if (file_change)
168 current_file = canon_file_name
169 (string_for_index (data_in,
170 bp_unpack_var_len_unsigned (bp),
171 &len));
172
173 if (line_change)
174 current_line = bp_unpack_var_len_unsigned (bp);
175
176 if (column_change)
177 current_col = bp_unpack_var_len_unsigned (bp);
178
179 if (file_change)
180 {
181 if (prev_file)
182 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
183
184 linemap_add (line_table, LC_ENTER, false, current_file, current_line);
185 }
186 else if (line_change)
187 linemap_line_start (line_table, current_line, current_col);
188
189 return linemap_position_for_column (line_table, current_col);
190 }
191
192
193 /* Read a reference to a tree node from DATA_IN using input block IB.
194 TAG is the expected node that should be found in IB, if TAG belongs
195 to one of the indexable trees, expect to read a reference index to
196 be looked up in one of the symbol tables, otherwise read the pysical
197 representation of the tree using stream_read_tree. FN is the
198 function scope for the read tree. */
199
200 tree
201 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
202 struct function *fn, enum LTO_tags tag)
203 {
204 unsigned HOST_WIDE_INT ix_u;
205 tree result = NULL_TREE;
206
207 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_global_decl_ref);
208
209 switch (tag)
210 {
211 case LTO_type_ref:
212 ix_u = streamer_read_uhwi (ib);
213 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
214 break;
215
216 case LTO_ssa_name_ref:
217 ix_u = streamer_read_uhwi (ib);
218 result = (*SSANAMES (fn))[ix_u];
219 break;
220
221 case LTO_field_decl_ref:
222 ix_u = streamer_read_uhwi (ib);
223 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
224 break;
225
226 case LTO_function_decl_ref:
227 ix_u = streamer_read_uhwi (ib);
228 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
229 break;
230
231 case LTO_type_decl_ref:
232 ix_u = streamer_read_uhwi (ib);
233 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
234 break;
235
236 case LTO_namespace_decl_ref:
237 ix_u = streamer_read_uhwi (ib);
238 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
239 break;
240
241 case LTO_global_decl_ref:
242 case LTO_result_decl_ref:
243 case LTO_const_decl_ref:
244 case LTO_imported_decl_ref:
245 case LTO_label_decl_ref:
246 case LTO_translation_unit_decl_ref:
247 ix_u = streamer_read_uhwi (ib);
248 result = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
249 break;
250
251 default:
252 gcc_unreachable ();
253 }
254
255 gcc_assert (result);
256
257 return result;
258 }
259
260
261 /* Read and return a double-linked list of catch handlers from input
262 block IB, using descriptors in DATA_IN. */
263
264 static struct eh_catch_d *
265 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
266 eh_catch *last_p)
267 {
268 eh_catch first;
269 enum LTO_tags tag;
270
271 *last_p = first = NULL;
272 tag = streamer_read_record_start (ib);
273 while (tag)
274 {
275 tree list;
276 eh_catch n;
277
278 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
279
280 /* Read the catch node. */
281 n = ggc_alloc_cleared_eh_catch_d ();
282 n->type_list = stream_read_tree (ib, data_in);
283 n->filter_list = stream_read_tree (ib, data_in);
284 n->label = stream_read_tree (ib, data_in);
285
286 /* Register all the types in N->FILTER_LIST. */
287 for (list = n->filter_list; list; list = TREE_CHAIN (list))
288 add_type_for_runtime (TREE_VALUE (list));
289
290 /* Chain N to the end of the list. */
291 if (*last_p)
292 (*last_p)->next_catch = n;
293 n->prev_catch = *last_p;
294 *last_p = n;
295
296 /* Set the head of the list the first time through the loop. */
297 if (first == NULL)
298 first = n;
299
300 tag = streamer_read_record_start (ib);
301 }
302
303 return first;
304 }
305
306
307 /* Read and return EH region IX from input block IB, using descriptors
308 in DATA_IN. */
309
310 static eh_region
311 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
312 {
313 enum LTO_tags tag;
314 eh_region r;
315
316 /* Read the region header. */
317 tag = streamer_read_record_start (ib);
318 if (tag == LTO_null)
319 return NULL;
320
321 r = ggc_alloc_cleared_eh_region_d ();
322 r->index = streamer_read_hwi (ib);
323
324 gcc_assert (r->index == ix);
325
326 /* Read all the region pointers as region numbers. We'll fix up
327 the pointers once the whole array has been read. */
328 r->outer = (eh_region) (intptr_t) streamer_read_hwi (ib);
329 r->inner = (eh_region) (intptr_t) streamer_read_hwi (ib);
330 r->next_peer = (eh_region) (intptr_t) streamer_read_hwi (ib);
331
332 switch (tag)
333 {
334 case LTO_ert_cleanup:
335 r->type = ERT_CLEANUP;
336 break;
337
338 case LTO_ert_try:
339 {
340 struct eh_catch_d *last_catch;
341 r->type = ERT_TRY;
342 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
343 &last_catch);
344 r->u.eh_try.last_catch = last_catch;
345 break;
346 }
347
348 case LTO_ert_allowed_exceptions:
349 {
350 tree l;
351
352 r->type = ERT_ALLOWED_EXCEPTIONS;
353 r->u.allowed.type_list = stream_read_tree (ib, data_in);
354 r->u.allowed.label = stream_read_tree (ib, data_in);
355 r->u.allowed.filter = streamer_read_uhwi (ib);
356
357 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
358 add_type_for_runtime (TREE_VALUE (l));
359 }
360 break;
361
362 case LTO_ert_must_not_throw:
363 {
364 r->type = ERT_MUST_NOT_THROW;
365 r->u.must_not_throw.failure_decl = stream_read_tree (ib, data_in);
366 bitpack_d bp = streamer_read_bitpack (ib);
367 r->u.must_not_throw.failure_loc
368 = stream_input_location (&bp, data_in);
369 }
370 break;
371
372 default:
373 gcc_unreachable ();
374 }
375
376 r->landing_pads = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
377
378 return r;
379 }
380
381
382 /* Read and return EH landing pad IX from input block IB, using descriptors
383 in DATA_IN. */
384
385 static eh_landing_pad
386 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
387 {
388 enum LTO_tags tag;
389 eh_landing_pad lp;
390
391 /* Read the landing pad header. */
392 tag = streamer_read_record_start (ib);
393 if (tag == LTO_null)
394 return NULL;
395
396 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
397
398 lp = ggc_alloc_cleared_eh_landing_pad_d ();
399 lp->index = streamer_read_hwi (ib);
400 gcc_assert (lp->index == ix);
401 lp->next_lp = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
402 lp->region = (eh_region) (intptr_t) streamer_read_hwi (ib);
403 lp->post_landing_pad = stream_read_tree (ib, data_in);
404
405 return lp;
406 }
407
408
409 /* After reading the EH regions, pointers to peer and children regions
410 are region numbers. This converts all these region numbers into
411 real pointers into the rematerialized regions for FN. ROOT_REGION
412 is the region number for the root EH region in FN. */
413
414 static void
415 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
416 {
417 unsigned i;
418 vec<eh_region, va_gc> *eh_array = fn->eh->region_array;
419 vec<eh_landing_pad, va_gc> *lp_array = fn->eh->lp_array;
420 eh_region r;
421 eh_landing_pad lp;
422
423 gcc_assert (eh_array && lp_array);
424
425 gcc_assert (root_region >= 0);
426 fn->eh->region_tree = (*eh_array)[root_region];
427
428 #define FIXUP_EH_REGION(r) (r) = (*eh_array)[(HOST_WIDE_INT) (intptr_t) (r)]
429 #define FIXUP_EH_LP(p) (p) = (*lp_array)[(HOST_WIDE_INT) (intptr_t) (p)]
430
431 /* Convert all the index numbers stored in pointer fields into
432 pointers to the corresponding slots in the EH region array. */
433 FOR_EACH_VEC_ELT (*eh_array, i, r)
434 {
435 /* The array may contain NULL regions. */
436 if (r == NULL)
437 continue;
438
439 gcc_assert (i == (unsigned) r->index);
440 FIXUP_EH_REGION (r->outer);
441 FIXUP_EH_REGION (r->inner);
442 FIXUP_EH_REGION (r->next_peer);
443 FIXUP_EH_LP (r->landing_pads);
444 }
445
446 /* Convert all the index numbers stored in pointer fields into
447 pointers to the corresponding slots in the EH landing pad array. */
448 FOR_EACH_VEC_ELT (*lp_array, i, lp)
449 {
450 /* The array may contain NULL landing pads. */
451 if (lp == NULL)
452 continue;
453
454 gcc_assert (i == (unsigned) lp->index);
455 FIXUP_EH_LP (lp->next_lp);
456 FIXUP_EH_REGION (lp->region);
457 }
458
459 #undef FIXUP_EH_REGION
460 #undef FIXUP_EH_LP
461 }
462
463
464 /* Initialize EH support. */
465
466 void
467 lto_init_eh (void)
468 {
469 static bool eh_initialized_p = false;
470
471 if (eh_initialized_p)
472 return;
473
474 /* Contrary to most other FEs, we only initialize EH support when at
475 least one of the files in the set contains exception regions in
476 it. Since this happens much later than the call to init_eh in
477 lang_dependent_init, we have to set flag_exceptions and call
478 init_eh again to initialize the EH tables. */
479 flag_exceptions = 1;
480 init_eh ();
481
482 eh_initialized_p = true;
483 }
484
485
486 /* Read the exception table for FN from IB using the data descriptors
487 in DATA_IN. */
488
489 static void
490 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
491 struct function *fn)
492 {
493 HOST_WIDE_INT i, root_region, len;
494 enum LTO_tags tag;
495
496 tag = streamer_read_record_start (ib);
497 if (tag == LTO_null)
498 return;
499
500 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
501
502 /* If the file contains EH regions, then it was compiled with
503 -fexceptions. In that case, initialize the backend EH
504 machinery. */
505 lto_init_eh ();
506
507 gcc_assert (fn->eh);
508
509 root_region = streamer_read_hwi (ib);
510 gcc_assert (root_region == (int) root_region);
511
512 /* Read the EH region array. */
513 len = streamer_read_hwi (ib);
514 gcc_assert (len == (int) len);
515 if (len > 0)
516 {
517 vec_safe_grow_cleared (fn->eh->region_array, len);
518 for (i = 0; i < len; i++)
519 {
520 eh_region r = input_eh_region (ib, data_in, i);
521 (*fn->eh->region_array)[i] = r;
522 }
523 }
524
525 /* Read the landing pads. */
526 len = streamer_read_hwi (ib);
527 gcc_assert (len == (int) len);
528 if (len > 0)
529 {
530 vec_safe_grow_cleared (fn->eh->lp_array, len);
531 for (i = 0; i < len; i++)
532 {
533 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
534 (*fn->eh->lp_array)[i] = lp;
535 }
536 }
537
538 /* Read the runtime type data. */
539 len = streamer_read_hwi (ib);
540 gcc_assert (len == (int) len);
541 if (len > 0)
542 {
543 vec_safe_grow_cleared (fn->eh->ttype_data, len);
544 for (i = 0; i < len; i++)
545 {
546 tree ttype = stream_read_tree (ib, data_in);
547 (*fn->eh->ttype_data)[i] = ttype;
548 }
549 }
550
551 /* Read the table of action chains. */
552 len = streamer_read_hwi (ib);
553 gcc_assert (len == (int) len);
554 if (len > 0)
555 {
556 if (targetm.arm_eabi_unwinder)
557 {
558 vec_safe_grow_cleared (fn->eh->ehspec_data.arm_eabi, len);
559 for (i = 0; i < len; i++)
560 {
561 tree t = stream_read_tree (ib, data_in);
562 (*fn->eh->ehspec_data.arm_eabi)[i] = t;
563 }
564 }
565 else
566 {
567 vec_safe_grow_cleared (fn->eh->ehspec_data.other, len);
568 for (i = 0; i < len; i++)
569 {
570 uchar c = streamer_read_uchar (ib);
571 (*fn->eh->ehspec_data.other)[i] = c;
572 }
573 }
574 }
575
576 /* Reconstruct the EH region tree by fixing up the peer/children
577 pointers. */
578 fixup_eh_region_pointers (fn, root_region);
579
580 tag = streamer_read_record_start (ib);
581 lto_tag_check_range (tag, LTO_null, LTO_null);
582 }
583
584
585 /* Make a new basic block with index INDEX in function FN. */
586
587 static basic_block
588 make_new_block (struct function *fn, unsigned int index)
589 {
590 basic_block bb = alloc_block ();
591 bb->index = index;
592 SET_BASIC_BLOCK_FOR_FUNCTION (fn, index, bb);
593 n_basic_blocks_for_fn (fn)++;
594 return bb;
595 }
596
597
598 /* Read the CFG for function FN from input block IB. */
599
600 static void
601 input_cfg (struct lto_input_block *ib, struct function *fn,
602 int count_materialization_scale)
603 {
604 unsigned int bb_count;
605 basic_block p_bb;
606 unsigned int i;
607 int index;
608
609 init_empty_tree_cfg_for_function (fn);
610 init_ssa_operands (fn);
611
612 profile_status_for_function (fn) = streamer_read_enum (ib, profile_status_d,
613 PROFILE_LAST);
614
615 bb_count = streamer_read_uhwi (ib);
616
617 last_basic_block_for_function (fn) = bb_count;
618 if (bb_count > basic_block_info_for_function (fn)->length ())
619 vec_safe_grow_cleared (basic_block_info_for_function (fn), bb_count);
620
621 if (bb_count > label_to_block_map_for_function (fn)->length ())
622 vec_safe_grow_cleared (label_to_block_map_for_function (fn), bb_count);
623
624 index = streamer_read_hwi (ib);
625 while (index != -1)
626 {
627 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
628 unsigned int edge_count;
629
630 if (bb == NULL)
631 bb = make_new_block (fn, index);
632
633 edge_count = streamer_read_uhwi (ib);
634
635 /* Connect up the CFG. */
636 for (i = 0; i < edge_count; i++)
637 {
638 unsigned int dest_index;
639 unsigned int edge_flags;
640 basic_block dest;
641 int probability;
642 gcov_type count;
643 edge e;
644
645 dest_index = streamer_read_uhwi (ib);
646 probability = (int) streamer_read_hwi (ib);
647 count = apply_scale ((gcov_type) streamer_read_gcov_count (ib),
648 count_materialization_scale);
649 edge_flags = streamer_read_uhwi (ib);
650
651 dest = BASIC_BLOCK_FOR_FUNCTION (fn, dest_index);
652
653 if (dest == NULL)
654 dest = make_new_block (fn, dest_index);
655
656 e = make_edge (bb, dest, edge_flags);
657 e->probability = probability;
658 e->count = count;
659 }
660
661 index = streamer_read_hwi (ib);
662 }
663
664 p_bb = ENTRY_BLOCK_PTR_FOR_FN (fn);
665 index = streamer_read_hwi (ib);
666 while (index != -1)
667 {
668 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
669 bb->prev_bb = p_bb;
670 p_bb->next_bb = bb;
671 p_bb = bb;
672 index = streamer_read_hwi (ib);
673 }
674
675 /* ??? The cfgloop interface is tied to cfun. */
676 gcc_assert (cfun == fn);
677
678 /* Input the loop tree. */
679 unsigned n_loops = streamer_read_uhwi (ib);
680 if (n_loops == 0)
681 return;
682
683 struct loops *loops = ggc_alloc_cleared_loops ();
684 init_loops_structure (fn, loops, n_loops);
685 set_loops_for_fn (fn, loops);
686
687 /* Input each loop and associate it with its loop header so
688 flow_loops_find can rebuild the loop tree. */
689 for (unsigned i = 1; i < n_loops; ++i)
690 {
691 int header_index = streamer_read_hwi (ib);
692 if (header_index == -1)
693 {
694 loops->larray->quick_push (NULL);
695 continue;
696 }
697
698 struct loop *loop = alloc_loop ();
699 loop->header = BASIC_BLOCK_FOR_FUNCTION (fn, header_index);
700 loop->header->loop_father = loop;
701
702 /* Read everything copy_loop_info copies. */
703 loop->estimate_state = streamer_read_enum (ib, loop_estimation, EST_LAST);
704 loop->any_upper_bound = streamer_read_hwi (ib);
705 if (loop->any_upper_bound)
706 {
707 loop->nb_iterations_upper_bound.low = streamer_read_uhwi (ib);
708 loop->nb_iterations_upper_bound.high = streamer_read_hwi (ib);
709 }
710 loop->any_estimate = streamer_read_hwi (ib);
711 if (loop->any_estimate)
712 {
713 loop->nb_iterations_estimate.low = streamer_read_uhwi (ib);
714 loop->nb_iterations_estimate.high = streamer_read_hwi (ib);
715 }
716
717 place_new_loop (fn, loop);
718
719 /* flow_loops_find doesn't like loops not in the tree, hook them
720 all as siblings of the tree root temporarily. */
721 flow_loop_tree_node_add (loops->tree_root, loop);
722 }
723
724 /* Rebuild the loop tree. */
725 flow_loops_find (loops);
726 }
727
728
729 /* Read the SSA names array for function FN from DATA_IN using input
730 block IB. */
731
732 static void
733 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
734 struct function *fn)
735 {
736 unsigned int i, size;
737
738 size = streamer_read_uhwi (ib);
739 init_ssanames (fn, size);
740
741 i = streamer_read_uhwi (ib);
742 while (i)
743 {
744 tree ssa_name, name;
745 bool is_default_def;
746
747 /* Skip over the elements that had been freed. */
748 while (SSANAMES (fn)->length () < i)
749 SSANAMES (fn)->quick_push (NULL_TREE);
750
751 is_default_def = (streamer_read_uchar (ib) != 0);
752 name = stream_read_tree (ib, data_in);
753 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
754
755 if (is_default_def)
756 set_ssa_default_def (cfun, SSA_NAME_VAR (ssa_name), ssa_name);
757
758 i = streamer_read_uhwi (ib);
759 }
760 }
761
762
763 /* Go through all NODE edges and fixup call_stmt pointers
764 so they point to STMTS. */
765
766 static void
767 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts,
768 struct function *fn)
769 {
770 struct cgraph_edge *cedge;
771 struct ipa_ref *ref;
772 unsigned int i;
773
774 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
775 {
776 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
777 fatal_error ("Cgraph edge statement index out of range");
778 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
779 if (!cedge->call_stmt)
780 fatal_error ("Cgraph edge statement index not found");
781 }
782 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
783 {
784 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
785 fatal_error ("Cgraph edge statement index out of range");
786 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
787 if (!cedge->call_stmt)
788 fatal_error ("Cgraph edge statement index not found");
789 }
790 for (i = 0;
791 ipa_ref_list_reference_iterate (&node->ref_list, i, ref);
792 i++)
793 if (ref->lto_stmt_uid)
794 {
795 if (gimple_stmt_max_uid (fn) < ref->lto_stmt_uid)
796 fatal_error ("Reference statement index out of range");
797 ref->stmt = stmts[ref->lto_stmt_uid - 1];
798 if (!ref->stmt)
799 fatal_error ("Reference statement index not found");
800 }
801 }
802
803
804 /* Fixup call_stmt pointers in NODE and all clones. */
805
806 static void
807 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
808 {
809 struct cgraph_node *node;
810 struct function *fn;
811
812 while (orig->clone_of)
813 orig = orig->clone_of;
814 fn = DECL_STRUCT_FUNCTION (orig->decl);
815
816 fixup_call_stmt_edges_1 (orig, stmts, fn);
817 if (orig->clones)
818 for (node = orig->clones; node != orig;)
819 {
820 fixup_call_stmt_edges_1 (node, stmts, fn);
821 if (node->clones)
822 node = node->clones;
823 else if (node->next_sibling_clone)
824 node = node->next_sibling_clone;
825 else
826 {
827 while (node != orig && !node->next_sibling_clone)
828 node = node->clone_of;
829 if (node != orig)
830 node = node->next_sibling_clone;
831 }
832 }
833 }
834
835
836 /* Input the base body of struct function FN from DATA_IN
837 using input block IB. */
838
839 static void
840 input_struct_function_base (struct function *fn, struct data_in *data_in,
841 struct lto_input_block *ib)
842 {
843 struct bitpack_d bp;
844 int len;
845
846 /* Read the static chain and non-local goto save area. */
847 fn->static_chain_decl = stream_read_tree (ib, data_in);
848 fn->nonlocal_goto_save_area = stream_read_tree (ib, data_in);
849
850 /* Read all the local symbols. */
851 len = streamer_read_hwi (ib);
852 if (len > 0)
853 {
854 int i;
855 vec_safe_grow_cleared (fn->local_decls, len);
856 for (i = 0; i < len; i++)
857 {
858 tree t = stream_read_tree (ib, data_in);
859 (*fn->local_decls)[i] = t;
860 }
861 }
862
863 /* Input the current IL state of the function. */
864 fn->curr_properties = streamer_read_uhwi (ib);
865
866 /* Read all the attributes for FN. */
867 bp = streamer_read_bitpack (ib);
868 fn->is_thunk = bp_unpack_value (&bp, 1);
869 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
870 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
871 fn->returns_struct = bp_unpack_value (&bp, 1);
872 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
873 fn->can_delete_dead_exceptions = bp_unpack_value (&bp, 1);
874 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
875 fn->after_inlining = bp_unpack_value (&bp, 1);
876 fn->stdarg = bp_unpack_value (&bp, 1);
877 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
878 fn->calls_alloca = bp_unpack_value (&bp, 1);
879 fn->calls_setjmp = bp_unpack_value (&bp, 1);
880 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
881 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
882
883 /* Input the function start and end loci. */
884 fn->function_start_locus = stream_input_location (&bp, data_in);
885 fn->function_end_locus = stream_input_location (&bp, data_in);
886 }
887
888
889 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
890
891 static void
892 input_function (tree fn_decl, struct data_in *data_in,
893 struct lto_input_block *ib, struct lto_input_block *ib_cfg)
894 {
895 struct function *fn;
896 enum LTO_tags tag;
897 gimple *stmts;
898 basic_block bb;
899 struct cgraph_node *node;
900
901 tag = streamer_read_record_start (ib);
902 lto_tag_check (tag, LTO_function);
903
904 /* Read decls for parameters and args. */
905 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in);
906 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in);
907
908 /* Read the tree of lexical scopes for the function. */
909 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in);
910
911 if (!streamer_read_uhwi (ib))
912 return;
913
914 push_struct_function (fn_decl);
915 fn = DECL_STRUCT_FUNCTION (fn_decl);
916 init_tree_ssa (fn);
917 /* We input IL in SSA form. */
918 cfun->gimple_df->in_ssa_p = true;
919
920 gimple_register_cfg_hooks ();
921
922 node = cgraph_get_node (fn_decl);
923 if (!node)
924 node = cgraph_create_node (fn_decl);
925 input_struct_function_base (fn, data_in, ib);
926 input_cfg (ib_cfg, fn, node->count_materialization_scale);
927
928 /* Read all the SSA names. */
929 input_ssa_names (ib, data_in, fn);
930
931 /* Read the exception handling regions in the function. */
932 input_eh_regions (ib, data_in, fn);
933
934 gcc_assert (DECL_INITIAL (fn_decl));
935 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
936
937 /* Read all the basic blocks. */
938 tag = streamer_read_record_start (ib);
939 while (tag)
940 {
941 input_bb (ib, tag, data_in, fn,
942 node->count_materialization_scale);
943 tag = streamer_read_record_start (ib);
944 }
945
946 /* Fix up the call statements that are mentioned in the callgraph
947 edges. */
948 set_gimple_stmt_max_uid (cfun, 0);
949 FOR_ALL_BB (bb)
950 {
951 gimple_stmt_iterator gsi;
952 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
953 {
954 gimple stmt = gsi_stmt (gsi);
955 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
956 }
957 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
958 {
959 gimple stmt = gsi_stmt (gsi);
960 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
961 }
962 }
963 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
964 FOR_ALL_BB (bb)
965 {
966 gimple_stmt_iterator bsi = gsi_start_phis (bb);
967 while (!gsi_end_p (bsi))
968 {
969 gimple stmt = gsi_stmt (bsi);
970 gsi_next (&bsi);
971 stmts[gimple_uid (stmt)] = stmt;
972 }
973 bsi = gsi_start_bb (bb);
974 while (!gsi_end_p (bsi))
975 {
976 gimple stmt = gsi_stmt (bsi);
977 /* If we're recompiling LTO objects with debug stmts but
978 we're not supposed to have debug stmts, remove them now.
979 We can't remove them earlier because this would cause uid
980 mismatches in fixups, but we can do it at this point, as
981 long as debug stmts don't require fixups. */
982 if (!MAY_HAVE_DEBUG_STMTS && is_gimple_debug (stmt))
983 {
984 gimple_stmt_iterator gsi = bsi;
985 gsi_next (&bsi);
986 gsi_remove (&gsi, true);
987 }
988 else
989 {
990 gsi_next (&bsi);
991 stmts[gimple_uid (stmt)] = stmt;
992 }
993 }
994 }
995
996 /* Set the gimple body to the statement sequence in the entry
997 basic block. FIXME lto, this is fairly hacky. The existence
998 of a gimple body is used by the cgraph routines, but we should
999 really use the presence of the CFG. */
1000 {
1001 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs);
1002 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1003 }
1004
1005 fixup_call_stmt_edges (node, stmts);
1006 execute_all_ipa_stmt_fixups (node, stmts);
1007
1008 update_ssa (TODO_update_ssa_only_virtuals);
1009 free_dominance_info (CDI_DOMINATORS);
1010 free_dominance_info (CDI_POST_DOMINATORS);
1011 free (stmts);
1012 pop_cfun ();
1013 }
1014
1015
1016 /* Read the body from DATA for function NODE and fill it in.
1017 FILE_DATA are the global decls and types. SECTION_TYPE is either
1018 LTO_section_function_body or LTO_section_static_initializer. If
1019 section type is LTO_section_function_body, FN must be the decl for
1020 that function. */
1021
1022 static void
1023 lto_read_body (struct lto_file_decl_data *file_data, struct cgraph_node *node,
1024 const char *data, enum lto_section_type section_type)
1025 {
1026 const struct lto_function_header *header;
1027 struct data_in *data_in;
1028 int cfg_offset;
1029 int main_offset;
1030 int string_offset;
1031 struct lto_input_block ib_cfg;
1032 struct lto_input_block ib_main;
1033 tree fn_decl = node->decl;
1034
1035 header = (const struct lto_function_header *) data;
1036 cfg_offset = sizeof (struct lto_function_header);
1037 main_offset = cfg_offset + header->cfg_size;
1038 string_offset = main_offset + header->main_size;
1039
1040 LTO_INIT_INPUT_BLOCK (ib_cfg,
1041 data + cfg_offset,
1042 0,
1043 header->cfg_size);
1044
1045 LTO_INIT_INPUT_BLOCK (ib_main,
1046 data + main_offset,
1047 0,
1048 header->main_size);
1049
1050 data_in = lto_data_in_create (file_data, data + string_offset,
1051 header->string_size, vNULL);
1052
1053 /* Make sure the file was generated by the exact same compiler. */
1054 lto_check_version (header->lto_header.major_version,
1055 header->lto_header.minor_version);
1056
1057 if (section_type == LTO_section_function_body)
1058 {
1059 struct lto_in_decl_state *decl_state;
1060 unsigned from;
1061
1062 gcc_checking_assert (node);
1063
1064 /* Use the function's decl state. */
1065 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1066 gcc_assert (decl_state);
1067 file_data->current_decl_state = decl_state;
1068
1069
1070 /* Set up the struct function. */
1071 from = data_in->reader_cache->nodes.length ();
1072 input_function (fn_decl, data_in, &ib_main, &ib_cfg);
1073 /* And fixup types we streamed locally. */
1074 {
1075 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1076 unsigned len = cache->nodes.length ();
1077 unsigned i;
1078 for (i = len; i-- > from;)
1079 {
1080 tree t = streamer_tree_cache_get_tree (cache, i);
1081 if (t == NULL_TREE)
1082 continue;
1083
1084 if (TYPE_P (t))
1085 {
1086 gcc_assert (TYPE_CANONICAL (t) == NULL_TREE);
1087 TYPE_CANONICAL (t) = TYPE_MAIN_VARIANT (t);
1088 if (TYPE_MAIN_VARIANT (t) != t)
1089 {
1090 gcc_assert (TYPE_NEXT_VARIANT (t) == NULL_TREE);
1091 TYPE_NEXT_VARIANT (t)
1092 = TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t));
1093 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t)) = t;
1094 }
1095 }
1096 }
1097 }
1098
1099 /* Restore decl state */
1100 file_data->current_decl_state = file_data->global_decl_state;
1101 }
1102
1103 lto_data_in_delete (data_in);
1104 }
1105
1106
1107 /* Read the body of NODE using DATA. FILE_DATA holds the global
1108 decls and types. */
1109
1110 void
1111 lto_input_function_body (struct lto_file_decl_data *file_data,
1112 struct cgraph_node *node, const char *data)
1113 {
1114 lto_read_body (file_data, node, data, LTO_section_function_body);
1115 }
1116
1117
1118 /* Read the physical representation of a tree node EXPR from
1119 input block IB using the per-file context in DATA_IN. */
1120
1121 static void
1122 lto_read_tree_1 (struct lto_input_block *ib, struct data_in *data_in, tree expr)
1123 {
1124 /* Read all the bitfield values in EXPR. Note that for LTO, we
1125 only write language-independent bitfields, so no more unpacking is
1126 needed. */
1127 streamer_read_tree_bitfields (ib, data_in, expr);
1128
1129 /* Read all the pointer fields in EXPR. */
1130 streamer_read_tree_body (ib, data_in, expr);
1131
1132 /* Read any LTO-specific data not read by the tree streamer. */
1133 if (DECL_P (expr)
1134 && TREE_CODE (expr) != FUNCTION_DECL
1135 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1136 DECL_INITIAL (expr) = stream_read_tree (ib, data_in);
1137
1138 /* We should never try to instantiate an MD or NORMAL builtin here. */
1139 if (TREE_CODE (expr) == FUNCTION_DECL)
1140 gcc_assert (!streamer_handle_as_builtin_p (expr));
1141
1142 #ifdef LTO_STREAMER_DEBUG
1143 /* Remove the mapping to RESULT's original address set by
1144 streamer_alloc_tree. */
1145 lto_orig_address_remove (expr);
1146 #endif
1147 }
1148
1149 /* Read the physical representation of a tree node with tag TAG from
1150 input block IB using the per-file context in DATA_IN. */
1151
1152 static tree
1153 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
1154 enum LTO_tags tag, hashval_t hash)
1155 {
1156 /* Instantiate a new tree node. */
1157 tree result = streamer_alloc_tree (ib, data_in, tag);
1158
1159 /* Enter RESULT in the reader cache. This will make RESULT
1160 available so that circular references in the rest of the tree
1161 structure can be resolved in subsequent calls to stream_read_tree. */
1162 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1163
1164 lto_read_tree_1 (ib, data_in, result);
1165
1166 /* end_marker = */ streamer_read_uchar (ib);
1167
1168 return result;
1169 }
1170
1171
1172 /* Populate the reader cache with trees materialized from the SCC
1173 following in the IB, DATA_IN stream. */
1174
1175 hashval_t
1176 lto_input_scc (struct lto_input_block *ib, struct data_in *data_in,
1177 unsigned *len, unsigned *entry_len)
1178 {
1179 /* A blob of unnamed tree nodes, fill the cache from it and
1180 recurse. */
1181 unsigned size = streamer_read_uhwi (ib);
1182 hashval_t scc_hash = streamer_read_uhwi (ib);
1183 unsigned scc_entry_len = 1;
1184
1185 if (size == 1)
1186 {
1187 enum LTO_tags tag = streamer_read_record_start (ib);
1188 lto_input_tree_1 (ib, data_in, tag, scc_hash);
1189 }
1190 else
1191 {
1192 unsigned int first = data_in->reader_cache->nodes.length ();
1193 tree result;
1194
1195 scc_entry_len = streamer_read_uhwi (ib);
1196
1197 /* Materialize size trees by reading their headers. */
1198 for (unsigned i = 0; i < size; ++i)
1199 {
1200 enum LTO_tags tag = streamer_read_record_start (ib);
1201 if (tag == LTO_null
1202 || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1203 || tag == LTO_tree_pickle_reference
1204 || tag == LTO_builtin_decl
1205 || tag == LTO_integer_cst
1206 || tag == LTO_tree_scc)
1207 gcc_unreachable ();
1208
1209 result = streamer_alloc_tree (ib, data_in, tag);
1210 streamer_tree_cache_append (data_in->reader_cache, result, 0);
1211 }
1212
1213 /* Read the tree bitpacks and references. */
1214 for (unsigned i = 0; i < size; ++i)
1215 {
1216 result = streamer_tree_cache_get_tree (data_in->reader_cache,
1217 first + i);
1218 lto_read_tree_1 (ib, data_in, result);
1219 /* end_marker = */ streamer_read_uchar (ib);
1220 }
1221 }
1222
1223 *len = size;
1224 *entry_len = scc_entry_len;
1225 return scc_hash;
1226 }
1227
1228
1229 /* Read a tree from input block IB using the per-file context in
1230 DATA_IN. This context is used, for example, to resolve references
1231 to previously read nodes. */
1232
1233 tree
1234 lto_input_tree_1 (struct lto_input_block *ib, struct data_in *data_in,
1235 enum LTO_tags tag, hashval_t hash)
1236 {
1237 tree result;
1238
1239 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
1240
1241 if (tag == LTO_null)
1242 result = NULL_TREE;
1243 else if (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1244 {
1245 /* If TAG is a reference to an indexable tree, the next value
1246 in IB is the index into the table where we expect to find
1247 that tree. */
1248 result = lto_input_tree_ref (ib, data_in, cfun, tag);
1249 }
1250 else if (tag == LTO_tree_pickle_reference)
1251 {
1252 /* If TAG is a reference to a previously read tree, look it up in
1253 the reader cache. */
1254 result = streamer_get_pickled_tree (ib, data_in);
1255 }
1256 else if (tag == LTO_builtin_decl)
1257 {
1258 /* If we are going to read a built-in function, all we need is
1259 the code and class. */
1260 result = streamer_get_builtin_tree (ib, data_in);
1261 }
1262 else if (tag == LTO_integer_cst)
1263 {
1264 /* For shared integer constants in singletons we can use the existing
1265 tree integer constant merging code. */
1266 tree type = stream_read_tree (ib, data_in);
1267 unsigned HOST_WIDE_INT low = streamer_read_uhwi (ib);
1268 HOST_WIDE_INT high = streamer_read_hwi (ib);
1269 result = build_int_cst_wide (type, low, high);
1270 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1271 }
1272 else if (tag == LTO_tree_scc)
1273 {
1274 unsigned len, entry_len;
1275
1276 /* Input and skip the SCC. */
1277 lto_input_scc (ib, data_in, &len, &entry_len);
1278
1279 /* Recurse. */
1280 return lto_input_tree (ib, data_in);
1281 }
1282 else
1283 {
1284 /* Otherwise, materialize a new node from IB. */
1285 result = lto_read_tree (ib, data_in, tag, hash);
1286 }
1287
1288 return result;
1289 }
1290
1291 tree
1292 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
1293 {
1294 return lto_input_tree_1 (ib, data_in, streamer_read_record_start (ib), 0);
1295 }
1296
1297
1298 /* Input toplevel asms. */
1299
1300 void
1301 lto_input_toplevel_asms (struct lto_file_decl_data *file_data, int order_base)
1302 {
1303 size_t len;
1304 const char *data = lto_get_section_data (file_data, LTO_section_asm,
1305 NULL, &len);
1306 const struct lto_asm_header *header = (const struct lto_asm_header *) data;
1307 int string_offset;
1308 struct data_in *data_in;
1309 struct lto_input_block ib;
1310 tree str;
1311
1312 if (! data)
1313 return;
1314
1315 string_offset = sizeof (*header) + header->main_size;
1316
1317 LTO_INIT_INPUT_BLOCK (ib,
1318 data + sizeof (*header),
1319 0,
1320 header->main_size);
1321
1322 data_in = lto_data_in_create (file_data, data + string_offset,
1323 header->string_size, vNULL);
1324
1325 /* Make sure the file was generated by the exact same compiler. */
1326 lto_check_version (header->lto_header.major_version,
1327 header->lto_header.minor_version);
1328
1329 while ((str = streamer_read_string_cst (data_in, &ib)))
1330 {
1331 struct asm_node *node = add_asm_node (str);
1332 node->order = streamer_read_hwi (&ib) + order_base;
1333 if (node->order >= symtab_order)
1334 symtab_order = node->order + 1;
1335 }
1336
1337 lto_data_in_delete (data_in);
1338
1339 lto_free_section_data (file_data, LTO_section_asm, NULL, data, len);
1340 }
1341
1342
1343 /* Initialization for the LTO reader. */
1344
1345 void
1346 lto_reader_init (void)
1347 {
1348 lto_streamer_init ();
1349 file_name_hash_table.create (37);
1350 }
1351
1352
1353 /* Create a new data_in object for FILE_DATA. STRINGS is the string
1354 table to use with LEN strings. RESOLUTIONS is the vector of linker
1355 resolutions (NULL if not using a linker plugin). */
1356
1357 struct data_in *
1358 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
1359 unsigned len,
1360 vec<ld_plugin_symbol_resolution_t> resolutions)
1361 {
1362 struct data_in *data_in = XCNEW (struct data_in);
1363 data_in->file_data = file_data;
1364 data_in->strings = strings;
1365 data_in->strings_len = len;
1366 data_in->globals_resolution = resolutions;
1367 data_in->reader_cache = streamer_tree_cache_create (false, false);
1368
1369 return data_in;
1370 }
1371
1372
1373 /* Remove DATA_IN. */
1374
1375 void
1376 lto_data_in_delete (struct data_in *data_in)
1377 {
1378 data_in->globals_resolution.release ();
1379 streamer_tree_cache_delete (data_in->reader_cache);
1380 free (data_in->labels);
1381 free (data_in);
1382 }