Make all gimple_omp_for_ accessors typesafe
[official-gcc.git] / gcc / lto-streamer-in.c
blobd97646b8e5533bbd3c0551672aafc0302b1553c9
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 "predict.h"
36 #include "vec.h"
37 #include "hash-set.h"
38 #include "machmode.h"
39 #include "hard-reg-set.h"
40 #include "function.h"
41 #include "dominance.h"
42 #include "cfg.h"
43 #include "basic-block.h"
44 #include "tree-ssa-alias.h"
45 #include "internal-fn.h"
46 #include "gimple-expr.h"
47 #include "is-a.h"
48 #include "gimple.h"
49 #include "gimple-iterator.h"
50 #include "gimple-ssa.h"
51 #include "tree-cfg.h"
52 #include "tree-ssanames.h"
53 #include "tree-into-ssa.h"
54 #include "tree-dfa.h"
55 #include "tree-ssa.h"
56 #include "tree-pass.h"
57 #include "diagnostic.h"
58 #include "except.h"
59 #include "debug.h"
60 #include "ipa-utils.h"
61 #include "data-streamer.h"
62 #include "gimple-streamer.h"
63 #include "lto-streamer.h"
64 #include "tree-streamer.h"
65 #include "tree-pass.h"
66 #include "streamer-hooks.h"
67 #include "cfgloop.h"
70 struct freeing_string_slot_hasher : string_slot_hasher
72 static inline void remove (value_type *);
75 inline void
76 freeing_string_slot_hasher::remove (value_type *v)
78 free (v);
81 /* The table to hold the file names. */
82 static hash_table<freeing_string_slot_hasher> *file_name_hash_table;
85 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
86 number of valid tag values to check. */
88 void
89 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
91 va_list ap;
92 int i;
94 va_start (ap, ntags);
95 for (i = 0; i < ntags; i++)
96 if ((unsigned) actual == va_arg (ap, unsigned))
98 va_end (ap);
99 return;
102 va_end (ap);
103 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
107 /* Read LENGTH bytes from STREAM to ADDR. */
109 void
110 lto_input_data_block (struct lto_input_block *ib, void *addr, size_t length)
112 size_t i;
113 unsigned char *const buffer = (unsigned char *const) addr;
115 for (i = 0; i < length; i++)
116 buffer[i] = streamer_read_uchar (ib);
120 /* Lookup STRING in file_name_hash_table. If found, return the existing
121 string, otherwise insert STRING as the canonical version. */
123 static const char *
124 canon_file_name (const char *string)
126 string_slot **slot;
127 struct string_slot s_slot;
128 size_t len = strlen (string);
130 s_slot.s = string;
131 s_slot.len = len;
133 slot = file_name_hash_table->find_slot (&s_slot, INSERT);
134 if (*slot == NULL)
136 char *saved_string;
137 struct string_slot *new_slot;
139 saved_string = (char *) xmalloc (len + 1);
140 new_slot = XCNEW (struct string_slot);
141 memcpy (saved_string, string, len + 1);
142 new_slot->s = saved_string;
143 new_slot->len = len;
144 *slot = new_slot;
145 return saved_string;
147 else
149 struct string_slot *old_slot = *slot;
150 return old_slot->s;
155 /* Read a location bitpack from input block IB. */
157 location_t
158 lto_input_location (struct bitpack_d *bp, struct data_in *data_in)
160 static const char *current_file;
161 static int current_line;
162 static int current_col;
163 bool file_change, line_change, column_change;
164 bool prev_file = current_file != NULL;
166 if (bp_unpack_value (bp, 1))
167 return UNKNOWN_LOCATION;
169 file_change = bp_unpack_value (bp, 1);
170 line_change = bp_unpack_value (bp, 1);
171 column_change = bp_unpack_value (bp, 1);
173 if (file_change)
174 current_file = canon_file_name (bp_unpack_string (data_in, bp));
176 if (line_change)
177 current_line = bp_unpack_var_len_unsigned (bp);
179 if (column_change)
180 current_col = bp_unpack_var_len_unsigned (bp);
182 if (file_change)
184 if (prev_file)
185 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
187 linemap_add (line_table, LC_ENTER, false, current_file, current_line);
189 else if (line_change)
190 linemap_line_start (line_table, current_line, current_col);
192 return linemap_position_for_column (line_table, current_col);
196 /* Read a reference to a tree node from DATA_IN using input block IB.
197 TAG is the expected node that should be found in IB, if TAG belongs
198 to one of the indexable trees, expect to read a reference index to
199 be looked up in one of the symbol tables, otherwise read the pysical
200 representation of the tree using stream_read_tree. FN is the
201 function scope for the read tree. */
203 tree
204 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
205 struct function *fn, enum LTO_tags tag)
207 unsigned HOST_WIDE_INT ix_u;
208 tree result = NULL_TREE;
210 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_namelist_decl_ref);
212 switch (tag)
214 case LTO_type_ref:
215 ix_u = streamer_read_uhwi (ib);
216 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
217 break;
219 case LTO_ssa_name_ref:
220 ix_u = streamer_read_uhwi (ib);
221 result = (*SSANAMES (fn))[ix_u];
222 break;
224 case LTO_field_decl_ref:
225 ix_u = streamer_read_uhwi (ib);
226 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
227 break;
229 case LTO_function_decl_ref:
230 ix_u = streamer_read_uhwi (ib);
231 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
232 break;
234 case LTO_type_decl_ref:
235 ix_u = streamer_read_uhwi (ib);
236 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
237 break;
239 case LTO_namespace_decl_ref:
240 ix_u = streamer_read_uhwi (ib);
241 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
242 break;
244 case LTO_global_decl_ref:
245 case LTO_result_decl_ref:
246 case LTO_const_decl_ref:
247 case LTO_imported_decl_ref:
248 case LTO_label_decl_ref:
249 case LTO_translation_unit_decl_ref:
250 case LTO_namelist_decl_ref:
251 ix_u = streamer_read_uhwi (ib);
252 result = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
253 break;
255 default:
256 gcc_unreachable ();
259 gcc_assert (result);
261 return result;
265 /* Read and return a double-linked list of catch handlers from input
266 block IB, using descriptors in DATA_IN. */
268 static struct eh_catch_d *
269 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
270 eh_catch *last_p)
272 eh_catch first;
273 enum LTO_tags tag;
275 *last_p = first = NULL;
276 tag = streamer_read_record_start (ib);
277 while (tag)
279 tree list;
280 eh_catch n;
282 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
284 /* Read the catch node. */
285 n = ggc_cleared_alloc<eh_catch_d> ();
286 n->type_list = stream_read_tree (ib, data_in);
287 n->filter_list = stream_read_tree (ib, data_in);
288 n->label = stream_read_tree (ib, data_in);
290 /* Register all the types in N->FILTER_LIST. */
291 for (list = n->filter_list; list; list = TREE_CHAIN (list))
292 add_type_for_runtime (TREE_VALUE (list));
294 /* Chain N to the end of the list. */
295 if (*last_p)
296 (*last_p)->next_catch = n;
297 n->prev_catch = *last_p;
298 *last_p = n;
300 /* Set the head of the list the first time through the loop. */
301 if (first == NULL)
302 first = n;
304 tag = streamer_read_record_start (ib);
307 return first;
311 /* Read and return EH region IX from input block IB, using descriptors
312 in DATA_IN. */
314 static eh_region
315 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
317 enum LTO_tags tag;
318 eh_region r;
320 /* Read the region header. */
321 tag = streamer_read_record_start (ib);
322 if (tag == LTO_null)
323 return NULL;
325 r = ggc_cleared_alloc<eh_region_d> ();
326 r->index = streamer_read_hwi (ib);
328 gcc_assert (r->index == ix);
330 /* Read all the region pointers as region numbers. We'll fix up
331 the pointers once the whole array has been read. */
332 r->outer = (eh_region) (intptr_t) streamer_read_hwi (ib);
333 r->inner = (eh_region) (intptr_t) streamer_read_hwi (ib);
334 r->next_peer = (eh_region) (intptr_t) streamer_read_hwi (ib);
336 switch (tag)
338 case LTO_ert_cleanup:
339 r->type = ERT_CLEANUP;
340 break;
342 case LTO_ert_try:
344 struct eh_catch_d *last_catch;
345 r->type = ERT_TRY;
346 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
347 &last_catch);
348 r->u.eh_try.last_catch = last_catch;
349 break;
352 case LTO_ert_allowed_exceptions:
354 tree l;
356 r->type = ERT_ALLOWED_EXCEPTIONS;
357 r->u.allowed.type_list = stream_read_tree (ib, data_in);
358 r->u.allowed.label = stream_read_tree (ib, data_in);
359 r->u.allowed.filter = streamer_read_uhwi (ib);
361 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
362 add_type_for_runtime (TREE_VALUE (l));
364 break;
366 case LTO_ert_must_not_throw:
368 r->type = ERT_MUST_NOT_THROW;
369 r->u.must_not_throw.failure_decl = stream_read_tree (ib, data_in);
370 bitpack_d bp = streamer_read_bitpack (ib);
371 r->u.must_not_throw.failure_loc
372 = stream_input_location (&bp, data_in);
374 break;
376 default:
377 gcc_unreachable ();
380 r->landing_pads = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
382 return r;
386 /* Read and return EH landing pad IX from input block IB, using descriptors
387 in DATA_IN. */
389 static eh_landing_pad
390 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
392 enum LTO_tags tag;
393 eh_landing_pad lp;
395 /* Read the landing pad header. */
396 tag = streamer_read_record_start (ib);
397 if (tag == LTO_null)
398 return NULL;
400 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
402 lp = ggc_cleared_alloc<eh_landing_pad_d> ();
403 lp->index = streamer_read_hwi (ib);
404 gcc_assert (lp->index == ix);
405 lp->next_lp = (eh_landing_pad) (intptr_t) streamer_read_hwi (ib);
406 lp->region = (eh_region) (intptr_t) streamer_read_hwi (ib);
407 lp->post_landing_pad = stream_read_tree (ib, data_in);
409 return lp;
413 /* After reading the EH regions, pointers to peer and children regions
414 are region numbers. This converts all these region numbers into
415 real pointers into the rematerialized regions for FN. ROOT_REGION
416 is the region number for the root EH region in FN. */
418 static void
419 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
421 unsigned i;
422 vec<eh_region, va_gc> *eh_array = fn->eh->region_array;
423 vec<eh_landing_pad, va_gc> *lp_array = fn->eh->lp_array;
424 eh_region r;
425 eh_landing_pad lp;
427 gcc_assert (eh_array && lp_array);
429 gcc_assert (root_region >= 0);
430 fn->eh->region_tree = (*eh_array)[root_region];
432 #define FIXUP_EH_REGION(r) (r) = (*eh_array)[(HOST_WIDE_INT) (intptr_t) (r)]
433 #define FIXUP_EH_LP(p) (p) = (*lp_array)[(HOST_WIDE_INT) (intptr_t) (p)]
435 /* Convert all the index numbers stored in pointer fields into
436 pointers to the corresponding slots in the EH region array. */
437 FOR_EACH_VEC_ELT (*eh_array, i, r)
439 /* The array may contain NULL regions. */
440 if (r == NULL)
441 continue;
443 gcc_assert (i == (unsigned) r->index);
444 FIXUP_EH_REGION (r->outer);
445 FIXUP_EH_REGION (r->inner);
446 FIXUP_EH_REGION (r->next_peer);
447 FIXUP_EH_LP (r->landing_pads);
450 /* Convert all the index numbers stored in pointer fields into
451 pointers to the corresponding slots in the EH landing pad array. */
452 FOR_EACH_VEC_ELT (*lp_array, i, lp)
454 /* The array may contain NULL landing pads. */
455 if (lp == NULL)
456 continue;
458 gcc_assert (i == (unsigned) lp->index);
459 FIXUP_EH_LP (lp->next_lp);
460 FIXUP_EH_REGION (lp->region);
463 #undef FIXUP_EH_REGION
464 #undef FIXUP_EH_LP
468 /* Initialize EH support. */
470 void
471 lto_init_eh (void)
473 static bool eh_initialized_p = false;
475 if (eh_initialized_p)
476 return;
478 /* Contrary to most other FEs, we only initialize EH support when at
479 least one of the files in the set contains exception regions in
480 it. Since this happens much later than the call to init_eh in
481 lang_dependent_init, we have to set flag_exceptions and call
482 init_eh again to initialize the EH tables. */
483 flag_exceptions = 1;
484 init_eh ();
486 eh_initialized_p = true;
490 /* Read the exception table for FN from IB using the data descriptors
491 in DATA_IN. */
493 static void
494 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
495 struct function *fn)
497 HOST_WIDE_INT i, root_region, len;
498 enum LTO_tags tag;
500 tag = streamer_read_record_start (ib);
501 if (tag == LTO_null)
502 return;
504 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
506 /* If the file contains EH regions, then it was compiled with
507 -fexceptions. In that case, initialize the backend EH
508 machinery. */
509 lto_init_eh ();
511 gcc_assert (fn->eh);
513 root_region = streamer_read_hwi (ib);
514 gcc_assert (root_region == (int) root_region);
516 /* Read the EH region array. */
517 len = streamer_read_hwi (ib);
518 gcc_assert (len == (int) len);
519 if (len > 0)
521 vec_safe_grow_cleared (fn->eh->region_array, len);
522 for (i = 0; i < len; i++)
524 eh_region r = input_eh_region (ib, data_in, i);
525 (*fn->eh->region_array)[i] = r;
529 /* Read the landing pads. */
530 len = streamer_read_hwi (ib);
531 gcc_assert (len == (int) len);
532 if (len > 0)
534 vec_safe_grow_cleared (fn->eh->lp_array, len);
535 for (i = 0; i < len; i++)
537 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
538 (*fn->eh->lp_array)[i] = lp;
542 /* Read the runtime type data. */
543 len = streamer_read_hwi (ib);
544 gcc_assert (len == (int) len);
545 if (len > 0)
547 vec_safe_grow_cleared (fn->eh->ttype_data, len);
548 for (i = 0; i < len; i++)
550 tree ttype = stream_read_tree (ib, data_in);
551 (*fn->eh->ttype_data)[i] = ttype;
555 /* Read the table of action chains. */
556 len = streamer_read_hwi (ib);
557 gcc_assert (len == (int) len);
558 if (len > 0)
560 if (targetm.arm_eabi_unwinder)
562 vec_safe_grow_cleared (fn->eh->ehspec_data.arm_eabi, len);
563 for (i = 0; i < len; i++)
565 tree t = stream_read_tree (ib, data_in);
566 (*fn->eh->ehspec_data.arm_eabi)[i] = t;
569 else
571 vec_safe_grow_cleared (fn->eh->ehspec_data.other, len);
572 for (i = 0; i < len; i++)
574 uchar c = streamer_read_uchar (ib);
575 (*fn->eh->ehspec_data.other)[i] = c;
580 /* Reconstruct the EH region tree by fixing up the peer/children
581 pointers. */
582 fixup_eh_region_pointers (fn, root_region);
584 tag = streamer_read_record_start (ib);
585 lto_tag_check_range (tag, LTO_null, LTO_null);
589 /* Make a new basic block with index INDEX in function FN. */
591 static basic_block
592 make_new_block (struct function *fn, unsigned int index)
594 basic_block bb = alloc_block ();
595 bb->index = index;
596 SET_BASIC_BLOCK_FOR_FN (fn, index, bb);
597 n_basic_blocks_for_fn (fn)++;
598 return bb;
602 /* Read a wide-int. */
604 static widest_int
605 streamer_read_wi (struct lto_input_block *ib)
607 HOST_WIDE_INT a[WIDE_INT_MAX_ELTS];
608 int i;
609 int prec ATTRIBUTE_UNUSED = streamer_read_uhwi (ib);
610 int len = streamer_read_uhwi (ib);
611 for (i = 0; i < len; i++)
612 a[i] = streamer_read_hwi (ib);
613 return widest_int::from_array (a, len);
617 /* Read the CFG for function FN from input block IB. */
619 static void
620 input_cfg (struct lto_input_block *ib, struct data_in *data_in,
621 struct function *fn,
622 int count_materialization_scale)
624 unsigned int bb_count;
625 basic_block p_bb;
626 unsigned int i;
627 int index;
629 init_empty_tree_cfg_for_function (fn);
630 init_ssa_operands (fn);
632 profile_status_for_fn (fn) = streamer_read_enum (ib, profile_status_d,
633 PROFILE_LAST);
635 bb_count = streamer_read_uhwi (ib);
637 last_basic_block_for_fn (fn) = bb_count;
638 if (bb_count > basic_block_info_for_fn (fn)->length ())
639 vec_safe_grow_cleared (basic_block_info_for_fn (fn), bb_count);
641 if (bb_count > label_to_block_map_for_fn (fn)->length ())
642 vec_safe_grow_cleared (label_to_block_map_for_fn (fn), bb_count);
644 index = streamer_read_hwi (ib);
645 while (index != -1)
647 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
648 unsigned int edge_count;
650 if (bb == NULL)
651 bb = make_new_block (fn, index);
653 edge_count = streamer_read_uhwi (ib);
655 /* Connect up the CFG. */
656 for (i = 0; i < edge_count; i++)
658 unsigned int dest_index;
659 unsigned int edge_flags;
660 basic_block dest;
661 int probability;
662 gcov_type count;
663 edge e;
665 dest_index = streamer_read_uhwi (ib);
666 probability = (int) streamer_read_hwi (ib);
667 count = apply_scale ((gcov_type) streamer_read_gcov_count (ib),
668 count_materialization_scale);
669 edge_flags = streamer_read_uhwi (ib);
671 dest = BASIC_BLOCK_FOR_FN (fn, dest_index);
673 if (dest == NULL)
674 dest = make_new_block (fn, dest_index);
676 e = make_edge (bb, dest, edge_flags);
677 e->probability = probability;
678 e->count = count;
681 index = streamer_read_hwi (ib);
684 p_bb = ENTRY_BLOCK_PTR_FOR_FN (fn);
685 index = streamer_read_hwi (ib);
686 while (index != -1)
688 basic_block bb = BASIC_BLOCK_FOR_FN (fn, index);
689 bb->prev_bb = p_bb;
690 p_bb->next_bb = bb;
691 p_bb = bb;
692 index = streamer_read_hwi (ib);
695 /* ??? The cfgloop interface is tied to cfun. */
696 gcc_assert (cfun == fn);
698 /* Input the loop tree. */
699 unsigned n_loops = streamer_read_uhwi (ib);
700 if (n_loops == 0)
701 return;
703 struct loops *loops = ggc_cleared_alloc<struct loops> ();
704 init_loops_structure (fn, loops, n_loops);
705 set_loops_for_fn (fn, loops);
707 /* Input each loop and associate it with its loop header so
708 flow_loops_find can rebuild the loop tree. */
709 for (unsigned i = 1; i < n_loops; ++i)
711 int header_index = streamer_read_hwi (ib);
712 if (header_index == -1)
714 loops->larray->quick_push (NULL);
715 continue;
718 struct loop *loop = alloc_loop ();
719 loop->header = BASIC_BLOCK_FOR_FN (fn, header_index);
720 loop->header->loop_father = loop;
722 /* Read everything copy_loop_info copies. */
723 loop->estimate_state = streamer_read_enum (ib, loop_estimation, EST_LAST);
724 loop->any_upper_bound = streamer_read_hwi (ib);
725 if (loop->any_upper_bound)
726 loop->nb_iterations_upper_bound = streamer_read_wi (ib);
727 loop->any_estimate = streamer_read_hwi (ib);
728 if (loop->any_estimate)
729 loop->nb_iterations_estimate = streamer_read_wi (ib);
731 /* Read OMP SIMD related info. */
732 loop->safelen = streamer_read_hwi (ib);
733 loop->dont_vectorize = streamer_read_hwi (ib);
734 loop->force_vectorize = streamer_read_hwi (ib);
735 loop->simduid = stream_read_tree (ib, data_in);
737 place_new_loop (fn, loop);
739 /* flow_loops_find doesn't like loops not in the tree, hook them
740 all as siblings of the tree root temporarily. */
741 flow_loop_tree_node_add (loops->tree_root, loop);
744 /* Rebuild the loop tree. */
745 flow_loops_find (loops);
749 /* Read the SSA names array for function FN from DATA_IN using input
750 block IB. */
752 static void
753 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
754 struct function *fn)
756 unsigned int i, size;
758 size = streamer_read_uhwi (ib);
759 init_ssanames (fn, size);
761 i = streamer_read_uhwi (ib);
762 while (i)
764 tree ssa_name, name;
765 bool is_default_def;
767 /* Skip over the elements that had been freed. */
768 while (SSANAMES (fn)->length () < i)
769 SSANAMES (fn)->quick_push (NULL_TREE);
771 is_default_def = (streamer_read_uchar (ib) != 0);
772 name = stream_read_tree (ib, data_in);
773 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
775 if (is_default_def)
776 set_ssa_default_def (cfun, SSA_NAME_VAR (ssa_name), ssa_name);
778 i = streamer_read_uhwi (ib);
783 /* Go through all NODE edges and fixup call_stmt pointers
784 so they point to STMTS. */
786 static void
787 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts,
788 struct function *fn)
790 struct cgraph_edge *cedge;
791 struct ipa_ref *ref = NULL;
792 unsigned int i;
794 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
796 if (gimple_stmt_max_uid (fn) < cedge->lto_stmt_uid)
797 fatal_error ("Cgraph edge statement index out of range");
798 cedge->call_stmt = as_a <gcall *> (stmts[cedge->lto_stmt_uid - 1]);
799 if (!cedge->call_stmt)
800 fatal_error ("Cgraph edge statement index not found");
802 for (cedge = node->indirect_calls; 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 = as_a <gcall *> (stmts[cedge->lto_stmt_uid - 1]);
807 if (!cedge->call_stmt)
808 fatal_error ("Cgraph edge statement index not found");
810 for (i = 0; node->iterate_reference (i, ref); i++)
811 if (ref->lto_stmt_uid)
813 if (gimple_stmt_max_uid (fn) < ref->lto_stmt_uid)
814 fatal_error ("Reference statement index out of range");
815 ref->stmt = stmts[ref->lto_stmt_uid - 1];
816 if (!ref->stmt)
817 fatal_error ("Reference statement index not found");
822 /* Fixup call_stmt pointers in NODE and all clones. */
824 static void
825 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
827 struct cgraph_node *node;
828 struct function *fn;
830 while (orig->clone_of)
831 orig = orig->clone_of;
832 fn = DECL_STRUCT_FUNCTION (orig->decl);
834 fixup_call_stmt_edges_1 (orig, stmts, fn);
835 if (orig->clones)
836 for (node = orig->clones; node != orig;)
838 fixup_call_stmt_edges_1 (node, stmts, fn);
839 if (node->clones)
840 node = node->clones;
841 else if (node->next_sibling_clone)
842 node = node->next_sibling_clone;
843 else
845 while (node != orig && !node->next_sibling_clone)
846 node = node->clone_of;
847 if (node != orig)
848 node = node->next_sibling_clone;
854 /* Input the base body of struct function FN from DATA_IN
855 using input block IB. */
857 static void
858 input_struct_function_base (struct function *fn, struct data_in *data_in,
859 struct lto_input_block *ib)
861 struct bitpack_d bp;
862 int len;
864 /* Read the static chain and non-local goto save area. */
865 fn->static_chain_decl = stream_read_tree (ib, data_in);
866 fn->nonlocal_goto_save_area = stream_read_tree (ib, data_in);
868 /* Read all the local symbols. */
869 len = streamer_read_hwi (ib);
870 if (len > 0)
872 int i;
873 vec_safe_grow_cleared (fn->local_decls, len);
874 for (i = 0; i < len; i++)
876 tree t = stream_read_tree (ib, data_in);
877 (*fn->local_decls)[i] = t;
881 /* Input the current IL state of the function. */
882 fn->curr_properties = streamer_read_uhwi (ib);
884 /* Read all the attributes for FN. */
885 bp = streamer_read_bitpack (ib);
886 fn->is_thunk = bp_unpack_value (&bp, 1);
887 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
888 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
889 fn->returns_struct = bp_unpack_value (&bp, 1);
890 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
891 fn->can_delete_dead_exceptions = bp_unpack_value (&bp, 1);
892 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
893 fn->after_inlining = bp_unpack_value (&bp, 1);
894 fn->stdarg = bp_unpack_value (&bp, 1);
895 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
896 fn->calls_alloca = bp_unpack_value (&bp, 1);
897 fn->calls_setjmp = bp_unpack_value (&bp, 1);
898 fn->has_force_vectorize_loops = bp_unpack_value (&bp, 1);
899 fn->has_simduid_loops = bp_unpack_value (&bp, 1);
900 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
901 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
903 /* Input the function start and end loci. */
904 fn->function_start_locus = stream_input_location (&bp, data_in);
905 fn->function_end_locus = stream_input_location (&bp, data_in);
909 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
911 static void
912 input_function (tree fn_decl, struct data_in *data_in,
913 struct lto_input_block *ib, struct lto_input_block *ib_cfg)
915 struct function *fn;
916 enum LTO_tags tag;
917 gimple *stmts;
918 basic_block bb;
919 struct cgraph_node *node;
921 tag = streamer_read_record_start (ib);
922 lto_tag_check (tag, LTO_function);
924 /* Read decls for parameters and args. */
925 DECL_RESULT (fn_decl) = stream_read_tree (ib, data_in);
926 DECL_ARGUMENTS (fn_decl) = streamer_read_chain (ib, data_in);
928 /* Read the tree of lexical scopes for the function. */
929 DECL_INITIAL (fn_decl) = stream_read_tree (ib, data_in);
931 if (!streamer_read_uhwi (ib))
932 return;
934 push_struct_function (fn_decl);
935 fn = DECL_STRUCT_FUNCTION (fn_decl);
936 init_tree_ssa (fn);
937 /* We input IL in SSA form. */
938 cfun->gimple_df->in_ssa_p = true;
940 gimple_register_cfg_hooks ();
942 node = cgraph_node::get (fn_decl);
943 if (!node)
944 node = cgraph_node::create (fn_decl);
945 input_struct_function_base (fn, data_in, ib);
946 input_cfg (ib_cfg, data_in, fn, node->count_materialization_scale);
948 /* Read all the SSA names. */
949 input_ssa_names (ib, data_in, fn);
951 /* Read the exception handling regions in the function. */
952 input_eh_regions (ib, data_in, fn);
954 gcc_assert (DECL_INITIAL (fn_decl));
955 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
957 /* Read all the basic blocks. */
958 tag = streamer_read_record_start (ib);
959 while (tag)
961 input_bb (ib, tag, data_in, fn,
962 node->count_materialization_scale);
963 tag = streamer_read_record_start (ib);
966 /* Fix up the call statements that are mentioned in the callgraph
967 edges. */
968 set_gimple_stmt_max_uid (cfun, 0);
969 FOR_ALL_BB_FN (bb, cfun)
971 gimple_stmt_iterator gsi;
972 for (gsi = gsi_start_phis (bb); !gsi_end_p (gsi); gsi_next (&gsi))
974 gimple stmt = gsi_stmt (gsi);
975 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
977 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
979 gimple stmt = gsi_stmt (gsi);
980 gimple_set_uid (stmt, inc_gimple_stmt_max_uid (cfun));
983 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
984 FOR_ALL_BB_FN (bb, cfun)
986 gimple_stmt_iterator bsi = gsi_start_phis (bb);
987 while (!gsi_end_p (bsi))
989 gimple stmt = gsi_stmt (bsi);
990 gsi_next (&bsi);
991 stmts[gimple_uid (stmt)] = stmt;
993 bsi = gsi_start_bb (bb);
994 while (!gsi_end_p (bsi))
996 gimple stmt = gsi_stmt (bsi);
997 /* If we're recompiling LTO objects with debug stmts but
998 we're not supposed to have debug stmts, remove them now.
999 We can't remove them earlier because this would cause uid
1000 mismatches in fixups, but we can do it at this point, as
1001 long as debug stmts don't require fixups. */
1002 if (!MAY_HAVE_DEBUG_STMTS && !flag_wpa && is_gimple_debug (stmt))
1004 gimple_stmt_iterator gsi = bsi;
1005 gsi_next (&bsi);
1006 gsi_remove (&gsi, true);
1008 else
1010 gsi_next (&bsi);
1011 stmts[gimple_uid (stmt)] = stmt;
1016 /* Set the gimple body to the statement sequence in the entry
1017 basic block. FIXME lto, this is fairly hacky. The existence
1018 of a gimple body is used by the cgraph routines, but we should
1019 really use the presence of the CFG. */
1021 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR_FOR_FN (cfun)->succs);
1022 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1025 fixup_call_stmt_edges (node, stmts);
1026 execute_all_ipa_stmt_fixups (node, stmts);
1028 update_ssa (TODO_update_ssa_only_virtuals);
1029 free_dominance_info (CDI_DOMINATORS);
1030 free_dominance_info (CDI_POST_DOMINATORS);
1031 free (stmts);
1032 pop_cfun ();
1035 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
1037 static void
1038 input_constructor (tree var, struct data_in *data_in,
1039 struct lto_input_block *ib)
1041 DECL_INITIAL (var) = stream_read_tree (ib, data_in);
1045 /* Read the body from DATA for function NODE and fill it in.
1046 FILE_DATA are the global decls and types. SECTION_TYPE is either
1047 LTO_section_function_body or LTO_section_static_initializer. If
1048 section type is LTO_section_function_body, FN must be the decl for
1049 that function. */
1051 static void
1052 lto_read_body_or_constructor (struct lto_file_decl_data *file_data, struct symtab_node *node,
1053 const char *data, enum lto_section_type section_type)
1055 const struct lto_function_header *header;
1056 struct data_in *data_in;
1057 int cfg_offset;
1058 int main_offset;
1059 int string_offset;
1060 tree fn_decl = node->decl;
1062 header = (const struct lto_function_header *) data;
1063 if (TREE_CODE (node->decl) == FUNCTION_DECL)
1065 cfg_offset = sizeof (struct lto_function_header);
1066 main_offset = cfg_offset + header->cfg_size;
1067 string_offset = main_offset + header->main_size;
1069 else
1071 main_offset = sizeof (struct lto_function_header);
1072 string_offset = main_offset + header->main_size;
1075 data_in = lto_data_in_create (file_data, data + string_offset,
1076 header->string_size, vNULL);
1078 if (section_type == LTO_section_function_body)
1080 struct lto_in_decl_state *decl_state;
1081 unsigned from;
1083 gcc_checking_assert (node);
1085 /* Use the function's decl state. */
1086 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1087 gcc_assert (decl_state);
1088 file_data->current_decl_state = decl_state;
1091 /* Set up the struct function. */
1092 from = data_in->reader_cache->nodes.length ();
1093 lto_input_block ib_main (data + main_offset, header->main_size);
1094 if (TREE_CODE (node->decl) == FUNCTION_DECL)
1096 lto_input_block ib_cfg (data + cfg_offset, header->cfg_size);
1097 input_function (fn_decl, data_in, &ib_main, &ib_cfg);
1099 else
1100 input_constructor (fn_decl, data_in, &ib_main);
1101 /* And fixup types we streamed locally. */
1103 struct streamer_tree_cache_d *cache = data_in->reader_cache;
1104 unsigned len = cache->nodes.length ();
1105 unsigned i;
1106 for (i = len; i-- > from;)
1108 tree t = streamer_tree_cache_get_tree (cache, i);
1109 if (t == NULL_TREE)
1110 continue;
1112 if (TYPE_P (t))
1114 gcc_assert (TYPE_CANONICAL (t) == NULL_TREE);
1115 TYPE_CANONICAL (t) = TYPE_MAIN_VARIANT (t);
1116 if (TYPE_MAIN_VARIANT (t) != t)
1118 gcc_assert (TYPE_NEXT_VARIANT (t) == NULL_TREE);
1119 TYPE_NEXT_VARIANT (t)
1120 = TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t));
1121 TYPE_NEXT_VARIANT (TYPE_MAIN_VARIANT (t)) = t;
1127 /* Restore decl state */
1128 file_data->current_decl_state = file_data->global_decl_state;
1131 lto_data_in_delete (data_in);
1135 /* Read the body of NODE using DATA. FILE_DATA holds the global
1136 decls and types. */
1138 void
1139 lto_input_function_body (struct lto_file_decl_data *file_data,
1140 struct cgraph_node *node, const char *data)
1142 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
1145 /* Read the body of NODE using DATA. FILE_DATA holds the global
1146 decls and types. */
1148 void
1149 lto_input_variable_constructor (struct lto_file_decl_data *file_data,
1150 struct varpool_node *node, const char *data)
1152 lto_read_body_or_constructor (file_data, node, data, LTO_section_function_body);
1156 /* Read the physical representation of a tree node EXPR from
1157 input block IB using the per-file context in DATA_IN. */
1159 static void
1160 lto_read_tree_1 (struct lto_input_block *ib, struct data_in *data_in, tree expr)
1162 /* Read all the bitfield values in EXPR. Note that for LTO, we
1163 only write language-independent bitfields, so no more unpacking is
1164 needed. */
1165 streamer_read_tree_bitfields (ib, data_in, expr);
1167 /* Read all the pointer fields in EXPR. */
1168 streamer_read_tree_body (ib, data_in, expr);
1170 /* Read any LTO-specific data not read by the tree streamer. */
1171 if (DECL_P (expr)
1172 && TREE_CODE (expr) != FUNCTION_DECL
1173 && TREE_CODE (expr) != TRANSLATION_UNIT_DECL)
1174 DECL_INITIAL (expr) = stream_read_tree (ib, data_in);
1176 /* We should never try to instantiate an MD or NORMAL builtin here. */
1177 if (TREE_CODE (expr) == FUNCTION_DECL)
1178 gcc_assert (!streamer_handle_as_builtin_p (expr));
1180 #ifdef LTO_STREAMER_DEBUG
1181 /* Remove the mapping to RESULT's original address set by
1182 streamer_alloc_tree. */
1183 lto_orig_address_remove (expr);
1184 #endif
1187 /* Read the physical representation of a tree node with tag TAG from
1188 input block IB using the per-file context in DATA_IN. */
1190 static tree
1191 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
1192 enum LTO_tags tag, hashval_t hash)
1194 /* Instantiate a new tree node. */
1195 tree result = streamer_alloc_tree (ib, data_in, tag);
1197 /* Enter RESULT in the reader cache. This will make RESULT
1198 available so that circular references in the rest of the tree
1199 structure can be resolved in subsequent calls to stream_read_tree. */
1200 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1202 lto_read_tree_1 (ib, data_in, result);
1204 /* end_marker = */ streamer_read_uchar (ib);
1206 return result;
1210 /* Populate the reader cache with trees materialized from the SCC
1211 following in the IB, DATA_IN stream. */
1213 hashval_t
1214 lto_input_scc (struct lto_input_block *ib, struct data_in *data_in,
1215 unsigned *len, unsigned *entry_len)
1217 /* A blob of unnamed tree nodes, fill the cache from it and
1218 recurse. */
1219 unsigned size = streamer_read_uhwi (ib);
1220 hashval_t scc_hash = streamer_read_uhwi (ib);
1221 unsigned scc_entry_len = 1;
1223 if (size == 1)
1225 enum LTO_tags tag = streamer_read_record_start (ib);
1226 lto_input_tree_1 (ib, data_in, tag, scc_hash);
1228 else
1230 unsigned int first = data_in->reader_cache->nodes.length ();
1231 tree result;
1233 scc_entry_len = streamer_read_uhwi (ib);
1235 /* Materialize size trees by reading their headers. */
1236 for (unsigned i = 0; i < size; ++i)
1238 enum LTO_tags tag = streamer_read_record_start (ib);
1239 if (tag == LTO_null
1240 || (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
1241 || tag == LTO_tree_pickle_reference
1242 || tag == LTO_builtin_decl
1243 || tag == LTO_integer_cst
1244 || tag == LTO_tree_scc)
1245 gcc_unreachable ();
1247 result = streamer_alloc_tree (ib, data_in, tag);
1248 streamer_tree_cache_append (data_in->reader_cache, result, 0);
1251 /* Read the tree bitpacks and references. */
1252 for (unsigned i = 0; i < size; ++i)
1254 result = streamer_tree_cache_get_tree (data_in->reader_cache,
1255 first + i);
1256 lto_read_tree_1 (ib, data_in, result);
1257 /* end_marker = */ streamer_read_uchar (ib);
1261 *len = size;
1262 *entry_len = scc_entry_len;
1263 return scc_hash;
1267 /* Read a tree from input block IB using the per-file context in
1268 DATA_IN. This context is used, for example, to resolve references
1269 to previously read nodes. */
1271 tree
1272 lto_input_tree_1 (struct lto_input_block *ib, struct data_in *data_in,
1273 enum LTO_tags tag, hashval_t hash)
1275 tree result;
1277 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
1279 if (tag == LTO_null)
1280 result = NULL_TREE;
1281 else if (tag >= LTO_field_decl_ref && tag <= LTO_namelist_decl_ref)
1283 /* If TAG is a reference to an indexable tree, the next value
1284 in IB is the index into the table where we expect to find
1285 that tree. */
1286 result = lto_input_tree_ref (ib, data_in, cfun, tag);
1288 else if (tag == LTO_tree_pickle_reference)
1290 /* If TAG is a reference to a previously read tree, look it up in
1291 the reader cache. */
1292 result = streamer_get_pickled_tree (ib, data_in);
1294 else if (tag == LTO_builtin_decl)
1296 /* If we are going to read a built-in function, all we need is
1297 the code and class. */
1298 result = streamer_get_builtin_tree (ib, data_in);
1300 else if (tag == LTO_integer_cst)
1302 /* For shared integer constants in singletons we can use the
1303 existing tree integer constant merging code. */
1304 tree type = stream_read_tree (ib, data_in);
1305 unsigned HOST_WIDE_INT len = streamer_read_uhwi (ib);
1306 unsigned HOST_WIDE_INT i;
1307 HOST_WIDE_INT a[WIDE_INT_MAX_ELTS];
1309 for (i = 0; i < len; i++)
1310 a[i] = streamer_read_hwi (ib);
1311 gcc_assert (TYPE_PRECISION (type) <= MAX_BITSIZE_MODE_ANY_INT);
1312 result = wide_int_to_tree (type, wide_int::from_array
1313 (a, len, TYPE_PRECISION (type)));
1314 streamer_tree_cache_append (data_in->reader_cache, result, hash);
1316 else if (tag == LTO_tree_scc)
1317 gcc_unreachable ();
1318 else
1320 /* Otherwise, materialize a new node from IB. */
1321 result = lto_read_tree (ib, data_in, tag, hash);
1324 return result;
1327 tree
1328 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
1330 enum LTO_tags tag;
1332 /* Input and skip SCCs. */
1333 while ((tag = streamer_read_record_start (ib)) == LTO_tree_scc)
1335 unsigned len, entry_len;
1336 lto_input_scc (ib, data_in, &len, &entry_len);
1338 return lto_input_tree_1 (ib, data_in, tag, 0);
1342 /* Input toplevel asms. */
1344 void
1345 lto_input_toplevel_asms (struct lto_file_decl_data *file_data, int order_base)
1347 size_t len;
1348 const char *data = lto_get_section_data (file_data, LTO_section_asm,
1349 NULL, &len);
1350 const struct lto_simple_header_with_strings *header
1351 = (const struct lto_simple_header_with_strings *) data;
1352 int string_offset;
1353 struct data_in *data_in;
1354 tree str;
1356 if (! data)
1357 return;
1359 string_offset = sizeof (*header) + header->main_size;
1361 lto_input_block ib (data + sizeof (*header), header->main_size);
1363 data_in = lto_data_in_create (file_data, data + string_offset,
1364 header->string_size, vNULL);
1366 while ((str = streamer_read_string_cst (data_in, &ib)))
1368 asm_node *node = symtab->finalize_toplevel_asm (str);
1369 node->order = streamer_read_hwi (&ib) + order_base;
1370 if (node->order >= symtab->order)
1371 symtab->order = node->order + 1;
1374 lto_data_in_delete (data_in);
1376 lto_free_section_data (file_data, LTO_section_asm, NULL, data, len);
1380 /* Initialization for the LTO reader. */
1382 void
1383 lto_reader_init (void)
1385 lto_streamer_init ();
1386 file_name_hash_table
1387 = new hash_table<freeing_string_slot_hasher> (37);
1391 /* Create a new data_in object for FILE_DATA. STRINGS is the string
1392 table to use with LEN strings. RESOLUTIONS is the vector of linker
1393 resolutions (NULL if not using a linker plugin). */
1395 struct data_in *
1396 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
1397 unsigned len,
1398 vec<ld_plugin_symbol_resolution_t> resolutions)
1400 struct data_in *data_in = XCNEW (struct data_in);
1401 data_in->file_data = file_data;
1402 data_in->strings = strings;
1403 data_in->strings_len = len;
1404 data_in->globals_resolution = resolutions;
1405 data_in->reader_cache = streamer_tree_cache_create (false, false, true);
1406 return data_in;
1410 /* Remove DATA_IN. */
1412 void
1413 lto_data_in_delete (struct data_in *data_in)
1415 data_in->globals_resolution.release ();
1416 streamer_tree_cache_delete (data_in->reader_cache);
1417 free (data_in);