Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / lto-streamer-in.c
blobc6d3c9bacc1ef246c5325e6bab4d62265b03363e
1 /* Read the GIMPLE representation from a file stream.
3 Copyright 2009, 2010 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 "hashtab.h"
34 #include "basic-block.h"
35 #include "tree-flow.h"
36 #include "tree-pass.h"
37 #include "cgraph.h"
38 #include "function.h"
39 #include "ggc.h"
40 #include "diagnostic.h"
41 #include "libfuncs.h"
42 #include "except.h"
43 #include "debug.h"
44 #include "vec.h"
45 #include "timevar.h"
46 #include "output.h"
47 #include "ipa-utils.h"
48 #include "lto-streamer.h"
49 #include "tree-pass.h"
51 /* Data structure used to hash file names in the source_location field. */
52 struct string_slot
54 const char *s;
55 unsigned int slot_num;
58 /* The table to hold the file names. */
59 static htab_t file_name_hash_table;
62 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
63 number of valid tag values to check. */
65 static void
66 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
68 va_list ap;
69 int i;
71 va_start (ap, ntags);
72 for (i = 0; i < ntags; i++)
73 if ((unsigned) actual == va_arg (ap, unsigned))
75 va_end (ap);
76 return;
79 va_end (ap);
80 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
84 /* Check that tag ACTUAL is in the range [TAG1, TAG2]. */
86 static void
87 lto_tag_check_range (enum LTO_tags actual, enum LTO_tags tag1,
88 enum LTO_tags tag2)
90 if (actual < tag1 || actual > tag2)
91 internal_error ("bytecode stream: tag %s is not in the expected range "
92 "[%s, %s]",
93 lto_tag_name (actual),
94 lto_tag_name (tag1),
95 lto_tag_name (tag2));
99 /* Check that tag ACTUAL == EXPECTED. */
101 static void
102 lto_tag_check (enum LTO_tags actual, enum LTO_tags expected)
104 if (actual != expected)
105 internal_error ("bytecode stream: expected tag %s instead of %s",
106 lto_tag_name (expected), lto_tag_name (actual));
110 /* Return a hash code for P. */
112 static hashval_t
113 hash_string_slot_node (const void *p)
115 const struct string_slot *ds = (const struct string_slot *) p;
116 return (hashval_t) htab_hash_string (ds->s);
120 /* Returns nonzero if P1 and P2 are equal. */
122 static int
123 eq_string_slot_node (const void *p1, const void *p2)
125 const struct string_slot *ds1 = (const struct string_slot *) p1;
126 const struct string_slot *ds2 = (const struct string_slot *) p2;
127 return strcmp (ds1->s, ds2->s) == 0;
131 /* Read a string from the string table in DATA_IN using input block
132 IB. Write the length to RLEN. */
134 static const char *
135 input_string_internal (struct data_in *data_in, struct lto_input_block *ib,
136 unsigned int *rlen)
138 struct lto_input_block str_tab;
139 unsigned int len;
140 unsigned int loc;
141 const char *result;
143 loc = lto_input_uleb128 (ib);
144 LTO_INIT_INPUT_BLOCK (str_tab, data_in->strings, loc, data_in->strings_len);
145 len = lto_input_uleb128 (&str_tab);
146 *rlen = len;
148 if (str_tab.p + len > data_in->strings_len)
149 internal_error ("bytecode stream: string too long for the string table");
151 result = (const char *)(data_in->strings + str_tab.p);
153 return result;
157 /* Read a STRING_CST from the string table in DATA_IN using input
158 block IB. */
160 static tree
161 input_string_cst (struct data_in *data_in, struct lto_input_block *ib)
163 unsigned int len;
164 const char * ptr;
165 unsigned int is_null;
167 is_null = lto_input_uleb128 (ib);
168 if (is_null)
169 return NULL;
171 ptr = input_string_internal (data_in, ib, &len);
172 return build_string (len, ptr);
176 /* Read an IDENTIFIER from the string table in DATA_IN using input
177 block IB. */
179 static tree
180 input_identifier (struct data_in *data_in, struct lto_input_block *ib)
182 unsigned int len;
183 const char *ptr;
184 unsigned int is_null;
186 is_null = lto_input_uleb128 (ib);
187 if (is_null)
188 return NULL;
190 ptr = input_string_internal (data_in, ib, &len);
191 return get_identifier_with_length (ptr, len);
194 /* Read a NULL terminated string from the string table in DATA_IN. */
196 static const char *
197 input_string (struct data_in *data_in, struct lto_input_block *ib)
199 unsigned int len;
200 const char *ptr;
201 unsigned int is_null;
203 is_null = lto_input_uleb128 (ib);
204 if (is_null)
205 return NULL;
207 ptr = input_string_internal (data_in, ib, &len);
208 if (ptr[len - 1] != '\0')
209 internal_error ("bytecode stream: found non-null terminated string");
211 return ptr;
215 /* Return the next tag in the input block IB. */
217 static enum LTO_tags
218 input_record_start (struct lto_input_block *ib)
220 enum LTO_tags tag = (enum LTO_tags) lto_input_uleb128 (ib);
221 return tag;
225 /* Lookup STRING in file_name_hash_table. If found, return the existing
226 string, otherwise insert STRING as the canonical version. */
228 static const char *
229 canon_file_name (const char *string)
231 void **slot;
232 struct string_slot s_slot;
233 s_slot.s = string;
235 slot = htab_find_slot (file_name_hash_table, &s_slot, INSERT);
236 if (*slot == NULL)
238 size_t len;
239 char *saved_string;
240 struct string_slot *new_slot;
242 len = strlen (string);
243 saved_string = (char *) xmalloc (len + 1);
244 new_slot = XCNEW (struct string_slot);
245 strcpy (saved_string, string);
246 new_slot->s = saved_string;
247 *slot = new_slot;
248 return saved_string;
250 else
252 struct string_slot *old_slot = (struct string_slot *) *slot;
253 return old_slot->s;
258 /* Clear the line info stored in DATA_IN. */
260 static void
261 clear_line_info (struct data_in *data_in)
263 if (data_in->current_file)
264 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
265 data_in->current_file = NULL;
266 data_in->current_line = 0;
267 data_in->current_col = 0;
271 /* Read a location from input block IB. */
273 static location_t
274 lto_input_location (struct lto_input_block *ib, struct data_in *data_in)
276 expanded_location xloc;
278 xloc.file = input_string (data_in, ib);
279 if (xloc.file == NULL)
280 return UNKNOWN_LOCATION;
282 xloc.file = canon_file_name (xloc.file);
283 xloc.line = lto_input_sleb128 (ib);
284 xloc.column = lto_input_sleb128 (ib);
285 xloc.sysp = lto_input_sleb128 (ib);
287 if (data_in->current_file != xloc.file)
289 if (data_in->current_file)
290 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
292 linemap_add (line_table, LC_ENTER, xloc.sysp, xloc.file, xloc.line);
294 else if (data_in->current_line != xloc.line)
295 linemap_line_start (line_table, xloc.line, xloc.column);
297 data_in->current_file = xloc.file;
298 data_in->current_line = xloc.line;
299 data_in->current_col = xloc.column;
301 return linemap_position_for_column (line_table, xloc.column);
305 /* Read a reference to a tree node from DATA_IN using input block IB.
306 TAG is the expected node that should be found in IB, if TAG belongs
307 to one of the indexable trees, expect to read a reference index to
308 be looked up in one of the symbol tables, otherwise read the pysical
309 representation of the tree using lto_input_tree. FN is the
310 function scope for the read tree. */
312 static tree
313 lto_input_tree_ref (struct lto_input_block *ib, struct data_in *data_in,
314 struct function *fn, enum LTO_tags tag)
316 unsigned HOST_WIDE_INT ix_u;
317 tree result = NULL_TREE;
319 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_global_decl_ref);
321 switch (tag)
323 case LTO_type_ref:
324 ix_u = lto_input_uleb128 (ib);
325 result = lto_file_decl_data_get_type (data_in->file_data, ix_u);
326 break;
328 case LTO_ssa_name_ref:
329 ix_u = lto_input_uleb128 (ib);
330 result = VEC_index (tree, SSANAMES (fn), ix_u);
331 break;
333 case LTO_field_decl_ref:
334 ix_u = lto_input_uleb128 (ib);
335 result = lto_file_decl_data_get_field_decl (data_in->file_data, ix_u);
336 break;
338 case LTO_function_decl_ref:
339 ix_u = lto_input_uleb128 (ib);
340 result = lto_file_decl_data_get_fn_decl (data_in->file_data, ix_u);
341 break;
343 case LTO_type_decl_ref:
344 ix_u = lto_input_uleb128 (ib);
345 result = lto_file_decl_data_get_type_decl (data_in->file_data, ix_u);
346 break;
348 case LTO_namespace_decl_ref:
349 ix_u = lto_input_uleb128 (ib);
350 result = lto_file_decl_data_get_namespace_decl (data_in->file_data, ix_u);
351 break;
353 case LTO_global_decl_ref:
354 case LTO_result_decl_ref:
355 case LTO_const_decl_ref:
356 case LTO_imported_decl_ref:
357 case LTO_label_decl_ref:
358 case LTO_translation_unit_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 break;
363 default:
364 gcc_unreachable ();
367 gcc_assert (result);
369 return result;
373 /* Read and return a double-linked list of catch handlers from input
374 block IB, using descriptors in DATA_IN. */
376 static struct eh_catch_d *
377 lto_input_eh_catch_list (struct lto_input_block *ib, struct data_in *data_in,
378 eh_catch *last_p)
380 eh_catch first;
381 enum LTO_tags tag;
383 *last_p = first = NULL;
384 tag = input_record_start (ib);
385 while (tag)
387 tree list;
388 eh_catch n;
390 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
392 /* Read the catch node. */
393 n = ggc_alloc_cleared_eh_catch_d ();
394 n->type_list = lto_input_tree (ib, data_in);
395 n->filter_list = lto_input_tree (ib, data_in);
396 n->label = lto_input_tree (ib, data_in);
398 /* Register all the types in N->FILTER_LIST. */
399 for (list = n->filter_list; list; list = TREE_CHAIN (list))
400 add_type_for_runtime (TREE_VALUE (list));
402 /* Chain N to the end of the list. */
403 if (*last_p)
404 (*last_p)->next_catch = n;
405 n->prev_catch = *last_p;
406 *last_p = n;
408 /* Set the head of the list the first time through the loop. */
409 if (first == NULL)
410 first = n;
412 tag = input_record_start (ib);
415 return first;
419 /* Read and return EH region IX from input block IB, using descriptors
420 in DATA_IN. */
422 static eh_region
423 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
425 enum LTO_tags tag;
426 eh_region r;
428 /* Read the region header. */
429 tag = input_record_start (ib);
430 if (tag == LTO_null)
431 return NULL;
433 r = ggc_alloc_cleared_eh_region_d ();
434 r->index = lto_input_sleb128 (ib);
436 gcc_assert (r->index == ix);
438 /* Read all the region pointers as region numbers. We'll fix up
439 the pointers once the whole array has been read. */
440 r->outer = (eh_region) (intptr_t) lto_input_sleb128 (ib);
441 r->inner = (eh_region) (intptr_t) lto_input_sleb128 (ib);
442 r->next_peer = (eh_region) (intptr_t) lto_input_sleb128 (ib);
444 switch (tag)
446 case LTO_ert_cleanup:
447 r->type = ERT_CLEANUP;
448 break;
450 case LTO_ert_try:
452 struct eh_catch_d *last_catch;
453 r->type = ERT_TRY;
454 r->u.eh_try.first_catch = lto_input_eh_catch_list (ib, data_in,
455 &last_catch);
456 r->u.eh_try.last_catch = last_catch;
457 break;
460 case LTO_ert_allowed_exceptions:
462 tree l;
464 r->type = ERT_ALLOWED_EXCEPTIONS;
465 r->u.allowed.type_list = lto_input_tree (ib, data_in);
466 r->u.allowed.label = lto_input_tree (ib, data_in);
467 r->u.allowed.filter = lto_input_uleb128 (ib);
469 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
470 add_type_for_runtime (TREE_VALUE (l));
472 break;
474 case LTO_ert_must_not_throw:
475 r->type = ERT_MUST_NOT_THROW;
476 r->u.must_not_throw.failure_decl = lto_input_tree (ib, data_in);
477 r->u.must_not_throw.failure_loc = lto_input_location (ib, data_in);
478 break;
480 default:
481 gcc_unreachable ();
484 r->landing_pads = (eh_landing_pad) (intptr_t) lto_input_sleb128 (ib);
486 return r;
490 /* Read and return EH landing pad IX from input block IB, using descriptors
491 in DATA_IN. */
493 static eh_landing_pad
494 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
496 enum LTO_tags tag;
497 eh_landing_pad lp;
499 /* Read the landing pad header. */
500 tag = input_record_start (ib);
501 if (tag == LTO_null)
502 return NULL;
504 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
506 lp = ggc_alloc_cleared_eh_landing_pad_d ();
507 lp->index = lto_input_sleb128 (ib);
508 gcc_assert (lp->index == ix);
509 lp->next_lp = (eh_landing_pad) (intptr_t) lto_input_sleb128 (ib);
510 lp->region = (eh_region) (intptr_t) lto_input_sleb128 (ib);
511 lp->post_landing_pad = lto_input_tree (ib, data_in);
513 return lp;
517 /* After reading the EH regions, pointers to peer and children regions
518 are region numbers. This converts all these region numbers into
519 real pointers into the rematerialized regions for FN. ROOT_REGION
520 is the region number for the root EH region in FN. */
522 static void
523 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
525 unsigned i;
526 VEC(eh_region,gc) *eh_array = fn->eh->region_array;
527 VEC(eh_landing_pad,gc) *lp_array = fn->eh->lp_array;
528 eh_region r;
529 eh_landing_pad lp;
531 gcc_assert (eh_array && lp_array);
533 gcc_assert (root_region >= 0);
534 fn->eh->region_tree = VEC_index (eh_region, eh_array, root_region);
536 #define FIXUP_EH_REGION(r) (r) = VEC_index (eh_region, eh_array, \
537 (HOST_WIDE_INT) (intptr_t) (r))
538 #define FIXUP_EH_LP(p) (p) = VEC_index (eh_landing_pad, lp_array, \
539 (HOST_WIDE_INT) (intptr_t) (p))
541 /* Convert all the index numbers stored in pointer fields into
542 pointers to the corresponding slots in the EH region array. */
543 FOR_EACH_VEC_ELT (eh_region, eh_array, i, r)
545 /* The array may contain NULL regions. */
546 if (r == NULL)
547 continue;
549 gcc_assert (i == (unsigned) r->index);
550 FIXUP_EH_REGION (r->outer);
551 FIXUP_EH_REGION (r->inner);
552 FIXUP_EH_REGION (r->next_peer);
553 FIXUP_EH_LP (r->landing_pads);
556 /* Convert all the index numbers stored in pointer fields into
557 pointers to the corresponding slots in the EH landing pad array. */
558 FOR_EACH_VEC_ELT (eh_landing_pad, lp_array, i, lp)
560 /* The array may contain NULL landing pads. */
561 if (lp == NULL)
562 continue;
564 gcc_assert (i == (unsigned) lp->index);
565 FIXUP_EH_LP (lp->next_lp);
566 FIXUP_EH_REGION (lp->region);
569 #undef FIXUP_EH_REGION
570 #undef FIXUP_EH_LP
574 /* Initialize EH support. */
576 static void
577 lto_init_eh (void)
579 static bool eh_initialized_p = false;
581 if (eh_initialized_p)
582 return;
584 /* Contrary to most other FEs, we only initialize EH support when at
585 least one of the files in the set contains exception regions in
586 it. Since this happens much later than the call to init_eh in
587 lang_dependent_init, we have to set flag_exceptions and call
588 init_eh again to initialize the EH tables. */
589 flag_exceptions = 1;
590 init_eh ();
592 /* Initialize dwarf2 tables. Since dwarf2out_do_frame() returns
593 true only when exceptions are enabled, this initialization is
594 never done during lang_dependent_init. */
595 #if defined DWARF2_DEBUGGING_INFO || defined DWARF2_UNWIND_INFO
596 if (dwarf2out_do_frame ())
597 dwarf2out_frame_init ();
598 #endif
600 eh_initialized_p = true;
604 /* Read the exception table for FN from IB using the data descriptors
605 in DATA_IN. */
607 static void
608 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
609 struct function *fn)
611 HOST_WIDE_INT i, root_region, len;
612 enum LTO_tags tag;
614 tag = input_record_start (ib);
615 if (tag == LTO_null)
616 return;
618 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
620 /* If the file contains EH regions, then it was compiled with
621 -fexceptions. In that case, initialize the backend EH
622 machinery. */
623 lto_init_eh ();
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_alloc_cleared_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);
876 /* Read a statement with tag TAG in function FN from block IB using
877 descriptors in DATA_IN. */
879 static gimple
880 input_gimple_stmt (struct lto_input_block *ib, struct data_in *data_in,
881 struct function *fn, enum LTO_tags tag)
883 gimple stmt;
884 enum gimple_code code;
885 unsigned HOST_WIDE_INT num_ops;
886 size_t i;
887 struct bitpack_d bp;
889 code = lto_tag_to_gimple_code (tag);
891 /* Read the tuple header. */
892 bp = lto_input_bitpack (ib);
893 num_ops = bp_unpack_value (&bp, sizeof (unsigned) * 8);
894 stmt = gimple_alloc (code, num_ops);
895 stmt->gsbase.no_warning = bp_unpack_value (&bp, 1);
896 if (is_gimple_assign (stmt))
897 stmt->gsbase.nontemporal_move = bp_unpack_value (&bp, 1);
898 stmt->gsbase.has_volatile_ops = bp_unpack_value (&bp, 1);
899 stmt->gsbase.subcode = bp_unpack_value (&bp, 16);
901 /* Read location information. */
902 gimple_set_location (stmt, lto_input_location (ib, data_in));
904 /* Read lexical block reference. */
905 gimple_set_block (stmt, lto_input_tree (ib, data_in));
907 /* Read in all the operands. */
908 switch (code)
910 case GIMPLE_RESX:
911 gimple_resx_set_region (stmt, lto_input_sleb128 (ib));
912 break;
914 case GIMPLE_EH_MUST_NOT_THROW:
915 gimple_eh_must_not_throw_set_fndecl (stmt, lto_input_tree (ib, data_in));
916 break;
918 case GIMPLE_EH_DISPATCH:
919 gimple_eh_dispatch_set_region (stmt, lto_input_sleb128 (ib));
920 break;
922 case GIMPLE_ASM:
924 /* FIXME lto. Move most of this into a new gimple_asm_set_string(). */
925 tree str;
926 stmt->gimple_asm.ni = lto_input_uleb128 (ib);
927 stmt->gimple_asm.no = lto_input_uleb128 (ib);
928 stmt->gimple_asm.nc = lto_input_uleb128 (ib);
929 stmt->gimple_asm.nl = lto_input_uleb128 (ib);
930 str = input_string_cst (data_in, ib);
931 stmt->gimple_asm.string = TREE_STRING_POINTER (str);
933 /* Fallthru */
935 case GIMPLE_ASSIGN:
936 case GIMPLE_CALL:
937 case GIMPLE_RETURN:
938 case GIMPLE_SWITCH:
939 case GIMPLE_LABEL:
940 case GIMPLE_COND:
941 case GIMPLE_GOTO:
942 case GIMPLE_DEBUG:
943 for (i = 0; i < num_ops; i++)
945 tree op = lto_input_tree (ib, data_in);
946 gimple_set_op (stmt, i, op);
947 if (!op)
948 continue;
950 /* Fixup FIELD_DECLs in COMPONENT_REFs, they are not handled
951 by decl merging. */
952 if (TREE_CODE (op) == ADDR_EXPR)
953 op = TREE_OPERAND (op, 0);
954 while (handled_component_p (op))
956 if (TREE_CODE (op) == COMPONENT_REF)
958 tree field, type, tem;
959 field = TREE_OPERAND (op, 1);
960 type = DECL_CONTEXT (field);
961 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
963 if (tem == field
964 || (gimple_types_compatible_p (TREE_TYPE (tem),
965 TREE_TYPE (field),
966 GTC_DIAG)
967 && DECL_NONADDRESSABLE_P (tem)
968 == DECL_NONADDRESSABLE_P (field)
969 && gimple_compare_field_offset (tem, field)))
970 break;
972 /* In case of type mismatches across units we can fail
973 to unify some types and thus not find a proper
974 field-decl here. So only assert here if checking
975 is enabled. */
976 #ifdef ENABLE_CHECKING
977 gcc_assert (tem != NULL_TREE);
978 #endif
979 if (tem != NULL_TREE)
980 TREE_OPERAND (op, 1) = tem;
983 op = TREE_OPERAND (op, 0);
986 break;
988 case GIMPLE_NOP:
989 case GIMPLE_PREDICT:
990 break;
992 default:
993 internal_error ("bytecode stream: unknown GIMPLE statement tag %s",
994 lto_tag_name (tag));
997 /* Update the properties of symbols, SSA names and labels associated
998 with STMT. */
999 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1001 tree lhs = gimple_get_lhs (stmt);
1002 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1003 SSA_NAME_DEF_STMT (lhs) = stmt;
1005 else if (code == GIMPLE_LABEL)
1006 gcc_assert (emit_label_in_global_context_p (gimple_label_label (stmt))
1007 || DECL_CONTEXT (gimple_label_label (stmt)) == fn->decl);
1008 else if (code == GIMPLE_ASM)
1010 unsigned i;
1012 for (i = 0; i < gimple_asm_noutputs (stmt); i++)
1014 tree op = TREE_VALUE (gimple_asm_output_op (stmt, i));
1015 if (TREE_CODE (op) == SSA_NAME)
1016 SSA_NAME_DEF_STMT (op) = stmt;
1020 /* Reset alias information. */
1021 if (code == GIMPLE_CALL)
1022 gimple_call_reset_alias_info (stmt);
1024 /* Mark the statement modified so its operand vectors can be filled in. */
1025 gimple_set_modified (stmt, true);
1027 return stmt;
1031 /* Read a basic block with tag TAG from DATA_IN using input block IB.
1032 FN is the function being processed. */
1034 static void
1035 input_bb (struct lto_input_block *ib, enum LTO_tags tag,
1036 struct data_in *data_in, struct function *fn)
1038 unsigned int index;
1039 basic_block bb;
1040 gimple_stmt_iterator bsi;
1042 /* This routine assumes that CFUN is set to FN, as it needs to call
1043 basic GIMPLE routines that use CFUN. */
1044 gcc_assert (cfun == fn);
1046 index = lto_input_uleb128 (ib);
1047 bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
1049 bb->count = lto_input_sleb128 (ib);
1050 bb->loop_depth = lto_input_sleb128 (ib);
1051 bb->frequency = lto_input_sleb128 (ib);
1052 bb->flags = lto_input_sleb128 (ib);
1054 /* LTO_bb1 has statements. LTO_bb0 does not. */
1055 if (tag == LTO_bb0)
1056 return;
1058 bsi = gsi_start_bb (bb);
1059 tag = input_record_start (ib);
1060 while (tag)
1062 gimple stmt = input_gimple_stmt (ib, data_in, fn, tag);
1064 find_referenced_vars_in (stmt);
1065 gsi_insert_after (&bsi, stmt, GSI_NEW_STMT);
1067 /* After the statement, expect a 0 delimiter or the EH region
1068 that the previous statement belongs to. */
1069 tag = input_record_start (ib);
1070 lto_tag_check_set (tag, 2, LTO_eh_region, LTO_null);
1072 if (tag == LTO_eh_region)
1074 HOST_WIDE_INT region = lto_input_sleb128 (ib);
1075 gcc_assert (region == (int) region);
1076 add_stmt_to_eh_lp (stmt, region);
1079 tag = input_record_start (ib);
1082 tag = input_record_start (ib);
1083 while (tag)
1085 gimple phi = input_phi (ib, bb, data_in, fn);
1086 find_referenced_vars_in (phi);
1087 tag = input_record_start (ib);
1091 /* Go through all NODE edges and fixup call_stmt pointers
1092 so they point to STMTS. */
1094 static void
1095 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts)
1097 struct cgraph_edge *cedge;
1098 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
1099 cedge->call_stmt = stmts[cedge->lto_stmt_uid];
1100 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
1101 cedge->call_stmt = stmts[cedge->lto_stmt_uid];
1104 /* Fixup call_stmt pointers in NODE and all clones. */
1106 static void
1107 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
1109 struct cgraph_node *node;
1111 while (orig->clone_of)
1112 orig = orig->clone_of;
1114 fixup_call_stmt_edges_1 (orig, stmts);
1115 if (orig->clones)
1116 for (node = orig->clones; node != orig;)
1118 fixup_call_stmt_edges_1 (node, stmts);
1119 if (node->clones)
1120 node = node->clones;
1121 else if (node->next_sibling_clone)
1122 node = node->next_sibling_clone;
1123 else
1125 while (node != orig && !node->next_sibling_clone)
1126 node = node->clone_of;
1127 if (node != orig)
1128 node = node->next_sibling_clone;
1133 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
1135 static void
1136 input_function (tree fn_decl, struct data_in *data_in,
1137 struct lto_input_block *ib)
1139 struct function *fn;
1140 enum LTO_tags tag;
1141 gimple *stmts;
1142 basic_block bb;
1143 struct bitpack_d bp;
1144 struct cgraph_node *node;
1145 tree args, narg, oarg;
1146 int len;
1148 fn = DECL_STRUCT_FUNCTION (fn_decl);
1149 tag = input_record_start (ib);
1150 clear_line_info (data_in);
1152 gimple_register_cfg_hooks ();
1153 lto_tag_check (tag, LTO_function);
1155 /* Read all the attributes for FN. */
1156 bp = lto_input_bitpack (ib);
1157 fn->is_thunk = bp_unpack_value (&bp, 1);
1158 fn->has_local_explicit_reg_vars = bp_unpack_value (&bp, 1);
1159 fn->after_tree_profile = bp_unpack_value (&bp, 1);
1160 fn->returns_pcc_struct = bp_unpack_value (&bp, 1);
1161 fn->returns_struct = bp_unpack_value (&bp, 1);
1162 fn->can_throw_non_call_exceptions = bp_unpack_value (&bp, 1);
1163 fn->always_inline_functions_inlined = bp_unpack_value (&bp, 1);
1164 fn->after_inlining = bp_unpack_value (&bp, 1);
1165 fn->dont_save_pending_sizes_p = bp_unpack_value (&bp, 1);
1166 fn->stdarg = bp_unpack_value (&bp, 1);
1167 fn->has_nonlocal_label = bp_unpack_value (&bp, 1);
1168 fn->calls_alloca = bp_unpack_value (&bp, 1);
1169 fn->calls_setjmp = bp_unpack_value (&bp, 1);
1170 fn->va_list_fpr_size = bp_unpack_value (&bp, 8);
1171 fn->va_list_gpr_size = bp_unpack_value (&bp, 8);
1173 /* Input the function start and end loci. */
1174 fn->function_start_locus = lto_input_location (ib, data_in);
1175 fn->function_end_locus = lto_input_location (ib, data_in);
1177 /* Input the current IL state of the function. */
1178 fn->curr_properties = lto_input_uleb128 (ib);
1180 /* Read the static chain and non-local goto save area. */
1181 fn->static_chain_decl = lto_input_tree (ib, data_in);
1182 fn->nonlocal_goto_save_area = lto_input_tree (ib, data_in);
1184 /* Read all the local symbols. */
1185 len = lto_input_sleb128 (ib);
1186 if (len > 0)
1188 int i;
1189 VEC_safe_grow (tree, gc, fn->local_decls, len);
1190 for (i = 0; i < len; i++)
1192 tree t = lto_input_tree (ib, data_in);
1193 VEC_replace (tree, fn->local_decls, i, t);
1197 /* Read all function arguments. We need to re-map them here to the
1198 arguments of the merged function declaration. */
1199 args = lto_input_tree (ib, data_in);
1200 for (oarg = args, narg = DECL_ARGUMENTS (fn_decl);
1201 oarg && narg;
1202 oarg = TREE_CHAIN (oarg), narg = TREE_CHAIN (narg))
1204 int ix;
1205 bool res;
1206 res = lto_streamer_cache_lookup (data_in->reader_cache, oarg, &ix);
1207 gcc_assert (res);
1208 /* Replace the argument in the streamer cache. */
1209 lto_streamer_cache_insert_at (data_in->reader_cache, narg, ix);
1211 gcc_assert (!oarg && !narg);
1213 /* Read all the SSA names. */
1214 input_ssa_names (ib, data_in, fn);
1216 /* Read the exception handling regions in the function. */
1217 input_eh_regions (ib, data_in, fn);
1219 /* Read the tree of lexical scopes for the function. */
1220 DECL_INITIAL (fn_decl) = lto_input_tree (ib, data_in);
1221 gcc_assert (DECL_INITIAL (fn_decl));
1222 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
1224 /* Read all the basic blocks. */
1225 tag = input_record_start (ib);
1226 while (tag)
1228 input_bb (ib, tag, data_in, fn);
1229 tag = input_record_start (ib);
1232 /* Fix up the call statements that are mentioned in the callgraph
1233 edges. */
1234 renumber_gimple_stmt_uids ();
1235 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
1236 FOR_ALL_BB (bb)
1238 gimple_stmt_iterator bsi = gsi_start_bb (bb);
1239 while (!gsi_end_p (bsi))
1241 gimple stmt = gsi_stmt (bsi);
1242 /* If we're recompiling LTO objects with debug stmts but
1243 we're not supposed to have debug stmts, remove them now.
1244 We can't remove them earlier because this would cause uid
1245 mismatches in fixups, but we can do it at this point, as
1246 long as debug stmts don't require fixups. */
1247 if (!MAY_HAVE_DEBUG_STMTS && is_gimple_debug (stmt))
1249 gimple_stmt_iterator gsi = bsi;
1250 gsi_next (&bsi);
1251 gsi_remove (&gsi, true);
1253 else
1255 gsi_next (&bsi);
1256 stmts[gimple_uid (stmt)] = stmt;
1261 /* Set the gimple body to the statement sequence in the entry
1262 basic block. FIXME lto, this is fairly hacky. The existence
1263 of a gimple body is used by the cgraph routines, but we should
1264 really use the presence of the CFG. */
1266 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs);
1267 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1270 node = cgraph_node (fn_decl);
1271 fixup_call_stmt_edges (node, stmts);
1272 execute_all_ipa_stmt_fixups (node, stmts);
1274 update_ssa (TODO_update_ssa_only_virtuals);
1275 free_dominance_info (CDI_DOMINATORS);
1276 free_dominance_info (CDI_POST_DOMINATORS);
1277 free (stmts);
1281 /* Read initializer expressions for public statics. DATA_IN is the
1282 file being read. IB is the input block used for reading. */
1284 static void
1285 input_alias_pairs (struct lto_input_block *ib, struct data_in *data_in)
1287 tree var;
1289 clear_line_info (data_in);
1291 /* Skip over all the unreferenced globals. */
1293 var = lto_input_tree (ib, data_in);
1294 while (var);
1296 var = lto_input_tree (ib, data_in);
1297 while (var)
1299 const char *orig_name, *new_name;
1300 alias_pair *p;
1302 p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
1303 p->decl = var;
1304 p->target = lto_input_tree (ib, data_in);
1306 /* If the target is a static object, we may have registered a
1307 new name for it to avoid clashes between statics coming from
1308 different files. In that case, use the new name. */
1309 orig_name = IDENTIFIER_POINTER (p->target);
1310 new_name = lto_get_decl_name_mapping (data_in->file_data, orig_name);
1311 if (strcmp (orig_name, new_name) != 0)
1312 p->target = get_identifier (new_name);
1314 var = lto_input_tree (ib, data_in);
1319 /* Read the body from DATA for function FN_DECL and fill it in.
1320 FILE_DATA are the global decls and types. SECTION_TYPE is either
1321 LTO_section_function_body or LTO_section_static_initializer. If
1322 section type is LTO_section_function_body, FN must be the decl for
1323 that function. */
1325 static void
1326 lto_read_body (struct lto_file_decl_data *file_data, tree fn_decl,
1327 const char *data, enum lto_section_type section_type)
1329 const struct lto_function_header *header;
1330 struct data_in *data_in;
1331 int32_t cfg_offset;
1332 int32_t main_offset;
1333 int32_t string_offset;
1334 struct lto_input_block ib_cfg;
1335 struct lto_input_block ib_main;
1337 header = (const struct lto_function_header *) data;
1338 cfg_offset = sizeof (struct lto_function_header);
1339 main_offset = cfg_offset + header->cfg_size;
1340 string_offset = main_offset + header->main_size;
1342 LTO_INIT_INPUT_BLOCK (ib_cfg,
1343 data + cfg_offset,
1345 header->cfg_size);
1347 LTO_INIT_INPUT_BLOCK (ib_main,
1348 data + main_offset,
1350 header->main_size);
1352 data_in = lto_data_in_create (file_data, data + string_offset,
1353 header->string_size, NULL);
1355 /* Make sure the file was generated by the exact same compiler. */
1356 lto_check_version (header->lto_header.major_version,
1357 header->lto_header.minor_version);
1359 if (section_type == LTO_section_function_body)
1361 struct function *fn = DECL_STRUCT_FUNCTION (fn_decl);
1362 struct lto_in_decl_state *decl_state;
1364 push_cfun (fn);
1365 init_tree_ssa (fn);
1367 /* Use the function's decl state. */
1368 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1369 gcc_assert (decl_state);
1370 file_data->current_decl_state = decl_state;
1372 input_cfg (&ib_cfg, fn);
1374 /* Set up the struct function. */
1375 input_function (fn_decl, data_in, &ib_main);
1377 /* We should now be in SSA. */
1378 cfun->gimple_df->in_ssa_p = true;
1380 /* Restore decl state */
1381 file_data->current_decl_state = file_data->global_decl_state;
1383 pop_cfun ();
1385 else
1387 input_alias_pairs (&ib_main, data_in);
1390 clear_line_info (data_in);
1391 lto_data_in_delete (data_in);
1395 /* Read the body of FN_DECL using DATA. FILE_DATA holds the global
1396 decls and types. */
1398 void
1399 lto_input_function_body (struct lto_file_decl_data *file_data,
1400 tree fn_decl, const char *data)
1402 current_function_decl = fn_decl;
1403 lto_read_body (file_data, fn_decl, data, LTO_section_function_body);
1407 /* Read in VAR_DECL using DATA. FILE_DATA holds the global decls and
1408 types. */
1410 void
1411 lto_input_constructors_and_inits (struct lto_file_decl_data *file_data,
1412 const char *data)
1414 lto_read_body (file_data, NULL, data, LTO_section_static_initializer);
1418 /* Return the resolution for the decl with index INDEX from DATA_IN. */
1420 static enum ld_plugin_symbol_resolution
1421 get_resolution (struct data_in *data_in, unsigned index)
1423 if (data_in->globals_resolution)
1425 ld_plugin_symbol_resolution_t ret;
1426 /* We can have references to not emitted functions in
1427 DECL_FUNCTION_PERSONALITY at least. So we can and have
1428 to indeed return LDPR_UNKNOWN in some cases. */
1429 if (VEC_length (ld_plugin_symbol_resolution_t,
1430 data_in->globals_resolution) <= index)
1431 return LDPR_UNKNOWN;
1432 ret = VEC_index (ld_plugin_symbol_resolution_t,
1433 data_in->globals_resolution,
1434 index);
1435 return ret;
1437 else
1438 /* Delay resolution finding until decl merging. */
1439 return LDPR_UNKNOWN;
1443 /* Unpack all the non-pointer fields of the TS_BASE structure of
1444 expression EXPR from bitpack BP. */
1446 static void
1447 unpack_ts_base_value_fields (struct bitpack_d *bp, tree expr)
1449 /* Note that the code for EXPR has already been unpacked to create EXPR in
1450 lto_materialize_tree. */
1451 if (!TYPE_P (expr))
1453 TREE_SIDE_EFFECTS (expr) = (unsigned) bp_unpack_value (bp, 1);
1454 TREE_CONSTANT (expr) = (unsigned) bp_unpack_value (bp, 1);
1455 TREE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1457 /* TREE_PUBLIC is used on types to indicate that the type
1458 has a TYPE_CACHED_VALUES vector. This is not streamed out,
1459 so we skip it here. */
1460 TREE_PUBLIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1462 else
1463 bp_unpack_value (bp, 4);
1464 TREE_ADDRESSABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1465 TREE_THIS_VOLATILE (expr) = (unsigned) bp_unpack_value (bp, 1);
1466 if (DECL_P (expr))
1467 DECL_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1468 else if (TYPE_P (expr))
1469 TYPE_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1470 else
1471 bp_unpack_value (bp, 1);
1472 TREE_ASM_WRITTEN (expr) = (unsigned) bp_unpack_value (bp, 1);
1473 TREE_NO_WARNING (expr) = (unsigned) bp_unpack_value (bp, 1);
1474 TREE_USED (expr) = (unsigned) bp_unpack_value (bp, 1);
1475 TREE_NOTHROW (expr) = (unsigned) bp_unpack_value (bp, 1);
1476 TREE_STATIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1477 TREE_PRIVATE (expr) = (unsigned) bp_unpack_value (bp, 1);
1478 TREE_PROTECTED (expr) = (unsigned) bp_unpack_value (bp, 1);
1479 TREE_DEPRECATED (expr) = (unsigned) bp_unpack_value (bp, 1);
1480 if (TYPE_P (expr))
1481 TYPE_SATURATING (expr) = (unsigned) bp_unpack_value (bp, 1);
1482 else if (TREE_CODE (expr) == SSA_NAME)
1483 SSA_NAME_IS_DEFAULT_DEF (expr) = (unsigned) bp_unpack_value (bp, 1);
1484 else
1485 bp_unpack_value (bp, 1);
1489 /* Unpack all the non-pointer fields of the TS_REAL_CST structure of
1490 expression EXPR from bitpack BP. */
1492 static void
1493 unpack_ts_real_cst_value_fields (struct bitpack_d *bp, tree expr)
1495 unsigned i;
1496 REAL_VALUE_TYPE r;
1497 REAL_VALUE_TYPE *rp;
1499 r.cl = (unsigned) bp_unpack_value (bp, 2);
1500 r.decimal = (unsigned) bp_unpack_value (bp, 1);
1501 r.sign = (unsigned) bp_unpack_value (bp, 1);
1502 r.signalling = (unsigned) bp_unpack_value (bp, 1);
1503 r.canonical = (unsigned) bp_unpack_value (bp, 1);
1504 r.uexp = (unsigned) bp_unpack_value (bp, EXP_BITS);
1505 for (i = 0; i < SIGSZ; i++)
1506 r.sig[i] = (unsigned long) bp_unpack_value (bp, HOST_BITS_PER_LONG);
1508 rp = ggc_alloc_real_value ();
1509 memcpy (rp, &r, sizeof (REAL_VALUE_TYPE));
1510 TREE_REAL_CST_PTR (expr) = rp;
1514 /* Unpack all the non-pointer fields of the TS_FIXED_CST structure of
1515 expression EXPR from bitpack BP. */
1517 static void
1518 unpack_ts_fixed_cst_value_fields (struct bitpack_d *bp, tree expr)
1520 struct fixed_value fv;
1522 fv.data.low = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1523 fv.data.high = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1524 fv.mode = (enum machine_mode) bp_unpack_value (bp, HOST_BITS_PER_INT);
1525 TREE_FIXED_CST (expr) = fv;
1529 /* Unpack all the non-pointer fields of the TS_DECL_COMMON structure
1530 of expression EXPR from bitpack BP. */
1532 static void
1533 unpack_ts_decl_common_value_fields (struct bitpack_d *bp, tree expr)
1535 DECL_MODE (expr) = (enum machine_mode) bp_unpack_value (bp, 8);
1536 DECL_NONLOCAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1537 DECL_VIRTUAL_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1538 DECL_IGNORED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1539 DECL_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1540 DECL_ARTIFICIAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1541 DECL_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1542 DECL_PRESERVE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1543 DECL_DEBUG_EXPR_IS_FROM (expr) = (unsigned) bp_unpack_value (bp, 1);
1544 DECL_EXTERNAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1545 DECL_GIMPLE_REG_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1546 DECL_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1548 if (TREE_CODE (expr) == LABEL_DECL)
1550 DECL_ERROR_ISSUED (expr) = (unsigned) bp_unpack_value (bp, 1);
1551 EH_LANDING_PAD_NR (expr) = (int) bp_unpack_value (bp, HOST_BITS_PER_INT);
1553 /* Always assume an initial value of -1 for LABEL_DECL_UID to
1554 force gimple_set_bb to recreate label_to_block_map. */
1555 LABEL_DECL_UID (expr) = -1;
1558 if (TREE_CODE (expr) == FIELD_DECL)
1560 unsigned HOST_WIDE_INT off_align;
1561 DECL_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1562 DECL_NONADDRESSABLE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1563 off_align = (unsigned HOST_WIDE_INT) bp_unpack_value (bp, 8);
1564 SET_DECL_OFFSET_ALIGN (expr, off_align);
1567 if (TREE_CODE (expr) == RESULT_DECL
1568 || TREE_CODE (expr) == PARM_DECL
1569 || TREE_CODE (expr) == VAR_DECL)
1571 DECL_BY_REFERENCE (expr) = (unsigned) bp_unpack_value (bp, 1);
1572 if (TREE_CODE (expr) == VAR_DECL
1573 || TREE_CODE (expr) == PARM_DECL)
1574 DECL_HAS_VALUE_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1575 DECL_RESTRICTED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1580 /* Unpack all the non-pointer fields of the TS_DECL_WRTL structure
1581 of expression EXPR from bitpack BP. */
1583 static void
1584 unpack_ts_decl_wrtl_value_fields (struct bitpack_d *bp, tree expr)
1586 DECL_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1590 /* Unpack all the non-pointer fields of the TS_DECL_WITH_VIS structure
1591 of expression EXPR from bitpack BP. */
1593 static void
1594 unpack_ts_decl_with_vis_value_fields (struct bitpack_d *bp, tree expr)
1596 DECL_DEFER_OUTPUT (expr) = (unsigned) bp_unpack_value (bp, 1);
1597 DECL_COMMON (expr) = (unsigned) bp_unpack_value (bp, 1);
1598 DECL_DLLIMPORT_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1599 DECL_WEAK (expr) = (unsigned) bp_unpack_value (bp, 1);
1600 DECL_SEEN_IN_BIND_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1601 DECL_COMDAT (expr) = (unsigned) bp_unpack_value (bp, 1);
1602 DECL_VISIBILITY (expr) = (enum symbol_visibility) bp_unpack_value (bp, 2);
1603 DECL_VISIBILITY_SPECIFIED (expr) = (unsigned) bp_unpack_value (bp, 1);
1605 if (TREE_CODE (expr) == VAR_DECL)
1607 DECL_HARD_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1608 DECL_IN_TEXT_SECTION (expr) = (unsigned) bp_unpack_value (bp, 1);
1609 DECL_IN_CONSTANT_POOL (expr) = (unsigned) bp_unpack_value (bp, 1);
1610 DECL_TLS_MODEL (expr) = (enum tls_model) bp_unpack_value (bp, 3);
1613 if (VAR_OR_FUNCTION_DECL_P (expr))
1615 priority_type p;
1616 p = (priority_type) bp_unpack_value (bp, HOST_BITS_PER_SHORT);
1617 SET_DECL_INIT_PRIORITY (expr, p);
1622 /* Unpack all the non-pointer fields of the TS_FUNCTION_DECL structure
1623 of expression EXPR from bitpack BP. */
1625 static void
1626 unpack_ts_function_decl_value_fields (struct bitpack_d *bp, tree expr)
1628 DECL_FUNCTION_CODE (expr) = (enum built_in_function) bp_unpack_value (bp, 11);
1629 DECL_BUILT_IN_CLASS (expr) = (enum built_in_class) bp_unpack_value (bp, 2);
1630 DECL_STATIC_CONSTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1631 DECL_STATIC_DESTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1632 DECL_UNINLINABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1633 DECL_POSSIBLY_INLINED (expr) = (unsigned) bp_unpack_value (bp, 1);
1634 DECL_IS_NOVOPS (expr) = (unsigned) bp_unpack_value (bp, 1);
1635 DECL_IS_RETURNS_TWICE (expr) = (unsigned) bp_unpack_value (bp, 1);
1636 DECL_IS_MALLOC (expr) = (unsigned) bp_unpack_value (bp, 1);
1637 DECL_IS_OPERATOR_NEW (expr) = (unsigned) bp_unpack_value (bp, 1);
1638 DECL_DECLARED_INLINE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1639 DECL_STATIC_CHAIN (expr) = (unsigned) bp_unpack_value (bp, 1);
1640 DECL_NO_INLINE_WARNING_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1641 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (expr)
1642 = (unsigned) bp_unpack_value (bp, 1);
1643 DECL_NO_LIMIT_STACK (expr) = (unsigned) bp_unpack_value (bp, 1);
1644 DECL_DISREGARD_INLINE_LIMITS (expr) = (unsigned) bp_unpack_value (bp, 1);
1645 DECL_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1646 DECL_LOOPING_CONST_OR_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1650 /* Unpack all the non-pointer fields of the TS_TYPE structure
1651 of expression EXPR from bitpack BP. */
1653 static void
1654 unpack_ts_type_value_fields (struct bitpack_d *bp, tree expr)
1656 enum machine_mode mode;
1658 TYPE_PRECISION (expr) = (unsigned) bp_unpack_value (bp, 10);
1659 mode = (enum machine_mode) bp_unpack_value (bp, 8);
1660 SET_TYPE_MODE (expr, mode);
1661 TYPE_STRING_FLAG (expr) = (unsigned) bp_unpack_value (bp, 1);
1662 TYPE_NO_FORCE_BLK (expr) = (unsigned) bp_unpack_value (bp, 1);
1663 TYPE_NEEDS_CONSTRUCTING (expr) = (unsigned) bp_unpack_value (bp, 1);
1664 if (RECORD_OR_UNION_TYPE_P (expr))
1665 TYPE_TRANSPARENT_AGGR (expr) = (unsigned) bp_unpack_value (bp, 1);
1666 TYPE_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1667 TYPE_RESTRICT (expr) = (unsigned) bp_unpack_value (bp, 1);
1668 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr)
1669 = (unsigned) bp_unpack_value (bp, 2);
1670 TYPE_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1671 TYPE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1672 TYPE_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1673 TYPE_ALIAS_SET (expr) = bp_unpack_value (bp, HOST_BITS_PER_INT);
1677 /* Unpack all the non-pointer fields of the TS_BLOCK structure
1678 of expression EXPR from bitpack BP. */
1680 static void
1681 unpack_ts_block_value_fields (struct bitpack_d *bp, tree expr)
1683 BLOCK_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1684 BLOCK_NUMBER (expr) = (unsigned) bp_unpack_value (bp, 31);
1687 /* Unpack all the non-pointer fields of the TS_TRANSLATION_UNIT_DECL
1688 structure of expression EXPR from bitpack BP. */
1690 static void
1691 unpack_ts_translation_unit_decl_value_fields (struct bitpack_d *bp ATTRIBUTE_UNUSED, tree expr ATTRIBUTE_UNUSED)
1695 /* Unpack all the non-pointer fields in EXPR into a bit pack. */
1697 static void
1698 unpack_value_fields (struct bitpack_d *bp, tree expr)
1700 enum tree_code code;
1702 code = TREE_CODE (expr);
1704 /* Note that all these functions are highly sensitive to changes in
1705 the types and sizes of each of the fields being packed. */
1706 unpack_ts_base_value_fields (bp, expr);
1708 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1709 unpack_ts_real_cst_value_fields (bp, expr);
1711 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1712 unpack_ts_fixed_cst_value_fields (bp, expr);
1714 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1715 unpack_ts_decl_common_value_fields (bp, expr);
1717 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1718 unpack_ts_decl_wrtl_value_fields (bp, expr);
1720 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1721 unpack_ts_decl_with_vis_value_fields (bp, expr);
1723 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1724 unpack_ts_function_decl_value_fields (bp, expr);
1726 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
1727 unpack_ts_type_value_fields (bp, expr);
1729 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1730 unpack_ts_block_value_fields (bp, expr);
1732 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
1734 /* We only stream the version number of SSA names. */
1735 gcc_unreachable ();
1738 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
1740 /* This is only used by GENERIC. */
1741 gcc_unreachable ();
1744 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
1746 /* This is only used by High GIMPLE. */
1747 gcc_unreachable ();
1750 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
1751 unpack_ts_translation_unit_decl_value_fields (bp, expr);
1755 /* Materialize a new tree from input block IB using descriptors in
1756 DATA_IN. The code for the new tree should match TAG. Store in
1757 *IX_P the index into the reader cache where the new tree is stored. */
1759 static tree
1760 lto_materialize_tree (struct lto_input_block *ib, struct data_in *data_in,
1761 enum LTO_tags tag, int *ix_p)
1763 struct bitpack_d bp;
1764 enum tree_code code;
1765 tree result;
1766 #ifdef LTO_STREAMER_DEBUG
1767 HOST_WIDEST_INT orig_address_in_writer;
1768 #endif
1769 HOST_WIDE_INT ix;
1771 result = NULL_TREE;
1773 /* Read the header of the node we are about to create. */
1774 ix = lto_input_sleb128 (ib);
1775 gcc_assert ((int) ix == ix);
1776 *ix_p = (int) ix;
1778 #ifdef LTO_STREAMER_DEBUG
1779 /* Read the word representing the memory address for the tree
1780 as it was written by the writer. This is useful when
1781 debugging differences between the writer and reader. */
1782 orig_address_in_writer = lto_input_sleb128 (ib);
1783 gcc_assert ((intptr_t) orig_address_in_writer == orig_address_in_writer);
1784 #endif
1786 code = lto_tag_to_tree_code (tag);
1788 /* We should never see an SSA_NAME tree. Only the version numbers of
1789 SSA names are ever written out. See input_ssa_names. */
1790 gcc_assert (code != SSA_NAME);
1792 /* Instantiate a new tree using the header data. */
1793 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1794 result = input_string_cst (data_in, ib);
1795 else if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1796 result = input_identifier (data_in, ib);
1797 else if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1799 HOST_WIDE_INT len = lto_input_sleb128 (ib);
1800 result = make_tree_vec (len);
1802 else if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1804 unsigned HOST_WIDE_INT len = lto_input_uleb128 (ib);
1805 result = make_tree_binfo (len);
1807 else
1809 /* All other nodes can be materialized with a raw make_node
1810 call. */
1811 result = make_node (code);
1814 #ifdef LTO_STREAMER_DEBUG
1815 /* Store the original address of the tree as seen by the writer
1816 in RESULT's aux field. This is useful when debugging streaming
1817 problems. This way, a debugging session can be started on
1818 both writer and reader with a breakpoint using this address
1819 value in both. */
1820 lto_orig_address_map (result, (intptr_t) orig_address_in_writer);
1821 #endif
1823 /* Read the bitpack of non-pointer values from IB. */
1824 bp = lto_input_bitpack (ib);
1826 /* The first word in BP contains the code of the tree that we
1827 are about to read. */
1828 code = (enum tree_code) bp_unpack_value (&bp, 16);
1829 lto_tag_check (lto_tree_code_to_tag (code), tag);
1831 /* Unpack all the value fields from BP. */
1832 unpack_value_fields (&bp, result);
1834 /* Enter RESULT in the reader cache. This will make RESULT
1835 available so that circular references in the rest of the tree
1836 structure can be resolved in subsequent calls to lto_input_tree. */
1837 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
1839 return result;
1843 /* Read a chain of tree nodes from input block IB. DATA_IN contains
1844 tables and descriptors for the file being read. */
1846 static tree
1847 lto_input_chain (struct lto_input_block *ib, struct data_in *data_in)
1849 int i, count;
1850 tree first, prev, curr;
1852 first = prev = NULL_TREE;
1853 count = lto_input_sleb128 (ib);
1854 for (i = 0; i < count; i++)
1856 curr = lto_input_tree (ib, data_in);
1857 if (prev)
1858 TREE_CHAIN (prev) = curr;
1859 else
1860 first = curr;
1862 TREE_CHAIN (curr) = NULL_TREE;
1863 prev = curr;
1866 return first;
1870 /* Read all pointer fields in the TS_COMMON structure of EXPR from input
1871 block IB. DATA_IN contains tables and descriptors for the
1872 file being read. */
1875 static void
1876 lto_input_ts_common_tree_pointers (struct lto_input_block *ib,
1877 struct data_in *data_in, tree expr)
1879 TREE_TYPE (expr) = lto_input_tree (ib, data_in);
1883 /* Read all pointer fields in the TS_VECTOR structure of EXPR from input
1884 block IB. DATA_IN contains tables and descriptors for the
1885 file being read. */
1887 static void
1888 lto_input_ts_vector_tree_pointers (struct lto_input_block *ib,
1889 struct data_in *data_in, tree expr)
1891 TREE_VECTOR_CST_ELTS (expr) = lto_input_chain (ib, data_in);
1895 /* Read all pointer fields in the TS_COMPLEX structure of EXPR from input
1896 block IB. DATA_IN contains tables and descriptors for the
1897 file being read. */
1899 static void
1900 lto_input_ts_complex_tree_pointers (struct lto_input_block *ib,
1901 struct data_in *data_in, tree expr)
1903 TREE_REALPART (expr) = lto_input_tree (ib, data_in);
1904 TREE_IMAGPART (expr) = lto_input_tree (ib, data_in);
1908 /* Read all pointer fields in the TS_DECL_MINIMAL structure of EXPR
1909 from input block IB. DATA_IN contains tables and descriptors for the
1910 file being read. */
1912 static void
1913 lto_input_ts_decl_minimal_tree_pointers (struct lto_input_block *ib,
1914 struct data_in *data_in, tree expr)
1916 DECL_NAME (expr) = lto_input_tree (ib, data_in);
1917 DECL_CONTEXT (expr) = lto_input_tree (ib, data_in);
1918 DECL_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
1922 /* Read all pointer fields in the TS_DECL_COMMON structure of EXPR from
1923 input block IB. DATA_IN contains tables and descriptors for the
1924 file being read. */
1926 static void
1927 lto_input_ts_decl_common_tree_pointers (struct lto_input_block *ib,
1928 struct data_in *data_in, tree expr)
1930 DECL_SIZE (expr) = lto_input_tree (ib, data_in);
1931 DECL_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
1933 if (TREE_CODE (expr) != FUNCTION_DECL)
1934 DECL_INITIAL (expr) = lto_input_tree (ib, data_in);
1936 DECL_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
1937 DECL_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
1939 if (TREE_CODE (expr) == PARM_DECL)
1940 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
1942 if ((TREE_CODE (expr) == VAR_DECL
1943 || TREE_CODE (expr) == PARM_DECL)
1944 && DECL_HAS_VALUE_EXPR_P (expr))
1945 SET_DECL_VALUE_EXPR (expr, lto_input_tree (ib, data_in));
1947 if (TREE_CODE (expr) == VAR_DECL)
1949 tree dexpr = lto_input_tree (ib, data_in);
1950 if (dexpr)
1951 SET_DECL_DEBUG_EXPR (expr, dexpr);
1956 /* Read all pointer fields in the TS_DECL_NON_COMMON structure of
1957 EXPR from input block IB. DATA_IN contains tables and descriptors for the
1958 file being read. */
1960 static void
1961 lto_input_ts_decl_non_common_tree_pointers (struct lto_input_block *ib,
1962 struct data_in *data_in, tree expr)
1964 if (TREE_CODE (expr) == FUNCTION_DECL)
1966 DECL_ARGUMENTS (expr) = lto_input_tree (ib, data_in);
1967 DECL_RESULT (expr) = lto_input_tree (ib, data_in);
1969 DECL_VINDEX (expr) = lto_input_tree (ib, data_in);
1973 /* Read all pointer fields in the TS_DECL_WITH_VIS structure of EXPR
1974 from input block IB. DATA_IN contains tables and descriptors for the
1975 file being read. */
1977 static void
1978 lto_input_ts_decl_with_vis_tree_pointers (struct lto_input_block *ib,
1979 struct data_in *data_in, tree expr)
1981 tree id;
1983 id = lto_input_tree (ib, data_in);
1984 if (id)
1986 gcc_assert (TREE_CODE (id) == IDENTIFIER_NODE);
1987 SET_DECL_ASSEMBLER_NAME (expr, id);
1990 DECL_SECTION_NAME (expr) = lto_input_tree (ib, data_in);
1991 DECL_COMDAT_GROUP (expr) = lto_input_tree (ib, data_in);
1995 /* Read all pointer fields in the TS_FIELD_DECL structure of EXPR from
1996 input block IB. DATA_IN contains tables and descriptors for the
1997 file being read. */
1999 static void
2000 lto_input_ts_field_decl_tree_pointers (struct lto_input_block *ib,
2001 struct data_in *data_in, tree expr)
2003 DECL_FIELD_OFFSET (expr) = lto_input_tree (ib, data_in);
2004 DECL_BIT_FIELD_TYPE (expr) = lto_input_tree (ib, data_in);
2005 DECL_QUALIFIER (expr) = lto_input_tree (ib, data_in);
2006 DECL_FIELD_BIT_OFFSET (expr) = lto_input_tree (ib, data_in);
2007 DECL_FCONTEXT (expr) = lto_input_tree (ib, data_in);
2008 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2012 /* Read all pointer fields in the TS_FUNCTION_DECL structure of EXPR
2013 from input block IB. DATA_IN contains tables and descriptors for the
2014 file being read. */
2016 static void
2017 lto_input_ts_function_decl_tree_pointers (struct lto_input_block *ib,
2018 struct data_in *data_in, tree expr)
2020 /* DECL_STRUCT_FUNCTION is handled by lto_input_function. FIXME lto,
2021 maybe it should be handled here? */
2022 DECL_FUNCTION_PERSONALITY (expr) = lto_input_tree (ib, data_in);
2023 DECL_FUNCTION_SPECIFIC_TARGET (expr) = lto_input_tree (ib, data_in);
2024 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr) = lto_input_tree (ib, data_in);
2026 /* If the file contains a function with an EH personality set,
2027 then it was compiled with -fexceptions. In that case, initialize
2028 the backend EH machinery. */
2029 if (DECL_FUNCTION_PERSONALITY (expr))
2030 lto_init_eh ();
2034 /* Read all pointer fields in the TS_TYPE structure of EXPR from input
2035 block IB. DATA_IN contains tables and descriptors for the
2036 file being read. */
2038 static void
2039 lto_input_ts_type_tree_pointers (struct lto_input_block *ib,
2040 struct data_in *data_in, tree expr)
2042 if (TREE_CODE (expr) == ENUMERAL_TYPE)
2043 TYPE_VALUES (expr) = lto_input_tree (ib, data_in);
2044 else if (TREE_CODE (expr) == ARRAY_TYPE)
2045 TYPE_DOMAIN (expr) = lto_input_tree (ib, data_in);
2046 else if (RECORD_OR_UNION_TYPE_P (expr))
2047 TYPE_FIELDS (expr) = lto_input_tree (ib, data_in);
2048 else if (TREE_CODE (expr) == FUNCTION_TYPE
2049 || TREE_CODE (expr) == METHOD_TYPE)
2050 TYPE_ARG_TYPES (expr) = lto_input_tree (ib, data_in);
2052 TYPE_SIZE (expr) = lto_input_tree (ib, data_in);
2053 TYPE_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
2054 TYPE_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
2055 TYPE_NAME (expr) = lto_input_tree (ib, data_in);
2056 /* Do not stream TYPE_POINTER_TO or TYPE_REFERENCE_TO nor
2057 TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. */
2058 if (!POINTER_TYPE_P (expr))
2059 TYPE_MINVAL (expr) = lto_input_tree (ib, data_in);
2060 TYPE_MAXVAL (expr) = lto_input_tree (ib, data_in);
2061 TYPE_MAIN_VARIANT (expr) = lto_input_tree (ib, data_in);
2062 /* Do not stream TYPE_NEXT_VARIANT, we reconstruct the variant lists
2063 during fixup. */
2064 if (RECORD_OR_UNION_TYPE_P (expr))
2065 TYPE_BINFO (expr) = lto_input_tree (ib, data_in);
2066 TYPE_CONTEXT (expr) = lto_input_tree (ib, data_in);
2067 /* TYPE_CANONICAL gets re-computed during type merging. */
2068 TYPE_CANONICAL (expr) = NULL_TREE;
2069 TYPE_STUB_DECL (expr) = lto_input_tree (ib, data_in);
2073 /* Read all pointer fields in the TS_LIST structure of EXPR from input
2074 block IB. DATA_IN contains tables and descriptors for the
2075 file being read. */
2077 static void
2078 lto_input_ts_list_tree_pointers (struct lto_input_block *ib,
2079 struct data_in *data_in, tree expr)
2081 TREE_PURPOSE (expr) = lto_input_tree (ib, data_in);
2082 TREE_VALUE (expr) = lto_input_tree (ib, data_in);
2083 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2087 /* Read all pointer fields in the TS_VEC structure of EXPR from input
2088 block IB. DATA_IN contains tables and descriptors for the
2089 file being read. */
2091 static void
2092 lto_input_ts_vec_tree_pointers (struct lto_input_block *ib,
2093 struct data_in *data_in, tree expr)
2095 int i;
2097 /* Note that TREE_VEC_LENGTH was read by lto_materialize_tree to
2098 instantiate EXPR. */
2099 for (i = 0; i < TREE_VEC_LENGTH (expr); i++)
2100 TREE_VEC_ELT (expr, i) = lto_input_tree (ib, data_in);
2104 /* Read all pointer fields in the TS_EXP structure of EXPR from input
2105 block IB. DATA_IN contains tables and descriptors for the
2106 file being read. */
2109 static void
2110 lto_input_ts_exp_tree_pointers (struct lto_input_block *ib,
2111 struct data_in *data_in, tree expr)
2113 int i, length;
2114 location_t loc;
2116 length = lto_input_sleb128 (ib);
2117 gcc_assert (length == TREE_OPERAND_LENGTH (expr));
2119 for (i = 0; i < length; i++)
2120 TREE_OPERAND (expr, i) = lto_input_tree (ib, data_in);
2122 loc = lto_input_location (ib, data_in);
2123 SET_EXPR_LOCATION (expr, loc);
2124 TREE_BLOCK (expr) = lto_input_tree (ib, data_in);
2128 /* Read all pointer fields in the TS_BLOCK structure of EXPR from input
2129 block IB. DATA_IN contains tables and descriptors for the
2130 file being read. */
2132 static void
2133 lto_input_ts_block_tree_pointers (struct lto_input_block *ib,
2134 struct data_in *data_in, tree expr)
2136 unsigned i, len;
2138 BLOCK_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
2139 BLOCK_VARS (expr) = lto_input_chain (ib, data_in);
2141 len = lto_input_uleb128 (ib);
2142 for (i = 0; i < len; i++)
2144 tree t = lto_input_tree (ib, data_in);
2145 VEC_safe_push (tree, gc, BLOCK_NONLOCALIZED_VARS (expr), t);
2148 BLOCK_SUPERCONTEXT (expr) = lto_input_tree (ib, data_in);
2149 BLOCK_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2150 BLOCK_FRAGMENT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2151 BLOCK_FRAGMENT_CHAIN (expr) = lto_input_tree (ib, data_in);
2152 BLOCK_SUBBLOCKS (expr) = lto_input_chain (ib, data_in);
2156 /* Read all pointer fields in the TS_BINFO structure of EXPR from input
2157 block IB. DATA_IN contains tables and descriptors for the
2158 file being read. */
2160 static void
2161 lto_input_ts_binfo_tree_pointers (struct lto_input_block *ib,
2162 struct data_in *data_in, tree expr)
2164 unsigned i, len;
2165 tree t;
2167 /* Note that the number of slots in EXPR was read in
2168 lto_materialize_tree when instantiating EXPR. However, the
2169 vector is empty so we cannot rely on VEC_length to know how many
2170 elements to read. So, this list is emitted as a 0-terminated
2171 list on the writer side. */
2174 t = lto_input_tree (ib, data_in);
2175 if (t)
2176 VEC_quick_push (tree, BINFO_BASE_BINFOS (expr), t);
2178 while (t);
2180 BINFO_OFFSET (expr) = lto_input_tree (ib, data_in);
2181 BINFO_VTABLE (expr) = lto_input_tree (ib, data_in);
2182 BINFO_VIRTUALS (expr) = lto_input_tree (ib, data_in);
2183 BINFO_VPTR_FIELD (expr) = lto_input_tree (ib, data_in);
2185 len = lto_input_uleb128 (ib);
2186 for (i = 0; i < len; i++)
2188 tree a = lto_input_tree (ib, data_in);
2189 VEC_safe_push (tree, gc, BINFO_BASE_ACCESSES (expr), a);
2192 BINFO_INHERITANCE_CHAIN (expr) = lto_input_tree (ib, data_in);
2193 BINFO_SUBVTT_INDEX (expr) = lto_input_tree (ib, data_in);
2194 BINFO_VPTR_INDEX (expr) = lto_input_tree (ib, data_in);
2198 /* Read all pointer fields in the TS_CONSTRUCTOR structure of EXPR from
2199 input block IB. DATA_IN contains tables and descriptors for the
2200 file being read. */
2202 static void
2203 lto_input_ts_constructor_tree_pointers (struct lto_input_block *ib,
2204 struct data_in *data_in, tree expr)
2206 unsigned i, len;
2208 len = lto_input_uleb128 (ib);
2209 for (i = 0; i < len; i++)
2211 tree index, value;
2213 index = lto_input_tree (ib, data_in);
2214 value = lto_input_tree (ib, data_in);
2215 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (expr), index, value);
2220 /* Input a TS_TARGET_OPTION tree from IB into EXPR. */
2222 static void
2223 lto_input_ts_target_option (struct lto_input_block *ib, tree expr)
2225 unsigned i, len;
2226 struct bitpack_d bp;
2227 struct cl_target_option *t = TREE_TARGET_OPTION (expr);
2229 bp = lto_input_bitpack (ib);
2230 len = sizeof (struct cl_target_option);
2231 for (i = 0; i < len; i++)
2232 ((unsigned char *)t)[i] = bp_unpack_value (&bp, 8);
2233 if (bp_unpack_value (&bp, 32) != 0x12345678)
2234 fatal_error ("cl_target_option size mismatch in LTO reader and writer");
2237 /* Input a TS_TRANSLATION_UNIT_DECL tree from IB and DATA_IN into EXPR. */
2239 static void
2240 lto_input_ts_translation_unit_decl_tree_pointers (struct lto_input_block *ib,
2241 struct data_in *data_in,
2242 tree expr)
2244 TRANSLATION_UNIT_LANGUAGE (expr) = xstrdup (input_string (data_in, ib));
2245 VEC_safe_push (tree, gc, all_translation_units, expr);
2248 /* Helper for lto_input_tree. Read all pointer fields in EXPR from
2249 input block IB. DATA_IN contains tables and descriptors for the
2250 file being read. */
2252 static void
2253 lto_input_tree_pointers (struct lto_input_block *ib, struct data_in *data_in,
2254 tree expr)
2256 enum tree_code code;
2258 code = TREE_CODE (expr);
2260 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
2261 lto_input_ts_common_tree_pointers (ib, data_in, expr);
2263 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
2264 lto_input_ts_vector_tree_pointers (ib, data_in, expr);
2266 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
2267 lto_input_ts_complex_tree_pointers (ib, data_in, expr);
2269 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
2270 lto_input_ts_decl_minimal_tree_pointers (ib, data_in, expr);
2272 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2273 lto_input_ts_decl_common_tree_pointers (ib, data_in, expr);
2275 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2276 lto_input_ts_decl_non_common_tree_pointers (ib, data_in, expr);
2278 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2279 lto_input_ts_decl_with_vis_tree_pointers (ib, data_in, expr);
2281 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2282 lto_input_ts_field_decl_tree_pointers (ib, data_in, expr);
2284 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2285 lto_input_ts_function_decl_tree_pointers (ib, data_in, expr);
2287 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
2288 lto_input_ts_type_tree_pointers (ib, data_in, expr);
2290 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
2291 lto_input_ts_list_tree_pointers (ib, data_in, expr);
2293 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
2294 lto_input_ts_vec_tree_pointers (ib, data_in, expr);
2296 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
2297 lto_input_ts_exp_tree_pointers (ib, data_in, expr);
2299 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
2301 /* We only stream the version number of SSA names. */
2302 gcc_unreachable ();
2305 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
2306 lto_input_ts_block_tree_pointers (ib, data_in, expr);
2308 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
2309 lto_input_ts_binfo_tree_pointers (ib, data_in, expr);
2311 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
2313 /* This should only appear in GENERIC. */
2314 gcc_unreachable ();
2317 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
2318 lto_input_ts_constructor_tree_pointers (ib, data_in, expr);
2320 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
2322 /* This should only appear in High GIMPLE. */
2323 gcc_unreachable ();
2326 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
2328 sorry ("optimization options not supported yet");
2331 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
2332 lto_input_ts_target_option (ib, expr);
2334 if (CODE_CONTAINS_STRUCT (code, TS_TRANSLATION_UNIT_DECL))
2335 lto_input_ts_translation_unit_decl_tree_pointers (ib, data_in, expr);
2339 /* Register DECL with the global symbol table and change its
2340 name if necessary to avoid name clashes for static globals across
2341 different files. */
2343 static void
2344 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl)
2346 /* Register symbols with file or global scope to mark what input
2347 file has their definition. */
2348 if (decl_function_context (decl) == NULL_TREE)
2350 /* Variable has file scope, not local. Need to ensure static variables
2351 between different files don't clash unexpectedly. */
2352 if (!TREE_PUBLIC (decl))
2354 /* ??? We normally pre-mangle names before we serialize them
2355 out. Here, in lto1, we do not know the language, and
2356 thus cannot do the mangling again. Instead, we just
2357 append a suffix to the mangled name. The resulting name,
2358 however, is not a properly-formed mangled name, and will
2359 confuse any attempt to unmangle it. */
2360 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2361 char *label;
2363 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2364 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2365 rest_of_decl_compilation (decl, 1, 0);
2369 /* If this variable has already been declared, queue the
2370 declaration for merging. */
2371 if (TREE_PUBLIC (decl))
2373 int ix;
2374 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2375 gcc_unreachable ();
2376 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2377 data_in->file_data);
2383 /* Register DECL with the global symbol table and change its
2384 name if necessary to avoid name clashes for static globals across
2385 different files. DATA_IN contains descriptors and tables for the
2386 file being read. */
2388 static void
2389 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl)
2391 /* Need to ensure static entities between different files
2392 don't clash unexpectedly. */
2393 if (!TREE_PUBLIC (decl))
2395 /* We must not use the DECL_ASSEMBLER_NAME macro here, as it
2396 may set the assembler name where it was previously empty. */
2397 tree old_assembler_name = decl->decl_with_vis.assembler_name;
2399 /* FIXME lto: We normally pre-mangle names before we serialize
2400 them out. Here, in lto1, we do not know the language, and
2401 thus cannot do the mangling again. Instead, we just append a
2402 suffix to the mangled name. The resulting name, however, is
2403 not a properly-formed mangled name, and will confuse any
2404 attempt to unmangle it. */
2405 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2406 char *label;
2408 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2409 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2411 /* We may arrive here with the old assembler name not set
2412 if the function body is not needed, e.g., it has been
2413 inlined away and does not appear in the cgraph. */
2414 if (old_assembler_name)
2416 tree new_assembler_name = DECL_ASSEMBLER_NAME (decl);
2418 /* Make the original assembler name available for later use.
2419 We may have used it to indicate the section within its
2420 object file where the function body may be found.
2421 FIXME lto: Find a better way to maintain the function decl
2422 to body section mapping so we don't need this hack. */
2423 lto_record_renamed_decl (data_in->file_data,
2424 IDENTIFIER_POINTER (old_assembler_name),
2425 IDENTIFIER_POINTER (new_assembler_name));
2427 /* Also register the reverse mapping so that we can find the
2428 new name given to an existing assembler name (used when
2429 restoring alias pairs in input_constructors_or_inits. */
2430 lto_record_renamed_decl (data_in->file_data,
2431 IDENTIFIER_POINTER (new_assembler_name),
2432 IDENTIFIER_POINTER (old_assembler_name));
2436 /* If this variable has already been declared, queue the
2437 declaration for merging. */
2438 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT (decl))
2440 int ix;
2441 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2442 gcc_unreachable ();
2443 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2444 data_in->file_data);
2449 /* Read an index IX from input block IB and return the tree node at
2450 DATA_IN->FILE_DATA->GLOBALS_INDEX[IX]. */
2452 static tree
2453 lto_get_pickled_tree (struct lto_input_block *ib, struct data_in *data_in)
2455 HOST_WIDE_INT ix;
2456 tree result;
2457 enum LTO_tags expected_tag;
2458 unsigned HOST_WIDE_INT orig_offset;
2460 ix = lto_input_sleb128 (ib);
2461 expected_tag = (enum LTO_tags) lto_input_uleb128 (ib);
2463 orig_offset = lto_input_uleb128 (ib);
2464 gcc_assert (orig_offset == (unsigned) orig_offset);
2466 result = lto_streamer_cache_get (data_in->reader_cache, ix);
2467 if (result == NULL_TREE)
2469 /* We have not yet read the cache slot IX. Go to the offset
2470 in the stream where the physical tree node is, and materialize
2471 it from there. */
2472 struct lto_input_block fwd_ib;
2474 /* If we are trying to go back in the stream, something is wrong.
2475 We should've read the node at the earlier position already. */
2476 if (ib->p >= orig_offset)
2477 internal_error ("bytecode stream: tried to jump backwards in the "
2478 "stream");
2480 LTO_INIT_INPUT_BLOCK (fwd_ib, ib->data, orig_offset, ib->len);
2481 result = lto_input_tree (&fwd_ib, data_in);
2484 gcc_assert (result
2485 && TREE_CODE (result) == lto_tag_to_tree_code (expected_tag));
2487 return result;
2491 /* Read a code and class from input block IB and return the
2492 corresponding builtin. DATA_IN is as in lto_input_tree. */
2494 static tree
2495 lto_get_builtin_tree (struct lto_input_block *ib, struct data_in *data_in)
2497 enum built_in_class fclass;
2498 enum built_in_function fcode;
2499 const char *asmname;
2500 tree result;
2501 int ix;
2503 fclass = (enum built_in_class) lto_input_uleb128 (ib);
2504 gcc_assert (fclass == BUILT_IN_NORMAL || fclass == BUILT_IN_MD);
2506 fcode = (enum built_in_function) lto_input_uleb128 (ib);
2508 ix = lto_input_sleb128 (ib);
2509 gcc_assert (ix == (int) ix);
2511 if (fclass == BUILT_IN_NORMAL)
2513 gcc_assert (fcode < END_BUILTINS);
2514 result = built_in_decls[fcode];
2515 gcc_assert (result);
2517 else if (fclass == BUILT_IN_MD)
2519 result = targetm.builtin_decl (fcode, true);
2520 if (!result || result == error_mark_node)
2521 fatal_error ("target specific builtin not available");
2523 else
2524 gcc_unreachable ();
2526 asmname = input_string (data_in, ib);
2527 if (asmname)
2528 set_builtin_user_assembler_name (result, asmname);
2530 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
2532 return result;
2536 /* Read the physical representation of a tree node with tag TAG from
2537 input block IB using the per-file context in DATA_IN. */
2539 static tree
2540 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
2541 enum LTO_tags tag)
2543 tree result;
2544 int ix;
2546 result = lto_materialize_tree (ib, data_in, tag, &ix);
2548 /* Read all the pointer fields in RESULT. */
2549 lto_input_tree_pointers (ib, data_in, result);
2551 /* We should never try to instantiate an MD or NORMAL builtin here. */
2552 if (TREE_CODE (result) == FUNCTION_DECL)
2553 gcc_assert (!lto_stream_as_builtin_p (result));
2555 if (TREE_CODE (result) == VAR_DECL)
2556 lto_register_var_decl_in_symtab (data_in, result);
2557 else if (TREE_CODE (result) == FUNCTION_DECL && !DECL_BUILT_IN (result))
2558 lto_register_function_decl_in_symtab (data_in, result);
2560 /* end_marker = */ lto_input_1_unsigned (ib);
2562 #ifdef LTO_STREAMER_DEBUG
2563 /* Remove the mapping to RESULT's original address set by
2564 lto_materialize_tree. */
2565 lto_orig_address_remove (result);
2566 #endif
2568 return result;
2572 /* Read and INTEGER_CST node from input block IB using the per-file
2573 context in DATA_IN. */
2575 static tree
2576 lto_input_integer_cst (struct lto_input_block *ib, struct data_in *data_in)
2578 tree result, type;
2579 HOST_WIDE_INT low, high;
2580 bool overflow_p;
2582 type = lto_input_tree (ib, data_in);
2583 overflow_p = (lto_input_1_unsigned (ib) != 0);
2584 low = lto_input_uleb128 (ib);
2585 high = lto_input_uleb128 (ib);
2586 result = build_int_cst_wide (type, low, high);
2588 /* If the original constant had overflown, build a replica of RESULT to
2589 avoid modifying the shared constant returned by build_int_cst_wide. */
2590 if (overflow_p)
2592 result = copy_node (result);
2593 TREE_OVERFLOW (result) = 1;
2596 return result;
2600 /* Read a tree from input block IB using the per-file context in
2601 DATA_IN. This context is used, for example, to resolve references
2602 to previously read nodes. */
2604 tree
2605 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
2607 enum LTO_tags tag;
2608 tree result;
2610 tag = input_record_start (ib);
2611 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
2613 if (tag == LTO_null)
2614 result = NULL_TREE;
2615 else if (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
2617 /* If TAG is a reference to an indexable tree, the next value
2618 in IB is the index into the table where we expect to find
2619 that tree. */
2620 result = lto_input_tree_ref (ib, data_in, cfun, tag);
2622 else if (tag == LTO_tree_pickle_reference)
2624 /* If TAG is a reference to a previously read tree, look it up in
2625 the reader cache. */
2626 result = lto_get_pickled_tree (ib, data_in);
2628 else if (tag == LTO_builtin_decl)
2630 /* If we are going to read a built-in function, all we need is
2631 the code and class. */
2632 result = lto_get_builtin_tree (ib, data_in);
2634 else if (tag == lto_tree_code_to_tag (INTEGER_CST))
2636 /* For integer constants we only need the type and its hi/low
2637 words. */
2638 result = lto_input_integer_cst (ib, data_in);
2640 else
2642 /* Otherwise, materialize a new node from IB. */
2643 result = lto_read_tree (ib, data_in, tag);
2646 return result;
2650 /* Initialization for the LTO reader. */
2652 void
2653 lto_init_reader (void)
2655 lto_streamer_init ();
2657 memset (&lto_stats, 0, sizeof (lto_stats));
2658 bitmap_obstack_initialize (NULL);
2660 file_name_hash_table = htab_create (37, hash_string_slot_node,
2661 eq_string_slot_node, free);
2663 gimple_register_cfg_hooks ();
2667 /* Create a new data_in object for FILE_DATA. STRINGS is the string
2668 table to use with LEN strings. RESOLUTIONS is the vector of linker
2669 resolutions (NULL if not using a linker plugin). */
2671 struct data_in *
2672 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
2673 unsigned len,
2674 VEC(ld_plugin_symbol_resolution_t,heap) *resolutions)
2676 struct data_in *data_in = XCNEW (struct data_in);
2677 data_in->file_data = file_data;
2678 data_in->strings = strings;
2679 data_in->strings_len = len;
2680 data_in->globals_resolution = resolutions;
2681 data_in->reader_cache = lto_streamer_cache_create ();
2683 return data_in;
2687 /* Remove DATA_IN. */
2689 void
2690 lto_data_in_delete (struct data_in *data_in)
2692 VEC_free (ld_plugin_symbol_resolution_t, heap, data_in->globals_resolution);
2693 lto_streamer_cache_delete (data_in->reader_cache);
2694 free (data_in->labels);
2695 free (data_in);