* lto-symtab.c (lto_symtab_entry_def) Add vnode.
[gcc.git] / gcc / lto-streamer-in.c
1 /* Read the GIMPLE representation from a file stream.
2
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>
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
13
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "toplev.h"
28 #include "tree.h"
29 #include "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"
51
52 /* Data structure used to hash file names in the source_location field. */
53 struct string_slot
54 {
55 const char *s;
56 unsigned int slot_num;
57 };
58
59 /* The table to hold the file names. */
60 static htab_t file_name_hash_table;
61
62
63 /* Check that tag ACTUAL has one of the given values. NUM_TAGS is the
64 number of valid tag values to check. */
65
66 static void
67 lto_tag_check_set (enum LTO_tags actual, int ntags, ...)
68 {
69 va_list ap;
70 int i;
71
72 va_start (ap, ntags);
73 for (i = 0; i < ntags; i++)
74 if ((unsigned) actual == va_arg (ap, unsigned))
75 {
76 va_end (ap);
77 return;
78 }
79
80 va_end (ap);
81 internal_error ("bytecode stream: unexpected tag %s", lto_tag_name (actual));
82 }
83
84
85 /* Check that tag ACTUAL is in the range [TAG1, TAG2]. */
86
87 static void
88 lto_tag_check_range (enum LTO_tags actual, enum LTO_tags tag1,
89 enum LTO_tags tag2)
90 {
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));
97 }
98
99
100 /* Check that tag ACTUAL == EXPECTED. */
101
102 static void
103 lto_tag_check (enum LTO_tags actual, enum LTO_tags expected)
104 {
105 if (actual != expected)
106 internal_error ("bytecode stream: expected tag %s instead of %s",
107 lto_tag_name (expected), lto_tag_name (actual));
108 }
109
110
111 /* Return a hash code for P. */
112
113 static hashval_t
114 hash_string_slot_node (const void *p)
115 {
116 const struct string_slot *ds = (const struct string_slot *) p;
117 return (hashval_t) htab_hash_string (ds->s);
118 }
119
120
121 /* Returns nonzero if P1 and P2 are equal. */
122
123 static int
124 eq_string_slot_node (const void *p1, const void *p2)
125 {
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;
129 }
130
131
132 /* Read a string from the string table in DATA_IN using input block
133 IB. Write the length to RLEN. */
134
135 static const char *
136 input_string_internal (struct data_in *data_in, struct lto_input_block *ib,
137 unsigned int *rlen)
138 {
139 struct lto_input_block str_tab;
140 unsigned int len;
141 unsigned int loc;
142 const char *result;
143
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;
148
149 if (str_tab.p + len > data_in->strings_len)
150 internal_error ("bytecode stream: string too long for the string table");
151
152 result = (const char *)(data_in->strings + str_tab.p);
153
154 return result;
155 }
156
157
158 /* Read a STRING_CST from the string table in DATA_IN using input
159 block IB. */
160
161 static tree
162 input_string_cst (struct data_in *data_in, struct lto_input_block *ib)
163 {
164 unsigned int len;
165 const char * ptr;
166 unsigned int is_null;
167
168 is_null = lto_input_uleb128 (ib);
169 if (is_null)
170 return NULL;
171
172 ptr = input_string_internal (data_in, ib, &len);
173 return build_string (len, ptr);
174 }
175
176
177 /* Read an IDENTIFIER from the string table in DATA_IN using input
178 block IB. */
179
180 static tree
181 input_identifier (struct data_in *data_in, struct lto_input_block *ib)
182 {
183 unsigned int len;
184 const char *ptr;
185 unsigned int is_null;
186
187 is_null = lto_input_uleb128 (ib);
188 if (is_null)
189 return NULL;
190
191 ptr = input_string_internal (data_in, ib, &len);
192 return get_identifier_with_length (ptr, len);
193 }
194
195 /* Read a NULL terminated string from the string table in DATA_IN. */
196
197 static const char *
198 input_string (struct data_in *data_in, struct lto_input_block *ib)
199 {
200 unsigned int len;
201 const char *ptr;
202 unsigned int is_null;
203
204 is_null = lto_input_uleb128 (ib);
205 if (is_null)
206 return NULL;
207
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");
211
212 return ptr;
213 }
214
215
216 /* Return the next tag in the input block IB. */
217
218 static enum LTO_tags
219 input_record_start (struct lto_input_block *ib)
220 {
221 enum LTO_tags tag = (enum LTO_tags) lto_input_uleb128 (ib);
222 return tag;
223 }
224
225
226 /* Lookup STRING in file_name_hash_table. If found, return the existing
227 string, otherwise insert STRING as the canonical version. */
228
229 static const char *
230 canon_file_name (const char *string)
231 {
232 void **slot;
233 struct string_slot s_slot;
234 s_slot.s = string;
235
236 slot = htab_find_slot (file_name_hash_table, &s_slot, INSERT);
237 if (*slot == NULL)
238 {
239 size_t len;
240 char *saved_string;
241 struct string_slot *new_slot;
242
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;
250 }
251 else
252 {
253 struct string_slot *old_slot = (struct string_slot *) *slot;
254 return old_slot->s;
255 }
256 }
257
258
259 /* Clear the line info stored in DATA_IN. */
260
261 static void
262 clear_line_info (struct data_in *data_in)
263 {
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;
269 }
270
271
272 /* Read a location from input block IB. */
273
274 static location_t
275 lto_input_location (struct lto_input_block *ib, struct data_in *data_in)
276 {
277 expanded_location xloc;
278
279 xloc.file = input_string (data_in, ib);
280 if (xloc.file == NULL)
281 return UNKNOWN_LOCATION;
282
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);
287
288 if (data_in->current_file != xloc.file)
289 {
290 if (data_in->current_file)
291 linemap_add (line_table, LC_LEAVE, false, NULL, 0);
292
293 linemap_add (line_table, LC_ENTER, xloc.sysp, xloc.file, xloc.line);
294 }
295 else if (data_in->current_line != xloc.line)
296 linemap_line_start (line_table, xloc.line, xloc.column);
297
298 data_in->current_file = xloc.file;
299 data_in->current_line = xloc.line;
300 data_in->current_col = xloc.column;
301
302 return linemap_position_for_column (line_table, xloc.column);
303 }
304
305
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. */
312
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)
316 {
317 unsigned HOST_WIDE_INT ix_u;
318 tree result = NULL_TREE;
319
320 lto_tag_check_range (tag, LTO_field_decl_ref, LTO_global_decl_ref);
321
322 switch (tag)
323 {
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;
328
329 case LTO_ssa_name_ref:
330 ix_u = lto_input_uleb128 (ib);
331 result = VEC_index (tree, SSANAMES (fn), ix_u);
332 break;
333
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;
338
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;
343
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;
348
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;
353
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 break;
362
363 default:
364 gcc_unreachable ();
365 }
366
367 gcc_assert (result);
368
369 return result;
370 }
371
372
373 /* Read and return a double-linked list of catch handlers from input
374 block IB, using descriptors in DATA_IN. */
375
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)
379 {
380 eh_catch first;
381 enum LTO_tags tag;
382
383 *last_p = first = NULL;
384 tag = input_record_start (ib);
385 while (tag)
386 {
387 tree list;
388 eh_catch n;
389
390 lto_tag_check_range (tag, LTO_eh_catch, LTO_eh_catch);
391
392 /* Read the catch node. */
393 n = GGC_CNEW (struct 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);
397
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));
401
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;
407
408 /* Set the head of the list the first time through the loop. */
409 if (first == NULL)
410 first = n;
411
412 tag = input_record_start (ib);
413 }
414
415 return first;
416 }
417
418
419 /* Read and return EH region IX from input block IB, using descriptors
420 in DATA_IN. */
421
422 static eh_region
423 input_eh_region (struct lto_input_block *ib, struct data_in *data_in, int ix)
424 {
425 enum LTO_tags tag;
426 eh_region r;
427
428 /* Read the region header. */
429 tag = input_record_start (ib);
430 if (tag == LTO_null)
431 return NULL;
432
433 r = GGC_CNEW (struct eh_region_d);
434 r->index = lto_input_sleb128 (ib);
435
436 gcc_assert (r->index == ix);
437
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);
443
444 switch (tag)
445 {
446 case LTO_ert_cleanup:
447 r->type = ERT_CLEANUP;
448 break;
449
450 case LTO_ert_try:
451 {
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;
458 }
459
460 case LTO_ert_allowed_exceptions:
461 {
462 tree l;
463
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);
468
469 for (l = r->u.allowed.type_list; l ; l = TREE_CHAIN (l))
470 add_type_for_runtime (TREE_VALUE (l));
471 }
472 break;
473
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;
479
480 default:
481 gcc_unreachable ();
482 }
483
484 r->landing_pads = (eh_landing_pad) (intptr_t) lto_input_sleb128 (ib);
485
486 return r;
487 }
488
489
490 /* Read and return EH landing pad IX from input block IB, using descriptors
491 in DATA_IN. */
492
493 static eh_landing_pad
494 input_eh_lp (struct lto_input_block *ib, struct data_in *data_in, int ix)
495 {
496 enum LTO_tags tag;
497 eh_landing_pad lp;
498
499 /* Read the landing pad header. */
500 tag = input_record_start (ib);
501 if (tag == LTO_null)
502 return NULL;
503
504 lto_tag_check_range (tag, LTO_eh_landing_pad, LTO_eh_landing_pad);
505
506 lp = GGC_CNEW (struct 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);
512
513 return lp;
514 }
515
516
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. */
521
522 static void
523 fixup_eh_region_pointers (struct function *fn, HOST_WIDE_INT root_region)
524 {
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;
530
531 gcc_assert (eh_array && lp_array);
532
533 gcc_assert (root_region >= 0);
534 fn->eh->region_tree = VEC_index (eh_region, eh_array, root_region);
535
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))
540
541 /* Convert all the index numbers stored in pointer fields into
542 pointers to the corresponding slots in the EH region array. */
543 for (i = 0; VEC_iterate (eh_region, eh_array, i, r); i++)
544 {
545 /* The array may contain NULL regions. */
546 if (r == NULL)
547 continue;
548
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);
554 }
555
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 (i = 0; VEC_iterate (eh_landing_pad, lp_array, i, lp); i++)
559 {
560 /* The array may contain NULL landing pads. */
561 if (lp == NULL)
562 continue;
563
564 gcc_assert (i == (unsigned) lp->index);
565 FIXUP_EH_LP (lp->next_lp);
566 FIXUP_EH_REGION (lp->region);
567 }
568
569 #undef FIXUP_EH_REGION
570 #undef FIXUP_EH_LP
571 }
572
573
574 /* Initialize EH support. */
575
576 static void
577 lto_init_eh (void)
578 {
579 static bool eh_initialized_p = false;
580
581 if (eh_initialized_p)
582 return;
583
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 ();
591
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
599
600 eh_initialized_p = true;
601 }
602
603
604 /* Read the exception table for FN from IB using the data descriptors
605 in DATA_IN. */
606
607 static void
608 input_eh_regions (struct lto_input_block *ib, struct data_in *data_in,
609 struct function *fn)
610 {
611 HOST_WIDE_INT i, root_region, len;
612 enum LTO_tags tag;
613
614 tag = input_record_start (ib);
615 if (tag == LTO_null)
616 return;
617
618 lto_tag_check_range (tag, LTO_eh_table, LTO_eh_table);
619
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 ();
624
625 gcc_assert (fn->eh);
626
627 root_region = lto_input_sleb128 (ib);
628 gcc_assert (root_region == (int) root_region);
629
630 /* Read the EH region array. */
631 len = lto_input_sleb128 (ib);
632 gcc_assert (len == (int) len);
633 if (len > 0)
634 {
635 VEC_safe_grow (eh_region, gc, fn->eh->region_array, len);
636 for (i = 0; i < len; i++)
637 {
638 eh_region r = input_eh_region (ib, data_in, i);
639 VEC_replace (eh_region, fn->eh->region_array, i, r);
640 }
641 }
642
643 /* Read the landing pads. */
644 len = lto_input_sleb128 (ib);
645 gcc_assert (len == (int) len);
646 if (len > 0)
647 {
648 VEC_safe_grow (eh_landing_pad, gc, fn->eh->lp_array, len);
649 for (i = 0; i < len; i++)
650 {
651 eh_landing_pad lp = input_eh_lp (ib, data_in, i);
652 VEC_replace (eh_landing_pad, fn->eh->lp_array, i, lp);
653 }
654 }
655
656 /* Read the runtime type data. */
657 len = lto_input_sleb128 (ib);
658 gcc_assert (len == (int) len);
659 if (len > 0)
660 {
661 VEC_safe_grow (tree, gc, fn->eh->ttype_data, len);
662 for (i = 0; i < len; i++)
663 {
664 tree ttype = lto_input_tree (ib, data_in);
665 VEC_replace (tree, fn->eh->ttype_data, i, ttype);
666 }
667 }
668
669 /* Read the table of action chains. */
670 len = lto_input_sleb128 (ib);
671 gcc_assert (len == (int) len);
672 if (len > 0)
673 {
674 if (targetm.arm_eabi_unwinder)
675 {
676 VEC_safe_grow (tree, gc, fn->eh->ehspec_data.arm_eabi, len);
677 for (i = 0; i < len; i++)
678 {
679 tree t = lto_input_tree (ib, data_in);
680 VEC_replace (tree, fn->eh->ehspec_data.arm_eabi, i, t);
681 }
682 }
683 else
684 {
685 VEC_safe_grow (uchar, gc, fn->eh->ehspec_data.other, len);
686 for (i = 0; i < len; i++)
687 {
688 uchar c = lto_input_1_unsigned (ib);
689 VEC_replace (uchar, fn->eh->ehspec_data.other, i, c);
690 }
691 }
692 }
693
694 /* Reconstruct the EH region tree by fixing up the peer/children
695 pointers. */
696 fixup_eh_region_pointers (fn, root_region);
697
698 tag = input_record_start (ib);
699 lto_tag_check_range (tag, LTO_null, LTO_null);
700 }
701
702
703 /* Make a new basic block with index INDEX in function FN. */
704
705 static basic_block
706 make_new_block (struct function *fn, unsigned int index)
707 {
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;
716 }
717
718
719 /* Read the CFG for function FN from input block IB. */
720
721 static void
722 input_cfg (struct lto_input_block *ib, struct function *fn)
723 {
724 unsigned int bb_count;
725 basic_block p_bb;
726 unsigned int i;
727 int index;
728
729 init_empty_tree_cfg_for_function (fn);
730 init_ssa_operands ();
731
732 profile_status_for_function (fn) =
733 (enum profile_status_d) lto_input_uleb128 (ib);
734
735 bb_count = lto_input_uleb128 (ib);
736
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);
741
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);
745
746 index = lto_input_sleb128 (ib);
747 while (index != -1)
748 {
749 basic_block bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
750 unsigned int edge_count;
751
752 if (bb == NULL)
753 bb = make_new_block (fn, index);
754
755 edge_count = lto_input_uleb128 (ib);
756
757 /* Connect up the CFG. */
758 for (i = 0; i < edge_count; i++)
759 {
760 unsigned int dest_index;
761 unsigned int edge_flags;
762 basic_block dest;
763 int probability;
764 gcov_type count;
765 edge e;
766
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);
771
772 dest = BASIC_BLOCK_FOR_FUNCTION (fn, dest_index);
773
774 if (dest == NULL)
775 dest = make_new_block (fn, dest_index);
776
777 e = make_edge (bb, dest, edge_flags);
778 e->probability = probability;
779 e->count = count;
780 }
781
782 index = lto_input_sleb128 (ib);
783 }
784
785 p_bb = ENTRY_BLOCK_PTR_FOR_FUNCTION(fn);
786 index = lto_input_sleb128 (ib);
787 while (index != -1)
788 {
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);
794 }
795 }
796
797
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. */
800
801 static gimple
802 input_phi (struct lto_input_block *ib, basic_block bb, struct data_in *data_in,
803 struct function *fn)
804 {
805 unsigned HOST_WIDE_INT ix;
806 tree phi_result;
807 int i, len;
808 gimple result;
809
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;
815
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++)
820 {
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);
825
826 edge e = NULL;
827 int j;
828
829 for (j = 0; j < len; j++)
830 if (EDGE_PRED (bb, j)->src == sbb)
831 {
832 e = EDGE_PRED (bb, j);
833 break;
834 }
835
836 add_phi_arg (result, def, e, arg_loc);
837 }
838
839 return result;
840 }
841
842
843 /* Read the SSA names array for function FN from DATA_IN using input
844 block IB. */
845
846 static void
847 input_ssa_names (struct lto_input_block *ib, struct data_in *data_in,
848 struct function *fn)
849 {
850 unsigned int i, size;
851
852 size = lto_input_uleb128 (ib);
853 init_ssanames (fn, size);
854
855 i = lto_input_uleb128 (ib);
856 while (i)
857 {
858 tree ssa_name, name;
859 bool is_default_def;
860
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);
864
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 ());
868
869 if (is_default_def)
870 set_default_def (SSA_NAME_VAR (ssa_name), ssa_name);
871
872 i = lto_input_uleb128 (ib);
873 }
874 }
875
876
877 /* Fixup the reference tree OP for replaced VAR_DECLs with mismatched
878 types. */
879
880 static void
881 maybe_fixup_handled_component (tree op)
882 {
883 tree decl_type;
884 tree wanted_type;
885
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;
890
891 decl_type = TREE_TYPE (TREE_OPERAND (op, 0));
892
893 switch (TREE_CODE (op))
894 {
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;
899
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;
910
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;
921
922 case BIT_FIELD_REF:
923 case VIEW_CONVERT_EXPR:
924 /* Very nice - nothing to do. */
925 return;
926
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;
936
937 default:
938 gcc_unreachable ();
939 }
940
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));
944 }
945
946 /* Fixup reference tree operands for substituted prevailing decls
947 with mismatched types in STMT. This handles plain DECLs where
948 we need the stmt for context to lookup the required type. */
949
950 static void
951 maybe_fixup_decls (gimple stmt)
952 {
953 /* We have to fixup replaced decls here in case there were
954 inter-TU type mismatches. Catch the most common cases
955 for now - this way we'll get testcases for the rest as
956 the type verifier will complain. */
957 if (gimple_assign_single_p (stmt))
958 {
959 tree lhs = gimple_assign_lhs (stmt);
960 tree rhs = gimple_assign_rhs1 (stmt);
961
962 /* First catch loads and aggregate copies by adjusting the rhs. */
963 if (TREE_CODE (rhs) == VAR_DECL)
964 {
965 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
966 gimple_assign_set_rhs1 (stmt, build1 (VIEW_CONVERT_EXPR,
967 TREE_TYPE (lhs), rhs));
968 }
969 /* Then catch scalar stores. */
970 else if (TREE_CODE (lhs) == VAR_DECL)
971 {
972 if (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (rhs)))
973 gimple_assign_set_lhs (stmt, build1 (VIEW_CONVERT_EXPR,
974 TREE_TYPE (rhs), lhs));
975 }
976 }
977 else if (is_gimple_call (stmt))
978 {
979 tree lhs = gimple_call_lhs (stmt);
980
981 if (lhs && TREE_CODE (lhs) == VAR_DECL)
982 {
983 if (!useless_type_conversion_p (TREE_TYPE (lhs),
984 gimple_call_return_type (stmt)))
985 gimple_call_set_lhs (stmt, build1 (VIEW_CONVERT_EXPR,
986 gimple_call_return_type (stmt),
987 lhs));
988 }
989
990 /* Arguments, especially for varargs functions will be funny... */
991 }
992 }
993
994 /* Read a statement with tag TAG in function FN from block IB using
995 descriptors in DATA_IN. */
996
997 static gimple
998 input_gimple_stmt (struct lto_input_block *ib, struct data_in *data_in,
999 struct function *fn, enum LTO_tags tag)
1000 {
1001 gimple stmt;
1002 enum gimple_code code;
1003 unsigned HOST_WIDE_INT num_ops;
1004 size_t i;
1005 struct bitpack_d *bp;
1006
1007 code = lto_tag_to_gimple_code (tag);
1008
1009 /* Read the tuple header. */
1010 bp = lto_input_bitpack (ib);
1011 num_ops = bp_unpack_value (bp, sizeof (unsigned) * 8);
1012 stmt = gimple_alloc (code, num_ops);
1013 stmt->gsbase.no_warning = bp_unpack_value (bp, 1);
1014 if (is_gimple_assign (stmt))
1015 stmt->gsbase.nontemporal_move = bp_unpack_value (bp, 1);
1016 stmt->gsbase.has_volatile_ops = bp_unpack_value (bp, 1);
1017 stmt->gsbase.subcode = bp_unpack_value (bp, 16);
1018 bitpack_delete (bp);
1019
1020 /* Read location information. */
1021 gimple_set_location (stmt, lto_input_location (ib, data_in));
1022
1023 /* Read lexical block reference. */
1024 gimple_set_block (stmt, lto_input_tree (ib, data_in));
1025
1026 /* Read in all the operands. */
1027 switch (code)
1028 {
1029 case GIMPLE_RESX:
1030 gimple_resx_set_region (stmt, lto_input_sleb128 (ib));
1031 break;
1032
1033 case GIMPLE_EH_MUST_NOT_THROW:
1034 gimple_eh_must_not_throw_set_fndecl (stmt, lto_input_tree (ib, data_in));
1035 break;
1036
1037 case GIMPLE_EH_DISPATCH:
1038 gimple_eh_dispatch_set_region (stmt, lto_input_sleb128 (ib));
1039 break;
1040
1041 case GIMPLE_ASM:
1042 {
1043 /* FIXME lto. Move most of this into a new gimple_asm_set_string(). */
1044 tree str;
1045 stmt->gimple_asm.ni = lto_input_uleb128 (ib);
1046 stmt->gimple_asm.no = lto_input_uleb128 (ib);
1047 stmt->gimple_asm.nc = lto_input_uleb128 (ib);
1048 str = input_string_cst (data_in, ib);
1049 stmt->gimple_asm.string = TREE_STRING_POINTER (str);
1050 }
1051 /* Fallthru */
1052
1053 case GIMPLE_ASSIGN:
1054 case GIMPLE_CALL:
1055 case GIMPLE_RETURN:
1056 case GIMPLE_SWITCH:
1057 case GIMPLE_LABEL:
1058 case GIMPLE_COND:
1059 case GIMPLE_GOTO:
1060 case GIMPLE_DEBUG:
1061 for (i = 0; i < num_ops; i++)
1062 {
1063 tree op = lto_input_tree (ib, data_in);
1064 gimple_set_op (stmt, i, op);
1065 if (!op)
1066 continue;
1067
1068 /* Fixup reference tree operands for substituted prevailing decls
1069 with mismatched types. For plain VAR_DECLs we need to look
1070 at context to determine the wanted type - we do that below
1071 after the stmt is completed. */
1072 if (TREE_CODE (op) == ADDR_EXPR
1073 && TREE_CODE (TREE_OPERAND (op, 0)) == VAR_DECL
1074 && !useless_type_conversion_p (TREE_TYPE (TREE_TYPE (op)),
1075 TREE_TYPE (op)))
1076 {
1077 TREE_OPERAND (op, 0)
1078 = build1 (VIEW_CONVERT_EXPR, TREE_TYPE (TREE_TYPE (op)),
1079 TREE_OPERAND (op, 0));
1080 continue;
1081 }
1082
1083 /* Fixup FIELD_DECLs in COMPONENT_REFs, they are not handled
1084 by decl merging. */
1085 if (TREE_CODE (op) == ADDR_EXPR)
1086 op = TREE_OPERAND (op, 0);
1087 while (handled_component_p (op))
1088 {
1089 if (TREE_CODE (op) == COMPONENT_REF)
1090 {
1091 tree field, type, tem;
1092 field = TREE_OPERAND (op, 1);
1093 type = DECL_CONTEXT (field);
1094 for (tem = TYPE_FIELDS (type); tem; tem = TREE_CHAIN (tem))
1095 {
1096 if (tem == field
1097 || (TREE_TYPE (tem) == TREE_TYPE (field)
1098 && compare_field_offset (tem, field)))
1099 break;
1100 }
1101 /* In case of type mismatches across units we can fail
1102 to unify some types and thus not find a proper
1103 field-decl here. So only assert here if checking
1104 is enabled. */
1105 #ifdef ENABLE_CHECKING
1106 gcc_assert (tem != NULL_TREE);
1107 #endif
1108 if (tem != NULL_TREE)
1109 TREE_OPERAND (op, 1) = tem;
1110 }
1111
1112 /* Preserve the last handled component for the fixup of
1113 its operand below. */
1114 if (!handled_component_p (TREE_OPERAND (op, 0)))
1115 break;
1116 op = TREE_OPERAND (op, 0);
1117 }
1118
1119 /* Fixup reference tree operands for substituted prevailing decls
1120 with mismatched types. */
1121 if (handled_component_p (op))
1122 maybe_fixup_handled_component (op);
1123 }
1124 break;
1125
1126 case GIMPLE_NOP:
1127 case GIMPLE_PREDICT:
1128 break;
1129
1130 default:
1131 internal_error ("bytecode stream: unknown GIMPLE statement tag %s",
1132 lto_tag_name (tag));
1133 }
1134
1135 /* Update the properties of symbols, SSA names and labels associated
1136 with STMT. */
1137 if (code == GIMPLE_ASSIGN || code == GIMPLE_CALL)
1138 {
1139 tree lhs = gimple_get_lhs (stmt);
1140 if (lhs && TREE_CODE (lhs) == SSA_NAME)
1141 SSA_NAME_DEF_STMT (lhs) = stmt;
1142 }
1143 else if (code == GIMPLE_LABEL)
1144 gcc_assert (emit_label_in_global_context_p (gimple_label_label (stmt))
1145 || DECL_CONTEXT (gimple_label_label (stmt)) == fn->decl);
1146 else if (code == GIMPLE_ASM)
1147 {
1148 unsigned i;
1149
1150 for (i = 0; i < gimple_asm_noutputs (stmt); i++)
1151 {
1152 tree op = TREE_VALUE (gimple_asm_output_op (stmt, i));
1153 if (TREE_CODE (op) == SSA_NAME)
1154 SSA_NAME_DEF_STMT (op) = stmt;
1155 }
1156 }
1157
1158 /* Reset alias information. */
1159 if (code == GIMPLE_CALL)
1160 gimple_call_reset_alias_info (stmt);
1161
1162 /* Fixup reference tree operands for substituted prevailing decls
1163 with mismatched types. */
1164 maybe_fixup_decls (stmt);
1165
1166 /* Mark the statement modified so its operand vectors can be filled in. */
1167 gimple_set_modified (stmt, true);
1168
1169 return stmt;
1170 }
1171
1172
1173 /* Read a basic block with tag TAG from DATA_IN using input block IB.
1174 FN is the function being processed. */
1175
1176 static void
1177 input_bb (struct lto_input_block *ib, enum LTO_tags tag,
1178 struct data_in *data_in, struct function *fn)
1179 {
1180 unsigned int index;
1181 basic_block bb;
1182 gimple_stmt_iterator bsi;
1183
1184 /* This routine assumes that CFUN is set to FN, as it needs to call
1185 basic GIMPLE routines that use CFUN. */
1186 gcc_assert (cfun == fn);
1187
1188 index = lto_input_uleb128 (ib);
1189 bb = BASIC_BLOCK_FOR_FUNCTION (fn, index);
1190
1191 bb->count = lto_input_sleb128 (ib);
1192 bb->loop_depth = lto_input_sleb128 (ib);
1193 bb->frequency = lto_input_sleb128 (ib);
1194 bb->flags = lto_input_sleb128 (ib);
1195
1196 /* LTO_bb1 has statements. LTO_bb0 does not. */
1197 if (tag == LTO_bb0)
1198 return;
1199
1200 bsi = gsi_start_bb (bb);
1201 tag = input_record_start (ib);
1202 while (tag)
1203 {
1204 gimple stmt = input_gimple_stmt (ib, data_in, fn, tag);
1205
1206 /* Change debug stmts to nops on-the-fly if we do not have VTA enabled.
1207 This allows us to build for example static libs with debugging
1208 enabled and do the final link without. */
1209 if (!MAY_HAVE_DEBUG_STMTS
1210 && is_gimple_debug (stmt))
1211 stmt = gimple_build_nop ();
1212
1213 find_referenced_vars_in (stmt);
1214 gsi_insert_after (&bsi, stmt, GSI_NEW_STMT);
1215
1216 /* After the statement, expect a 0 delimiter or the EH region
1217 that the previous statement belongs to. */
1218 tag = input_record_start (ib);
1219 lto_tag_check_set (tag, 2, LTO_eh_region, LTO_null);
1220
1221 if (tag == LTO_eh_region)
1222 {
1223 HOST_WIDE_INT region = lto_input_sleb128 (ib);
1224 gcc_assert (region == (int) region);
1225 add_stmt_to_eh_lp (stmt, region);
1226 }
1227
1228 tag = input_record_start (ib);
1229 }
1230
1231 tag = input_record_start (ib);
1232 while (tag)
1233 {
1234 gimple phi = input_phi (ib, bb, data_in, fn);
1235 find_referenced_vars_in (phi);
1236 tag = input_record_start (ib);
1237 }
1238 }
1239
1240 /* Go through all NODE edges and fixup call_stmt pointers
1241 so they point to STMTS. */
1242
1243 static void
1244 fixup_call_stmt_edges_1 (struct cgraph_node *node, gimple *stmts)
1245 {
1246 struct cgraph_edge *cedge;
1247 for (cedge = node->callees; cedge; cedge = cedge->next_callee)
1248 cedge->call_stmt = stmts[cedge->lto_stmt_uid];
1249 for (cedge = node->indirect_calls; cedge; cedge = cedge->next_callee)
1250 cedge->call_stmt = stmts[cedge->lto_stmt_uid];
1251 }
1252
1253 /* Fixup call_stmt pointers in NODE and all clones. */
1254
1255 static void
1256 fixup_call_stmt_edges (struct cgraph_node *orig, gimple *stmts)
1257 {
1258 struct cgraph_node *node;
1259
1260 while (orig->clone_of)
1261 orig = orig->clone_of;
1262
1263 fixup_call_stmt_edges_1 (orig, stmts);
1264 if (orig->clones)
1265 for (node = orig->clones; node != orig;)
1266 {
1267 fixup_call_stmt_edges_1 (node, stmts);
1268 if (node->clones)
1269 node = node->clones;
1270 else if (node->next_sibling_clone)
1271 node = node->next_sibling_clone;
1272 else
1273 {
1274 while (node != orig && !node->next_sibling_clone)
1275 node = node->clone_of;
1276 if (node != orig)
1277 node = node->next_sibling_clone;
1278 }
1279 }
1280 }
1281
1282 /* Read the body of function FN_DECL from DATA_IN using input block IB. */
1283
1284 static void
1285 input_function (tree fn_decl, struct data_in *data_in,
1286 struct lto_input_block *ib)
1287 {
1288 struct function *fn;
1289 enum LTO_tags tag;
1290 gimple *stmts;
1291 basic_block bb;
1292 struct bitpack_d *bp;
1293 struct cgraph_node *node;
1294 tree args, narg, oarg;
1295
1296 fn = DECL_STRUCT_FUNCTION (fn_decl);
1297 tag = input_record_start (ib);
1298 clear_line_info (data_in);
1299
1300 gimple_register_cfg_hooks ();
1301 lto_tag_check (tag, LTO_function);
1302
1303 /* Read all the attributes for FN. */
1304 bp = lto_input_bitpack (ib);
1305 fn->is_thunk = bp_unpack_value (bp, 1);
1306 fn->has_local_explicit_reg_vars = bp_unpack_value (bp, 1);
1307 fn->after_tree_profile = bp_unpack_value (bp, 1);
1308 fn->returns_pcc_struct = bp_unpack_value (bp, 1);
1309 fn->returns_struct = bp_unpack_value (bp, 1);
1310 fn->always_inline_functions_inlined = bp_unpack_value (bp, 1);
1311 fn->after_inlining = bp_unpack_value (bp, 1);
1312 fn->dont_save_pending_sizes_p = bp_unpack_value (bp, 1);
1313 fn->stdarg = bp_unpack_value (bp, 1);
1314 fn->has_nonlocal_label = bp_unpack_value (bp, 1);
1315 fn->calls_alloca = bp_unpack_value (bp, 1);
1316 fn->calls_setjmp = bp_unpack_value (bp, 1);
1317 fn->va_list_fpr_size = bp_unpack_value (bp, 8);
1318 fn->va_list_gpr_size = bp_unpack_value (bp, 8);
1319 bitpack_delete (bp);
1320
1321 /* Input the current IL state of the function. */
1322 fn->curr_properties = lto_input_uleb128 (ib);
1323
1324 /* Read the static chain and non-local goto save area. */
1325 fn->static_chain_decl = lto_input_tree (ib, data_in);
1326 fn->nonlocal_goto_save_area = lto_input_tree (ib, data_in);
1327
1328 /* Read all the local symbols. */
1329 fn->local_decls = lto_input_tree (ib, data_in);
1330
1331 /* Read all function arguments. We need to re-map them here to the
1332 arguments of the merged function declaration. */
1333 args = lto_input_tree (ib, data_in);
1334 for (oarg = args, narg = DECL_ARGUMENTS (fn_decl);
1335 oarg && narg;
1336 oarg = TREE_CHAIN (oarg), narg = TREE_CHAIN (narg))
1337 {
1338 int ix;
1339 bool res;
1340 res = lto_streamer_cache_lookup (data_in->reader_cache, oarg, &ix);
1341 gcc_assert (res);
1342 /* Replace the argument in the streamer cache. */
1343 lto_streamer_cache_insert_at (data_in->reader_cache, narg, ix);
1344 }
1345 gcc_assert (!oarg && !narg);
1346
1347 /* Read all the SSA names. */
1348 input_ssa_names (ib, data_in, fn);
1349
1350 /* Read the exception handling regions in the function. */
1351 input_eh_regions (ib, data_in, fn);
1352
1353 /* Read the tree of lexical scopes for the function. */
1354 DECL_INITIAL (fn_decl) = lto_input_tree (ib, data_in);
1355 gcc_assert (DECL_INITIAL (fn_decl));
1356 DECL_SAVED_TREE (fn_decl) = NULL_TREE;
1357
1358 /* Read all the basic blocks. */
1359 tag = input_record_start (ib);
1360 while (tag)
1361 {
1362 input_bb (ib, tag, data_in, fn);
1363 tag = input_record_start (ib);
1364 }
1365
1366 /* Fix up the call statements that are mentioned in the callgraph
1367 edges. */
1368 renumber_gimple_stmt_uids ();
1369 stmts = (gimple *) xcalloc (gimple_stmt_max_uid (fn), sizeof (gimple));
1370 FOR_ALL_BB (bb)
1371 {
1372 gimple_stmt_iterator bsi;
1373 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
1374 {
1375 gimple stmt = gsi_stmt (bsi);
1376 stmts[gimple_uid (stmt)] = stmt;
1377 }
1378 }
1379
1380 /* Set the gimple body to the statement sequence in the entry
1381 basic block. FIXME lto, this is fairly hacky. The existence
1382 of a gimple body is used by the cgraph routines, but we should
1383 really use the presence of the CFG. */
1384 {
1385 edge_iterator ei = ei_start (ENTRY_BLOCK_PTR->succs);
1386 gimple_set_body (fn_decl, bb_seq (ei_edge (ei)->dest));
1387 }
1388
1389 node = cgraph_node (fn_decl);
1390 fixup_call_stmt_edges (node, stmts);
1391 execute_all_ipa_stmt_fixups (node, stmts);
1392
1393 update_ssa (TODO_update_ssa_only_virtuals);
1394 free_dominance_info (CDI_DOMINATORS);
1395 free_dominance_info (CDI_POST_DOMINATORS);
1396 free (stmts);
1397 }
1398
1399
1400 /* Read initializer expressions for public statics. DATA_IN is the
1401 file being read. IB is the input block used for reading. */
1402
1403 static void
1404 input_alias_pairs (struct lto_input_block *ib, struct data_in *data_in)
1405 {
1406 tree var;
1407
1408 clear_line_info (data_in);
1409
1410 /* Skip over all the unreferenced globals. */
1411 do
1412 var = lto_input_tree (ib, data_in);
1413 while (var);
1414
1415 var = lto_input_tree (ib, data_in);
1416 while (var)
1417 {
1418 const char *orig_name, *new_name;
1419 alias_pair *p;
1420
1421 p = VEC_safe_push (alias_pair, gc, alias_pairs, NULL);
1422 p->decl = var;
1423 p->target = lto_input_tree (ib, data_in);
1424
1425 /* If the target is a static object, we may have registered a
1426 new name for it to avoid clashes between statics coming from
1427 different files. In that case, use the new name. */
1428 orig_name = IDENTIFIER_POINTER (p->target);
1429 new_name = lto_get_decl_name_mapping (data_in->file_data, orig_name);
1430 if (strcmp (orig_name, new_name) != 0)
1431 p->target = get_identifier (new_name);
1432
1433 var = lto_input_tree (ib, data_in);
1434 }
1435 }
1436
1437
1438 /* Read the body from DATA for function FN_DECL and fill it in.
1439 FILE_DATA are the global decls and types. SECTION_TYPE is either
1440 LTO_section_function_body or LTO_section_static_initializer. If
1441 section type is LTO_section_function_body, FN must be the decl for
1442 that function. */
1443
1444 static void
1445 lto_read_body (struct lto_file_decl_data *file_data, tree fn_decl,
1446 const char *data, enum lto_section_type section_type)
1447 {
1448 const struct lto_function_header *header;
1449 struct data_in *data_in;
1450 int32_t cfg_offset;
1451 int32_t main_offset;
1452 int32_t string_offset;
1453 struct lto_input_block ib_cfg;
1454 struct lto_input_block ib_main;
1455
1456 header = (const struct lto_function_header *) data;
1457 cfg_offset = sizeof (struct lto_function_header);
1458 main_offset = cfg_offset + header->cfg_size;
1459 string_offset = main_offset + header->main_size;
1460
1461 LTO_INIT_INPUT_BLOCK (ib_cfg,
1462 data + cfg_offset,
1463 0,
1464 header->cfg_size);
1465
1466 LTO_INIT_INPUT_BLOCK (ib_main,
1467 data + main_offset,
1468 0,
1469 header->main_size);
1470
1471 data_in = lto_data_in_create (file_data, data + string_offset,
1472 header->string_size, NULL);
1473
1474 /* Make sure the file was generated by the exact same compiler. */
1475 lto_check_version (header->lto_header.major_version,
1476 header->lto_header.minor_version);
1477
1478 if (section_type == LTO_section_function_body)
1479 {
1480 struct function *fn = DECL_STRUCT_FUNCTION (fn_decl);
1481 struct lto_in_decl_state *decl_state;
1482
1483 push_cfun (fn);
1484 init_tree_ssa (fn);
1485
1486 /* Use the function's decl state. */
1487 decl_state = lto_get_function_in_decl_state (file_data, fn_decl);
1488 gcc_assert (decl_state);
1489 file_data->current_decl_state = decl_state;
1490
1491 input_cfg (&ib_cfg, fn);
1492
1493 /* Set up the struct function. */
1494 input_function (fn_decl, data_in, &ib_main);
1495
1496 /* We should now be in SSA. */
1497 cfun->gimple_df->in_ssa_p = true;
1498
1499 /* Restore decl state */
1500 file_data->current_decl_state = file_data->global_decl_state;
1501
1502 pop_cfun ();
1503 }
1504 else
1505 {
1506 input_alias_pairs (&ib_main, data_in);
1507 }
1508
1509 clear_line_info (data_in);
1510 lto_data_in_delete (data_in);
1511 }
1512
1513
1514 /* Read the body of FN_DECL using DATA. FILE_DATA holds the global
1515 decls and types. */
1516
1517 void
1518 lto_input_function_body (struct lto_file_decl_data *file_data,
1519 tree fn_decl, const char *data)
1520 {
1521 current_function_decl = fn_decl;
1522 lto_read_body (file_data, fn_decl, data, LTO_section_function_body);
1523 }
1524
1525
1526 /* Read in VAR_DECL using DATA. FILE_DATA holds the global decls and
1527 types. */
1528
1529 void
1530 lto_input_constructors_and_inits (struct lto_file_decl_data *file_data,
1531 const char *data)
1532 {
1533 lto_read_body (file_data, NULL, data, LTO_section_static_initializer);
1534 }
1535
1536
1537 /* Return the resolution for the decl with index INDEX from DATA_IN. */
1538
1539 static enum ld_plugin_symbol_resolution
1540 get_resolution (struct data_in *data_in, unsigned index)
1541 {
1542 if (data_in->globals_resolution)
1543 {
1544 ld_plugin_symbol_resolution_t ret;
1545 /* We can have references to not emitted functions in
1546 DECL_FUNCTION_PERSONALITY at least. So we can and have
1547 to indeed return LDPR_UNKNOWN in some cases. */
1548 if (VEC_length (ld_plugin_symbol_resolution_t,
1549 data_in->globals_resolution) <= index)
1550 return LDPR_UNKNOWN;
1551 ret = VEC_index (ld_plugin_symbol_resolution_t,
1552 data_in->globals_resolution,
1553 index);
1554 return ret;
1555 }
1556 else
1557 /* Delay resolution finding until decl merging. */
1558 return LDPR_UNKNOWN;
1559 }
1560
1561
1562 /* Unpack all the non-pointer fields of the TS_BASE structure of
1563 expression EXPR from bitpack BP. */
1564
1565 static void
1566 unpack_ts_base_value_fields (struct bitpack_d *bp, tree expr)
1567 {
1568 /* Note that the code for EXPR has already been unpacked to create EXPR in
1569 lto_materialize_tree. */
1570 if (!TYPE_P (expr))
1571 {
1572 TREE_SIDE_EFFECTS (expr) = (unsigned) bp_unpack_value (bp, 1);
1573 TREE_CONSTANT (expr) = (unsigned) bp_unpack_value (bp, 1);
1574 TREE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1575
1576 /* TREE_PUBLIC is used on types to indicate that the type
1577 has a TYPE_CACHED_VALUES vector. This is not streamed out,
1578 so we skip it here. */
1579 TREE_PUBLIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1580 }
1581 TREE_ADDRESSABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1582 TREE_THIS_VOLATILE (expr) = (unsigned) bp_unpack_value (bp, 1);
1583 if (DECL_P (expr))
1584 DECL_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1585 else if (TYPE_P (expr))
1586 TYPE_UNSIGNED (expr) = (unsigned) bp_unpack_value (bp, 1);
1587 TREE_ASM_WRITTEN (expr) = (unsigned) bp_unpack_value (bp, 1);
1588 TREE_NO_WARNING (expr) = (unsigned) bp_unpack_value (bp, 1);
1589 TREE_USED (expr) = (unsigned) bp_unpack_value (bp, 1);
1590 TREE_NOTHROW (expr) = (unsigned) bp_unpack_value (bp, 1);
1591 TREE_STATIC (expr) = (unsigned) bp_unpack_value (bp, 1);
1592 TREE_PRIVATE (expr) = (unsigned) bp_unpack_value (bp, 1);
1593 TREE_PROTECTED (expr) = (unsigned) bp_unpack_value (bp, 1);
1594 TREE_DEPRECATED (expr) = (unsigned) bp_unpack_value (bp, 1);
1595 if (TYPE_P (expr))
1596 TYPE_SATURATING (expr) = (unsigned) bp_unpack_value (bp, 1);
1597 if (TREE_CODE (expr) == SSA_NAME)
1598 SSA_NAME_IS_DEFAULT_DEF (expr) = (unsigned) bp_unpack_value (bp, 1);
1599 }
1600
1601
1602 /* Unpack all the non-pointer fields of the TS_REAL_CST structure of
1603 expression EXPR from bitpack BP. */
1604
1605 static void
1606 unpack_ts_real_cst_value_fields (struct bitpack_d *bp, tree expr)
1607 {
1608 unsigned i;
1609 REAL_VALUE_TYPE r;
1610 REAL_VALUE_TYPE *rp;
1611
1612 r.cl = (unsigned) bp_unpack_value (bp, 2);
1613 r.decimal = (unsigned) bp_unpack_value (bp, 1);
1614 r.sign = (unsigned) bp_unpack_value (bp, 1);
1615 r.signalling = (unsigned) bp_unpack_value (bp, 1);
1616 r.canonical = (unsigned) bp_unpack_value (bp, 1);
1617 r.uexp = (unsigned) bp_unpack_value (bp, EXP_BITS);
1618 for (i = 0; i < SIGSZ; i++)
1619 r.sig[i] = (unsigned long) bp_unpack_value (bp, HOST_BITS_PER_LONG);
1620
1621 rp = GGC_NEW (REAL_VALUE_TYPE);
1622 memcpy (rp, &r, sizeof (REAL_VALUE_TYPE));
1623 TREE_REAL_CST_PTR (expr) = rp;
1624 }
1625
1626
1627 /* Unpack all the non-pointer fields of the TS_FIXED_CST structure of
1628 expression EXPR from bitpack BP. */
1629
1630 static void
1631 unpack_ts_fixed_cst_value_fields (struct bitpack_d *bp, tree expr)
1632 {
1633 struct fixed_value fv;
1634
1635 fv.data.low = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1636 fv.data.high = (HOST_WIDE_INT) bp_unpack_value (bp, HOST_BITS_PER_WIDE_INT);
1637 TREE_FIXED_CST (expr) = fv;
1638 }
1639
1640
1641 /* Unpack all the non-pointer fields of the TS_DECL_COMMON structure
1642 of expression EXPR from bitpack BP. */
1643
1644 static void
1645 unpack_ts_decl_common_value_fields (struct bitpack_d *bp, tree expr)
1646 {
1647 DECL_MODE (expr) = (enum machine_mode) bp_unpack_value (bp, 8);
1648 DECL_NONLOCAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1649 DECL_VIRTUAL_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1650 DECL_IGNORED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1651 DECL_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1652 DECL_ARTIFICIAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1653 DECL_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1654 DECL_PRESERVE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1655 DECL_DEBUG_EXPR_IS_FROM (expr) = (unsigned) bp_unpack_value (bp, 1);
1656 DECL_EXTERNAL (expr) = (unsigned) bp_unpack_value (bp, 1);
1657 DECL_GIMPLE_REG_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1658 DECL_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1659
1660 if (TREE_CODE (expr) == LABEL_DECL)
1661 {
1662 DECL_ERROR_ISSUED (expr) = (unsigned) bp_unpack_value (bp, 1);
1663 EH_LANDING_PAD_NR (expr) = (int) bp_unpack_value (bp, HOST_BITS_PER_INT);
1664
1665 /* Always assume an initial value of -1 for LABEL_DECL_UID to
1666 force gimple_set_bb to recreate label_to_block_map. */
1667 LABEL_DECL_UID (expr) = -1;
1668 }
1669
1670 if (TREE_CODE (expr) == FIELD_DECL)
1671 {
1672 unsigned HOST_WIDE_INT off_align;
1673 DECL_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1674 DECL_NONADDRESSABLE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1675 off_align = (unsigned HOST_WIDE_INT) bp_unpack_value (bp, 8);
1676 SET_DECL_OFFSET_ALIGN (expr, off_align);
1677 }
1678
1679 if (TREE_CODE (expr) == RESULT_DECL
1680 || TREE_CODE (expr) == PARM_DECL
1681 || TREE_CODE (expr) == VAR_DECL)
1682 {
1683 DECL_BY_REFERENCE (expr) = (unsigned) bp_unpack_value (bp, 1);
1684 if (TREE_CODE (expr) == VAR_DECL
1685 || TREE_CODE (expr) == PARM_DECL)
1686 DECL_HAS_VALUE_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1687 DECL_RESTRICTED_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1688 }
1689 }
1690
1691
1692 /* Unpack all the non-pointer fields of the TS_DECL_WRTL structure
1693 of expression EXPR from bitpack BP. */
1694
1695 static void
1696 unpack_ts_decl_wrtl_value_fields (struct bitpack_d *bp, tree expr)
1697 {
1698 DECL_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1699 }
1700
1701
1702 /* Unpack all the non-pointer fields of the TS_DECL_WITH_VIS structure
1703 of expression EXPR from bitpack BP. */
1704
1705 static void
1706 unpack_ts_decl_with_vis_value_fields (struct bitpack_d *bp, tree expr)
1707 {
1708 DECL_DEFER_OUTPUT (expr) = (unsigned) bp_unpack_value (bp, 1);
1709 DECL_COMMON (expr) = (unsigned) bp_unpack_value (bp, 1);
1710 DECL_DLLIMPORT_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1711 DECL_WEAK (expr) = (unsigned) bp_unpack_value (bp, 1);
1712 DECL_SEEN_IN_BIND_EXPR_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1713 DECL_COMDAT (expr) = (unsigned) bp_unpack_value (bp, 1);
1714 DECL_VISIBILITY (expr) = (enum symbol_visibility) bp_unpack_value (bp, 2);
1715 DECL_VISIBILITY_SPECIFIED (expr) = (unsigned) bp_unpack_value (bp, 1);
1716
1717 if (TREE_CODE (expr) == VAR_DECL)
1718 {
1719 DECL_HARD_REGISTER (expr) = (unsigned) bp_unpack_value (bp, 1);
1720 DECL_IN_TEXT_SECTION (expr) = (unsigned) bp_unpack_value (bp, 1);
1721 DECL_IN_CONSTANT_POOL (expr) = (unsigned) bp_unpack_value (bp, 1);
1722 DECL_TLS_MODEL (expr) = (enum tls_model) bp_unpack_value (bp, 3);
1723 }
1724
1725 if (VAR_OR_FUNCTION_DECL_P (expr))
1726 {
1727 priority_type p;
1728 p = (priority_type) bp_unpack_value (bp, HOST_BITS_PER_SHORT);
1729 SET_DECL_INIT_PRIORITY (expr, p);
1730 }
1731 }
1732
1733
1734 /* Unpack all the non-pointer fields of the TS_FUNCTION_DECL structure
1735 of expression EXPR from bitpack BP. */
1736
1737 static void
1738 unpack_ts_function_decl_value_fields (struct bitpack_d *bp, tree expr)
1739 {
1740 DECL_FUNCTION_CODE (expr) = (enum built_in_function) bp_unpack_value (bp, 11);
1741 DECL_BUILT_IN_CLASS (expr) = (enum built_in_class) bp_unpack_value (bp, 2);
1742 DECL_STATIC_CONSTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1743 DECL_STATIC_DESTRUCTOR (expr) = (unsigned) bp_unpack_value (bp, 1);
1744 DECL_UNINLINABLE (expr) = (unsigned) bp_unpack_value (bp, 1);
1745 DECL_POSSIBLY_INLINED (expr) = (unsigned) bp_unpack_value (bp, 1);
1746 DECL_IS_NOVOPS (expr) = (unsigned) bp_unpack_value (bp, 1);
1747 DECL_IS_RETURNS_TWICE (expr) = (unsigned) bp_unpack_value (bp, 1);
1748 DECL_IS_MALLOC (expr) = (unsigned) bp_unpack_value (bp, 1);
1749 DECL_IS_OPERATOR_NEW (expr) = (unsigned) bp_unpack_value (bp, 1);
1750 DECL_DECLARED_INLINE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1751 DECL_STATIC_CHAIN (expr) = (unsigned) bp_unpack_value (bp, 1);
1752 DECL_NO_INLINE_WARNING_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1753 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (expr)
1754 = (unsigned) bp_unpack_value (bp, 1);
1755 DECL_NO_LIMIT_STACK (expr) = (unsigned) bp_unpack_value (bp, 1);
1756 DECL_DISREGARD_INLINE_LIMITS (expr) = (unsigned) bp_unpack_value (bp, 1);
1757 DECL_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1758 DECL_LOOPING_CONST_OR_PURE_P (expr) = (unsigned) bp_unpack_value (bp, 1);
1759 }
1760
1761
1762 /* Unpack all the non-pointer fields of the TS_TYPE structure
1763 of expression EXPR from bitpack BP. */
1764
1765 static void
1766 unpack_ts_type_value_fields (struct bitpack_d *bp, tree expr)
1767 {
1768 enum machine_mode mode;
1769
1770 TYPE_PRECISION (expr) = (unsigned) bp_unpack_value (bp, 9);
1771 mode = (enum machine_mode) bp_unpack_value (bp, 7);
1772 SET_TYPE_MODE (expr, mode);
1773 TYPE_STRING_FLAG (expr) = (unsigned) bp_unpack_value (bp, 1);
1774 TYPE_NO_FORCE_BLK (expr) = (unsigned) bp_unpack_value (bp, 1);
1775 TYPE_NEEDS_CONSTRUCTING (expr) = (unsigned) bp_unpack_value (bp, 1);
1776 if (RECORD_OR_UNION_TYPE_P (expr))
1777 TYPE_TRANSPARENT_AGGR (expr) = (unsigned) bp_unpack_value (bp, 1);
1778 TYPE_PACKED (expr) = (unsigned) bp_unpack_value (bp, 1);
1779 TYPE_RESTRICT (expr) = (unsigned) bp_unpack_value (bp, 1);
1780 TYPE_CONTAINS_PLACEHOLDER_INTERNAL (expr)
1781 = (unsigned) bp_unpack_value (bp, 2);
1782 TYPE_USER_ALIGN (expr) = (unsigned) bp_unpack_value (bp, 1);
1783 TYPE_READONLY (expr) = (unsigned) bp_unpack_value (bp, 1);
1784 TYPE_ALIGN (expr) = (unsigned) bp_unpack_value (bp, HOST_BITS_PER_INT);
1785 TYPE_ALIAS_SET (expr) = bp_unpack_value (bp, HOST_BITS_PER_INT);
1786 }
1787
1788
1789 /* Unpack all the non-pointer fields of the TS_BLOCK structure
1790 of expression EXPR from bitpack BP. */
1791
1792 static void
1793 unpack_ts_block_value_fields (struct bitpack_d *bp, tree expr)
1794 {
1795 BLOCK_ABSTRACT (expr) = (unsigned) bp_unpack_value (bp, 1);
1796 BLOCK_NUMBER (expr) = (unsigned) bp_unpack_value (bp, 31);
1797 }
1798
1799
1800 /* Unpack all the non-pointer fields in EXPR into a bit pack. */
1801
1802 static void
1803 unpack_value_fields (struct bitpack_d *bp, tree expr)
1804 {
1805 enum tree_code code;
1806
1807 code = TREE_CODE (expr);
1808
1809 /* Note that all these functions are highly sensitive to changes in
1810 the types and sizes of each of the fields being packed. */
1811 unpack_ts_base_value_fields (bp, expr);
1812
1813 if (CODE_CONTAINS_STRUCT (code, TS_REAL_CST))
1814 unpack_ts_real_cst_value_fields (bp, expr);
1815
1816 if (CODE_CONTAINS_STRUCT (code, TS_FIXED_CST))
1817 unpack_ts_fixed_cst_value_fields (bp, expr);
1818
1819 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
1820 unpack_ts_decl_common_value_fields (bp, expr);
1821
1822 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WRTL))
1823 unpack_ts_decl_wrtl_value_fields (bp, expr);
1824
1825 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
1826 unpack_ts_decl_with_vis_value_fields (bp, expr);
1827
1828 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
1829 unpack_ts_function_decl_value_fields (bp, expr);
1830
1831 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
1832 unpack_ts_type_value_fields (bp, expr);
1833
1834 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
1835 unpack_ts_block_value_fields (bp, expr);
1836
1837 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
1838 {
1839 /* We only stream the version number of SSA names. */
1840 gcc_unreachable ();
1841 }
1842
1843 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
1844 {
1845 /* This is only used by GENERIC. */
1846 gcc_unreachable ();
1847 }
1848
1849 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
1850 {
1851 /* This is only used by High GIMPLE. */
1852 gcc_unreachable ();
1853 }
1854 }
1855
1856
1857 /* Read a bitpack from input block IB. */
1858
1859 struct bitpack_d *
1860 lto_input_bitpack (struct lto_input_block *ib)
1861 {
1862 unsigned i, num_words;
1863 struct bitpack_d *bp;
1864
1865 bp = bitpack_create ();
1866
1867 /* If we are about to read more than a handful of words, something
1868 is wrong. This check is overly strict, but it acts as an early
1869 warning. No streamed object has hundreds of bits in its fields. */
1870 num_words = lto_input_uleb128 (ib);
1871 gcc_assert (num_words < 20);
1872
1873 for (i = 0; i < num_words; i++)
1874 {
1875 bitpack_word_t w = lto_input_uleb128 (ib);
1876 VEC_safe_push (bitpack_word_t, heap, bp->values, w);
1877 }
1878
1879 return bp;
1880 }
1881
1882
1883 /* Materialize a new tree from input block IB using descriptors in
1884 DATA_IN. The code for the new tree should match TAG. Store in
1885 *IX_P the index into the reader cache where the new tree is stored. */
1886
1887 static tree
1888 lto_materialize_tree (struct lto_input_block *ib, struct data_in *data_in,
1889 enum LTO_tags tag, int *ix_p)
1890 {
1891 struct bitpack_d *bp;
1892 enum tree_code code;
1893 tree result;
1894 #ifdef LTO_STREAMER_DEBUG
1895 HOST_WIDEST_INT orig_address_in_writer;
1896 #endif
1897 HOST_WIDE_INT ix;
1898
1899 result = NULL_TREE;
1900
1901 /* Read the header of the node we are about to create. */
1902 ix = lto_input_sleb128 (ib);
1903 gcc_assert ((int) ix == ix);
1904 *ix_p = (int) ix;
1905
1906 #ifdef LTO_STREAMER_DEBUG
1907 /* Read the word representing the memory address for the tree
1908 as it was written by the writer. This is useful when
1909 debugging differences between the writer and reader. */
1910 orig_address_in_writer = lto_input_sleb128 (ib);
1911 gcc_assert ((intptr_t) orig_address_in_writer == orig_address_in_writer);
1912 #endif
1913
1914 code = lto_tag_to_tree_code (tag);
1915
1916 /* We should never see an SSA_NAME tree. Only the version numbers of
1917 SSA names are ever written out. See input_ssa_names. */
1918 gcc_assert (code != SSA_NAME);
1919
1920 /* Instantiate a new tree using the header data. */
1921 if (CODE_CONTAINS_STRUCT (code, TS_STRING))
1922 result = input_string_cst (data_in, ib);
1923 else if (CODE_CONTAINS_STRUCT (code, TS_IDENTIFIER))
1924 result = input_identifier (data_in, ib);
1925 else if (CODE_CONTAINS_STRUCT (code, TS_VEC))
1926 {
1927 HOST_WIDE_INT len = lto_input_sleb128 (ib);
1928 result = make_tree_vec (len);
1929 }
1930 else if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
1931 {
1932 unsigned HOST_WIDE_INT len = lto_input_uleb128 (ib);
1933 result = make_tree_binfo (len);
1934 }
1935 else
1936 {
1937 /* All other nodes can be materialized with a raw make_node
1938 call. */
1939 result = make_node (code);
1940 }
1941
1942 #ifdef LTO_STREAMER_DEBUG
1943 /* Store the original address of the tree as seen by the writer
1944 in RESULT's aux field. This is useful when debugging streaming
1945 problems. This way, a debugging session can be started on
1946 both writer and reader with a breakpoint using this address
1947 value in both. */
1948 lto_orig_address_map (result, (intptr_t) orig_address_in_writer);
1949 #endif
1950
1951 /* Read the bitpack of non-pointer values from IB. */
1952 bp = lto_input_bitpack (ib);
1953
1954 /* The first word in BP contains the code of the tree that we
1955 are about to read. */
1956 code = (enum tree_code) bp_unpack_value (bp, 16);
1957 lto_tag_check (lto_tree_code_to_tag (code), tag);
1958
1959 /* Unpack all the value fields from BP. */
1960 unpack_value_fields (bp, result);
1961 bitpack_delete (bp);
1962
1963 /* Enter RESULT in the reader cache. This will make RESULT
1964 available so that circular references in the rest of the tree
1965 structure can be resolved in subsequent calls to lto_input_tree. */
1966 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
1967
1968 return result;
1969 }
1970
1971
1972 /* Read a chain of tree nodes from input block IB. DATA_IN contains
1973 tables and descriptors for the file being read. */
1974
1975 static tree
1976 lto_input_chain (struct lto_input_block *ib, struct data_in *data_in)
1977 {
1978 int i, count;
1979 tree first, prev, curr;
1980
1981 first = prev = NULL_TREE;
1982 count = lto_input_sleb128 (ib);
1983 for (i = 0; i < count; i++)
1984 {
1985 curr = lto_input_tree (ib, data_in);
1986 if (prev)
1987 TREE_CHAIN (prev) = curr;
1988 else
1989 first = curr;
1990
1991 TREE_CHAIN (curr) = NULL_TREE;
1992 prev = curr;
1993 }
1994
1995 return first;
1996 }
1997
1998
1999 /* Read all pointer fields in the TS_COMMON structure of EXPR from input
2000 block IB. DATA_IN contains tables and descriptors for the
2001 file being read. */
2002
2003
2004 static void
2005 lto_input_ts_common_tree_pointers (struct lto_input_block *ib,
2006 struct data_in *data_in, tree expr)
2007 {
2008 TREE_TYPE (expr) = lto_input_tree (ib, data_in);
2009 }
2010
2011
2012 /* Read all pointer fields in the TS_VECTOR structure of EXPR from input
2013 block IB. DATA_IN contains tables and descriptors for the
2014 file being read. */
2015
2016 static void
2017 lto_input_ts_vector_tree_pointers (struct lto_input_block *ib,
2018 struct data_in *data_in, tree expr)
2019 {
2020 TREE_VECTOR_CST_ELTS (expr) = lto_input_chain (ib, data_in);
2021 }
2022
2023
2024 /* Read all pointer fields in the TS_COMPLEX structure of EXPR from input
2025 block IB. DATA_IN contains tables and descriptors for the
2026 file being read. */
2027
2028 static void
2029 lto_input_ts_complex_tree_pointers (struct lto_input_block *ib,
2030 struct data_in *data_in, tree expr)
2031 {
2032 TREE_REALPART (expr) = lto_input_tree (ib, data_in);
2033 TREE_IMAGPART (expr) = lto_input_tree (ib, data_in);
2034 }
2035
2036
2037 /* Read all pointer fields in the TS_DECL_MINIMAL structure of EXPR
2038 from input block IB. DATA_IN contains tables and descriptors for the
2039 file being read. */
2040
2041 static void
2042 lto_input_ts_decl_minimal_tree_pointers (struct lto_input_block *ib,
2043 struct data_in *data_in, tree expr)
2044 {
2045 DECL_NAME (expr) = lto_input_tree (ib, data_in);
2046 DECL_CONTEXT (expr) = lto_input_tree (ib, data_in);
2047 DECL_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
2048 }
2049
2050
2051 /* Read all pointer fields in the TS_DECL_COMMON structure of EXPR from
2052 input block IB. DATA_IN contains tables and descriptors for the
2053 file being read. */
2054
2055 static void
2056 lto_input_ts_decl_common_tree_pointers (struct lto_input_block *ib,
2057 struct data_in *data_in, tree expr)
2058 {
2059 DECL_SIZE (expr) = lto_input_tree (ib, data_in);
2060 DECL_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
2061
2062 if (TREE_CODE (expr) != FUNCTION_DECL)
2063 DECL_INITIAL (expr) = lto_input_tree (ib, data_in);
2064
2065 DECL_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
2066 DECL_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2067
2068 if (TREE_CODE (expr) == PARM_DECL)
2069 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2070
2071 if ((TREE_CODE (expr) == VAR_DECL
2072 || TREE_CODE (expr) == PARM_DECL)
2073 && DECL_HAS_VALUE_EXPR_P (expr))
2074 SET_DECL_VALUE_EXPR (expr, lto_input_tree (ib, data_in));
2075 }
2076
2077
2078 /* Read all pointer fields in the TS_DECL_NON_COMMON structure of
2079 EXPR from input block IB. DATA_IN contains tables and descriptors for the
2080 file being read. */
2081
2082 static void
2083 lto_input_ts_decl_non_common_tree_pointers (struct lto_input_block *ib,
2084 struct data_in *data_in, tree expr)
2085 {
2086 if (TREE_CODE (expr) == FUNCTION_DECL)
2087 {
2088 DECL_ARGUMENTS (expr) = lto_input_tree (ib, data_in);
2089 DECL_RESULT (expr) = lto_input_tree (ib, data_in);
2090 }
2091 DECL_VINDEX (expr) = lto_input_tree (ib, data_in);
2092 }
2093
2094
2095 /* Read all pointer fields in the TS_DECL_WITH_VIS structure of EXPR
2096 from input block IB. DATA_IN contains tables and descriptors for the
2097 file being read. */
2098
2099 static void
2100 lto_input_ts_decl_with_vis_tree_pointers (struct lto_input_block *ib,
2101 struct data_in *data_in, tree expr)
2102 {
2103 tree id;
2104
2105 id = lto_input_tree (ib, data_in);
2106 if (id)
2107 {
2108 gcc_assert (TREE_CODE (id) == IDENTIFIER_NODE);
2109 SET_DECL_ASSEMBLER_NAME (expr, id);
2110 }
2111
2112 DECL_SECTION_NAME (expr) = lto_input_tree (ib, data_in);
2113 DECL_COMDAT_GROUP (expr) = lto_input_tree (ib, data_in);
2114 }
2115
2116
2117 /* Read all pointer fields in the TS_FIELD_DECL structure of EXPR from
2118 input block IB. DATA_IN contains tables and descriptors for the
2119 file being read. */
2120
2121 static void
2122 lto_input_ts_field_decl_tree_pointers (struct lto_input_block *ib,
2123 struct data_in *data_in, tree expr)
2124 {
2125 DECL_FIELD_OFFSET (expr) = lto_input_tree (ib, data_in);
2126 DECL_BIT_FIELD_TYPE (expr) = lto_input_tree (ib, data_in);
2127 DECL_QUALIFIER (expr) = lto_input_tree (ib, data_in);
2128 DECL_FIELD_BIT_OFFSET (expr) = lto_input_tree (ib, data_in);
2129 DECL_FCONTEXT (expr) = lto_input_tree (ib, data_in);
2130 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2131 }
2132
2133
2134 /* Read all pointer fields in the TS_FUNCTION_DECL structure of EXPR
2135 from input block IB. DATA_IN contains tables and descriptors for the
2136 file being read. */
2137
2138 static void
2139 lto_input_ts_function_decl_tree_pointers (struct lto_input_block *ib,
2140 struct data_in *data_in, tree expr)
2141 {
2142 /* DECL_STRUCT_FUNCTION is handled by lto_input_function. FIXME lto,
2143 maybe it should be handled here? */
2144 DECL_FUNCTION_PERSONALITY (expr) = lto_input_tree (ib, data_in);
2145 DECL_FUNCTION_SPECIFIC_TARGET (expr) = lto_input_tree (ib, data_in);
2146 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (expr) = lto_input_tree (ib, data_in);
2147
2148 /* If the file contains a function with an EH personality set,
2149 then it was compiled with -fexceptions. In that case, initialize
2150 the backend EH machinery. */
2151 if (DECL_FUNCTION_PERSONALITY (expr))
2152 lto_init_eh ();
2153 }
2154
2155
2156 /* Read all pointer fields in the TS_TYPE structure of EXPR from input
2157 block IB. DATA_IN contains tables and descriptors for the
2158 file being read. */
2159
2160 static void
2161 lto_input_ts_type_tree_pointers (struct lto_input_block *ib,
2162 struct data_in *data_in, tree expr)
2163 {
2164 if (TREE_CODE (expr) == ENUMERAL_TYPE)
2165 TYPE_VALUES (expr) = lto_input_tree (ib, data_in);
2166 else if (TREE_CODE (expr) == ARRAY_TYPE)
2167 TYPE_DOMAIN (expr) = lto_input_tree (ib, data_in);
2168 else if (RECORD_OR_UNION_TYPE_P (expr))
2169 TYPE_FIELDS (expr) = lto_input_tree (ib, data_in);
2170 else if (TREE_CODE (expr) == FUNCTION_TYPE
2171 || TREE_CODE (expr) == METHOD_TYPE)
2172 TYPE_ARG_TYPES (expr) = lto_input_tree (ib, data_in);
2173 else if (TREE_CODE (expr) == VECTOR_TYPE)
2174 TYPE_DEBUG_REPRESENTATION_TYPE (expr) = lto_input_tree (ib, data_in);
2175
2176 TYPE_SIZE (expr) = lto_input_tree (ib, data_in);
2177 TYPE_SIZE_UNIT (expr) = lto_input_tree (ib, data_in);
2178 TYPE_ATTRIBUTES (expr) = lto_input_tree (ib, data_in);
2179 TYPE_NAME (expr) = lto_input_tree (ib, data_in);
2180 /* Do not stream TYPE_POINTER_TO or TYPE_REFERENCE_TO nor
2181 TYPE_NEXT_PTR_TO or TYPE_NEXT_REF_TO. */
2182 if (!POINTER_TYPE_P (expr))
2183 TYPE_MINVAL (expr) = lto_input_tree (ib, data_in);
2184 TYPE_MAXVAL (expr) = lto_input_tree (ib, data_in);
2185 TYPE_MAIN_VARIANT (expr) = lto_input_tree (ib, data_in);
2186 /* Do not stream TYPE_NEXT_VARIANT, we reconstruct the variant lists
2187 during fixup. */
2188 if (RECORD_OR_UNION_TYPE_P (expr))
2189 TYPE_BINFO (expr) = lto_input_tree (ib, data_in);
2190 TYPE_CONTEXT (expr) = lto_input_tree (ib, data_in);
2191 TYPE_CANONICAL (expr) = lto_input_tree (ib, data_in);
2192 TYPE_STUB_DECL (expr) = lto_input_tree (ib, data_in);
2193 }
2194
2195
2196 /* Read all pointer fields in the TS_LIST structure of EXPR from input
2197 block IB. DATA_IN contains tables and descriptors for the
2198 file being read. */
2199
2200 static void
2201 lto_input_ts_list_tree_pointers (struct lto_input_block *ib,
2202 struct data_in *data_in, tree expr)
2203 {
2204 TREE_PURPOSE (expr) = lto_input_tree (ib, data_in);
2205 TREE_VALUE (expr) = lto_input_tree (ib, data_in);
2206 TREE_CHAIN (expr) = lto_input_chain (ib, data_in);
2207 }
2208
2209
2210 /* Read all pointer fields in the TS_VEC structure of EXPR from input
2211 block IB. DATA_IN contains tables and descriptors for the
2212 file being read. */
2213
2214 static void
2215 lto_input_ts_vec_tree_pointers (struct lto_input_block *ib,
2216 struct data_in *data_in, tree expr)
2217 {
2218 int i;
2219
2220 /* Note that TREE_VEC_LENGTH was read by lto_materialize_tree to
2221 instantiate EXPR. */
2222 for (i = 0; i < TREE_VEC_LENGTH (expr); i++)
2223 TREE_VEC_ELT (expr, i) = lto_input_tree (ib, data_in);
2224 }
2225
2226
2227 /* Read all pointer fields in the TS_EXP structure of EXPR from input
2228 block IB. DATA_IN contains tables and descriptors for the
2229 file being read. */
2230
2231
2232 static void
2233 lto_input_ts_exp_tree_pointers (struct lto_input_block *ib,
2234 struct data_in *data_in, tree expr)
2235 {
2236 int i, length;
2237 location_t loc;
2238
2239 length = lto_input_sleb128 (ib);
2240 gcc_assert (length == TREE_OPERAND_LENGTH (expr));
2241
2242 for (i = 0; i < length; i++)
2243 TREE_OPERAND (expr, i) = lto_input_tree (ib, data_in);
2244
2245 loc = lto_input_location (ib, data_in);
2246 SET_EXPR_LOCATION (expr, loc);
2247 TREE_BLOCK (expr) = lto_input_tree (ib, data_in);
2248 }
2249
2250
2251 /* Read all pointer fields in the TS_BLOCK structure of EXPR from input
2252 block IB. DATA_IN contains tables and descriptors for the
2253 file being read. */
2254
2255 static void
2256 lto_input_ts_block_tree_pointers (struct lto_input_block *ib,
2257 struct data_in *data_in, tree expr)
2258 {
2259 unsigned i, len;
2260
2261 BLOCK_SOURCE_LOCATION (expr) = lto_input_location (ib, data_in);
2262 BLOCK_VARS (expr) = lto_input_chain (ib, data_in);
2263
2264 len = lto_input_uleb128 (ib);
2265 for (i = 0; i < len; i++)
2266 {
2267 tree t = lto_input_tree (ib, data_in);
2268 VEC_safe_push (tree, gc, BLOCK_NONLOCALIZED_VARS (expr), t);
2269 }
2270
2271 BLOCK_SUPERCONTEXT (expr) = lto_input_tree (ib, data_in);
2272 BLOCK_ABSTRACT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2273 BLOCK_FRAGMENT_ORIGIN (expr) = lto_input_tree (ib, data_in);
2274 BLOCK_FRAGMENT_CHAIN (expr) = lto_input_tree (ib, data_in);
2275 BLOCK_SUBBLOCKS (expr) = lto_input_chain (ib, data_in);
2276 }
2277
2278
2279 /* Read all pointer fields in the TS_BINFO structure of EXPR from input
2280 block IB. DATA_IN contains tables and descriptors for the
2281 file being read. */
2282
2283 static void
2284 lto_input_ts_binfo_tree_pointers (struct lto_input_block *ib,
2285 struct data_in *data_in, tree expr)
2286 {
2287 unsigned i, len;
2288 tree t;
2289
2290 /* Note that the number of slots in EXPR was read in
2291 lto_materialize_tree when instantiating EXPR. However, the
2292 vector is empty so we cannot rely on VEC_length to know how many
2293 elements to read. So, this list is emitted as a 0-terminated
2294 list on the writer side. */
2295 do
2296 {
2297 t = lto_input_tree (ib, data_in);
2298 if (t)
2299 VEC_quick_push (tree, BINFO_BASE_BINFOS (expr), t);
2300 }
2301 while (t);
2302
2303 BINFO_OFFSET (expr) = lto_input_tree (ib, data_in);
2304 BINFO_VTABLE (expr) = lto_input_tree (ib, data_in);
2305 BINFO_VIRTUALS (expr) = lto_input_tree (ib, data_in);
2306 BINFO_VPTR_FIELD (expr) = lto_input_tree (ib, data_in);
2307
2308 len = lto_input_uleb128 (ib);
2309 for (i = 0; i < len; i++)
2310 {
2311 tree a = lto_input_tree (ib, data_in);
2312 VEC_safe_push (tree, gc, BINFO_BASE_ACCESSES (expr), a);
2313 }
2314
2315 BINFO_INHERITANCE_CHAIN (expr) = lto_input_tree (ib, data_in);
2316 BINFO_SUBVTT_INDEX (expr) = lto_input_tree (ib, data_in);
2317 BINFO_VPTR_INDEX (expr) = lto_input_tree (ib, data_in);
2318 }
2319
2320
2321 /* Read all pointer fields in the TS_CONSTRUCTOR structure of EXPR from
2322 input block IB. DATA_IN contains tables and descriptors for the
2323 file being read. */
2324
2325 static void
2326 lto_input_ts_constructor_tree_pointers (struct lto_input_block *ib,
2327 struct data_in *data_in, tree expr)
2328 {
2329 unsigned i, len;
2330
2331 len = lto_input_uleb128 (ib);
2332 for (i = 0; i < len; i++)
2333 {
2334 tree index, value;
2335
2336 index = lto_input_tree (ib, data_in);
2337 value = lto_input_tree (ib, data_in);
2338 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (expr), index, value);
2339 }
2340 }
2341
2342
2343 /* Helper for lto_input_tree. Read all pointer fields in EXPR from
2344 input block IB. DATA_IN contains tables and descriptors for the
2345 file being read. */
2346
2347 static void
2348 lto_input_tree_pointers (struct lto_input_block *ib, struct data_in *data_in,
2349 tree expr)
2350 {
2351 enum tree_code code;
2352
2353 code = TREE_CODE (expr);
2354
2355 if (CODE_CONTAINS_STRUCT (code, TS_COMMON))
2356 lto_input_ts_common_tree_pointers (ib, data_in, expr);
2357
2358 if (CODE_CONTAINS_STRUCT (code, TS_VECTOR))
2359 lto_input_ts_vector_tree_pointers (ib, data_in, expr);
2360
2361 if (CODE_CONTAINS_STRUCT (code, TS_COMPLEX))
2362 lto_input_ts_complex_tree_pointers (ib, data_in, expr);
2363
2364 if (CODE_CONTAINS_STRUCT (code, TS_DECL_MINIMAL))
2365 lto_input_ts_decl_minimal_tree_pointers (ib, data_in, expr);
2366
2367 if (CODE_CONTAINS_STRUCT (code, TS_DECL_COMMON))
2368 lto_input_ts_decl_common_tree_pointers (ib, data_in, expr);
2369
2370 if (CODE_CONTAINS_STRUCT (code, TS_DECL_NON_COMMON))
2371 lto_input_ts_decl_non_common_tree_pointers (ib, data_in, expr);
2372
2373 if (CODE_CONTAINS_STRUCT (code, TS_DECL_WITH_VIS))
2374 lto_input_ts_decl_with_vis_tree_pointers (ib, data_in, expr);
2375
2376 if (CODE_CONTAINS_STRUCT (code, TS_FIELD_DECL))
2377 lto_input_ts_field_decl_tree_pointers (ib, data_in, expr);
2378
2379 if (CODE_CONTAINS_STRUCT (code, TS_FUNCTION_DECL))
2380 lto_input_ts_function_decl_tree_pointers (ib, data_in, expr);
2381
2382 if (CODE_CONTAINS_STRUCT (code, TS_TYPE))
2383 lto_input_ts_type_tree_pointers (ib, data_in, expr);
2384
2385 if (CODE_CONTAINS_STRUCT (code, TS_LIST))
2386 lto_input_ts_list_tree_pointers (ib, data_in, expr);
2387
2388 if (CODE_CONTAINS_STRUCT (code, TS_VEC))
2389 lto_input_ts_vec_tree_pointers (ib, data_in, expr);
2390
2391 if (CODE_CONTAINS_STRUCT (code, TS_EXP))
2392 lto_input_ts_exp_tree_pointers (ib, data_in, expr);
2393
2394 if (CODE_CONTAINS_STRUCT (code, TS_SSA_NAME))
2395 {
2396 /* We only stream the version number of SSA names. */
2397 gcc_unreachable ();
2398 }
2399
2400 if (CODE_CONTAINS_STRUCT (code, TS_BLOCK))
2401 lto_input_ts_block_tree_pointers (ib, data_in, expr);
2402
2403 if (CODE_CONTAINS_STRUCT (code, TS_BINFO))
2404 lto_input_ts_binfo_tree_pointers (ib, data_in, expr);
2405
2406 if (CODE_CONTAINS_STRUCT (code, TS_STATEMENT_LIST))
2407 {
2408 /* This should only appear in GENERIC. */
2409 gcc_unreachable ();
2410 }
2411
2412 if (CODE_CONTAINS_STRUCT (code, TS_CONSTRUCTOR))
2413 lto_input_ts_constructor_tree_pointers (ib, data_in, expr);
2414
2415 if (CODE_CONTAINS_STRUCT (code, TS_OMP_CLAUSE))
2416 {
2417 /* This should only appear in High GIMPLE. */
2418 gcc_unreachable ();
2419 }
2420
2421 if (CODE_CONTAINS_STRUCT (code, TS_OPTIMIZATION))
2422 {
2423 sorry ("optimization options not supported yet");
2424 }
2425
2426 if (CODE_CONTAINS_STRUCT (code, TS_TARGET_OPTION))
2427 {
2428 sorry ("target optimization options not supported yet");
2429 }
2430 }
2431
2432
2433 /* Register DECL with the global symbol table and change its
2434 name if necessary to avoid name clashes for static globals across
2435 different files. */
2436
2437 static void
2438 lto_register_var_decl_in_symtab (struct data_in *data_in, tree decl)
2439 {
2440 /* Register symbols with file or global scope to mark what input
2441 file has their definition. */
2442 if (decl_function_context (decl) == NULL_TREE)
2443 {
2444 /* Variable has file scope, not local. Need to ensure static variables
2445 between different files don't clash unexpectedly. */
2446 if (!TREE_PUBLIC (decl))
2447 {
2448 /* ??? We normally pre-mangle names before we serialize them
2449 out. Here, in lto1, we do not know the language, and
2450 thus cannot do the mangling again. Instead, we just
2451 append a suffix to the mangled name. The resulting name,
2452 however, is not a properly-formed mangled name, and will
2453 confuse any attempt to unmangle it. */
2454 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2455 char *label;
2456
2457 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2458 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2459 rest_of_decl_compilation (decl, 1, 0);
2460 }
2461 }
2462
2463 /* If this variable has already been declared, queue the
2464 declaration for merging. */
2465 if (TREE_PUBLIC (decl))
2466 {
2467 int ix;
2468 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2469 gcc_unreachable ();
2470 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2471 data_in->file_data);
2472 }
2473 }
2474
2475
2476
2477 /* Register DECL with the global symbol table and change its
2478 name if necessary to avoid name clashes for static globals across
2479 different files. DATA_IN contains descriptors and tables for the
2480 file being read. */
2481
2482 static void
2483 lto_register_function_decl_in_symtab (struct data_in *data_in, tree decl)
2484 {
2485 /* Need to ensure static entities between different files
2486 don't clash unexpectedly. */
2487 if (!TREE_PUBLIC (decl))
2488 {
2489 /* We must not use the DECL_ASSEMBLER_NAME macro here, as it
2490 may set the assembler name where it was previously empty. */
2491 tree old_assembler_name = decl->decl_with_vis.assembler_name;
2492
2493 /* FIXME lto: We normally pre-mangle names before we serialize
2494 them out. Here, in lto1, we do not know the language, and
2495 thus cannot do the mangling again. Instead, we just append a
2496 suffix to the mangled name. The resulting name, however, is
2497 not a properly-formed mangled name, and will confuse any
2498 attempt to unmangle it. */
2499 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2500 char *label;
2501
2502 ASM_FORMAT_PRIVATE_NAME (label, name, DECL_UID (decl));
2503 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (label));
2504
2505 /* We may arrive here with the old assembler name not set
2506 if the function body is not needed, e.g., it has been
2507 inlined away and does not appear in the cgraph. */
2508 if (old_assembler_name)
2509 {
2510 tree new_assembler_name = DECL_ASSEMBLER_NAME (decl);
2511
2512 /* Make the original assembler name available for later use.
2513 We may have used it to indicate the section within its
2514 object file where the function body may be found.
2515 FIXME lto: Find a better way to maintain the function decl
2516 to body section mapping so we don't need this hack. */
2517 lto_record_renamed_decl (data_in->file_data,
2518 IDENTIFIER_POINTER (old_assembler_name),
2519 IDENTIFIER_POINTER (new_assembler_name));
2520
2521 /* Also register the reverse mapping so that we can find the
2522 new name given to an existing assembler name (used when
2523 restoring alias pairs in input_constructors_or_inits. */
2524 lto_record_renamed_decl (data_in->file_data,
2525 IDENTIFIER_POINTER (new_assembler_name),
2526 IDENTIFIER_POINTER (old_assembler_name));
2527 }
2528 }
2529
2530 /* If this variable has already been declared, queue the
2531 declaration for merging. */
2532 if (TREE_PUBLIC (decl) && !DECL_ABSTRACT (decl))
2533 {
2534 int ix;
2535 if (!lto_streamer_cache_lookup (data_in->reader_cache, decl, &ix))
2536 gcc_unreachable ();
2537 lto_symtab_register_decl (decl, get_resolution (data_in, ix),
2538 data_in->file_data);
2539 }
2540 }
2541
2542
2543 /* Read an index IX from input block IB and return the tree node at
2544 DATA_IN->FILE_DATA->GLOBALS_INDEX[IX]. */
2545
2546 static tree
2547 lto_get_pickled_tree (struct lto_input_block *ib, struct data_in *data_in)
2548 {
2549 HOST_WIDE_INT ix;
2550 tree result;
2551 enum LTO_tags expected_tag;
2552 unsigned HOST_WIDE_INT orig_offset;
2553
2554 ix = lto_input_sleb128 (ib);
2555 expected_tag = (enum LTO_tags) lto_input_uleb128 (ib);
2556
2557 orig_offset = lto_input_uleb128 (ib);
2558 gcc_assert (orig_offset == (unsigned) orig_offset);
2559
2560 result = lto_streamer_cache_get (data_in->reader_cache, ix);
2561 if (result == NULL_TREE)
2562 {
2563 /* We have not yet read the cache slot IX. Go to the offset
2564 in the stream where the physical tree node is, and materialize
2565 it from there. */
2566 struct lto_input_block fwd_ib;
2567
2568 /* If we are trying to go back in the stream, something is wrong.
2569 We should've read the node at the earlier position already. */
2570 if (ib->p >= orig_offset)
2571 internal_error ("bytecode stream: tried to jump backwards in the "
2572 "stream");
2573
2574 LTO_INIT_INPUT_BLOCK (fwd_ib, ib->data, orig_offset, ib->len);
2575 result = lto_input_tree (&fwd_ib, data_in);
2576 }
2577
2578 gcc_assert (result
2579 && TREE_CODE (result) == lto_tag_to_tree_code (expected_tag));
2580
2581 return result;
2582 }
2583
2584
2585 /* Read a code and class from input block IB and return the
2586 corresponding builtin. DATA_IN is as in lto_input_tree. */
2587
2588 static tree
2589 lto_get_builtin_tree (struct lto_input_block *ib, struct data_in *data_in)
2590 {
2591 enum built_in_class fclass;
2592 enum built_in_function fcode;
2593 const char *asmname;
2594 tree result;
2595 int ix;
2596
2597 fclass = (enum built_in_class) lto_input_uleb128 (ib);
2598 gcc_assert (fclass == BUILT_IN_NORMAL || fclass == BUILT_IN_MD);
2599
2600 fcode = (enum built_in_function) lto_input_uleb128 (ib);
2601
2602 ix = lto_input_sleb128 (ib);
2603 gcc_assert (ix == (int) ix);
2604
2605 if (fclass == BUILT_IN_NORMAL)
2606 {
2607 gcc_assert (fcode < END_BUILTINS);
2608 result = built_in_decls[fcode];
2609 gcc_assert (result);
2610 }
2611 else if (fclass == BUILT_IN_MD)
2612 {
2613 result = targetm.builtin_decl (fcode, true);
2614 if (!result || result == error_mark_node)
2615 fatal_error ("target specific builtin not available");
2616 }
2617 else
2618 gcc_unreachable ();
2619
2620 asmname = input_string (data_in, ib);
2621 if (asmname)
2622 set_builtin_user_assembler_name (result, asmname);
2623
2624 lto_streamer_cache_insert_at (data_in->reader_cache, result, ix);
2625
2626 return result;
2627 }
2628
2629
2630 /* Read the physical representation of a tree node with tag TAG from
2631 input block IB using the per-file context in DATA_IN. */
2632
2633 static tree
2634 lto_read_tree (struct lto_input_block *ib, struct data_in *data_in,
2635 enum LTO_tags tag)
2636 {
2637 tree result;
2638 int ix;
2639
2640 result = lto_materialize_tree (ib, data_in, tag, &ix);
2641
2642 /* Read all the pointer fields in RESULT. */
2643 lto_input_tree_pointers (ib, data_in, result);
2644
2645 /* We should never try to instantiate an MD or NORMAL builtin here. */
2646 if (TREE_CODE (result) == FUNCTION_DECL)
2647 gcc_assert (!lto_stream_as_builtin_p (result));
2648
2649 if (TREE_CODE (result) == VAR_DECL)
2650 lto_register_var_decl_in_symtab (data_in, result);
2651 else if (TREE_CODE (result) == FUNCTION_DECL && !DECL_BUILT_IN (result))
2652 lto_register_function_decl_in_symtab (data_in, result);
2653
2654 /* end_marker = */ lto_input_1_unsigned (ib);
2655
2656 #ifdef LTO_STREAMER_DEBUG
2657 /* Remove the mapping to RESULT's original address set by
2658 lto_materialize_tree. */
2659 lto_orig_address_remove (result);
2660 #endif
2661
2662 return result;
2663 }
2664
2665
2666 /* Read and INTEGER_CST node from input block IB using the per-file
2667 context in DATA_IN. */
2668
2669 static tree
2670 lto_input_integer_cst (struct lto_input_block *ib, struct data_in *data_in)
2671 {
2672 tree result, type;
2673 HOST_WIDE_INT low, high;
2674 bool overflow_p;
2675
2676 type = lto_input_tree (ib, data_in);
2677 overflow_p = (lto_input_1_unsigned (ib) != 0);
2678 low = lto_input_uleb128 (ib);
2679 high = lto_input_uleb128 (ib);
2680 result = build_int_cst_wide (type, low, high);
2681
2682 /* If the original constant had overflown, build a replica of RESULT to
2683 avoid modifying the shared constant returned by build_int_cst_wide. */
2684 if (overflow_p)
2685 {
2686 result = copy_node (result);
2687 TREE_OVERFLOW (result) = 1;
2688 }
2689
2690 return result;
2691 }
2692
2693
2694 /* Read a tree from input block IB using the per-file context in
2695 DATA_IN. This context is used, for example, to resolve references
2696 to previously read nodes. */
2697
2698 tree
2699 lto_input_tree (struct lto_input_block *ib, struct data_in *data_in)
2700 {
2701 enum LTO_tags tag;
2702 tree result;
2703
2704 tag = input_record_start (ib);
2705 gcc_assert ((unsigned) tag < (unsigned) LTO_NUM_TAGS);
2706
2707 if (tag == LTO_null)
2708 result = NULL_TREE;
2709 else if (tag >= LTO_field_decl_ref && tag <= LTO_global_decl_ref)
2710 {
2711 /* If TAG is a reference to an indexable tree, the next value
2712 in IB is the index into the table where we expect to find
2713 that tree. */
2714 result = lto_input_tree_ref (ib, data_in, cfun, tag);
2715 }
2716 else if (tag == LTO_tree_pickle_reference)
2717 {
2718 /* If TAG is a reference to a previously read tree, look it up in
2719 the reader cache. */
2720 result = lto_get_pickled_tree (ib, data_in);
2721 }
2722 else if (tag == LTO_builtin_decl)
2723 {
2724 /* If we are going to read a built-in function, all we need is
2725 the code and class. */
2726 result = lto_get_builtin_tree (ib, data_in);
2727 }
2728 else if (tag == lto_tree_code_to_tag (INTEGER_CST))
2729 {
2730 /* For integer constants we only need the type and its hi/low
2731 words. */
2732 result = lto_input_integer_cst (ib, data_in);
2733 }
2734 else
2735 {
2736 /* Otherwise, materialize a new node from IB. */
2737 result = lto_read_tree (ib, data_in, tag);
2738 }
2739
2740 return result;
2741 }
2742
2743
2744 /* Initialization for the LTO reader. */
2745
2746 void
2747 lto_init_reader (void)
2748 {
2749 lto_streamer_init ();
2750
2751 memset (&lto_stats, 0, sizeof (lto_stats));
2752 bitmap_obstack_initialize (NULL);
2753
2754 file_name_hash_table = htab_create (37, hash_string_slot_node,
2755 eq_string_slot_node, free);
2756
2757 gimple_register_cfg_hooks ();
2758 }
2759
2760
2761 /* Create a new data_in object for FILE_DATA. STRINGS is the string
2762 table to use with LEN strings. RESOLUTIONS is the vector of linker
2763 resolutions (NULL if not using a linker plugin). */
2764
2765 struct data_in *
2766 lto_data_in_create (struct lto_file_decl_data *file_data, const char *strings,
2767 unsigned len,
2768 VEC(ld_plugin_symbol_resolution_t,heap) *resolutions)
2769 {
2770 struct data_in *data_in = XCNEW (struct data_in);
2771 data_in->file_data = file_data;
2772 data_in->strings = strings;
2773 data_in->strings_len = len;
2774 data_in->globals_resolution = resolutions;
2775 data_in->reader_cache = lto_streamer_cache_create ();
2776
2777 return data_in;
2778 }
2779
2780
2781 /* Remove DATA_IN. */
2782
2783 void
2784 lto_data_in_delete (struct data_in *data_in)
2785 {
2786 VEC_free (ld_plugin_symbol_resolution_t, heap, data_in->globals_resolution);
2787 lto_streamer_cache_delete (data_in->reader_cache);
2788 free (data_in->labels);
2789 free (data_in);
2790 }