2014-01-17 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / lto-streamer-in.c
blobdf32a6b846adf02e9db34d9ff2de9de8359e4527
1 /* Read the GIMPLE representation from a file stream.
3 Copyright (C) 2009-2014 Free Software Foundation, Inc.
4 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5 Re-implemented by Diego Novillo <dnovillo@google.com>
7 This file is part of GCC.
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.
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.
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/>. */
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"
63 struct freeing_string_slot_hasher : string_slot_hasher
65 static inline void remove (value_type *);
68 inline void
69 freeing_string_slot_hasher::remove (value_type *v)
71 free (v);
74 /* The table to hold the file names. */
75 static hash_table <freeing_string_slot_hasher> file_name_hash_table;
78 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
79 number of valid tag values to check. */
81 void
82 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
84 va_list ap;
85 int i;
87 va_start (ap, ntags);
88 for (i = 0; i < ntags; i++)
89 if ((unsigned) actual == va_arg (ap, unsigned))
91 va_end (ap);
92 return;
95 va_end (ap);
96 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
100 /* Read LENGTH bytes from STREAM to ADDR. */
102 void
103 lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
105 size_t i;
106 unsigned char *const buffer = (unsigned char *const) addr;
108 for (i = 0; i < length; i++)
109 buffer[i] = streamer_read_uchar (ib);
113 /* Lookup STRING in file_name_hash_table. If found, return the existing
114 string, otherwise insert STRING as the canonical version. */
116 static const char *
117 canon_file_name (const char *string)
119 string_slot **slot;
120 struct string_slot s_slot;
121 size_t len = strlen (string);
123 s_slot.s = string;
124 s_slot.len = len;
126 slot = file_name_hash_table.find_slot (&s_slot, INSERT);
127 if (*slot == NULL)
129 char *saved_string;
130 struct string_slot *new_slot;
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;
140 else
142 struct string_slot *old_slot = *slot;
143 return old_slot->s;
148 /* Read a location bitpack from input block IB. */
150 location_t
151 lto_input_location (struct bitpack_d *bp, struct data_in *data_in)
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;
160 if (bp_unpack_value (bp, 1))
161 return UNKNOWN_LOCATION;
163 file_change = bp_unpack_value (bp, 1);
164 line_change = bp_unpack_value (bp, 1);
165 column_change = bp_unpack_value (bp, 1);
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));
173 if (line_change)
174 current_line = bp_unpack_var_len_unsigned (bp);
176 if (column_change)
177 current_col = bp_unpack_var_len_unsigned (bp);
179 if (file_change)
181 if (prev_file)
182 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
184 linemap_add (line_table, LC_ENTER, false, current_file, current_line);
186 else if (line_change)
187 linemap_line_start (line_table, current_line, current_col);
189 return linemap_position_for_column (line_table, current_col);
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. */
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)
204 unsigned HOST_WIDE_INT ix_u;
205 tree result = NULL_TREE;
207 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_namelist_decl_ref);
209 switch (tag)
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;
216 case LTO_ssa_name_ref:
217 ix_u = streamer_read_uhwi (ib);
218 result = (*SSANAMES (fn))[ix_u];
219 break;
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;
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;
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;
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;
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;
251 case LTO_namelist_decl_ref:
253 tree tmp;
254 vec<constructor_elt, va_gc> *nml_decls = NULL;
255 unsigned i, n;
257 result = make_node (NAMELIST_DECL);
258 TREE_TYPE (result) = void_type_node;
259 DECL_NAME (result) = stream_read_tree (ib, data_in);
260 n = streamer_read_uhwi (ib);
261 for (i = 0; i < n; i++)
263 ix_u = streamer_read_uhwi (ib);
264 tmp = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
265 gcc_assert (tmp != NULL_TREE);
266 CONSTRUCTOR_APPEND_ELT (nml_decls, NULL_TREE, tmp);
268 NAMELIST_DECL_ASSOCIATED_DECL (result) = build_constructor (NULL_TREE,
269 nml_decls);
270 break;
273 default:
274 gcc_unreachable ();
277 gcc_assert (result);
279 return result;
283 /* Read and return a double-linked list of catch handlers from input
284 block IB, using descriptors in DATA_IN. */
286 static struct eh_catch_d *
287 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
288 eh_catch *last_p)
290 eh_catch first;
291 enum LTO_tags tag;
293 *last_p = first = NULL;
294 tag = streamer_read_record_start (ib);
295 while (tag)
297 tree list;
298 eh_catch n;
300 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
302 /* Read the catch node. */
303 n = ggc_alloc_cleared_eh_catch_d ();
304 n->type_list = stream_read_tree (ib, data_in);
305 n->filter_list = stream_read_tree (ib, data_in);
306 n->label = stream_read_tree (ib, data_in);
308 /* Register all the types in N->FILTER_LIST. */
309 for (list = n->filter_list; list; list = TREE_CHAIN (list))
310 add_type_for_runtime (TREE_VALUE (list));
312 /* Chain N to the end of the list. */
313 if (*last_p)
314 (*last_p)->next_catch = n;
315 n->prev_catch = *last_p;
316 *last_p = n;
318 /* Set the head of the list the first time through the loop. */
319 if (first == NULL)
320 first = n;
322 tag = streamer_read_record_start (ib);
325 return first;
329 /* Read and return EH region IX from input block IB, using descriptors
330 in DATA_IN. */
332 static eh_region
333 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
335 enum LTO_tags tag;
336 eh_region r;
338 /* Read the region header. */
339 tag = streamer_read_record_start (ib);
340 if (tag == LTO_null)
341 return NULL;
343 r = ggc_alloc_cleared_eh_region_d ();
344 r->index = streamer_read_hwi (ib);
346 gcc_assert (r->index == ix);
348 /* Read all the region pointers as region numbers. We'll fix up
349 the pointers once the whole array has been read. */
350 r->outer = (eh_region) (intptr_t) streamer_read_hwi (ib);
351 r->inner = (eh_region) (intptr_t) streamer_read_hwi (ib);
352 r->next_peer = (eh_region) (intptr_t) streamer_read_hwi (ib);
354 switch (tag)
356 case LTO_ert_cleanup:
357 r->type = ERT_CLEANUP;
358 break;
360 case LTO_ert_try:
362 struct eh_catch_d *last_catch;
363 r->type = ERT_TRY;
364 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
365 &last_catch);
366 r->u.eh_try.last_catch = last_catch;
367 break;
370 case LTO_ert_allowed_exceptions:
372 tree l;
374 r->type = ERT_ALLOWED_EXCEPTIONS;
375 r->u.allowed.type_list = stream_read_tree (ib, data_in);
376 r->u.allowed.label = stream_read_tree (ib, data_in);
377 r->u.allowed.filter = streamer_read_uhwi (ib);
379 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
380 add_type_for_runtime (TREE_VALUE (l));
382 break;
384 case LTO_ert_must_not_throw:
386 r->type = ERT_MUST_NOT_THROW;
387 r->u.must_not_throw.failure_decl = stream_read_tree (ib, data_in);
388 bitpack_d bp = streamer_read_bitpack (ib);
389 r->u.must_not_throw.failure_loc
390 = stream_input_location (&bp, data_in);
392 break;
394 default:
395 gcc_unreachable ();
398 r->landing_pads = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
400 return r;
404 /* Read and return EH landing pad IX from input block IB, using descriptors
405 in DATA_IN. */
407 static eh_landing_pad
408 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
410 enum LTO_tags tag;
411 eh_landing_pad lp;
413 /* Read the landing pad header. */
414 tag = streamer_read_record_start (ib);
415 if (tag == LTO_null)
416 return NULL;
418 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
420 lp = ggc_alloc_cleared_eh_landing_pad_d ();
421 lp->index = streamer_read_hwi (ib);
422 gcc_assert (lp->index == ix);
423 lp->next_lp = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
424 lp->region = (eh_region) (intptr_t) streamer_read_hwi (ib);
425 lp->post_landing_pad = stream_read_tree (ib, data_in);
427 return lp;
431 /* After reading the EH regions, pointers to peer and children regions
432 are region numbers. This converts all these region numbers into
433 real pointers into the rematerialized regions for FN. ROOT_REGION
434 is the region number for the root EH region in FN. */
436 static void
437 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
439 unsigned i;
440 vec<eh_region, va_gc> *eh_array = fn->eh->region_array;
441 vec<eh_landing_pad, va_gc> *lp_array = fn->eh->lp_array;
442 eh_region r;
443 eh_landing_pad lp;
445 gcc_assert (eh_array && lp_array);
447 gcc_assert (root_region >= 0);
448 fn->eh->region_tree = (*eh_array)[root_region];
450 #define FIXUP_EH_REGION(r) (r) = (*eh_array)[(HOST_WIDE_INT) (intptr_t) (r)]
451 #define FIXUP_EH_LP(p) (p) = (*lp_array)[(HOST_WIDE_INT) (intptr_t) (p)]
453 /* Convert all the index numbers stored in pointer fields into
454 pointers to the corresponding slots in the EH region array. */
455 FOR_EACH_VEC_ELT (*eh_array, i, r)
457 /* The array may contain NULL regions. */
458 if (r == NULL)
459 continue;
461 gcc_assert (i == (unsigned) r->index);
462 FIXUP_EH_REGION (r->outer);
463 FIXUP_EH_REGION (r->inner);
464 FIXUP_EH_REGION (r->next_peer);
465 FIXUP_EH_LP (r->landing_pads);
468 /* Convert all the index numbers stored in pointer fields into
469 pointers to the corresponding slots in the EH landing pad array. */
470 FOR_EACH_VEC_ELT (*lp_array, i, lp)
472 /* The array may contain NULL landing pads. */
473 if (lp == NULL)
474 continue;
476 gcc_assert (i == (unsigned) lp->index);
477 FIXUP_EH_LP (lp->next_lp);
478 FIXUP_EH_REGION (lp->region);
481 #undef FIXUP_EH_REGION
482 #undef FIXUP_EH_LP
486 /* Initialize EH support. */
488 void
489 lto_init_eh (void)
491 static bool eh_initialized_p = false;
493 if (eh_initialized_p)
494 return;
496 /* Contrary to most other FEs, we only initialize EH support when at
497 least one of the files in the set contains exception regions in
498 it. Since this happens much later than the call to init_eh in
499 lang_dependent_init, we have to set flag_exceptions and call
500 init_eh again to initialize the EH tables. */
501 flag_exceptions = 1;
502 init_eh ();
504 eh_initialized_p = true;
508 /* Read the exception table for FN from IB using the data descriptors
509 in DATA_IN. */
511 static void
512 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
513 struct function *fn)
515 HOST_WIDE_INT i, root_region, len;
516 enum LTO_tags tag;
518 tag = streamer_read_record_start (ib);
519 if (tag == LTO_null)
520 return;
522 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
524 /* If the file contains EH regions, then it was compiled with
525 -fexceptions. In that case, initialize the backend EH
526 machinery. */
527 lto_init_eh ();
529 gcc_assert (fn->eh);
531 root_region = streamer_read_hwi (ib);
532 gcc_assert (root_region == (int) root_region);
534 /* Read the EH region array. */
535 len = streamer_read_hwi (ib);
536 gcc_assert (len == (int) len);
537 if (len > 0)
539 vec_safe_grow_cleared (fn->eh->region_array, len);
540 for (i = 0; i < len; i++)
542 eh_region r = input_eh_region (ib, data_in, i);
543 (*fn->eh->region_array)[i] = r;
547 /* Read the landing pads. */
548 len = streamer_read_hwi (ib);
549 gcc_assert (len == (int) len);
550 if (len > 0)
552 vec_safe_grow_cleared (fn->eh->lp_array, len);
553 for (i = 0; i < len; i++)
555 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
556 (*fn->eh->lp_array)[i] = lp;
560 /* Read the runtime type data. */
561 len = streamer_read_hwi (ib);
562 gcc_assert (len == (int) len);
563 if (len > 0)
565 vec_safe_grow_cleared (fn->eh->ttype_data, len);
566 for (i = 0; i < len; i++)
568 tree ttype = stream_read_tree (ib, data_in);
569 (*fn->eh->ttype_data)[i] = ttype;
573 /* Read the table of action chains. */
574 len = streamer_read_hwi (ib);
575 gcc_assert (len == (int) len);
576 if (len > 0)
578 if (targetm.arm_eabi_unwinder)
580 vec_safe_grow_cleared (fn->eh->ehspec_data.arm_eabi, len);
581 for (i = 0; i < len; i++)
583 tree t = stream_read_tree (ib, data_in);
584 (*fn->eh->ehspec_data.arm_eabi)[i] = t;
587 else
589 vec_safe_grow_cleared (fn->eh->ehspec_data.other, len);
590 for (i = 0; i < len; i++)
592 uchar c = streamer_read_uchar (ib);
593 (*fn->eh->ehspec_data.other)[i] = c;
598 /* Reconstruct the EH region tree by fixing up the peer/children
599 pointers. */
600 fixup_eh_region_pointers (fn, root_region);
602 tag = streamer_read_record_start (ib);
603 lto_tag_check_range (tag, LTO_null, LTO_null);
607 /* Make a new basic block with index INDEX in function FN. */
609 static basic_block
610 make_new_block (struct function *fn, unsigned int index)
612 basic_block bb = alloc_block ();
613 bb->index = index;
614 SET_BASIC_BLOCK_FOR_FN (fn, index, bb);
615 n_basic_blocks_for_fn (fn)++;
616 return bb;
620 /* Read the CFG for function FN from input block IB. */
622 static void
623 input_cfg (struct lto_input_block *ib, struct data_in *data_in,
624 struct function *fn,
625 int count_materialization_scale)
627 unsigned int bb_count;
628 basic_block p_bb;
629 unsigned int i;
630 int index;
632 init_empty_tree_cfg_for_function (fn);
633 init_ssa_operands (fn);
635 profile_status_for_fn (fn) = streamer_read_enum (ib, profile_status_d,
636 PROFILE_LAST);
638 bb_count = streamer_read_uhwi (ib);
640 last_basic_block_for_fn (fn) = bb_count;
641 if (bb_count > basic_block_info_for_fn (fn)->length ())
642 vec_safe_grow_cleared (basic_block_info_for_fn (fn), bb_count);
644 if (bb_count > label_to_block_map_for_fn (fn)->length ())
645 vec_safe_grow_cleared (label_to_block_map_for_fn (fn), bb_count);
647 index = streamer_read_hwi (ib);
648 while (index != -1)
650 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
651 unsigned int edge_count;
653 if (bb == NULL)
654 bb = make_new_block (fn, index);
656 edge_count = streamer_read_uhwi (ib);
658 /* Connect up the CFG. */
659 for (i = 0; i < edge_count; i++)
661 unsigned int dest_index;
662 unsigned int edge_flags;
663 basic_block dest;
664 int probability;
665 gcov_type count;
666 edge e;
668 dest_index = streamer_read_uhwi (ib);
669 probability = (int) streamer_read_hwi (ib);
670 count = apply_scale ((gcov_type) streamer_read_gcov_count (ib),
671 count_materialization_scale);
672 edge_flags = streamer_read_uhwi (ib);
674 dest = BASIC_BLOCK_FOR_FN (fn, dest_index);
676 if (dest == NULL)
677 dest = make_new_block (fn, dest_index);
679 e = make_edge (bb, dest, edge_flags);
680 e->probability = probability;
681 e->count = count;
684 index = streamer_read_hwi (ib);
687 p_bb = ENTRY_BLOCK_PTR_FOR_FN (fn);
688 index = streamer_read_hwi (ib);
689 while (index != -1)
691 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
692 bb->prev_bb = p_bb;
693 p_bb->next_bb = bb;
694 p_bb = bb;
695 index = streamer_read_hwi (ib);
698 /* ??? The cfgloop interface is tied to cfun. */
699 gcc_assert (cfun == fn);
701 /* Input the loop tree. */
702 unsigned n_loops = streamer_read_uhwi (ib);
703 if (n_loops == 0)
704 return;
706 struct loops *loops = ggc_alloc_cleared_loops ();
707 init_loops_structure (fn, loops, n_loops);
708 set_loops_for_fn (fn, loops);
710 /* Input each loop and associate it with its loop header so
711 flow_loops_find can rebuild the loop tree. */
712 for (unsigned i = 1; i < n_loops; ++i)
714 int header_index = streamer_read_hwi (ib);
715 if (header_index == -1)
717 loops->larray->quick_push (NULL);
718 continue;
721 struct loop *loop = alloc_loop ();
722 loop->header = BASIC_BLOCK_FOR_FN (fn, header_index);
723 loop->header->loop_father = loop;
725 /* Read everything copy_loop_info copies. */
726 loop->estimate_state = streamer_read_enum (ib, loop_estimation, EST_LAST);
727 loop->any_upper_bound = streamer_read_hwi (ib);
728 if (loop->any_upper_bound)
730 loop->nb_iterations_upper_bound.low = streamer_read_uhwi (ib);
731 loop->nb_iterations_upper_bound.high = streamer_read_hwi (ib);
733 loop->any_estimate = streamer_read_hwi (ib);
734 if (loop->any_estimate)
736 loop->nb_iterations_estimate.low = streamer_read_uhwi (ib);
737 loop->nb_iterations_estimate.high = streamer_read_hwi (ib);
740 /* Read OMP SIMD related info. */
741 loop->safelen = streamer_read_hwi (ib);
742 loop->force_vect = streamer_read_hwi (ib);
743 loop->simduid = stream_read_tree (ib, data_in);
745 place_new_loop (fn, loop);
747 /* flow_loops_find doesn't like loops not in the tree, hook them
748 all as siblings of the tree root temporarily. */
749 flow_loop_tree_node_add (loops->tree_root, loop);
752 /* Rebuild the loop tree. */
753 flow_loops_find (loops);
757 /* Read the SSA names array for function FN from DATA_IN using input
758 block IB. */
760 static void
761 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
762 struct function *fn)
764 unsigned int i, size;
766 size = streamer_read_uhwi (ib);
767 init_ssanames (fn, size);
769 i = streamer_read_uhwi (ib);
770 while (i)
772 tree ssa_name, name;
773 bool is_default_def;
775 /* Skip over the elements that had been freed. */
776 while (SSANAMES (fn)->length () < i)
777 SSANAMES (fn)->quick_push (NULL_TREE);
779 is_default_def = (streamer_read_uchar (ib) != 0);
780 name = stream_read_tree (ib, data_in);
781 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
783 if (is_default_def)
784 set_ssa_default_def (cfun, SSA_NAME_VAR (ssa_name), ssa_name);
786 i = streamer_read_uhwi (ib);
791 /* Go through all NODE edges and fixup call_stmt pointers
792 so they point to STMTS. */
794 static void
795 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts,
796 struct function *fn)
798 struct cgraph_edge *cedge;
799 struct ipa_ref *ref;
800 unsigned int i;
802 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
804 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
805 fatal_error ("Cgraph edge statement index out of range");
806 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
807 if (!cedge->call_stmt)
808 fatal_error ("Cgraph edge statement index not found");
810 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
812 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
813 fatal_error ("Cgraph edge statement index out of range");
814 cedge->call_stmt = stmts[cedge->lto_stmt_uid - 1];
815 if (!cedge->call_stmt)
816 fatal_error ("Cgraph edge statement index not found");
818 for (i = 0;
819 ipa_ref_list_reference_iterate (&node->ref_list, i, ref);
820 i++)
821 if (ref->lto_stmt_uid)
823 if (gimple_stmt_max_uid (fn) < ref->lto_stmt_uid)
824 fatal_error ("Reference statement index out of range");
825 ref->stmt = stmts[ref->lto_stmt_uid - 1];
826 if (!ref->stmt)
827 fatal_error ("Reference statement index not found");
832 /* Fixup call_stmt pointers in NODE and all clones. */
834 static void
835 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
837 struct cgraph_node *node;
838 struct function *fn;
840 while (orig->clone_of)
841 orig = orig->clone_of;
842 fn = DECL_STRUCT_FUNCTION (orig->decl);
844 fixup_call_stmt_edges_1 (orig, stmts, fn);
845 if (orig->clones)
846 for (node = orig->clones; node != orig;)
848 fixup_call_stmt_edges_1 (node, stmts, fn);
849 if (node->clones)
850 node = node->clones;
851 else if (node->next_sibling_clone)
852 node = node->next_sibling_clone;
853 else
855 while (node != orig && !node->next_sibling_clone)
856 node = node->clone_of;
857 if (node != orig)
858 node = node->next_sibling_clone;
864 /* Input the base body of struct function FN from DATA_IN
865 using input block IB. */
867 static void
868 input_struct_function_base (struct function *fn, struct data_in *data_in,
869 struct lto_input_block *ib)
871 struct bitpack_d bp;
872 int len;
874 /* Read the static chain and non-local goto save area. */
875 fn->static_chain_decl = stream_read_tree (ib, data_in);
876 fn->nonlocal_goto_save_area = stream_read_tree (ib, data_in);
878 /* Read all the local symbols. */
879 len = streamer_read_hwi (ib);
880 if (len > 0)
882 int i;
883 vec_safe_grow_cleared (fn->local_decls, len);
884 for (i = 0; i < len; i++)
886 tree t = stream_read_tree (ib, data_in);
887 (*fn->local_decls)[i] = t;
891 /* Input the current IL state of the function. */
892 fn->curr_properties = streamer_read_uhwi (ib);
894 /* Read all the attributes for FN. */
895 bp = streamer_read_bitpack (ib);
896 fn->is_thunk = bp_unpack_value (&bp, 1);
897 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
898 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
899 fn->returns_struct = bp_unpack_value (&bp, 1);
900 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
901 fn->can_delete_dead_exceptions = bp_unpack_value (&bp, 1);
902 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
903 fn->after_inlining = bp_unpack_value (&bp, 1);
904 fn->stdarg = bp_unpack_value (&bp, 1);
905 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
906 fn->calls_alloca = bp_unpack_value (&bp, 1);
907 fn->calls_setjmp = bp_unpack_value (&bp, 1);
908 fn->has_force_vect_loops = bp_unpack_value (&bp, 1);
909 fn->has_simduid_loops = bp_unpack_value (&bp, 1);
910 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
911 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
913 /* Input the function start and end loci. */
914 fn->function_start_locus = stream_input_location (&bp, data_in);
915 fn->function_end_locus = stream_input_location (&bp, data_in);
919 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
921 static void
922 input_function (tree fn_decl, struct data_in *data_in,
923 struct lto_input_block *ib, struct lto_input_block *ib_cfg)
925 struct function *fn;
926 enum LTO_tags tag;
927 gimple *stmts;
928 basic_block bb;
929 struct cgraph_node *node;
931 tag = streamer_read_record_start (ib);
932 lto_tag_check (tag, LTO_function);
934 /* Read decls for parameters and args. */
935 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in);
936 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in);
938 /* Read the tree of lexical scopes for the function. */
939 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in);
941 if (!streamer_read_uhwi (ib))
942 return;
944 push_struct_function (fn_decl);
945 fn = DECL_STRUCT_FUNCTION (fn_decl);
946 init_tree_ssa (fn);
947 /* We input IL in SSA form. */
948 cfun->gimple_df->in_ssa_p = true;
950 gimple_register_cfg_hooks ();
952 node = cgraph_get_node (fn_decl);
953 if (!node)
954 node = cgraph_create_node (fn_decl);
955 input_struct_function_base (fn, data_in, ib);
956 input_cfg (ib_cfg, data_in, fn, node->count_materialization_scale);
958 /* Read all the SSA names. */
959 input_ssa_names (ib, data_in, fn);
961 /* Read the exception handling regions in the function. */
962 input_eh_regions (ib, data_in, fn);
964 gcc_assert (DECL_INITIAL (fn_decl));
965 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
967 /* Read all the basic blocks. */
968 tag = streamer_read_record_start (ib);
969 while (tag)
971 input_bb (ib, tag, data_in, fn,
972 node->count_materialization_scale);
973 tag = streamer_read_record_start (ib);
976 /* Fix up the call statements that are mentioned in the callgraph
977 edges. */
978 set_gimple_stmt_max_uid (cfun, 0);
979 FOR_ALL_BB_FN (bb, cfun)
981 gimple_stmt_iterator gsi;
982 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
984 gimple stmt = gsi_stmt (gsi);
985 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
987 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
989 gimple stmt = gsi_stmt (gsi);
990 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
993 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
994 FOR_ALL_BB_FN (bb, cfun)
996 gimple_stmt_iterator bsi = gsi_start_phis (bb);
997 while (!gsi_end_p (bsi))
999 gimple stmt = gsi_stmt (bsi);
1000 gsi_next (&bsi);
1001 stmts[gimple_uid (stmt)] = stmt;
1003 bsi = gsi_start_bb (bb);
1004 while (!gsi_end_p (bsi))
1006 gimple stmt = gsi_stmt (bsi);
1007 /* If we're recompiling LTO objects with debug stmts but
1008 we're not supposed to have debug stmts, remove them now.
1009 We can't remove them earlier because this would cause uid
1010 mismatches in fixups, but we can do it at this point, as
1011 long as debug stmts don't require fixups. */
1012 if (!MAY_HAVE_DEBUG_STMTS && is_gimple_debug (stmt))
1014 gimple_stmt_iterator gsi = bsi;
1015 gsi_next (&bsi);
1016 gsi_remove (&gsi, true);
1018 else
1020 gsi_next (&bsi);
1021 stmts[gimple_uid (stmt)] = stmt;
1026 /* Set the gimple body to the statement sequence in the entry
1027 basic block. FIXME lto, this is fairly hacky. The existence
1028 of a gimple body is used by the cgraph routines, but we should
1029 really use the presence of the CFG. */
1031 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs);
1032 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1035 fixup_call_stmt_edges (node, stmts);
1036 execute_all_ipa_stmt_fixups (node, stmts);
1038 update_ssa (TODO_update_ssa_only_virtuals);
1039 free_dominance_info (CDI_DOMINATORS);
1040 free_dominance_info (CDI_POST_DOMINATORS);
1041 free (stmts);
1042 pop_cfun ();
1046 /* Read the body from DATA for function NODE and fill it in.
1047 FILE_DATA are the global decls and types. SECTION_TYPE is either
1048 LTO_section_function_body or LTO_section_static_initializer. If
1049 section type is LTO_section_function_body, FN must be the decl for
1050 that function. */
1052 static void
1053 lto_read_body (struct lto_file_decl_data *file_data, struct cgraph_node *node,
1054 const char *data, enum lto_section_type section_type)
1056 const struct lto_function_header *header;
1057 struct data_in *data_in;
1058 int cfg_offset;
1059 int main_offset;
1060 int string_offset;
1061 struct lto_input_block ib_cfg;
1062 struct lto_input_block ib_main;
1063 tree fn_decl = node->decl;
1065 header = (const struct lto_function_header *) data;
1066 cfg_offset = sizeof (struct lto_function_header);
1067 main_offset = cfg_offset + header->cfg_size;
1068 string_offset = main_offset + header->main_size;
1070 LTO_INIT_INPUT_BLOCK (ib_cfg,
1071 data + cfg_offset,
1073 header->cfg_size);
1075 LTO_INIT_INPUT_BLOCK (ib_main,
1076 data + main_offset,
1078 header->main_size);
1080 data_in = lto_data_in_create (file_data, data + string_offset,
1081 header->string_size, vNULL);
1083 /* Make sure the file was generated by the exact same compiler. */
1084 lto_check_version (header->lto_header.major_version,
1085 header->lto_header.minor_version);
1087 if (section_type == LTO_section_function_body)
1089 struct lto_in_decl_state *decl_state;
1090 unsigned from;
1092 gcc_checking_assert (node);
1094 /* Use the function's decl state. */
1095 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1096 gcc_assert (decl_state);
1097 file_data->current_decl_state = decl_state;
1100 /* Set up the struct function. */
1101 from = data_in->reader_cache->nodes.length ();
1102 input_function (fn_decl, data_in, &ib_main, &ib_cfg);
1103 /* And fixup types we streamed locally. */
1105 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1106 unsigned len = cache->nodes.length ();
1107 unsigned i;
1108 for (i = len; i-- > from;)
1110 tree t = streamer_tree_cache_get_tree (cache, i);
1111 if (t == NULL_TREE)
1112 continue;
1114 if (TYPE_P (t))
1116 gcc_assert (TYPE_CANONICAL (t) == NULL_TREE);
1117 TYPE_CANONICAL (t) = TYPE_MAIN_VARIANT (t);
1118 if (TYPE_MAIN_VARIANT (t) != t)
1120 gcc_assert (TYPE_NEXT_VARIANT (t) == NULL_TREE);
1121 TYPE_NEXT_VARIANT (t)
1122 = TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t));
1123 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t)) = t;
1129 /* Restore decl state */
1130 file_data->current_decl_state = file_data->global_decl_state;
1133 lto_data_in_delete (data_in);
1137 /* Read the body of NODE using DATA. FILE_DATA holds the global
1138 decls and types. */
1140 void
1141 lto_input_function_body (struct lto_file_decl_data *file_data,
1142 struct cgraph_node *node, const char *data)
1144 lto_read_body (file_data, node, data, LTO_section_function_body);
1148 /* Read the physical representation of a tree node EXPR from
1149 input block IB using the per-file context in DATA_IN. */
1151 static void
1152 lto_read_tree_1 (struct lto_input_block *ib, struct data_in *data_in, tree expr)
1154 /* Read all the bitfield values in EXPR. Note that for LTO, we
1155 only write language-independent bitfields, so no more unpacking is
1156 needed. */
1157 streamer_read_tree_bitfields (ib, data_in, expr);
1159 /* Read all the pointer fields in EXPR. */
1160 streamer_read_tree_body (ib, data_in, expr);
1162 /* Read any LTO-specific data not read by the tree streamer. */
1163 if (DECL_P (expr)
1164 && TREE_CODE (expr) != FUNCTION_DECL
1165 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1166 DECL_INITIAL (expr) = stream_read_tree (ib, data_in);
1168 /* We should never try to instantiate an MD or NORMAL builtin here. */
1169 if (TREE_CODE (expr) == FUNCTION_DECL)
1170 gcc_assert (!streamer_handle_as_builtin_p (expr));
1172 #ifdef LTO_STREAMER_DEBUG
1173 /* Remove the mapping to RESULT's original address set by
1174 streamer_alloc_tree. */
1175 lto_orig_address_remove (expr);
1176 #endif
1179 /* Read the physical representation of a tree node with tag TAG from
1180 input block IB using the per-file context in DATA_IN. */
1182 static tree
1183 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
1184 enum LTO_tags tag, hashval_t hash)
1186 /* Instantiate a new tree node. */
1187 tree result = streamer_alloc_tree (ib, data_in, tag);
1189 /* Enter RESULT in the reader cache. This will make RESULT
1190 available so that circular references in the rest of the tree
1191 structure can be resolved in subsequent calls to stream_read_tree. */
1192 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1194 lto_read_tree_1 (ib, data_in, result);
1196 /* end_marker = */ streamer_read_uchar (ib);
1198 return result;
1202 /* Populate the reader cache with trees materialized from the SCC
1203 following in the IB, DATA_IN stream. */
1205 hashval_t
1206 lto_input_scc (struct lto_input_block *ib, struct data_in *data_in,
1207 unsigned *len, unsigned *entry_len)
1209 /* A blob of unnamed tree nodes, fill the cache from it and
1210 recurse. */
1211 unsigned size = streamer_read_uhwi (ib);
1212 hashval_t scc_hash = streamer_read_uhwi (ib);
1213 unsigned scc_entry_len = 1;
1215 if (size == 1)
1217 enum LTO_tags tag = streamer_read_record_start (ib);
1218 lto_input_tree_1 (ib, data_in, tag, scc_hash);
1220 else
1222 unsigned int first = data_in->reader_cache->nodes.length ();
1223 tree result;
1225 scc_entry_len = streamer_read_uhwi (ib);
1227 /* Materialize size trees by reading their headers. */
1228 for (unsigned i = 0; i < size; ++i)
1230 enum LTO_tags tag = streamer_read_record_start (ib);
1231 if (tag == LTO_null
1232 || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1233 || tag == LTO_tree_pickle_reference
1234 || tag == LTO_builtin_decl
1235 || tag == LTO_integer_cst
1236 || tag == LTO_tree_scc)
1237 gcc_unreachable ();
1239 result = streamer_alloc_tree (ib, data_in, tag);
1240 streamer_tree_cache_append (data_in->reader_cache, result, 0);
1243 /* Read the tree bitpacks and references. */
1244 for (unsigned i = 0; i < size; ++i)
1246 result = streamer_tree_cache_get_tree (data_in->reader_cache,
1247 first + i);
1248 lto_read_tree_1 (ib, data_in, result);
1249 /* end_marker = */ streamer_read_uchar (ib);
1253 *len = size;
1254 *entry_len = scc_entry_len;
1255 return scc_hash;
1259 /* Read a tree from input block IB using the per-file context in
1260 DATA_IN. This context is used, for example, to resolve references
1261 to previously read nodes. */
1263 tree
1264 lto_input_tree_1 (struct lto_input_block *ib, struct data_in *data_in,
1265 enum LTO_tags tag, hashval_t hash)
1267 tree result;
1269 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
1271 if (tag == LTO_null)
1272 result = NULL_TREE;
1273 else if (tag >= LTO_field_decl_ref && tag <= LTO_namelist_decl_ref)
1275 /* If TAG is a reference to an indexable tree, the next value
1276 in IB is the index into the table where we expect to find
1277 that tree. */
1278 result = lto_input_tree_ref (ib, data_in, cfun, tag);
1280 else if (tag == LTO_tree_pickle_reference)
1282 /* If TAG is a reference to a previously read tree, look it up in
1283 the reader cache. */
1284 result = streamer_get_pickled_tree (ib, data_in);
1286 else if (tag == LTO_builtin_decl)
1288 /* If we are going to read a built-in function, all we need is
1289 the code and class. */
1290 result = streamer_get_builtin_tree (ib, data_in);
1292 else if (tag == LTO_integer_cst)
1294 /* For shared integer constants in singletons we can use the existing
1295 tree integer constant merging code. */
1296 tree type = stream_read_tree (ib, data_in);
1297 unsigned HOST_WIDE_INT low = streamer_read_uhwi (ib);
1298 HOST_WIDE_INT high = streamer_read_hwi (ib);
1299 result = build_int_cst_wide (type, low, high);
1300 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1302 else if (tag == LTO_tree_scc)
1304 unsigned len, entry_len;
1306 /* Input and skip the SCC. */
1307 lto_input_scc (ib, data_in, &len, &entry_len);
1309 /* Recurse. */
1310 return lto_input_tree (ib, data_in);
1312 else
1314 /* Otherwise, materialize a new node from IB. */
1315 result = lto_read_tree (ib, data_in, tag, hash);
1318 return result;
1321 tree
1322 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
1324 return lto_input_tree_1 (ib, data_in, streamer_read_record_start (ib), 0);
1328 /* Input toplevel asms. */
1330 void
1331 lto_input_toplevel_asms (struct lto_file_decl_data *file_data, int order_base)
1333 size_t len;
1334 const char *data = lto_get_section_data (file_data, LTO_section_asm,
1335 NULL, &len);
1336 const struct lto_asm_header *header = (const struct lto_asm_header *) data;
1337 int string_offset;
1338 struct data_in *data_in;
1339 struct lto_input_block ib;
1340 tree str;
1342 if (! data)
1343 return;
1345 string_offset = sizeof (*header) + header->main_size;
1347 LTO_INIT_INPUT_BLOCK (ib,
1348 data + sizeof (*header),
1350 header->main_size);
1352 data_in = lto_data_in_create (file_data, data + string_offset,
1353 header->string_size, vNULL);
1355 /* Make sure the file was generated by the exact same compiler. */
1356 lto_check_version (header->lto_header.major_version,
1357 header->lto_header.minor_version);
1359 while ((str = streamer_read_string_cst (data_in, &ib)))
1361 struct asm_node *node = add_asm_node (str);
1362 node->order = streamer_read_hwi (&ib) + order_base;
1363 if (node->order >= symtab_order)
1364 symtab_order = node->order + 1;
1367 lto_data_in_delete (data_in);
1369 lto_free_section_data (file_data, LTO_section_asm, NULL, data, len);
1373 /* Initialization for the LTO reader. */
1375 void
1376 lto_reader_init (void)
1378 lto_streamer_init ();
1379 file_name_hash_table.create (37);
1383 /* Create a new data_in object for FILE_DATA. STRINGS is the string
1384 table to use with LEN strings. RESOLUTIONS is the vector of linker
1385 resolutions (NULL if not using a linker plugin). */
1387 struct data_in *
1388 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
1389 unsigned len,
1390 vec<ld_plugin_symbol_resolution_t> resolutions)
1392 struct data_in *data_in = XCNEW (struct data_in);
1393 data_in->file_data = file_data;
1394 data_in->strings = strings;
1395 data_in->strings_len = len;
1396 data_in->globals_resolution = resolutions;
1397 data_in->reader_cache = streamer_tree_cache_create (false, false);
1399 return data_in;
1403 /* Remove DATA_IN. */
1405 void
1406 lto_data_in_delete (struct data_in *data_in)
1408 data_in->globals_resolution.release ();
1409 streamer_tree_cache_delete (data_in->reader_cache);
1410 free (data_in->labels);
1411 free (data_in);