Fix PR47707
[official-gcc.git] / gcc / lto-section-out.c
blob0e8949a272a5f8ccc82c436d154b15e75253d1e5
1 /* Functions for writing LTO sections.
3 Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "tree.h"
27 #include "expr.h"
28 #include "params.h"
29 #include "input.h"
30 #include "hashtab.h"
31 #include "basic-block.h"
32 #include "tree-flow.h"
33 #include "tree-pass.h"
34 #include "cgraph.h"
35 #include "function.h"
36 #include "ggc.h"
37 #include "except.h"
38 #include "vec.h"
39 #include "pointer-set.h"
40 #include "bitmap.h"
41 #include "langhooks.h"
42 #include "lto-streamer.h"
43 #include "lto-compress.h"
45 static VEC(lto_out_decl_state_ptr, heap) *decl_state_stack;
47 /* List of out decl states used by functions. We use this to
48 generate the decl directory later. */
50 VEC(lto_out_decl_state_ptr, heap) *lto_function_decl_states;
51 /* Returns a hash code for P. */
53 hashval_t
54 lto_hash_decl_slot_node (const void *p)
56 const struct lto_decl_slot *ds = (const struct lto_decl_slot *) p;
59 return (hashval_t) DECL_UID (ds->t);
61 return (hashval_t) TREE_HASH (ds->t);
65 /* Returns nonzero if P1 and P2 are equal. */
67 int
68 lto_eq_decl_slot_node (const void *p1, const void *p2)
70 const struct lto_decl_slot *ds1 =
71 (const struct lto_decl_slot *) p1;
72 const struct lto_decl_slot *ds2 =
73 (const struct lto_decl_slot *) p2;
76 return DECL_UID (ds1->t) == DECL_UID (ds2->t);
78 return ds1->t == ds2->t;
82 /* Returns a hash code for P. */
84 hashval_t
85 lto_hash_type_slot_node (const void *p)
87 const struct lto_decl_slot *ds = (const struct lto_decl_slot *) p;
88 return (hashval_t) TYPE_UID (ds->t);
92 /* Returns nonzero if P1 and P2 are equal. */
94 int
95 lto_eq_type_slot_node (const void *p1, const void *p2)
97 const struct lto_decl_slot *ds1 =
98 (const struct lto_decl_slot *) p1;
99 const struct lto_decl_slot *ds2 =
100 (const struct lto_decl_slot *) p2;
102 return TYPE_UID (ds1->t) == TYPE_UID (ds2->t);
105 /*****************************************************************************
106 Output routines shared by all of the serialization passes.
107 *****************************************************************************/
110 /* Flush compressed stream data function, sends NUM_CHARS from CHARS
111 to the append lang hook, OPAQUE is currently always NULL. */
113 static void
114 lto_append_data (const char *chars, unsigned int num_chars, void *opaque)
116 gcc_assert (opaque == NULL);
117 lang_hooks.lto.append_data (chars, num_chars, opaque);
120 /* Pointer to the current compression stream. */
122 static struct lto_compression_stream *compression_stream = NULL;
124 /* Begin a new output section named NAME. If COMPRESS is true, zlib compress
125 the section. */
127 void
128 lto_begin_section (const char *name, bool compress)
130 lang_hooks.lto.begin_section (name);
132 /* FIXME lto: for now, suppress compression if the lang_hook that appends
133 data is anything other than assembler output. The effect here is that
134 we get compression of IL only in non-ltrans object files. */
135 gcc_assert (compression_stream == NULL);
136 if (compress)
137 compression_stream = lto_start_compression (lto_append_data, NULL);
141 /* End the current output section. */
143 void
144 lto_end_section (void)
146 if (compression_stream)
148 lto_end_compression (compression_stream);
149 compression_stream = NULL;
151 lang_hooks.lto.end_section ();
155 /* Write all of the chars in OBS to the assembler. Recycle the blocks
156 in obs as this is being done. */
158 void
159 lto_write_stream (struct lto_output_stream *obs)
161 unsigned int block_size = 1024;
162 struct lto_char_ptr_base *block;
163 struct lto_char_ptr_base *next_block;
164 if (!obs->first_block)
165 return;
167 for (block = obs->first_block; block; block = next_block)
169 const char *base = ((char *)block) + sizeof (struct lto_char_ptr_base);
170 unsigned int num_chars = block_size - sizeof (struct lto_char_ptr_base);
172 /* If this is not the last block, it is full. If it is the last
173 block, left_in_block indicates how many chars are unoccupied in
174 this block; subtract from num_chars to obtain occupancy. */
175 next_block = (struct lto_char_ptr_base *) block->ptr;
176 if (!next_block)
177 num_chars -= obs->left_in_block;
179 /* FIXME lto: WPA mode uses an ELF function as a lang_hook to append
180 output data. This hook is not happy with the way that compression
181 blocks up output differently to the way it's blocked here. So for
182 now, we don't compress WPA output. */
183 if (compression_stream)
185 lto_compress_block (compression_stream, base, num_chars);
186 lang_hooks.lto.append_data (NULL, 0, block);
188 else
189 lang_hooks.lto.append_data (base, num_chars, block);
190 block_size *= 2;
195 /* Adds a new block to output stream OBS. */
197 static void
198 append_block (struct lto_output_stream *obs)
200 struct lto_char_ptr_base *new_block;
202 gcc_assert (obs->left_in_block == 0);
204 if (obs->first_block == NULL)
206 /* This is the first time the stream has been written
207 into. */
208 obs->block_size = 1024;
209 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
210 obs->first_block = new_block;
212 else
214 struct lto_char_ptr_base *tptr;
215 /* Get a new block that is twice as big as the last block
216 and link it into the list. */
217 obs->block_size *= 2;
218 new_block = (struct lto_char_ptr_base*) xmalloc (obs->block_size);
219 /* The first bytes of the block are reserved as a pointer to
220 the next block. Set the chain of the full block to the
221 pointer to the new block. */
222 tptr = obs->current_block;
223 tptr->ptr = (char *) new_block;
226 /* Set the place for the next char at the first position after the
227 chain to the next block. */
228 obs->current_pointer
229 = ((char *) new_block) + sizeof (struct lto_char_ptr_base);
230 obs->current_block = new_block;
231 /* Null out the newly allocated block's pointer to the next block. */
232 new_block->ptr = NULL;
233 obs->left_in_block = obs->block_size - sizeof (struct lto_char_ptr_base);
237 /* Write a character to the output block. */
239 void
240 lto_output_1_stream (struct lto_output_stream *obs, char c)
242 /* No space left. */
243 if (obs->left_in_block == 0)
244 append_block (obs);
246 /* Write the actual character. */
247 *obs->current_pointer = c;
248 obs->current_pointer++;
249 obs->total_size++;
250 obs->left_in_block--;
254 /* Write raw DATA of length LEN to the output block OB. */
256 void
257 lto_output_data_stream (struct lto_output_stream *obs, const void *data,
258 size_t len)
260 while (len)
262 size_t copy;
264 /* No space left. */
265 if (obs->left_in_block == 0)
266 append_block (obs);
268 /* Determine how many bytes to copy in this loop. */
269 if (len <= obs->left_in_block)
270 copy = len;
271 else
272 copy = obs->left_in_block;
274 /* Copy the data and do bookkeeping. */
275 memcpy (obs->current_pointer, data, copy);
276 obs->current_pointer += copy;
277 obs->total_size += copy;
278 obs->left_in_block -= copy;
279 data = (const char *) data + copy;
280 len -= copy;
285 /* Output an unsigned LEB128 quantity to OBS. */
287 void
288 lto_output_uleb128_stream (struct lto_output_stream *obs,
289 unsigned HOST_WIDE_INT work)
293 unsigned int byte = (work & 0x7f);
294 work >>= 7;
295 if (work != 0)
296 /* More bytes to follow. */
297 byte |= 0x80;
299 lto_output_1_stream (obs, byte);
301 while (work != 0);
304 /* Identical to output_uleb128_stream above except using unsigned
305 HOST_WIDEST_INT type. For efficiency on host where unsigned HOST_WIDEST_INT
306 is not native, we only use this if we know that HOST_WIDE_INT is not wide
307 enough. */
309 void
310 lto_output_widest_uint_uleb128_stream (struct lto_output_stream *obs,
311 unsigned HOST_WIDEST_INT work)
315 unsigned int byte = (work & 0x7f);
316 work >>= 7;
317 if (work != 0)
318 /* More bytes to follow. */
319 byte |= 0x80;
321 lto_output_1_stream (obs, byte);
323 while (work != 0);
327 /* Output a signed LEB128 quantity. */
329 void
330 lto_output_sleb128_stream (struct lto_output_stream *obs, HOST_WIDE_INT work)
332 int more, byte;
336 byte = (work & 0x7f);
337 /* arithmetic shift */
338 work >>= 7;
339 more = !((work == 0 && (byte & 0x40) == 0)
340 || (work == -1 && (byte & 0x40) != 0));
341 if (more)
342 byte |= 0x80;
344 lto_output_1_stream (obs, byte);
346 while (more);
350 /* Lookup NAME in ENCODER. If NAME is not found, create a new entry in
351 ENCODER for NAME with the next available index of ENCODER, then
352 print the index to OBS. True is returned if NAME was added to
353 ENCODER. The resulting index is stored in THIS_INDEX.
355 If OBS is NULL, the only action is to add NAME to the encoder. */
357 bool
358 lto_output_decl_index (struct lto_output_stream *obs,
359 struct lto_tree_ref_encoder *encoder,
360 tree name, unsigned int *this_index)
362 void **slot;
363 struct lto_decl_slot d_slot;
364 int index;
365 bool new_entry_p = FALSE;
367 d_slot.t = name;
368 slot = htab_find_slot (encoder->tree_hash_table, &d_slot, INSERT);
369 if (*slot == NULL)
371 struct lto_decl_slot *new_slot
372 = (struct lto_decl_slot *) xmalloc (sizeof (struct lto_decl_slot));
373 index = encoder->next_index++;
375 new_slot->t = name;
376 new_slot->slot_num = index;
377 *slot = new_slot;
378 VEC_safe_push (tree, heap, encoder->trees, name);
379 new_entry_p = TRUE;
381 else
383 struct lto_decl_slot *old_slot = (struct lto_decl_slot *)*slot;
384 index = old_slot->slot_num;
387 if (obs)
388 lto_output_uleb128_stream (obs, index);
389 *this_index = index;
390 return new_entry_p;
393 /* Output a field DECL to OBS. */
395 void
396 lto_output_field_decl_index (struct lto_out_decl_state *decl_state,
397 struct lto_output_stream * obs, tree decl)
399 unsigned int index;
400 lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_FIELD_DECL],
401 decl, &index);
404 /* Output a function DECL to OBS. */
406 void
407 lto_output_fn_decl_index (struct lto_out_decl_state *decl_state,
408 struct lto_output_stream * obs, tree decl)
410 unsigned int index;
411 lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_FN_DECL],
412 decl, &index);
415 /* Output a namespace DECL to OBS. */
417 void
418 lto_output_namespace_decl_index (struct lto_out_decl_state *decl_state,
419 struct lto_output_stream * obs, tree decl)
421 unsigned int index;
422 lto_output_decl_index (obs,
423 &decl_state->streams[LTO_DECL_STREAM_NAMESPACE_DECL],
424 decl, &index);
427 /* Output a static or extern var DECL to OBS. */
429 void
430 lto_output_var_decl_index (struct lto_out_decl_state *decl_state,
431 struct lto_output_stream * obs, tree decl)
433 unsigned int index;
434 lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_VAR_DECL],
435 decl, &index);
438 /* Output a type DECL to OBS. */
440 void
441 lto_output_type_decl_index (struct lto_out_decl_state *decl_state,
442 struct lto_output_stream * obs, tree decl)
444 unsigned int index;
445 lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_TYPE_DECL],
446 decl, &index);
449 /* Output a type REF to OBS. */
451 void
452 lto_output_type_ref_index (struct lto_out_decl_state *decl_state,
453 struct lto_output_stream *obs, tree ref)
455 unsigned int index;
456 lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_TYPE],
457 ref, &index);
461 /* Create the output block and return it. */
463 struct lto_simple_output_block *
464 lto_create_simple_output_block (enum lto_section_type section_type)
466 struct lto_simple_output_block *ob
467 = ((struct lto_simple_output_block *)
468 xcalloc (1, sizeof (struct lto_simple_output_block)));
470 ob->section_type = section_type;
471 ob->decl_state = lto_get_out_decl_state ();
472 ob->main_stream = ((struct lto_output_stream *)
473 xcalloc (1, sizeof (struct lto_output_stream)));
475 return ob;
479 /* Produce a simple section for one of the ipa passes. */
481 void
482 lto_destroy_simple_output_block (struct lto_simple_output_block *ob)
484 char *section_name;
485 struct lto_simple_header header;
486 struct lto_output_stream *header_stream;
488 section_name = lto_get_section_name (ob->section_type, NULL, NULL);
489 lto_begin_section (section_name, !flag_wpa);
490 free (section_name);
492 /* Write the header which says how to decode the pieces of the
493 t. */
494 memset (&header, 0, sizeof (struct lto_simple_header));
495 header.lto_header.major_version = LTO_major_version;
496 header.lto_header.minor_version = LTO_minor_version;
497 header.lto_header.section_type = LTO_section_cgraph;
499 header.compressed_size = 0;
501 header.main_size = ob->main_stream->total_size;
503 header_stream = XCNEW (struct lto_output_stream);
504 lto_output_data_stream (header_stream, &header, sizeof header);
505 lto_write_stream (header_stream);
506 free (header_stream);
508 lto_write_stream (ob->main_stream);
510 /* Put back the assembly section that was there before we started
511 writing lto info. */
512 lto_end_section ();
514 free (ob->main_stream);
515 free (ob);
519 /* Return a new lto_out_decl_state. */
521 struct lto_out_decl_state *
522 lto_new_out_decl_state (void)
524 struct lto_out_decl_state *state = XCNEW (struct lto_out_decl_state);
525 int i;
526 htab_hash hash_fn;
527 htab_eq eq_fn;
529 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
531 if (i == LTO_DECL_STREAM_TYPE)
533 hash_fn = lto_hash_type_slot_node;
534 eq_fn = lto_eq_type_slot_node;
536 else
538 hash_fn = lto_hash_decl_slot_node;
539 eq_fn = lto_eq_decl_slot_node;
541 lto_init_tree_ref_encoder (&state->streams[i], hash_fn, eq_fn);
544 return state;
548 /* Delete STATE and components. */
550 void
551 lto_delete_out_decl_state (struct lto_out_decl_state *state)
553 int i;
555 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
556 lto_destroy_tree_ref_encoder (&state->streams[i]);
558 free (state);
562 /* Get the currently used lto_out_decl_state structure. */
564 struct lto_out_decl_state *
565 lto_get_out_decl_state (void)
567 return VEC_last (lto_out_decl_state_ptr, decl_state_stack);
570 /* Push STATE to top of out decl stack. */
572 void
573 lto_push_out_decl_state (struct lto_out_decl_state *state)
575 VEC_safe_push (lto_out_decl_state_ptr, heap, decl_state_stack, state);
578 /* Pop the currently used out-decl state from top of stack. */
580 struct lto_out_decl_state *
581 lto_pop_out_decl_state (void)
583 return VEC_pop (lto_out_decl_state_ptr, decl_state_stack);
586 /* Record STATE after it has been used in serializing the body of
587 FN_DECL. STATE should no longer be used by the caller. The ownership
588 of it is taken over from this point. */
590 void
591 lto_record_function_out_decl_state (tree fn_decl,
592 struct lto_out_decl_state *state)
594 int i;
596 /* Strip all hash tables to save some memory. */
597 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
598 if (state->streams[i].tree_hash_table)
600 htab_delete (state->streams[i].tree_hash_table);
601 state->streams[i].tree_hash_table = NULL;
603 state->fn_decl = fn_decl;
604 VEC_safe_push (lto_out_decl_state_ptr, heap, lto_function_decl_states,
605 state);