]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/lto-section-in.c
c++: Handle multiple aggregate overloads [PR95319].
[thirdparty/gcc.git] / gcc / lto-section-in.c
CommitLineData
d7f09764
DN
1/* Input functions for reading LTO sections.
2
8d9254fc 3 Copyright (C) 2009-2020 Free Software Foundation, Inc.
d7f09764
DN
4 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
10Software Foundation; either version 3, or (at your option) any later
11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
21
22#include "config.h"
23#include "system.h"
24#include "coretypes.h"
c7131fb2 25#include "backend.h"
957060b5 26#include "rtl.h"
40e23961 27#include "tree.h"
8e9055ae 28#include "gimple.h"
957060b5
AM
29#include "cgraph.h"
30#include "lto-streamer.h"
d7f09764
DN
31#include "lto-compress.h"
32
33/* Section names. These must correspond to the values of
34 enum lto_section_type. */
35const char *lto_section_name[LTO_N_SECTION_TYPES] =
36{
37 "decls",
38 "function_body",
0b394350 39 "statics",
ab96cc5b 40 "symtab",
c8429c2a 41 "ext_symtab",
369451ec 42 "refs",
49f836ba 43 "asm",
0b394350
AK
44 "jmpfuncs",
45 "pureconst",
46 "reference",
0208f7da 47 "profile",
15d0e7a0 48 "symbol_nodes",
922f15c2 49 "opts",
10a5dd5d 50 "cgraphopt",
2c9561b5 51 "inline",
b84d4347 52 "ipcp_trans",
ec6fe917 53 "icf",
db847fa8 54 "offload_table",
b2b40051 55 "mode_table",
88614dfa 56 "hsa",
ff6686d2 57 "lto",
b7bb3d35 58 "ipa_sra"
d7f09764
DN
59};
60
d7f09764
DN
61/* Hooks so that the ipa passes can call into the lto front end to get
62 sections. */
63
b8698a0f 64static struct lto_file_decl_data ** file_decl_data;
d7f09764
DN
65static lto_get_section_data_f* get_section_f;
66static lto_free_section_data_f* free_section_f;
67
68
69/* This is called from the lto front end to set up the hooks that are
70 used by the ipa passes to get the data that they will
71 deserialize. */
72
b8698a0f
L
73void
74lto_set_in_hooks (struct lto_file_decl_data ** data,
d7f09764
DN
75 lto_get_section_data_f* get_f,
76 lto_free_section_data_f* free_f)
77{
78 file_decl_data = data;
79 get_section_f = get_f;
80 free_section_f = free_f;
81}
82
83
84/* Return an array of file decl datas for all of the files passed to
85 this compilation. */
86
87struct lto_file_decl_data **
88lto_get_file_decl_data (void)
89{
90 gcc_assert (file_decl_data);
91 return file_decl_data;
92}
93
94/* Buffer structure for accumulating data from compression callbacks. */
95
96struct lto_buffer
97{
98 char *data;
99 size_t length;
100};
101
102/* Compression callback, append LENGTH bytes from DATA to the buffer pointed
103 to by OPAQUE. */
104
105static void
106lto_append_data (const char *data, unsigned length, void *opaque)
107{
108 struct lto_buffer *buffer = (struct lto_buffer *) opaque;
109
110 buffer->data = (char *) xrealloc (buffer->data, buffer->length + length);
111 memcpy (buffer->data + buffer->length, data, length);
112 buffer->length += length;
113}
114
115/* Header placed in returned uncompressed data streams. Allows the
116 uncompressed allocated data to be mapped back to the underlying
117 compressed data for use with free_section_f. */
118
119struct lto_data_header
120{
121 const char *data;
122 size_t len;
123};
124
125/* Return a char pointer to the start of a data stream for an LTO pass
126 or function. FILE_DATA indicates where to obtain the data.
127 SECTION_TYPE is the type of information to be obtained. NAME is
128 the name of the function and is only used when finding a function
129 body; otherwise it is NULL. LEN is the size of the data
130 returned. */
131
132const char *
b8698a0f 133lto_get_section_data (struct lto_file_decl_data *file_data,
d7f09764 134 enum lto_section_type section_type,
3c56d8d8 135 const char *name, int order,
ca834876 136 size_t *len, bool decompress)
d7f09764 137{
3c56d8d8
ML
138 const char *data = (get_section_f) (file_data, section_type, name, order,
139 len);
d7f09764
DN
140 const size_t header_length = sizeof (struct lto_data_header);
141 struct lto_data_header *header;
142 struct lto_buffer buffer;
143 struct lto_compression_stream *stream;
144 lto_stats.section_size[section_type] += *len;
145
146 if (data == NULL)
147 return NULL;
148
ca834876
JH
149 /* WPA->ltrans streams are not compressed with exception of function bodies
150 and variable initializers that has been verbatim copied from earlier
151 compilations. */
88614dfa 152 if ((!flag_ltrans || decompress) && section_type != LTO_section_lto)
91856735
RB
153 {
154 /* Create a mapping header containing the underlying data and length,
155 and prepend this to the uncompression buffer. The uncompressed data
156 then follows, and a pointer to the start of the uncompressed data is
157 returned. */
158 header = (struct lto_data_header *) xmalloc (header_length);
159 header->data = data;
160 header->len = *len;
161
162 buffer.data = (char *) header;
163 buffer.length = header_length;
164
165 stream = lto_start_uncompression (lto_append_data, &buffer);
166 lto_uncompress_block (stream, data, *len);
d1caf05a
ML
167 lto_end_uncompression (stream,
168 file_data->lto_section_header.get_compression ());
91856735
RB
169
170 *len = buffer.length - header_length;
171 data = buffer.data + header_length;
172 }
173
91856735 174 return data;
d7f09764
DN
175}
176
3c56d8d8
ML
177/* Return a char pointer to the start of a data stream for an LTO pass.
178 FILE_DATA indicates where to obtain the data.
179 SECTION_TYPE is the type of information to be obtained.
180 LEN is the size of the data returned. */
181
182const char *
183lto_get_summary_section_data (struct lto_file_decl_data *file_data,
184 enum lto_section_type section_type, size_t *len)
185{
186 return lto_get_section_data (file_data, section_type, NULL, 0, len);
187}
188
ca834876
JH
189/* Get the section data without any header parsing or uncompression. */
190
191const char *
192lto_get_raw_section_data (struct lto_file_decl_data *file_data,
193 enum lto_section_type section_type,
3c56d8d8 194 const char *name, int order,
ca834876
JH
195 size_t *len)
196{
3c56d8d8 197 return (get_section_f) (file_data, section_type, name, order, len);
ca834876 198}
d7f09764
DN
199
200/* Free the data found from the above call. The first three
201 parameters are the same as above. DATA is the data to be freed and
202 LEN is the length of that data. */
203
b8698a0f
L
204void
205lto_free_section_data (struct lto_file_decl_data *file_data,
d7f09764
DN
206 enum lto_section_type section_type,
207 const char *name,
208 const char *data,
ca834876 209 size_t len, bool decompress)
d7f09764
DN
210{
211 const size_t header_length = sizeof (struct lto_data_header);
212 const char *real_data = data - header_length;
213 const struct lto_data_header *header
214 = (const struct lto_data_header *) real_data;
215
216 gcc_assert (free_section_f);
217
ca834876 218 if (flag_ltrans && !decompress)
d7f09764
DN
219 {
220 (free_section_f) (file_data, section_type, name, data, len);
221 return;
222 }
223
224 /* The underlying data address has been extracted from the mapping header.
225 Free that, then free the allocated uncompression buffer. */
226 (free_section_f) (file_data, section_type, name, header->data, header->len);
227 free (CONST_CAST (char *, real_data));
228}
229
ca834876
JH
230/* Free data allocated by lto_get_raw_section_data. */
231
232void
233lto_free_raw_section_data (struct lto_file_decl_data *file_data,
234 enum lto_section_type section_type,
235 const char *name,
236 const char *data,
237 size_t len)
238{
239 (free_section_f) (file_data, section_type, name, data, len);
240}
d7f09764
DN
241
242/* Load a section of type SECTION_TYPE from FILE_DATA, parse the
243 header and then return an input block pointing to the section. The
244 raw pointer to the section is returned in DATAR and LEN. These are
245 used to free the section. Return NULL if the section is not present. */
246
99b1c316 247class lto_input_block *
b8698a0f 248lto_create_simple_input_block (struct lto_file_decl_data *file_data,
d7f09764
DN
249 enum lto_section_type section_type,
250 const char **datar, size_t *len)
251{
3c56d8d8
ML
252 const char *data = lto_get_section_data (file_data, section_type, NULL, 0,
253 len);
b8698a0f 254 const struct lto_simple_header * header
d7f09764
DN
255 = (const struct lto_simple_header *) data;
256
4ad9a9de 257 int main_offset = sizeof (struct lto_simple_header);
d7f09764
DN
258
259 if (!data)
260 return NULL;
261
d7f09764 262 *datar = data;
db847fa8
JJ
263 return new lto_input_block (data + main_offset, header->main_size,
264 file_data->mode_table);
d7f09764
DN
265}
266
267
268/* Close the section returned from a call to
269 LTO_CREATE_SIMPLE_INPUT_BLOCK. IB is the input block returned from
270 that call. The FILE_DATA and SECTION_TYPE are the same as what was
271 passed to that call and the DATA and LEN are what was returned from
272 that call. */
273
274void
b8698a0f 275lto_destroy_simple_input_block (struct lto_file_decl_data *file_data,
d7f09764 276 enum lto_section_type section_type,
99b1c316 277 class lto_input_block *ib,
d7f09764
DN
278 const char *data, size_t len)
279{
207c68cd 280 delete ib;
d7f09764
DN
281 lto_free_section_data (file_data, section_type, NULL, data, len);
282}
283
284/*****************************************************************************/
285/* Record renamings of static declarations */
286/*****************************************************************************/
287
288struct lto_renaming_slot
289{
290 const char *old_name;
291 const char *new_name;
292};
293
294/* Returns a hash code for P. */
295
296static hashval_t
297hash_name (const void *p)
298{
299 const struct lto_renaming_slot *ds = (const struct lto_renaming_slot *) p;
300 return (hashval_t) htab_hash_string (ds->new_name);
301}
302
303/* Returns nonzero if P1 and P2 are equal. */
304
305static int
306eq_name (const void *p1, const void *p2)
307{
308 const struct lto_renaming_slot *s1 =
309 (const struct lto_renaming_slot *) p1;
310 const struct lto_renaming_slot *s2 =
311 (const struct lto_renaming_slot *) p2;
312
313 return strcmp (s1->new_name, s2->new_name) == 0;
314}
315
316/* Free a renaming table entry. */
317
318static void
319renaming_slot_free (void *slot)
320{
321 struct lto_renaming_slot *s = (struct lto_renaming_slot *) slot;
322
323 free (CONST_CAST (void *, (const void *) s->old_name));
324 free (CONST_CAST (void *, (const void *) s->new_name));
325 free ((void *) s);
326}
327
328/* Create an empty hash table for recording declaration renamings. */
329
330htab_t
331lto_create_renaming_table (void)
332{
333 return htab_create (37, hash_name, eq_name, renaming_slot_free);
334}
335
336/* Record a declaration name mapping OLD_NAME -> NEW_NAME. DECL_DATA
337 holds the renaming hash table to use. */
338
339void
340lto_record_renamed_decl (struct lto_file_decl_data *decl_data,
341 const char *old_name, const char *new_name)
342{
343 void **slot;
344 struct lto_renaming_slot r_slot;
345
346 r_slot.new_name = new_name;
347 slot = htab_find_slot (decl_data->renaming_hash_table, &r_slot, INSERT);
348 if (*slot == NULL)
349 {
350 struct lto_renaming_slot *new_slot = XNEW (struct lto_renaming_slot);
351 new_slot->old_name = xstrdup (old_name);
352 new_slot->new_name = xstrdup (new_name);
353 *slot = new_slot;
354 }
355 else
356 gcc_unreachable ();
357}
358
359
360/* Given a string NAME, return the string that it has been mapped to
361 by lto_record_renamed_decl. If NAME was not renamed, it is
362 returned unchanged. DECL_DATA holds the renaming hash table to use. */
363
364const char *
365lto_get_decl_name_mapping (struct lto_file_decl_data *decl_data,
366 const char *name)
367{
368 htab_t renaming_hash_table = decl_data->renaming_hash_table;
369 struct lto_renaming_slot *slot;
370 struct lto_renaming_slot r_slot;
371
372 r_slot.new_name = name;
373 slot = (struct lto_renaming_slot *) htab_find (renaming_hash_table, &r_slot);
374 if (slot)
375 return slot->old_name;
376 else
377 return name;
378}
379
380/*****************************************************************************/
381/* Input decl state object. */
382/*****************************************************************************/
383
384/* Return a newly created in-decl state object. */
385
386struct lto_in_decl_state *
387lto_new_in_decl_state (void)
388{
766090c2 389 return ggc_cleared_alloc<lto_in_decl_state> ();
d7f09764
DN
390}
391
392/* Delete STATE and its components. */
393
394void
395lto_delete_in_decl_state (struct lto_in_decl_state *state)
396{
397 int i;
398
399 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
9c71e9df 400 vec_free (state->streams[i]);
49ba8180 401 ggc_free (state);
d7f09764
DN
402}
403
d7f09764
DN
404/* Search the in-decl state of a function FUNC contained in the file
405 associated with FILE_DATA. Return NULL if not found. */
406
407struct lto_in_decl_state*
408lto_get_function_in_decl_state (struct lto_file_decl_data *file_data,
409 tree func)
410{
411 struct lto_in_decl_state temp;
907dadbd 412 lto_in_decl_state **slot;
d7f09764
DN
413
414 temp.fn_decl = func;
907dadbd
TS
415 slot = file_data->function_decl_states->find_slot (&temp, NO_INSERT);
416 return slot? *slot : NULL;
d7f09764 417}
bc0fe8cb 418
256eefa9
JH
419/* Free decl_states. */
420
421void
422lto_free_function_in_decl_state (struct lto_in_decl_state *state)
423{
424 int i;
425 for (i = 0; i < LTO_N_DECL_STREAMS; i++)
9c71e9df 426 vec_free (state->streams[i]);
256eefa9
JH
427 ggc_free (state);
428}
429
430/* Free decl_states associated with NODE. This makes it possible to furhter
431 release trees needed by the NODE's body. */
432
433void
5e20cdc9 434lto_free_function_in_decl_state_for_node (symtab_node *node)
256eefa9
JH
435{
436 struct lto_in_decl_state temp;
907dadbd 437 lto_in_decl_state **slot;
256eefa9 438
67348ccc 439 if (!node->lto_file_data)
256eefa9
JH
440 return;
441
67348ccc 442 temp.fn_decl = node->decl;
907dadbd
TS
443 slot
444 = node->lto_file_data->function_decl_states->find_slot (&temp, NO_INSERT);
256eefa9
JH
445 if (slot && *slot)
446 {
907dadbd
TS
447 lto_free_function_in_decl_state (*slot);
448 node->lto_file_data->function_decl_states->clear_slot (slot);
256eefa9 449 }
67348ccc 450 node->lto_file_data = NULL;
256eefa9
JH
451}
452
bc0fe8cb
JH
453
454/* Report read pass end of the section. */
455
456void
99b1c316 457lto_section_overrun (class lto_input_block *ib)
bc0fe8cb 458{
40fecdd6 459 fatal_error (input_location, "bytecode stream: trying to read %d bytes "
f242c0a5
JH
460 "after the end of the input buffer", ib->p - ib->len);
461}
462
463/* Report out of range value. */
464
465void
466lto_value_range_error (const char *purpose, HOST_WIDE_INT val,
467 HOST_WIDE_INT min, HOST_WIDE_INT max)
468{
40fecdd6
JM
469 fatal_error (input_location,
470 "%s out of range: Range is %i to %i, value is %i",
f242c0a5 471 purpose, (int)min, (int)max, (int)val);
bc0fe8cb 472}