fixing pr42337
[official-gcc.git] / gcc / lto-streamer-in.c
bloba0ead410fd0a3d653b880592ed202d901b5f685e
1 /* Read the GIMPLE representation from a file stream.
3 Copyright 2009 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 "expr.h"
30 #include "flags.h"
31 #include "params.h"
32 #include "input.h"
33 #include "varray.h"
34 #include "hashtab.h"
35 #include "basic-block.h"
36 #include "tree-flow.h"
37 #include "tree-pass.h"
38 #include "cgraph.h"
39 #include "function.h"
40 #include "ggc.h"
41 #include "diagnostic.h"
42 #include "libfuncs.h"
43 #include "except.h"
44 #include "debug.h"
45 #include "vec.h"
46 #include "timevar.h"
47 #include "output.h"
48 #include "ipa-utils.h"
49 #include "lto-streamer.h"
50 #include "tree-pass.h"
52 /* Data structure used to hash file names in the source_location field. */
53 struct string_slot
55 const char *s;
56 unsigned int slot_num;
59 /* The table to hold the file names. */
60 static htab_t file_name_hash_table;
63 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
64 number of valid tag values to check. */
66 static void
67 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
69 va_list ap;
70 int i;
72 va_start (ap, ntags);
73 for (i = 0; i < ntags; i++)
74 if ((unsigned) actual == va_arg (ap, unsigned))
76 va_end (ap);
77 return;
80 va_end (ap);
81 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
85 /* Check that tag ACTUAL is in the range [TAG1, TAG2]. */
87 static void
88 lto_tag_check_range (enum LTO_tags actual, enum LTO_tags tag1,
89 enum LTO_tags tag2)
91 if (actual < tag1 || actual > tag2)
92 internal_error ("bytecode stream: tag %s is not in the expected range "
93 "[%s, %s]",
94 lto_tag_name (actual),
95 lto_tag_name (tag1),
96 lto_tag_name (tag2));
100 /* Check that tag ACTUAL == EXPECTED. */
102 static void
103 lto_tag_check (enum LTO_tags actual, enum LTO_tags expected)
105 if (actual != expected)
106 internal_error ("bytecode stream: expected tag %s instead of %s",
107 lto_tag_name (expected), lto_tag_name (actual));
111 /* Return a hash code for P. */
113 static hashval_t
114 hash_string_slot_node (const void *p)
116 const struct string_slot *ds = (const struct string_slot *) p;
117 return (hashval_t) htab_hash_string (ds->s);
121 /* Returns nonzero if P1 and P2 are equal. */
123 static int
124 eq_string_slot_node (const void *p1, const void *p2)
126 const struct string_slot *ds1 = (const struct string_slot *) p1;
127 const struct string_slot *ds2 = (const struct string_slot *) p2;
128 return strcmp (ds1->s, ds2->s) == 0;
132 /* Read a string from the string table in DATA_IN using input block
133 IB. Write the length to RLEN. */
135 static const char *
136 input_string_internal (struct data_in *data_in, struct lto_input_block *ib,
137 unsigned int *rlen)
139 struct lto_input_block str_tab;
140 unsigned int len;
141 unsigned int loc;
142 const char *result;
144 loc = lto_input_uleb128 (ib);
145 LTO_INIT_INPUT_BLOCK (str_tab, data_in->strings, loc, data_in->strings_len);
146 len = lto_input_uleb128 (&str_tab);
147 *rlen = len;
149 if (str_tab.p + len > data_in->strings_len)
150 internal_error ("bytecode stream: string too long for the string table");
152 result = (const char *)(data_in->strings + str_tab.p);
154 return result;
158 /* Read a STRING_CST from the string table in DATA_IN using input
159 block IB. */
161 static tree
162 input_string_cst (struct data_in *data_in, struct lto_input_block *ib)
164 unsigned int len;
165 const char * ptr;
166 unsigned int is_null;
168 is_null = lto_input_uleb128 (ib);
169 if (is_null)
170 return NULL;
172 ptr = input_string_internal (data_in, ib, &len);
173 return build_string (len, ptr);
177 /* Read an IDENTIFIER from the string table in DATA_IN using input
178 block IB. */
180 static tree
181 input_identifier (struct data_in *data_in, struct lto_input_block *ib)
183 unsigned int len;
184 const char *ptr;
185 unsigned int is_null;
187 is_null = lto_input_uleb128 (ib);
188 if (is_null)
189 return NULL;
191 ptr = input_string_internal (data_in, ib, &len);
192 return get_identifier_with_length (ptr, len);
195 /* Read a NULL terminated string from the string table in DATA_IN. */
197 static const char *
198 input_string (struct data_in *data_in, struct lto_input_block *ib)
200 unsigned int len;
201 const char *ptr;
202 unsigned int is_null;
204 is_null = lto_input_uleb128 (ib);
205 if (is_null)
206 return NULL;
208 ptr = input_string_internal (data_in, ib, &len);
209 if (ptr[len - 1] != '\0')
210 internal_error ("bytecode stream: found non-null terminated string");
212 return ptr;
216 /* Return the next tag in the input block IB. */
218 static enum LTO_tags
219 input_record_start (struct lto_input_block *ib)
221 enum LTO_tags tag = (enum LTO_tags) lto_input_uleb128 (ib);
222 return tag;
226 /* Lookup STRING in file_name_hash_table. If found, return the existing
227 string, otherwise insert STRING as the canonical version. */
229 static const char *
230 canon_file_name (const char *string)
232 void **slot;
233 struct string_slot s_slot;
234 s_slot.s = string;
236 slot = htab_find_slot (file_name_hash_table, &s_slot, INSERT);
237 if (*slot == NULL)
239 size_t len;
240 char *saved_string;
241 struct string_slot *new_slot;
243 len = strlen (string);
244 saved_string = (char *) xmalloc (len + 1);
245 new_slot = XCNEW (struct string_slot);
246 strcpy (saved_string, string);
247 new_slot->s = saved_string;
248 *slot = new_slot;
249 return saved_string;
251 else
253 struct string_slot *old_slot = (struct string_slot *) *slot;
254 return old_slot->s;
259 /* Clear the line info stored in DATA_IN. */
261 static void
262 clear_line_info (struct data_in *data_in)
264 if (data_in->current_file)
265 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
266 data_in->current_file = NULL;
267 data_in->current_line = 0;
268 data_in->current_col = 0;
272 /* Read a location from input block IB. */
274 static location_t
275 lto_input_location (struct lto_input_block *ib, struct data_in *data_in)
277 expanded_location xloc;
279 xloc.file = input_string (data_in, ib);
280 if (xloc.file == NULL)
281 return UNKNOWN_LOCATION;
283 xloc.file = canon_file_name (xloc.file);
284 xloc.line = lto_input_sleb128 (ib);
285 xloc.column = lto_input_sleb128 (ib);
286 xloc.sysp = lto_input_sleb128 (ib);
288 if (data_in->current_file != xloc.file)
290 if (data_in->current_file)
291 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
293 linemap_add (line_table, LC_ENTER, xloc.sysp, xloc.file, xloc.line);
295 else if (data_in->current_line != xloc.line)
296 linemap_line_start (line_table, xloc.line, xloc.column);
298 data_in->current_file = xloc.file;
299 data_in->current_line = xloc.line;
300 data_in->current_col = xloc.column;
302 return linemap_position_for_column (line_table, xloc.column);
306 /* Read a reference to a tree node from DATA_IN using input block IB.
307 TAG is the expected node that should be found in IB, if TAG belongs
308 to one of the indexable trees, expect to read a reference index to
309 be looked up in one of the symbol tables, otherwise read the pysical
310 representation of the tree using lto_input_tree. FN is the
311 function scope for the read tree. */
313 static tree
314 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
315 struct function *fn, enum LTO_tags tag)
317 unsigned HOST_WIDE_INT ix_u;
318 tree result = NULL_TREE;
320 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_global_decl_ref);
322 switch (tag)
324 case LTO_type_ref:
325 ix_u = lto_input_uleb128 (ib);
326 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
327 break;
329 case LTO_ssa_name_ref:
330 ix_u = lto_input_uleb128 (ib);
331 result = VEC_index (tree, SSANAMES (fn), ix_u);
332 break;
334 case LTO_field_decl_ref:
335 ix_u = lto_input_uleb128 (ib);
336 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
337 break;
339 case LTO_function_decl_ref:
340 ix_u = lto_input_uleb128 (ib);
341 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
342 break;
344 case LTO_type_decl_ref:
345 ix_u = lto_input_uleb128 (ib);
346 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
347 break;
349 case LTO_namespace_decl_ref:
350 ix_u = lto_input_uleb128 (ib);
351 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
352 break;
354 case LTO_global_decl_ref:
355 case LTO_result_decl_ref:
356 case LTO_const_decl_ref:
357 case LTO_imported_decl_ref:
358 case LTO_label_decl_ref:
359 ix_u = lto_input_uleb128 (ib);
360 result = lto_file_decl_data_get_var_decl (data_in->file_data, ix_u);
361 if (tag == LTO_global_decl_ref)
362 varpool_mark_needed_node (varpool_node (result));
363 break;
365 default:
366 gcc_unreachable ();
369 gcc_assert (result);
371 return result;
375 /* Read and return a double-linked list of catch handlers from input
376 block IB, using descriptors in DATA_IN. */
378 static struct eh_catch_d *
379 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
380 eh_catch *last_p)
382 eh_catch first;
383 enum LTO_tags tag;
385 *last_p = first = NULL;
386 tag = input_record_start (ib);
387 while (tag)
389 tree list;
390 eh_catch n;
392 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
394 /* Read the catch node. */
395 n = GGC_CNEW (struct eh_catch_d);
396 n->type_list = lto_input_tree (ib, data_in);
397 n->filter_list = lto_input_tree (ib, data_in);
398 n->label = lto_input_tree (ib, data_in);
400 /* Register all the types in N->FILTER_LIST. */
401 for (list = n->filter_list; list; list = TREE_CHAIN (list))
402 add_type_for_runtime (TREE_VALUE (list));
404 /* Chain N to the end of the list. */
405 if (*last_p)
406 (*last_p)->next_catch = n;
407 n->prev_catch = *last_p;
408 *last_p = n;
410 /* Set the head of the list the first time through the loop. */
411 if (first == NULL)
412 first = n;
414 tag = input_record_start (ib);
417 return first;
421 /* Read and return EH region IX from input block IB, using descriptors
422 in DATA_IN. */
424 static eh_region
425 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
427 enum LTO_tags tag;
428 eh_region r;
430 /* Read the region header. */
431 tag = input_record_start (ib);
432 if (tag == LTO_null)
433 return NULL;
435 r = GGC_CNEW (struct eh_region_d);
436 r->index = lto_input_sleb128 (ib);
438 gcc_assert (r->index == ix);
440 /* Read all the region pointers as region numbers. We'll fix up
441 the pointers once the whole array has been read. */
442 r->outer = (eh_region) (intptr_t) lto_input_sleb128 (ib);
443 r->inner = (eh_region) (intptr_t) lto_input_sleb128 (ib);
444 r->next_peer = (eh_region) (intptr_t) lto_input_sleb128 (ib);
446 switch (tag)
448 case LTO_ert_cleanup:
449 r->type = ERT_CLEANUP;
450 break;
452 case LTO_ert_try:
454 struct eh_catch_d *last_catch;
455 r->type = ERT_TRY;
456 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
457 &last_catch);
458 r->u.eh_try.last_catch = last_catch;
459 break;
462 case LTO_ert_allowed_exceptions:
464 tree l;
466 r->type = ERT_ALLOWED_EXCEPTIONS;
467 r->u.allowed.type_list = lto_input_tree (ib, data_in);
468 r->u.allowed.label = lto_input_tree (ib, data_in);
469 r->u.allowed.filter = lto_input_uleb128 (ib);
471 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
472 add_type_for_runtime (TREE_VALUE (l));
474 break;
476 case LTO_ert_must_not_throw:
477 r->type = ERT_MUST_NOT_THROW;
478 r->u.must_not_throw.failure_decl = lto_input_tree (ib, data_in);
479 r->u.must_not_throw.failure_loc = lto_input_location (ib, data_in);
480 break;
482 default:
483 gcc_unreachable ();
486 r->landing_pads = (eh_landing_pad) (intptr_t) lto_input_sleb128 (ib);
488 return r;
492 /* Read and return EH landing pad IX from input block IB, using descriptors
493 in DATA_IN. */
495 static eh_landing_pad
496 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
498 enum LTO_tags tag;
499 eh_landing_pad lp;
501 /* Read the landing pad header. */
502 tag = input_record_start (ib);
503 if (tag == LTO_null)
504 return NULL;
506 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
508 lp = GGC_CNEW (struct eh_landing_pad_d);
509 lp->index = lto_input_sleb128 (ib);
510 gcc_assert (lp->index == ix);
511 lp->next_lp = (eh_landing_pad) (intptr_t) lto_input_sleb128 (ib);
512 lp->region = (eh_region) (intptr_t) lto_input_sleb128 (ib);
513 lp->post_landing_pad = lto_input_tree (ib, data_in);
515 return lp;
519 /* After reading the EH regions, pointers to peer and children regions
520 are region numbers. This converts all these region numbers into
521 real pointers into the rematerialized regions for FN. ROOT_REGION
522 is the region number for the root EH region in FN. */
524 static void
525 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
527 unsigned i;
528 VEC(eh_region,gc) *eh_array = fn->eh->region_array;
529 VEC(eh_landing_pad,gc) *lp_array = fn->eh->lp_array;
530 eh_region r;
531 eh_landing_pad lp;
533 gcc_assert (eh_array && lp_array);
535 gcc_assert (root_region >= 0);
536 fn->eh->region_tree = VEC_index (eh_region, eh_array, root_region);
538 #define FIXUP_EH_REGION(r) (r) = VEC_index (eh_region, eh_array, \
539 (HOST_WIDE_INT) (intptr_t) (r))
540 #define FIXUP_EH_LP(p) (p) = VEC_index (eh_landing_pad, lp_array, \
541 (HOST_WIDE_INT) (intptr_t) (p))
543 /* Convert all the index numbers stored in pointer fields into
544 pointers to the corresponding slots in the EH region array. */
545 for (i = 0; VEC_iterate (eh_region, eh_array, i, r); i++)
547 /* The array may contain NULL regions. */
548 if (r == NULL)
549 continue;
551 gcc_assert (i == (unsigned) r->index);
552 FIXUP_EH_REGION (r->outer);
553 FIXUP_EH_REGION (r->inner);
554 FIXUP_EH_REGION (r->next_peer);
555 FIXUP_EH_LP (r->landing_pads);
558 /* Convert all the index numbers stored in pointer fields into
559 pointers to the corresponding slots in the EH landing pad array. */
560 for (i = 0; VEC_iterate (eh_landing_pad, lp_array, i, lp); i++)
562 /* The array may contain NULL landing pads. */
563 if (lp == NULL)
564 continue;
566 gcc_assert (i == (unsigned) lp->index);
567 FIXUP_EH_LP (lp->next_lp);
568 FIXUP_EH_REGION (lp->region);
571 #undef FIXUP_EH_REGION
572 #undef FIXUP_EH_LP
576 /* Initialize EH support. */
578 static void
579 lto_init_eh (void)
581 /* Contrary to most other FEs, we only initialize EH support when at
582 least one of the files in the set contains exception regions in
583 it. Since this happens much later than the call to init_eh in
584 lang_dependent_init, we have to set flag_exceptions and call
585 init_eh again to initialize the EH tables. */
586 flag_exceptions = 1;
587 init_eh ();
589 /* Initialize dwarf2 tables. Since dwarf2out_do_frame() returns
590 true only when exceptions are enabled, this initialization is
591 never done during lang_dependent_init. */
592 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
593 if (dwarf2out_do_frame ())
594 dwarf2out_frame_init ();
595 #endif
599 /* Read the exception table for FN from IB using the data descriptors
600 in DATA_IN. */
602 static void
603 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
604 struct function *fn)
606 HOST_WIDE_INT i, root_region, len;
607 enum LTO_tags tag;
608 static bool eh_initialized_p = false;
610 tag = input_record_start (ib);
611 if (tag == LTO_null)
612 return;
614 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
616 /* If the file contains EH regions, then it was compiled with
617 -fexceptions. In that case, initialize the backend EH
618 machinery. */
619 if (!eh_initialized_p)
621 lto_init_eh ();
622 eh_initialized_p = true;
625 gcc_assert (fn->eh);
627 root_region = lto_input_sleb128 (ib);
628 gcc_assert (root_region == (int) root_region);
630 /* Read the EH region array. */
631 len = lto_input_sleb128 (ib);
632 gcc_assert (len == (int) len);
633 if (len > 0)
635 VEC_safe_grow (eh_region, gc, fn->eh->region_array, len);
636 for (i = 0; i < len; i++)
638 eh_region r = input_eh_region (ib, data_in, i);
639 VEC_replace (eh_region, fn->eh->region_array, i, r);
643 /* Read the landing pads. */
644 len = lto_input_sleb128 (ib);
645 gcc_assert (len == (int) len);
646 if (len > 0)
648 VEC_safe_grow (eh_landing_pad, gc, fn->eh->lp_array, len);
649 for (i = 0; i < len; i++)
651 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
652 VEC_replace (eh_landing_pad, fn->eh->lp_array, i, lp);
656 /* Read the runtime type data. */
657 len = lto_input_sleb128 (ib);
658 gcc_assert (len == (int) len);
659 if (len > 0)
661 VEC_safe_grow (tree, gc, fn->eh->ttype_data, len);
662 for (i = 0; i < len; i++)
664 tree ttype = lto_input_tree (ib, data_in);
665 VEC_replace (tree, fn->eh->ttype_data, i, ttype);
669 /* Read the table of action chains. */
670 len = lto_input_sleb128 (ib);
671 gcc_assert (len == (int) len);
672 if (len > 0)
674 if (targetm.arm_eabi_unwinder)
676 VEC_safe_grow (tree, gc, fn->eh->ehspec_data.arm_eabi, len);
677 for (i = 0; i < len; i++)
679 tree t = lto_input_tree (ib, data_in);
680 VEC_replace (tree, fn->eh->ehspec_data.arm_eabi, i, t);
683 else
685 VEC_safe_grow (uchar, gc, fn->eh->ehspec_data.other, len);
686 for (i = 0; i < len; i++)
688 uchar c = lto_input_1_unsigned (ib);
689 VEC_replace (uchar, fn->eh->ehspec_data.other, i, c);
694 /* Reconstruct the EH region tree by fixing up the peer/children
695 pointers. */
696 fixup_eh_region_pointers (fn, root_region);
698 tag = input_record_start (ib);
699 lto_tag_check_range (tag, LTO_null, LTO_null);
703 /* Make a new basic block with index INDEX in function FN. */
705 static basic_block
706 make_new_block (struct function *fn, unsigned int index)
708 basic_block bb = alloc_block ();
709 bb->index = index;
710 SET_BASIC_BLOCK_FOR_FUNCTION (fn, index, bb);
711 bb->il.gimple = GGC_CNEW (struct gimple_bb_info);
712 n_basic_blocks_for_function (fn)++;
713 bb->flags = 0;
714 set_bb_seq (bb, gimple_seq_alloc ());
715 return bb;
719 /* Read the CFG for function FN from input block IB. */
721 static void
722 input_cfg (struct lto_input_block *ib, struct function *fn)
724 unsigned int bb_count;
725 basic_block p_bb;
726 unsigned int i;
727 int index;
729 init_empty_tree_cfg_for_function (fn);
730 init_ssa_operands ();
732 profile_status_for_function (fn) =
733 (enum profile_status_d) lto_input_uleb128 (ib);
735 bb_count = lto_input_uleb128 (ib);
737 last_basic_block_for_function (fn) = bb_count;
738 if (bb_count > VEC_length (basic_block, basic_block_info_for_function (fn)))
739 VEC_safe_grow_cleared (basic_block, gc,
740 basic_block_info_for_function (fn), bb_count);
742 if (bb_count > VEC_length (basic_block, label_to_block_map_for_function (fn)))
743 VEC_safe_grow_cleared (basic_block, gc,
744 label_to_block_map_for_function (fn), bb_count);
746 index = lto_input_sleb128 (ib);
747 while (index != -1)
749 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
750 unsigned int edge_count;
752 if (bb == NULL)
753 bb = make_new_block (fn, index);
755 edge_count = lto_input_uleb128 (ib);
757 /* Connect up the CFG. */
758 for (i = 0; i < edge_count; i++)
760 unsigned int dest_index;
761 unsigned int edge_flags;
762 basic_block dest;
763 int probability;
764 gcov_type count;
765 edge e;
767 dest_index = lto_input_uleb128 (ib);
768 probability = (int) lto_input_sleb128 (ib);
769 count = (gcov_type) lto_input_sleb128 (ib);
770 edge_flags = lto_input_uleb128 (ib);
772 dest = BASIC_BLOCK_FOR_FUNCTION (fn, dest_index);
774 if (dest == NULL)
775 dest = make_new_block (fn, dest_index);
777 e = make_edge (bb, dest, edge_flags);
778 e->probability = probability;
779 e->count = count;
782 index = lto_input_sleb128 (ib);
785 p_bb = ENTRY_BLOCK_PTR_FOR_FUNCTION(fn);
786 index = lto_input_sleb128 (ib);
787 while (index != -1)
789 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
790 bb->prev_bb = p_bb;
791 p_bb->next_bb = bb;
792 p_bb = bb;
793 index = lto_input_sleb128 (ib);
798 /* Read a PHI function for basic block BB in function FN. DATA_IN is
799 the file being read. IB is the input block to use for reading. */
801 static gimple
802 input_phi (struct lto_input_block *ib, basic_block bb, struct data_in *data_in,
803 struct function *fn)
805 unsigned HOST_WIDE_INT ix;
806 tree phi_result;
807 int i, len;
808 gimple result;
810 ix = lto_input_uleb128 (ib);
811 phi_result = VEC_index (tree, SSANAMES (fn), ix);
812 len = EDGE_COUNT (bb->preds);
813 result = create_phi_node (phi_result, bb);
814 SSA_NAME_DEF_STMT (phi_result) = result;
816 /* We have to go through a lookup process here because the preds in the
817 reconstructed graph are generally in a different order than they
818 were in the original program. */
819 for (i = 0; i < len; i++)
821 tree def = lto_input_tree (ib, data_in);
822 int src_index = lto_input_uleb128 (ib);
823 location_t arg_loc = lto_input_location (ib, data_in);
824 basic_block sbb = BASIC_BLOCK_FOR_FUNCTION (fn, src_index);
826 edge e = NULL;
827 int j;
829 for (j = 0; j < len; j++)
830 if (EDGE_PRED (bb, j)->src == sbb)
832 e = EDGE_PRED (bb, j);
833 break;
836 add_phi_arg (result, def, e, arg_loc);
839 return result;
843 /* Read the SSA names array for function FN from DATA_IN using input
844 block IB. */
846 static void
847 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
848 struct function *fn)
850 unsigned int i, size;
852 size = lto_input_uleb128 (ib);
853 init_ssanames (fn, size);
855 i = lto_input_uleb128 (ib);
856 while (i)
858 tree ssa_name, name;
859 bool is_default_def;
861 /* Skip over the elements that had been freed. */
862 while (VEC_length (tree, SSANAMES (fn)) < i)
863 VEC_quick_push (tree, SSANAMES (fn), NULL_TREE);
865 is_default_def = (lto_input_1_unsigned (ib) != 0);
866 name = lto_input_tree (ib, data_in);
867 ssa_name = make_ssa_name_fn (fn, name, gimple_build_nop ());
869 if (is_default_def)
870 set_default_def (SSA_NAME_VAR (ssa_name), ssa_name);
872 i = lto_input_uleb128 (ib);
877 /* Fixup the reference tree OP for replaced VAR_DECLs with mismatched
878 types. */
880 static void
881 maybe_fixup_handled_component (tree op)
883 tree decl_type;
884 tree wanted_type;
886 while (handled_component_p (TREE_OPERAND (op, 0)))
887 op = TREE_OPERAND (op, 0);
888 if (TREE_CODE (TREE_OPERAND (op, 0)) != VAR_DECL)
889 return;
891 decl_type = TREE_TYPE (TREE_OPERAND (op, 0));
893 switch (TREE_CODE (op))
895 case COMPONENT_REF:
896 /* The DECL_CONTEXT of the field-decl is the record type we look for. */
897 wanted_type = DECL_CONTEXT (TREE_OPERAND (op, 1));
898 break;
900 case ARRAY_REF:
901 if (TREE_CODE (decl_type) == ARRAY_TYPE
902 && (TREE_TYPE (decl_type) == TREE_TYPE (op)
903 || useless_type_conversion_p (TREE_TYPE (op),
904 TREE_TYPE (decl_type))))
905 return;
906 /* An unknown size array type should be ok. But we do not
907 lower the lower bound in all cases - ugh. */
908 wanted_type = build_array_type (TREE_TYPE (op), NULL_TREE);
909 break;
911 case ARRAY_RANGE_REF:
912 if (TREE_CODE (decl_type) == ARRAY_TYPE
913 && (TREE_TYPE (decl_type) == TREE_TYPE (TREE_TYPE (op))
914 || useless_type_conversion_p (TREE_TYPE (TREE_TYPE (op)),
915 TREE_TYPE (decl_type))))
916 return;
917 /* An unknown size array type should be ok. But we do not
918 lower the lower bound in all cases - ugh. */
919 wanted_type = build_array_type (TREE_TYPE (TREE_TYPE (op)), NULL_TREE);
920 break;
922 case BIT_FIELD_REF:
923 case VIEW_CONVERT_EXPR:
924 /* Very nice - nothing to do. */
925 return;
927 case REALPART_EXPR:
928 case IMAGPART_EXPR:
929 if (TREE_CODE (decl_type) == COMPLEX_TYPE
930 && (TREE_TYPE (decl_type) == TREE_TYPE (op)
931 || useless_type_conversion_p (TREE_TYPE (op),
932 TREE_TYPE (decl_type))))
933 return;
934 wanted_type = build_complex_type (TREE_TYPE (op));
935 break;
937 default:
938 gcc_unreachable ();
941 if (!useless_type_conversion_p (wanted_type, decl_type))
942 TREE_OPERAND (op, 0) = build1 (VIEW_CONVERT_EXPR, wanted_type,
943 TREE_OPERAND (op, 0));
946 /* Fixup reference tree operands for substituted prevailing decls
947 with mismatched types in STMT. */
949 static void
950 maybe_fixup_decls (gimple stmt)
952 /* We have to fixup replaced decls here in case there were
953 inter-TU type mismatches. Catch the most common cases
954 for now - this way we'll get testcases for the rest as
955 the type verifier will complain. */
956 if (gimple_assign_single_p (stmt))
958 tree lhs = gimple_assign_lhs (stmt);
959 tree rhs = gimple_assign_rhs1 (stmt);
961 /* First catch loads and aggregate copies by adjusting the rhs. */
962 if (TREE_CODE (rhs) == VAR_DECL)
964 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
965 gimple_assign_set_rhs1 (stmt, build1 (VIEW_CONVERT_EXPR,
966 TREE_TYPE (lhs), rhs));
968 else if (handled_component_p (rhs))
969 maybe_fixup_handled_component (rhs);
970 /* Then catch scalar stores. */
971 else if (TREE_CODE (lhs) == VAR_DECL)
973 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
974 gimple_assign_set_lhs (stmt, build1 (VIEW_CONVERT_EXPR,
975 TREE_TYPE (rhs), lhs));
977 else if (handled_component_p (lhs))
978 maybe_fixup_handled_component (lhs);
980 else if (is_gimple_call (stmt))
982 tree lhs = gimple_call_lhs (stmt);
984 if (lhs && TREE_CODE (lhs) == VAR_DECL)
986 if (!useless_type_conversion_p (TREE_TYPE (lhs),
987 gimple_call_return_type (stmt)))
988 gimple_call_set_lhs (stmt, build1 (VIEW_CONVERT_EXPR,
989 gimple_call_return_type (stmt),
990 lhs));
992 else if (lhs && handled_component_p (lhs))
993 maybe_fixup_handled_component (lhs);
995 /* Arguments, especially for varargs functions will be funny... */
999 /* Read a statement with tag TAG in function FN from block IB using
1000 descriptors in DATA_IN. */
1002 static gimple
1003 input_gimple_stmt (struct lto_input_block *ib, struct data_in *data_in,
1004 struct function *fn, enum LTO_tags tag)
1006 gimple stmt;
1007 enum gimple_code code;
1008 unsigned HOST_WIDE_INT num_ops;
1009 size_t i;
1010 struct bitpack_d *bp;
1012 code = lto_tag_to_gimple_code (tag);
1014 /* Read the tuple header. */
1015 bp = lto_input_bitpack (ib);
1016 num_ops = bp_unpack_value (bp, sizeof (unsigned) * 8);
1017 stmt = gimple_alloc (code, num_ops);
1018 stmt->gsbase.no_warning = bp_unpack_value (bp, 1);
1019 if (is_gimple_assign (stmt))
1020 stmt->gsbase.nontemporal_move = bp_unpack_value (bp, 1);
1021 stmt->gsbase.has_volatile_ops = bp_unpack_value (bp, 1);
1022 stmt->gsbase.subcode = bp_unpack_value (bp, 16);
1023 bitpack_delete (bp);
1025 /* Read location information. */
1026 gimple_set_location (stmt, lto_input_location (ib, data_in));
1028 /* Read lexical block reference. */
1029 gimple_set_block (stmt, lto_input_tree (ib, data_in));
1031 /* Read in all the operands. */
1032 switch (code)
1034 case GIMPLE_RESX:
1035 gimple_resx_set_region (stmt, lto_input_sleb128 (ib));
1036 break;
1038 case GIMPLE_EH_MUST_NOT_THROW:
1039 gimple_eh_must_not_throw_set_fndecl (stmt, lto_input_tree (ib, data_in));
1040 break;
1042 case GIMPLE_EH_DISPATCH:
1043 gimple_eh_dispatch_set_region (stmt, lto_input_sleb128 (ib));
1044 break;
1046 case GIMPLE_ASM:
1048 /* FIXME lto. Move most of this into a new gimple_asm_set_string(). */
1049 tree str;
1050 stmt->gimple_asm.ni = lto_input_uleb128 (ib);
1051 stmt->gimple_asm.no = lto_input_uleb128 (ib);
1052 stmt->gimple_asm.nc = lto_input_uleb128 (ib);
1053 str = input_string_cst (data_in, ib);
1054 stmt->gimple_asm.string = TREE_STRING_POINTER (str);
1056 /* Fallthru */
1058 case GIMPLE_ASSIGN:
1059 case GIMPLE_CALL:
1060 case GIMPLE_RETURN:
1061 case GIMPLE_SWITCH:
1062 case GIMPLE_LABEL:
1063 case GIMPLE_COND:
1064 case GIMPLE_GOTO:
1065 case GIMPLE_DEBUG:
1066 for (i = 0; i < num_ops; i++)
1068 tree op = lto_input_tree (ib, data_in);
1069 gimple_set_op (stmt, i, op);
1071 /* Fixup FIELD_DECLs. */
1072 while (op && handled_component_p (op))
1074 if (TREE_CODE (op) == COMPONENT_REF)
1076 tree field, type, tem;
1077 field = TREE_OPERAND (op, 1);
1078 type = DECL_CONTEXT (field);
1079 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
1081 if (tem == field
1082 || (TREE_TYPE (tem) == TREE_TYPE (field)
1083 && (DECL_FIELD_OFFSET (tem)
1084 == DECL_FIELD_OFFSET (field))
1085 && (DECL_FIELD_BIT_OFFSET (tem)
1086 == DECL_FIELD_BIT_OFFSET (field))
1087 && (DECL_OFFSET_ALIGN (tem)
1088 == DECL_OFFSET_ALIGN (field))))
1089 break;
1091 /* In case of type mismatches across units we can fail
1092 to unify some types and thus not find a proper
1093 field-decl here. So only assert here if checking
1094 is enabled. */
1095 #ifdef ENABLE_CHECKING
1096 gcc_assert (tem != NULL_TREE);
1097 #endif
1098 if (tem != NULL_TREE)
1099 TREE_OPERAND (op, 1) = tem;
1102 op = TREE_OPERAND (op, 0);
1105 break;
1107 case GIMPLE_NOP:
1108 case GIMPLE_PREDICT:
1109 break;
1111 default:
1112 internal_error ("bytecode stream: unknown GIMPLE statement tag %s",
1113 lto_tag_name (tag));
1116 /* Update the properties of symbols, SSA names and labels associated
1117 with STMT. */
1118 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1120 tree lhs = gimple_get_lhs (stmt);
1121 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1122 SSA_NAME_DEF_STMT (lhs) = stmt;
1124 else if (code == GIMPLE_LABEL)
1125 gcc_assert (emit_label_in_global_context_p (gimple_label_label (stmt))
1126 || DECL_CONTEXT (gimple_label_label (stmt)) == fn->decl);
1127 else if (code == GIMPLE_ASM)
1129 unsigned i;
1131 for (i = 0; i < gimple_asm_noutputs (stmt); i++)
1133 tree op = TREE_VALUE (gimple_asm_output_op (stmt, i));
1134 if (TREE_CODE (op) == SSA_NAME)
1135 SSA_NAME_DEF_STMT (op) = stmt;
1139 /* Fixup reference tree operands for substituted prevailing decls
1140 with mismatched types. */
1141 maybe_fixup_decls (stmt);
1143 /* Mark the statement modified so its operand vectors can be filled in. */
1144 gimple_set_modified (stmt, true);
1146 return stmt;
1150 /* Read a basic block with tag TAG from DATA_IN using input block IB.
1151 FN is the function being processed. */
1153 static void
1154 input_bb (struct lto_input_block *ib, enum LTO_tags tag,
1155 struct data_in *data_in, struct function *fn)
1157 unsigned int index;
1158 basic_block bb;
1159 gimple_stmt_iterator bsi;
1161 /* This routine assumes that CFUN is set to FN, as it needs to call
1162 basic GIMPLE routines that use CFUN. */
1163 gcc_assert (cfun == fn);
1165 index = lto_input_uleb128 (ib);
1166 bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
1168 bb->count = lto_input_sleb128 (ib);
1169 bb->loop_depth = lto_input_sleb128 (ib);
1170 bb->frequency = lto_input_sleb128 (ib);
1171 bb->flags = lto_input_sleb128 (ib);
1173 /* LTO_bb1 has statements. LTO_bb0 does not. */
1174 if (tag == LTO_bb0)
1175 return;
1177 bsi = gsi_start_bb (bb);
1178 tag = input_record_start (ib);
1179 while (tag)
1181 gimple stmt = input_gimple_stmt (ib, data_in, fn, tag);
1183 /* Change debug stmts to nops on-the-fly if we do not have VTA enabled.
1184 This allows us to build for example static libs with debugging
1185 enabled and do the final link without. */
1186 if (!MAY_HAVE_DEBUG_STMTS
1187 && is_gimple_debug (stmt))
1188 stmt = gimple_build_nop ();
1190 find_referenced_vars_in (stmt);
1191 gsi_insert_after (&bsi, stmt, GSI_NEW_STMT);
1193 /* After the statement, expect a 0 delimiter or the EH region
1194 that the previous statement belongs to. */
1195 tag = input_record_start (ib);
1196 lto_tag_check_set (tag, 2, LTO_eh_region, LTO_null);
1198 if (tag == LTO_eh_region)
1200 HOST_WIDE_INT region = lto_input_sleb128 (ib);
1201 gcc_assert (region == (int) region);
1202 add_stmt_to_eh_lp (stmt, region);
1205 tag = input_record_start (ib);
1208 tag = input_record_start (ib);
1209 while (tag)
1211 gimple phi = input_phi (ib, bb, data_in, fn);
1212 find_referenced_vars_in (phi);
1213 tag = input_record_start (ib);
1217 /* Go through all NODE edges and fixup call_stmt pointers
1218 so they point to STMTS. */
1220 static void
1221 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts)
1223 struct cgraph_edge *cedge;
1224 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
1225 cedge->call_stmt = stmts[cedge->lto_stmt_uid];
1228 /* Fixup call_stmt pointers in NODE and all clones. */
1230 static void
1231 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
1233 struct cgraph_node *node;
1235 while (orig->clone_of)
1236 orig = orig->clone_of;
1238 fixup_call_stmt_edges_1 (orig, stmts);
1239 if (orig->clones)
1240 for (node = orig->clones; node != orig;)
1242 fixup_call_stmt_edges_1 (node, stmts);
1243 if (node->clones)
1244 node = node->clones;
1245 else if (node->next_sibling_clone)
1246 node = node->next_sibling_clone;
1247 else
1249 while (node != orig && !node->next_sibling_clone)
1250 node = node->clone_of;
1251 if (node != orig)
1252 node = node->next_sibling_clone;
1257 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
1259 static void
1260 input_function (tree fn_decl, struct data_in *data_in,
1261 struct lto_input_block *ib)
1263 struct function *fn;
1264 enum LTO_tags tag;
1265 gimple *stmts;
1266 basic_block bb;
1267 struct bitpack_d *bp;
1268 struct cgraph_node *node;
1269 tree args, narg, oarg;
1271 fn = DECL_STRUCT_FUNCTION (fn_decl);
1272 tag = input_record_start (ib);
1273 clear_line_info (data_in);
1275 gimple_register_cfg_hooks ();
1276 lto_tag_check (tag, LTO_function);
1278 /* Read all the attributes for FN. */
1279 bp = lto_input_bitpack (ib);
1280 fn->is_thunk = bp_unpack_value (bp, 1);
1281 fn->has_local_explicit_reg_vars = bp_unpack_value (bp, 1);
1282 fn->after_tree_profile = bp_unpack_value (bp, 1);
1283 fn->returns_pcc_struct = bp_unpack_value (bp, 1);
1284 fn->returns_struct = bp_unpack_value (bp, 1);
1285 fn->always_inline_functions_inlined = bp_unpack_value (bp, 1);
1286 fn->after_inlining = bp_unpack_value (bp, 1);
1287 fn->dont_save_pending_sizes_p = bp_unpack_value (bp, 1);
1288 fn->stdarg = bp_unpack_value (bp, 1);
1289 fn->has_nonlocal_label = bp_unpack_value (bp, 1);
1290 fn->calls_alloca = bp_unpack_value (bp, 1);
1291 fn->calls_setjmp = bp_unpack_value (bp, 1);
1292 fn->function_frequency = (enum function_frequency) bp_unpack_value (bp, 2);
1293 fn->va_list_fpr_size = bp_unpack_value (bp, 8);
1294 fn->va_list_gpr_size = bp_unpack_value (bp, 8);
1295 bitpack_delete (bp);
1297 /* Read the static chain and non-local goto save area. */
1298 fn->static_chain_decl = lto_input_tree (ib, data_in);
1299 fn->nonlocal_goto_save_area = lto_input_tree (ib, data_in);
1301 /* Read all the local symbols. */
1302 fn->local_decls = lto_input_tree (ib, data_in);
1304 /* Read all function arguments. We need to re-map them here to the
1305 arguments of the merged function declaration. */
1306 args = lto_input_tree (ib, data_in);
1307 for (oarg = args, narg = DECL_ARGUMENTS (fn_decl);
1308 oarg && narg;
1309 oarg = TREE_CHAIN (oarg), narg = TREE_CHAIN (narg))
1311 int ix;
1312 bool res;
1313 res = lto_streamer_cache_lookup (data_in->reader_cache, oarg, &ix);
1314 gcc_assert (res);
1315 /* Replace the argument in the streamer cache. */
1316 lto_streamer_cache_insert_at (data_in->reader_cache, narg, ix);
1318 gcc_assert (!oarg && !narg);
1320 /* Read all the SSA names. */
1321 input_ssa_names (ib, data_in, fn);
1323 /* Read the exception handling regions in the function. */
1324 input_eh_regions (ib, data_in, fn);
1326 /* Read the tree of lexical scopes for the function. */
1327 DECL_INITIAL (fn_decl) = lto_input_tree (ib, data_in);
1328 gcc_assert (DECL_INITIAL (fn_decl));
1329 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
1331 /* Read all the basic blocks. */
1332 tag = input_record_start (ib);
1333 while (tag)
1335 input_bb (ib, tag, data_in, fn);
1336 tag = input_record_start (ib);
1339 /* Fix up the call statements that are mentioned in the callgraph
1340 edges. */
1341 renumber_gimple_stmt_uids ();
1342 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
1343 FOR_ALL_BB (bb)
1345 gimple_stmt_iterator bsi;
1346 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
1348 gimple stmt = gsi_stmt (bsi);
1349 stmts[gimple_uid (stmt)] = stmt;
1353 /* Set the gimple body to the statement sequence in the entry
1354 basic block. FIXME lto, this is fairly hacky. The existence
1355 of a gimple body is used by the cgraph routines, but we should
1356 really use the presence of the CFG. */
1358 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs);
1359 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1362 node = cgraph_node (fn_decl);
1363 fixup_call_stmt_edges (node, stmts);
1364 execute_all_ipa_stmt_fixups (node, stmts);
1366 update_ssa (TODO_update_ssa_only_virtuals);
1367 free_dominance_info (CDI_DOMINATORS);
1368 free_dominance_info (CDI_POST_DOMINATORS);
1369 free (stmts);
1373 /* Read initializer expressions for public statics. DATA_IN is the
1374 file being read. IB is the input block used for reading. */
1376 static void
1377 input_alias_pairs (struct lto_input_block *ib, struct data_in *data_in)
1379 tree var;
1381 clear_line_info (data_in);
1383 /* Skip over all the unreferenced globals. */
1385 var = lto_input_tree (ib, data_in);
1386 while (var);
1388 var = lto_input_tree (ib, data_in);
1389 while (var)
1391 const char *orig_name, *new_name;
1392 alias_pair *p;
1394 p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
1395 p->decl = var;
1396 p->target = lto_input_tree (ib, data_in);
1398 /* If the target is a static object, we may have registered a
1399 new name for it to avoid clashes between statics coming from
1400 different files. In that case, use the new name. */
1401 orig_name = IDENTIFIER_POINTER (p->target);
1402 new_name = lto_get_decl_name_mapping (data_in->file_data, orig_name);
1403 if (strcmp (orig_name, new_name) != 0)
1404 p->target = get_identifier (new_name);
1406 var = lto_input_tree (ib, data_in);
1411 /* Read the body from DATA for function FN_DECL and fill it in.
1412 FILE_DATA are the global decls and types. SECTION_TYPE is either
1413 LTO_section_function_body or LTO_section_static_initializer. If
1414 section type is LTO_section_function_body, FN must be the decl for
1415 that function. */
1417 static void
1418 lto_read_body (struct lto_file_decl_data *file_data, tree fn_decl,
1419 const char *data, enum lto_section_type section_type)
1421 const struct lto_function_header *header;
1422 struct data_in *data_in;
1423 int32_t cfg_offset;
1424 int32_t main_offset;
1425 int32_t string_offset;
1426 struct lto_input_block ib_cfg;
1427 struct lto_input_block ib_main;
1429 header = (const struct lto_function_header *) data;
1430 cfg_offset = sizeof (struct lto_function_header);
1431 main_offset = cfg_offset + header->cfg_size;
1432 string_offset = main_offset + header->main_size;
1434 LTO_INIT_INPUT_BLOCK (ib_cfg,
1435 data + cfg_offset,
1437 header->cfg_size);
1439 LTO_INIT_INPUT_BLOCK (ib_main,
1440 data + main_offset,
1442 header->main_size);
1444 data_in = lto_data_in_create (file_data, data + string_offset,
1445 header->string_size, NULL);
1447 /* Make sure the file was generated by the exact same compiler. */
1448 lto_check_version (header->lto_header.major_version,
1449 header->lto_header.minor_version);
1451 if (section_type == LTO_section_function_body)
1453 struct function *fn = DECL_STRUCT_FUNCTION (fn_decl);
1454 struct lto_in_decl_state *decl_state;
1456 push_cfun (fn);
1457 init_tree_ssa (fn);
1459 /* Use the function's decl state. */
1460 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1461 gcc_assert (decl_state);
1462 file_data->current_decl_state = decl_state;
1464 input_cfg (&ib_cfg, fn);
1466 /* Set up the struct function. */
1467 input_function (fn_decl, data_in, &ib_main);
1469 /* We should now be in SSA. */
1470 cfun->gimple_df->in_ssa_p = true;
1472 /* Fill in properties we know hold for the rebuilt CFG. */
1473 cfun->curr_properties = PROP_ssa
1474 | PROP_cfg
1475 | PROP_gimple_any
1476 | PROP_gimple_lcf
1477 | PROP_gimple_leh
1478 | PROP_referenced_vars;
1480 /* Restore decl state */
1481 file_data->current_decl_state = file_data->global_decl_state;
1483 pop_cfun ();
1485 else
1487 input_alias_pairs (&ib_main, data_in);
1490 clear_line_info (data_in);
1491 lto_data_in_delete (data_in);
1495 /* Read the body of FN_DECL using DATA. FILE_DATA holds the global
1496 decls and types. */
1498 void
1499 lto_input_function_body (struct lto_file_decl_data *file_data,
1500 tree fn_decl, const char *data)
1502 current_function_decl = fn_decl;
1503 lto_read_body (file_data, fn_decl, data, LTO_section_function_body);
1507 /* Read in VAR_DECL using DATA. FILE_DATA holds the global decls and
1508 types. */
1510 void
1511 lto_input_constructors_and_inits (struct lto_file_decl_data *file_data,
1512 const char *data)
1514 lto_read_body (file_data, NULL, data, LTO_section_static_initializer);
1518 /* Return the resolution for the decl with index INDEX from DATA_IN. */
1520 static enum ld_plugin_symbol_resolution
1521 get_resolution (struct data_in *data_in, unsigned index)
1523 if (data_in->globals_resolution)
1525 ld_plugin_symbol_resolution_t ret;
1526 gcc_assert (index < VEC_length (ld_plugin_symbol_resolution_t,
1527 data_in->globals_resolution));
1528 ret = VEC_index (ld_plugin_symbol_resolution_t,
1529 data_in->globals_resolution,
1530 index);
1531 gcc_assert (ret != LDPR_UNKNOWN);
1532 return ret;
1534 else
1535 /* Delay resolution finding until decl merging. */
1536 return LDPR_UNKNOWN;
1540 /* Unpack all the non-pointer fields of the TS_BASE structure of
1541 expression EXPR from bitpack BP. */
1543 static void
1544 unpack_ts_base_value_fields (struct bitpack_d *bp, tree expr)
1546 /* Note that the code for EXPR has already been unpacked to create EXPR in
1547 lto_materialize_tree. */
1548 if (!TYPE_P (expr))
1550 TREE_SIDE_EFFECTS (expr) = (unsigned) bp_unpack_value (bp, 1);
1551 TREE_CONSTANT (expr) = (unsigned) bp_unpack_value (bp, 1);
1552 TREE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1554 /* TREE_PUBLIC is used on types to indicate that the type
1555 has a TYPE_CACHED_VALUES vector. This is not streamed out,
1556 so we skip it here. */
1557 TREE_PUBLIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1559 TREE_ADDRESSABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1560 TREE_THIS_VOLATILE (expr) = (unsigned) bp_unpack_value (bp, 1);
1561 if (DECL_P (expr))
1562 DECL_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1563 else if (TYPE_P (expr))
1564 TYPE_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1565 TREE_ASM_WRITTEN (expr) = (unsigned) bp_unpack_value (bp, 1);
1566 TREE_NO_WARNING (expr) = (unsigned) bp_unpack_value (bp, 1);
1567 TREE_USED (expr) = (unsigned) bp_unpack_value (bp, 1);
1568 TREE_NOTHROW (expr) = (unsigned) bp_unpack_value (bp, 1);
1569 TREE_STATIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1570 TREE_PRIVATE (expr) = (unsigned) bp_unpack_value (bp, 1);
1571 TREE_PROTECTED (expr) = (unsigned) bp_unpack_value (bp, 1);
1572 TREE_DEPRECATED (expr) = (unsigned) bp_unpack_value (bp, 1);
1573 if (TYPE_P (expr))
1574 TYPE_SATURATING (expr) = (unsigned) bp_unpack_value (bp, 1);
1575 if (TREE_CODE (expr) == SSA_NAME)
1576 SSA_NAME_IS_DEFAULT_DEF (expr) = (unsigned) bp_unpack_value (bp, 1);
1580 /* Unpack all the non-pointer fields of the TS_REAL_CST structure of
1581 expression EXPR from bitpack BP. */
1583 static void
1584 unpack_ts_real_cst_value_fields (struct bitpack_d *bp, tree expr)
1586 unsigned i;
1587 REAL_VALUE_TYPE r;
1588 REAL_VALUE_TYPE *rp;
1590 r.cl = (unsigned) bp_unpack_value (bp, 2);
1591 r.decimal = (unsigned) bp_unpack_value (bp, 1);
1592 r.sign = (unsigned) bp_unpack_value (bp, 1);
1593 r.signalling = (unsigned) bp_unpack_value (bp, 1);
1594 r.canonical = (unsigned) bp_unpack_value (bp, 1);
1595 r.uexp = (unsigned) bp_unpack_value (bp, EXP_BITS);
1596 for (i = 0; i < SIGSZ; i++)
1597 r.sig[i] = (unsigned long) bp_unpack_value (bp, HOST_BITS_PER_LONG);
1599 rp = GGC_NEW (REAL_VALUE_TYPE);
1600 memcpy (rp, &r, sizeof (REAL_VALUE_TYPE));
1601 TREE_REAL_CST_PTR (expr) = rp;
1605 /* Unpack all the non-pointer fields of the TS_FIXED_CST structure of
1606 expression EXPR from bitpack BP. */
1608 static void
1609 unpack_ts_fixed_cst_value_fields (struct bitpack_d *bp, tree expr)
1611 struct fixed_value fv;
1613 fv.data.low = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1614 fv.data.high = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1615 TREE_FIXED_CST (expr) = fv;
1619 /* Unpack all the non-pointer fields of the TS_DECL_COMMON structure
1620 of expression EXPR from bitpack BP. */
1622 static void
1623 unpack_ts_decl_common_value_fields (struct bitpack_d *bp, tree expr)
1625 DECL_MODE (expr) = (enum machine_mode) bp_unpack_value (bp, 8);
1626 DECL_NONLOCAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1627 DECL_VIRTUAL_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1628 DECL_IGNORED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1629 DECL_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1630 DECL_ARTIFICIAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1631 DECL_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1632 DECL_PRESERVE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1633 DECL_DEBUG_EXPR_IS_FROM (expr) = (unsigned) bp_unpack_value (bp, 1);
1634 DECL_EXTERNAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1635 DECL_GIMPLE_REG_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1636 DECL_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1638 if (TREE_CODE (expr) == LABEL_DECL)
1640 DECL_ERROR_ISSUED (expr) = (unsigned) bp_unpack_value (bp, 1);
1641 EH_LANDING_PAD_NR (expr) = (int) bp_unpack_value (bp, HOST_BITS_PER_INT);
1643 /* Always assume an initial value of -1 for LABEL_DECL_UID to
1644 force gimple_set_bb to recreate label_to_block_map. */
1645 LABEL_DECL_UID (expr) = -1;
1648 if (TREE_CODE (expr) == FIELD_DECL)
1650 unsigned HOST_WIDE_INT off_align;
1651 DECL_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1652 DECL_NONADDRESSABLE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1653 off_align = (unsigned HOST_WIDE_INT) bp_unpack_value (bp, 8);
1654 SET_DECL_OFFSET_ALIGN (expr, off_align);
1657 if (TREE_CODE (expr) == RESULT_DECL
1658 || TREE_CODE (expr) == PARM_DECL
1659 || TREE_CODE (expr) == VAR_DECL)
1661 DECL_BY_REFERENCE (expr) = (unsigned) bp_unpack_value (bp, 1);
1662 if (TREE_CODE (expr) == VAR_DECL
1663 || TREE_CODE (expr) == PARM_DECL)
1664 DECL_HAS_VALUE_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1665 DECL_RESTRICTED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1670 /* Unpack all the non-pointer fields of the TS_DECL_WRTL structure
1671 of expression EXPR from bitpack BP. */
1673 static void
1674 unpack_ts_decl_wrtl_value_fields (struct bitpack_d *bp, tree expr)
1676 DECL_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1680 /* Unpack all the non-pointer fields of the TS_DECL_WITH_VIS structure
1681 of expression EXPR from bitpack BP. */
1683 static void
1684 unpack_ts_decl_with_vis_value_fields (struct bitpack_d *bp, tree expr)
1686 DECL_DEFER_OUTPUT (expr) = (unsigned) bp_unpack_value (bp, 1);
1687 DECL_COMMON (expr) = (unsigned) bp_unpack_value (bp, 1);
1688 DECL_DLLIMPORT_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1689 DECL_WEAK (expr) = (unsigned) bp_unpack_value (bp, 1);
1690 DECL_SEEN_IN_BIND_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1691 DECL_COMDAT (expr) = (unsigned) bp_unpack_value (bp, 1);
1692 DECL_VISIBILITY (expr) = (enum symbol_visibility) bp_unpack_value (bp, 2);
1693 DECL_VISIBILITY_SPECIFIED (expr) = (unsigned) bp_unpack_value (bp, 1);
1695 if (TREE_CODE (expr) == VAR_DECL)
1697 DECL_HARD_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1698 DECL_IN_TEXT_SECTION (expr) = (unsigned) bp_unpack_value (bp, 1);
1699 DECL_TLS_MODEL (expr) = (enum tls_model) bp_unpack_value (bp, 3);
1702 if (VAR_OR_FUNCTION_DECL_P (expr))
1704 priority_type p;
1705 p = (priority_type) bp_unpack_value (bp, HOST_BITS_PER_SHORT);
1706 SET_DECL_INIT_PRIORITY (expr, p);
1711 /* Unpack all the non-pointer fields of the TS_FUNCTION_DECL structure
1712 of expression EXPR from bitpack BP. */
1714 static void
1715 unpack_ts_function_decl_value_fields (struct bitpack_d *bp, tree expr)
1717 DECL_FUNCTION_CODE (expr) = (enum built_in_function) bp_unpack_value (bp, 11);
1718 DECL_BUILT_IN_CLASS (expr) = (enum built_in_class) bp_unpack_value (bp, 2);
1719 DECL_STATIC_CONSTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1720 DECL_STATIC_DESTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1721 DECL_UNINLINABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1722 DECL_POSSIBLY_INLINED (expr) = (unsigned) bp_unpack_value (bp, 1);
1723 DECL_IS_NOVOPS (expr) = (unsigned) bp_unpack_value (bp, 1);
1724 DECL_IS_RETURNS_TWICE (expr) = (unsigned) bp_unpack_value (bp, 1);
1725 DECL_IS_MALLOC (expr) = (unsigned) bp_unpack_value (bp, 1);
1726 DECL_IS_OPERATOR_NEW (expr) = (unsigned) bp_unpack_value (bp, 1);
1727 DECL_DECLARED_INLINE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1728 DECL_STATIC_CHAIN (expr) = (unsigned) bp_unpack_value (bp, 1);
1729 DECL_NO_INLINE_WARNING_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1730 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (expr)
1731 = (unsigned) bp_unpack_value (bp, 1);
1732 DECL_NO_LIMIT_STACK (expr) = (unsigned) bp_unpack_value (bp, 1);
1733 DECL_DISREGARD_INLINE_LIMITS (expr) = (unsigned) bp_unpack_value (bp, 1);
1734 DECL_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1735 DECL_LOOPING_CONST_OR_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1739 /* Unpack all the non-pointer fields of the TS_TYPE structure
1740 of expression EXPR from bitpack BP. */
1742 static void
1743 unpack_ts_type_value_fields (struct bitpack_d *bp, tree expr)
1745 enum machine_mode mode;
1747 TYPE_PRECISION (expr) = (unsigned) bp_unpack_value (bp, 9);
1748 mode = (enum machine_mode) bp_unpack_value (bp, 7);
1749 SET_TYPE_MODE (expr, mode);
1750 TYPE_STRING_FLAG (expr) = (unsigned) bp_unpack_value (bp, 1);
1751 TYPE_NO_FORCE_BLK (expr) = (unsigned) bp_unpack_value (bp, 1);
1752 TYPE_NEEDS_CONSTRUCTING(expr) = (unsigned) bp_unpack_value (bp, 1);
1753 if (TREE_CODE (expr) == UNION_TYPE)
1754 TYPE_TRANSPARENT_UNION (expr) = (unsigned) bp_unpack_value (bp, 1);
1755 TYPE_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1756 TYPE_RESTRICT (expr) = (unsigned) bp_unpack_value (bp, 1);
1757 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr)
1758 = (unsigned) bp_unpack_value (bp, 2);
1759 TYPE_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1760 TYPE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1761 TYPE_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1762 TYPE_ALIAS_SET (expr) = bp_unpack_value (bp, HOST_BITS_PER_INT);
1766 /* Unpack all the non-pointer fields of the TS_BLOCK structure
1767 of expression EXPR from bitpack BP. */
1769 static void
1770 unpack_ts_block_value_fields (struct bitpack_d *bp, tree expr)
1772 BLOCK_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1773 BLOCK_NUMBER (expr) = (unsigned) bp_unpack_value (bp, 31);
1777 /* Unpack all the non-pointer fields in EXPR into a bit pack. */
1779 static void
1780 unpack_value_fields (struct bitpack_d *bp, tree expr)
1782 enum tree_code code;
1784 code = TREE_CODE (expr);
1786 /* Note that all these functions are highly sensitive to changes in
1787 the types and sizes of each of the fields being packed. */
1788 unpack_ts_base_value_fields (bp, expr);
1790 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1791 unpack_ts_real_cst_value_fields (bp, expr);
1793 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1794 unpack_ts_fixed_cst_value_fields (bp, expr);
1796 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1797 unpack_ts_decl_common_value_fields (bp, expr);
1799 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1800 unpack_ts_decl_wrtl_value_fields (bp, expr);
1802 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1803 unpack_ts_decl_with_vis_value_fields (bp, expr);
1805 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1806 unpack_ts_function_decl_value_fields (bp, expr);
1808 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
1809 unpack_ts_type_value_fields (bp, expr);
1811 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1812 unpack_ts_block_value_fields (bp, expr);
1814 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
1816 /* We only stream the version number of SSA names. */
1817 gcc_unreachable ();
1820 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
1822 /* This is only used by GENERIC. */
1823 gcc_unreachable ();
1826 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
1828 /* This is only used by High GIMPLE. */
1829 gcc_unreachable ();
1834 /* Read a bitpack from input block IB. */
1836 struct bitpack_d *
1837 lto_input_bitpack (struct lto_input_block *ib)
1839 unsigned i, num_words;
1840 struct bitpack_d *bp;
1842 bp = bitpack_create ();
1844 /* If we are about to read more than a handful of words, something
1845 is wrong. This check is overly strict, but it acts as an early
1846 warning. No streamed object has hundreds of bits in its fields. */
1847 num_words = lto_input_uleb128 (ib);
1848 gcc_assert (num_words < 20);
1850 for (i = 0; i < num_words; i++)
1852 bitpack_word_t w = lto_input_uleb128 (ib);
1853 VEC_safe_push (bitpack_word_t, heap, bp->values, w);
1856 return bp;
1860 /* Materialize a new tree from input block IB using descriptors in
1861 DATA_IN. The code for the new tree should match TAG. Store in
1862 *IX_P the index into the reader cache where the new tree is stored. */
1864 static tree
1865 lto_materialize_tree (struct lto_input_block *ib, struct data_in *data_in,
1866 enum LTO_tags tag, int *ix_p)
1868 struct bitpack_d *bp;
1869 enum tree_code code;
1870 tree result;
1871 #ifdef LTO_STREAMER_DEBUG
1872 HOST_WIDEST_INT orig_address_in_writer;
1873 #endif
1874 HOST_WIDE_INT ix;
1876 result = NULL_TREE;
1878 /* Read the header of the node we are about to create. */
1879 ix = lto_input_sleb128 (ib);
1880 gcc_assert ((int) ix == ix);
1881 *ix_p = (int) ix;
1883 #ifdef LTO_STREAMER_DEBUG
1884 /* Read the word representing the memory address for the tree
1885 as it was written by the writer. This is useful when
1886 debugging differences between the writer and reader. */
1887 orig_address_in_writer = lto_input_sleb128 (ib);
1888 gcc_assert ((intptr_t) orig_address_in_writer == orig_address_in_writer);
1889 #endif
1891 code = lto_tag_to_tree_code (tag);
1893 /* We should never see an SSA_NAME tree. Only the version numbers of
1894 SSA names are ever written out. See input_ssa_names. */
1895 gcc_assert (code != SSA_NAME);
1897 /* Instantiate a new tree using the header data. */
1898 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1899 result = input_string_cst (data_in, ib);
1900 else if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1901 result = input_identifier (data_in, ib);
1902 else if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1904 HOST_WIDE_INT len = lto_input_sleb128 (ib);
1905 result = make_tree_vec (len);
1907 else if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1909 unsigned HOST_WIDE_INT len = lto_input_uleb128 (ib);
1910 result = make_tree_binfo (len);
1912 else
1914 /* All other nodes can be materialized with a raw make_node
1915 call. */
1916 result = make_node (code);
1919 #ifdef LTO_STREAMER_DEBUG
1920 /* Store the original address of the tree as seen by the writer
1921 in RESULT's aux field. This is useful when debugging streaming
1922 problems. This way, a debugging session can be started on
1923 both writer and reader with a breakpoint using this address
1924 value in both. */
1925 lto_orig_address_map (result, (intptr_t) orig_address_in_writer);
1926 #endif
1928 /* Read the bitpack of non-pointer values from IB. */
1929 bp = lto_input_bitpack (ib);
1931 /* The first word in BP contains the code of the tree that we
1932 are about to read. */
1933 code = (enum tree_code) bp_unpack_value (bp, 16);
1934 lto_tag_check (lto_tree_code_to_tag (code), tag);
1936 /* Unpack all the value fields from BP. */
1937 unpack_value_fields (bp, result);
1938 bitpack_delete (bp);
1940 /* Enter RESULT in the reader cache. This will make RESULT
1941 available so that circular references in the rest of the tree
1942 structure can be resolved in subsequent calls to lto_input_tree. */
1943 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
1945 return result;
1949 /* Read a chain of tree nodes from input block IB. DATA_IN contains
1950 tables and descriptors for the file being read. */
1952 static tree
1953 lto_input_chain (struct lto_input_block *ib, struct data_in *data_in)
1955 int i, count;
1956 tree first, prev, curr;
1958 first = prev = NULL_TREE;
1959 count = lto_input_sleb128 (ib);
1960 for (i = 0; i < count; i++)
1962 curr = lto_input_tree (ib, data_in);
1963 if (prev)
1964 TREE_CHAIN (prev) = curr;
1965 else
1966 first = curr;
1968 TREE_CHAIN (curr) = NULL_TREE;
1969 prev = curr;
1972 return first;
1976 /* Read all pointer fields in the TS_COMMON structure of EXPR from input
1977 block IB. DATA_IN contains tables and descriptors for the
1978 file being read. */
1981 static void
1982 lto_input_ts_common_tree_pointers (struct lto_input_block *ib,
1983 struct data_in *data_in, tree expr)
1985 TREE_TYPE (expr) = lto_input_tree (ib, data_in);
1989 /* Read all pointer fields in the TS_VECTOR structure of EXPR from input
1990 block IB. DATA_IN contains tables and descriptors for the
1991 file being read. */
1993 static void
1994 lto_input_ts_vector_tree_pointers (struct lto_input_block *ib,
1995 struct data_in *data_in, tree expr)
1997 TREE_VECTOR_CST_ELTS (expr) = lto_input_chain (ib, data_in);
2001 /* Read all pointer fields in the TS_COMPLEX structure of EXPR from input
2002 block IB. DATA_IN contains tables and descriptors for the
2003 file being read. */
2005 static void
2006 lto_input_ts_complex_tree_pointers (struct lto_input_block *ib,
2007 struct data_in *data_in, tree expr)
2009 TREE_REALPART (expr) = lto_input_tree (ib, data_in);
2010 TREE_IMAGPART (expr) = lto_input_tree (ib, data_in);
2014 /* Read all pointer fields in the TS_DECL_MINIMAL structure of EXPR
2015 from input block IB. DATA_IN contains tables and descriptors for the
2016 file being read. */
2018 static void
2019 lto_input_ts_decl_minimal_tree_pointers (struct lto_input_block *ib,
2020 struct data_in *data_in, tree expr)
2022 DECL_NAME (expr) = lto_input_tree (ib, data_in);
2023 DECL_CONTEXT (expr) = lto_input_tree (ib, data_in);
2024 DECL_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
2028 /* Read all pointer fields in the TS_DECL_COMMON structure of EXPR from
2029 input block IB. DATA_IN contains tables and descriptors for the
2030 file being read. */
2032 static void
2033 lto_input_ts_decl_common_tree_pointers (struct lto_input_block *ib,
2034 struct data_in *data_in, tree expr)
2036 DECL_SIZE (expr) = lto_input_tree (ib, data_in);
2037 DECL_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
2039 if (TREE_CODE (expr) != FUNCTION_DECL)
2040 DECL_INITIAL (expr) = lto_input_tree (ib, data_in);
2042 DECL_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
2043 DECL_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2045 if (TREE_CODE (expr) == PARM_DECL)
2046 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2048 if ((TREE_CODE (expr) == VAR_DECL
2049 || TREE_CODE (expr) == PARM_DECL)
2050 && DECL_HAS_VALUE_EXPR_P (expr))
2051 SET_DECL_VALUE_EXPR (expr, lto_input_tree (ib, data_in));
2055 /* Read all pointer fields in the TS_DECL_NON_COMMON structure of
2056 EXPR from input block IB. DATA_IN contains tables and descriptors for the
2057 file being read. */
2059 static void
2060 lto_input_ts_decl_non_common_tree_pointers (struct lto_input_block *ib,
2061 struct data_in *data_in, tree expr)
2063 if (TREE_CODE (expr) == FUNCTION_DECL)
2065 DECL_ARGUMENTS (expr) = lto_input_tree (ib, data_in);
2066 DECL_RESULT (expr) = lto_input_tree (ib, data_in);
2068 DECL_VINDEX (expr) = lto_input_tree (ib, data_in);
2072 /* Read all pointer fields in the TS_DECL_WITH_VIS structure of EXPR
2073 from input block IB. DATA_IN contains tables and descriptors for the
2074 file being read. */
2076 static void
2077 lto_input_ts_decl_with_vis_tree_pointers (struct lto_input_block *ib,
2078 struct data_in *data_in, tree expr)
2080 tree id;
2082 id = lto_input_tree (ib, data_in);
2083 if (id)
2085 gcc_assert (TREE_CODE (id) == IDENTIFIER_NODE);
2086 SET_DECL_ASSEMBLER_NAME (expr, id);
2089 DECL_SECTION_NAME (expr) = lto_input_tree (ib, data_in);
2090 DECL_COMDAT_GROUP (expr) = lto_input_tree (ib, data_in);
2094 /* Read all pointer fields in the TS_FIELD_DECL structure of EXPR from
2095 input block IB. DATA_IN contains tables and descriptors for the
2096 file being read. */
2098 static void
2099 lto_input_ts_field_decl_tree_pointers (struct lto_input_block *ib,
2100 struct data_in *data_in, tree expr)
2102 DECL_FIELD_OFFSET (expr) = lto_input_tree (ib, data_in);
2103 DECL_BIT_FIELD_TYPE (expr) = lto_input_tree (ib, data_in);
2104 DECL_QUALIFIER (expr) = lto_input_tree (ib, data_in);
2105 DECL_FIELD_BIT_OFFSET (expr) = lto_input_tree (ib, data_in);
2106 DECL_FCONTEXT (expr) = lto_input_tree (ib, data_in);
2107 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2111 /* Read all pointer fields in the TS_FUNCTION_DECL structure of EXPR
2112 from input block IB. DATA_IN contains tables and descriptors for the
2113 file being read. */
2115 static void
2116 lto_input_ts_function_decl_tree_pointers (struct lto_input_block *ib,
2117 struct data_in *data_in, tree expr)
2119 /* DECL_STRUCT_FUNCTION is handled by lto_input_function. FIXME lto,
2120 maybe it should be handled here? */
2121 DECL_FUNCTION_PERSONALITY (expr) = lto_input_tree (ib, data_in);
2122 DECL_FUNCTION_SPECIFIC_TARGET (expr) = lto_input_tree (ib, data_in);
2123 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr) = lto_input_tree (ib, data_in);
2127 /* Read all pointer fields in the TS_TYPE structure of EXPR from input
2128 block IB. DATA_IN contains tables and descriptors for the
2129 file being read. */
2131 static void
2132 lto_input_ts_type_tree_pointers (struct lto_input_block *ib,
2133 struct data_in *data_in, tree expr)
2135 if (TREE_CODE (expr) == ENUMERAL_TYPE)
2136 TYPE_VALUES (expr) = lto_input_tree (ib, data_in);
2137 else if (TREE_CODE (expr) == ARRAY_TYPE)
2138 TYPE_DOMAIN (expr) = lto_input_tree (ib, data_in);
2139 else if (TREE_CODE (expr) == RECORD_TYPE || TREE_CODE (expr) == UNION_TYPE)
2140 TYPE_FIELDS (expr) = lto_input_tree (ib, data_in);
2141 else if (TREE_CODE (expr) == FUNCTION_TYPE || TREE_CODE (expr) == METHOD_TYPE)
2142 TYPE_ARG_TYPES (expr) = lto_input_tree (ib, data_in);
2143 else if (TREE_CODE (expr) == VECTOR_TYPE)
2144 TYPE_DEBUG_REPRESENTATION_TYPE (expr) = lto_input_tree (ib, data_in);
2146 TYPE_SIZE (expr) = lto_input_tree (ib, data_in);
2147 TYPE_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
2148 TYPE_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
2149 TYPE_NAME (expr) = lto_input_tree (ib, data_in);
2150 /* Do not stream TYPE_POINTER_TO or TYPE_REFERENCE_TO nor
2151 TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. */
2152 if (!POINTER_TYPE_P (expr))
2153 TYPE_MINVAL (expr) = lto_input_tree (ib, data_in);
2154 TYPE_MAXVAL (expr) = lto_input_tree (ib, data_in);
2155 TYPE_MAIN_VARIANT (expr) = lto_input_tree (ib, data_in);
2156 /* Do not stream TYPE_NEXT_VARIANT, we reconstruct the variant lists
2157 during fixup. */
2158 if (RECORD_OR_UNION_TYPE_P (expr))
2159 TYPE_BINFO (expr) = lto_input_tree (ib, data_in);
2160 TYPE_CONTEXT (expr) = lto_input_tree (ib, data_in);
2161 TYPE_CANONICAL (expr) = lto_input_tree (ib, data_in);
2165 /* Read all pointer fields in the TS_LIST structure of EXPR from input
2166 block IB. DATA_IN contains tables and descriptors for the
2167 file being read. */
2169 static void
2170 lto_input_ts_list_tree_pointers (struct lto_input_block *ib,
2171 struct data_in *data_in, tree expr)
2173 TREE_PURPOSE (expr) = lto_input_tree (ib, data_in);
2174 TREE_VALUE (expr) = lto_input_tree (ib, data_in);
2175 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2179 /* Read all pointer fields in the TS_VEC structure of EXPR from input
2180 block IB. DATA_IN contains tables and descriptors for the
2181 file being read. */
2183 static void
2184 lto_input_ts_vec_tree_pointers (struct lto_input_block *ib,
2185 struct data_in *data_in, tree expr)
2187 int i;
2189 /* Note that TREE_VEC_LENGTH was read by lto_materialize_tree to
2190 instantiate EXPR. */
2191 for (i = 0; i < TREE_VEC_LENGTH (expr); i++)
2192 TREE_VEC_ELT (expr, i) = lto_input_tree (ib, data_in);
2196 /* Read all pointer fields in the TS_EXP structure of EXPR from input
2197 block IB. DATA_IN contains tables and descriptors for the
2198 file being read. */
2201 static void
2202 lto_input_ts_exp_tree_pointers (struct lto_input_block *ib,
2203 struct data_in *data_in, tree expr)
2205 int i, length;
2206 location_t loc;
2208 length = lto_input_sleb128 (ib);
2209 gcc_assert (length == TREE_OPERAND_LENGTH (expr));
2211 for (i = 0; i < length; i++)
2212 TREE_OPERAND (expr, i) = lto_input_tree (ib, data_in);
2214 loc = lto_input_location (ib, data_in);
2215 SET_EXPR_LOCATION (expr, loc);
2216 TREE_BLOCK (expr) = lto_input_tree (ib, data_in);
2220 /* Read all pointer fields in the TS_BLOCK structure of EXPR from input
2221 block IB. DATA_IN contains tables and descriptors for the
2222 file being read. */
2224 static void
2225 lto_input_ts_block_tree_pointers (struct lto_input_block *ib,
2226 struct data_in *data_in, tree expr)
2228 unsigned i, len;
2230 BLOCK_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
2231 BLOCK_VARS (expr) = lto_input_chain (ib, data_in);
2233 len = lto_input_uleb128 (ib);
2234 for (i = 0; i < len; i++)
2236 tree t = lto_input_tree (ib, data_in);
2237 VEC_safe_push (tree, gc, BLOCK_NONLOCALIZED_VARS (expr), t);
2240 BLOCK_SUPERCONTEXT (expr) = lto_input_tree (ib, data_in);
2241 BLOCK_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2242 BLOCK_FRAGMENT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2243 BLOCK_FRAGMENT_CHAIN (expr) = lto_input_tree (ib, data_in);
2244 BLOCK_SUBBLOCKS (expr) = lto_input_chain (ib, data_in);
2248 /* Read all pointer fields in the TS_BINFO structure of EXPR from input
2249 block IB. DATA_IN contains tables and descriptors for the
2250 file being read. */
2252 static void
2253 lto_input_ts_binfo_tree_pointers (struct lto_input_block *ib,
2254 struct data_in *data_in, tree expr)
2256 unsigned i, len;
2257 tree t;
2259 /* Note that the number of slots in EXPR was read in
2260 lto_materialize_tree when instantiating EXPR. However, the
2261 vector is empty so we cannot rely on VEC_length to know how many
2262 elements to read. So, this list is emitted as a 0-terminated
2263 list on the writer side. */
2266 t = lto_input_tree (ib, data_in);
2267 if (t)
2268 VEC_quick_push (tree, BINFO_BASE_BINFOS (expr), t);
2270 while (t);
2272 BINFO_OFFSET (expr) = lto_input_tree (ib, data_in);
2273 BINFO_VTABLE (expr) = lto_input_tree (ib, data_in);
2274 BINFO_VIRTUALS (expr) = lto_input_tree (ib, data_in);
2275 BINFO_VPTR_FIELD (expr) = lto_input_tree (ib, data_in);
2277 len = lto_input_uleb128 (ib);
2278 for (i = 0; i < len; i++)
2280 tree a = lto_input_tree (ib, data_in);
2281 VEC_safe_push (tree, gc, BINFO_BASE_ACCESSES (expr), a);
2284 BINFO_INHERITANCE_CHAIN (expr) = lto_input_tree (ib, data_in);
2285 BINFO_SUBVTT_INDEX (expr) = lto_input_tree (ib, data_in);
2286 BINFO_VPTR_INDEX (expr) = lto_input_tree (ib, data_in);
2290 /* Read all pointer fields in the TS_CONSTRUCTOR structure of EXPR from
2291 input block IB. DATA_IN contains tables and descriptors for the
2292 file being read. */
2294 static void
2295 lto_input_ts_constructor_tree_pointers (struct lto_input_block *ib,
2296 struct data_in *data_in, tree expr)
2298 unsigned i, len;
2300 len = lto_input_uleb128 (ib);
2301 for (i = 0; i < len; i++)
2303 tree index, value;
2305 index = lto_input_tree (ib, data_in);
2306 value = lto_input_tree (ib, data_in);
2307 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (expr), index, value);
2312 /* Helper for lto_input_tree. Read all pointer fields in EXPR from
2313 input block IB. DATA_IN contains tables and descriptors for the
2314 file being read. */
2316 static void
2317 lto_input_tree_pointers (struct lto_input_block *ib, struct data_in *data_in,
2318 tree expr)
2320 enum tree_code code;
2322 code = TREE_CODE (expr);
2324 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
2325 lto_input_ts_common_tree_pointers (ib, data_in, expr);
2327 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
2328 lto_input_ts_vector_tree_pointers (ib, data_in, expr);
2330 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
2331 lto_input_ts_complex_tree_pointers (ib, data_in, expr);
2333 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
2334 lto_input_ts_decl_minimal_tree_pointers (ib, data_in, expr);
2336 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2337 lto_input_ts_decl_common_tree_pointers (ib, data_in, expr);
2339 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2340 lto_input_ts_decl_non_common_tree_pointers (ib, data_in, expr);
2342 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2343 lto_input_ts_decl_with_vis_tree_pointers (ib, data_in, expr);
2345 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2346 lto_input_ts_field_decl_tree_pointers (ib, data_in, expr);
2348 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2349 lto_input_ts_function_decl_tree_pointers (ib, data_in, expr);
2351 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
2352 lto_input_ts_type_tree_pointers (ib, data_in, expr);
2354 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
2355 lto_input_ts_list_tree_pointers (ib, data_in, expr);
2357 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
2358 lto_input_ts_vec_tree_pointers (ib, data_in, expr);
2360 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
2361 lto_input_ts_exp_tree_pointers (ib, data_in, expr);
2363 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
2365 /* We only stream the version number of SSA names. */
2366 gcc_unreachable ();
2369 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
2370 lto_input_ts_block_tree_pointers (ib, data_in, expr);
2372 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
2373 lto_input_ts_binfo_tree_pointers (ib, data_in, expr);
2375 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
2377 /* This should only appear in GENERIC. */
2378 gcc_unreachable ();
2381 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
2382 lto_input_ts_constructor_tree_pointers (ib, data_in, expr);
2384 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
2386 /* This should only appear in High GIMPLE. */
2387 gcc_unreachable ();
2390 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
2392 sorry ("optimization options not supported yet");
2395 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
2397 sorry ("target optimization options not supported yet");
2402 /* Register DECL with the global symbol table and change its
2403 name if necessary to avoid name clashes for static globals across
2404 different files. */
2406 static void
2407 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl)
2409 /* Register symbols with file or global scope to mark what input
2410 file has their definition. */
2411 if (decl_function_context (decl) == NULL_TREE)
2413 /* Variable has file scope, not local. Need to ensure static variables
2414 between different files don't clash unexpectedly. */
2415 if (!TREE_PUBLIC (decl))
2417 /* ??? We normally pre-mangle names before we serialize them
2418 out. Here, in lto1, we do not know the language, and
2419 thus cannot do the mangling again. Instead, we just
2420 append a suffix to the mangled name. The resulting name,
2421 however, is not a properly-formed mangled name, and will
2422 confuse any attempt to unmangle it. */
2423 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2424 char *label;
2426 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2427 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2428 rest_of_decl_compilation (decl, 1, 0);
2432 /* If this variable has already been declared, queue the
2433 declaration for merging. */
2434 if (TREE_PUBLIC (decl))
2436 int ix;
2437 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2438 gcc_unreachable ();
2439 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2440 data_in->file_data);
2446 /* Register DECL with the global symbol table and change its
2447 name if necessary to avoid name clashes for static globals across
2448 different files. DATA_IN contains descriptors and tables for the
2449 file being read. */
2451 static void
2452 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl)
2454 /* Need to ensure static entities between different files
2455 don't clash unexpectedly. */
2456 if (!TREE_PUBLIC (decl))
2458 /* We must not use the DECL_ASSEMBLER_NAME macro here, as it
2459 may set the assembler name where it was previously empty. */
2460 tree old_assembler_name = decl->decl_with_vis.assembler_name;
2462 /* FIXME lto: We normally pre-mangle names before we serialize
2463 them out. Here, in lto1, we do not know the language, and
2464 thus cannot do the mangling again. Instead, we just append a
2465 suffix to the mangled name. The resulting name, however, is
2466 not a properly-formed mangled name, and will confuse any
2467 attempt to unmangle it. */
2468 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2469 char *label;
2471 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2472 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2474 /* We may arrive here with the old assembler name not set
2475 if the function body is not needed, e.g., it has been
2476 inlined away and does not appear in the cgraph. */
2477 if (old_assembler_name)
2479 tree new_assembler_name = DECL_ASSEMBLER_NAME (decl);
2481 /* Make the original assembler name available for later use.
2482 We may have used it to indicate the section within its
2483 object file where the function body may be found.
2484 FIXME lto: Find a better way to maintain the function decl
2485 to body section mapping so we don't need this hack. */
2486 lto_record_renamed_decl (data_in->file_data,
2487 IDENTIFIER_POINTER (old_assembler_name),
2488 IDENTIFIER_POINTER (new_assembler_name));
2490 /* Also register the reverse mapping so that we can find the
2491 new name given to an existing assembler name (used when
2492 restoring alias pairs in input_constructors_or_inits. */
2493 lto_record_renamed_decl (data_in->file_data,
2494 IDENTIFIER_POINTER (new_assembler_name),
2495 IDENTIFIER_POINTER (old_assembler_name));
2499 /* If this variable has already been declared, queue the
2500 declaration for merging. */
2501 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT (decl))
2503 int ix;
2504 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2505 gcc_unreachable ();
2506 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2507 data_in->file_data);
2512 /* Read an index IX from input block IB and return the tree node at
2513 DATA_IN->FILE_DATA->GLOBALS_INDEX[IX]. */
2515 static tree
2516 lto_get_pickled_tree (struct lto_input_block *ib, struct data_in *data_in)
2518 HOST_WIDE_INT ix;
2519 tree result;
2520 enum LTO_tags expected_tag;
2521 unsigned HOST_WIDE_INT orig_offset;
2523 ix = lto_input_sleb128 (ib);
2524 expected_tag = (enum LTO_tags) lto_input_uleb128 (ib);
2526 orig_offset = lto_input_uleb128 (ib);
2527 gcc_assert (orig_offset == (unsigned) orig_offset);
2529 result = lto_streamer_cache_get (data_in->reader_cache, ix);
2530 if (result == NULL_TREE)
2532 /* We have not yet read the cache slot IX. Go to the offset
2533 in the stream where the physical tree node is, and materialize
2534 it from there. */
2535 struct lto_input_block fwd_ib;
2537 /* If we are trying to go back in the stream, something is wrong.
2538 We should've read the node at the earlier position already. */
2539 if (ib->p >= orig_offset)
2540 internal_error ("bytecode stream: tried to jump backwards in the "
2541 "stream");
2543 LTO_INIT_INPUT_BLOCK (fwd_ib, ib->data, orig_offset, ib->len);
2544 result = lto_input_tree (&fwd_ib, data_in);
2547 gcc_assert (result
2548 && TREE_CODE (result) == lto_tag_to_tree_code (expected_tag));
2550 return result;
2554 /* Read a code and class from input block IB and return the
2555 corresponding builtin. DATA_IN is as in lto_input_tree. */
2557 static tree
2558 lto_get_builtin_tree (struct lto_input_block *ib, struct data_in *data_in)
2560 enum built_in_class fclass;
2561 enum built_in_function fcode;
2562 const char *asmname;
2563 tree result;
2564 int ix;
2566 fclass = (enum built_in_class) lto_input_uleb128 (ib);
2567 gcc_assert (fclass == BUILT_IN_NORMAL || fclass == BUILT_IN_MD);
2569 fcode = (enum built_in_function) lto_input_uleb128 (ib);
2571 ix = lto_input_sleb128 (ib);
2572 gcc_assert (ix == (int) ix);
2574 if (fclass == BUILT_IN_NORMAL)
2576 gcc_assert (fcode < END_BUILTINS);
2577 result = built_in_decls[fcode];
2578 gcc_assert (result);
2580 else if (fclass == BUILT_IN_MD)
2582 result = targetm.builtin_decl (fcode, true);
2583 if (!result || result == error_mark_node)
2584 fatal_error ("target specific builtin not available");
2587 asmname = input_string (data_in, ib);
2588 if (asmname)
2589 set_builtin_user_assembler_name (result, asmname);
2591 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
2593 return result;
2597 /* Read the physical representation of a tree node with tag TAG from
2598 input block IB using the per-file context in DATA_IN. */
2600 static tree
2601 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
2602 enum LTO_tags tag)
2604 tree result;
2605 int ix;
2607 result = lto_materialize_tree (ib, data_in, tag, &ix);
2609 /* Read all the pointer fields in RESULT. */
2610 lto_input_tree_pointers (ib, data_in, result);
2612 /* We should never try to instantiate an MD or NORMAL builtin here. */
2613 if (TREE_CODE (result) == FUNCTION_DECL)
2614 gcc_assert (!lto_stream_as_builtin_p (result));
2616 if (TREE_CODE (result) == VAR_DECL)
2617 lto_register_var_decl_in_symtab (data_in, result);
2618 else if (TREE_CODE (result) == FUNCTION_DECL && !DECL_BUILT_IN (result))
2619 lto_register_function_decl_in_symtab (data_in, result);
2621 /* end_marker = */ lto_input_1_unsigned (ib);
2623 #ifdef LTO_STREAMER_DEBUG
2624 /* Remove the mapping to RESULT's original address set by
2625 lto_materialize_tree. */
2626 lto_orig_address_remove (result);
2627 #endif
2629 return result;
2633 /* Read and INTEGER_CST node from input block IB using the per-file
2634 context in DATA_IN. */
2636 static tree
2637 lto_input_integer_cst (struct lto_input_block *ib, struct data_in *data_in)
2639 tree result, type;
2640 HOST_WIDE_INT low, high;
2641 bool overflow_p;
2643 type = lto_input_tree (ib, data_in);
2644 overflow_p = (lto_input_1_unsigned (ib) != 0);
2645 low = lto_input_uleb128 (ib);
2646 high = lto_input_uleb128 (ib);
2647 result = build_int_cst_wide (type, low, high);
2649 /* If the original constant had overflown, build a replica of RESULT to
2650 avoid modifying the shared constant returned by build_int_cst_wide. */
2651 if (overflow_p)
2653 result = copy_node (result);
2654 TREE_OVERFLOW (result) = 1;
2657 return result;
2661 /* Read a tree from input block IB using the per-file context in
2662 DATA_IN. This context is used, for example, to resolve references
2663 to previously read nodes. */
2665 tree
2666 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
2668 enum LTO_tags tag;
2669 tree result;
2671 tag = input_record_start (ib);
2672 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
2674 if (tag == LTO_null)
2675 result = NULL_TREE;
2676 else if (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
2678 /* If TAG is a reference to an indexable tree, the next value
2679 in IB is the index into the table where we expect to find
2680 that tree. */
2681 result = lto_input_tree_ref (ib, data_in, cfun, tag);
2683 else if (tag == LTO_tree_pickle_reference)
2685 /* If TAG is a reference to a previously read tree, look it up in
2686 the reader cache. */
2687 result = lto_get_pickled_tree (ib, data_in);
2689 else if (tag == LTO_builtin_decl)
2691 /* If we are going to read a built-in function, all we need is
2692 the code and class. */
2693 result = lto_get_builtin_tree (ib, data_in);
2695 else if (tag == lto_tree_code_to_tag (INTEGER_CST))
2697 /* For integer constants we only need the type and its hi/low
2698 words. */
2699 result = lto_input_integer_cst (ib, data_in);
2701 else
2703 /* Otherwise, materialize a new node from IB. */
2704 result = lto_read_tree (ib, data_in, tag);
2707 return result;
2711 /* Initialization for the LTO reader. */
2713 void
2714 lto_init_reader (void)
2716 lto_streamer_init ();
2718 memset (&lto_stats, 0, sizeof (lto_stats));
2719 bitmap_obstack_initialize (NULL);
2721 file_name_hash_table = htab_create (37, hash_string_slot_node,
2722 eq_string_slot_node, free);
2724 gimple_register_cfg_hooks ();
2728 /* Create a new data_in object for FILE_DATA. STRINGS is the string
2729 table to use with LEN strings. RESOLUTIONS is the vector of linker
2730 resolutions (NULL if not using a linker plugin). */
2732 struct data_in *
2733 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
2734 unsigned len,
2735 VEC(ld_plugin_symbol_resolution_t,heap) *resolutions)
2737 struct data_in *data_in = XCNEW (struct data_in);
2738 data_in->file_data = file_data;
2739 data_in->strings = strings;
2740 data_in->strings_len = len;
2741 data_in->globals_resolution = resolutions;
2742 data_in->reader_cache = lto_streamer_cache_create ();
2744 return data_in;
2748 /* Remove DATA_IN. */
2750 void
2751 lto_data_in_delete (struct data_in *data_in)
2753 VEC_free (ld_plugin_symbol_resolution_t, heap, data_in->globals_resolution);
2754 lto_streamer_cache_delete (data_in->reader_cache);
2755 free (data_in->labels);
2756 free (data_in);