1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
|
/* Functions for writing LTO sections.
Copyright (C) 2009-2018 Free Software Foundation, Inc.
Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
version.
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "backend.h"
#include "rtl.h"
#include "tree.h"
#include "gimple.h"
#include "cgraph.h"
#include "data-streamer.h"
#include "langhooks.h"
#include "lto-compress.h"
static vec<lto_out_decl_state_ptr> decl_state_stack;
/* List of out decl states used by functions. We use this to
generate the decl directory later. */
vec<lto_out_decl_state_ptr> lto_function_decl_states;
/*****************************************************************************
Output routines shared by all of the serialization passes.
*****************************************************************************/
/* Flush compressed stream data function, sends NUM_CHARS from CHARS
to the append lang hook, OPAQUE is currently always NULL. */
static void
lto_append_data (const char *chars, unsigned int num_chars, void *opaque)
{
gcc_assert (opaque == NULL);
lang_hooks.lto.append_data (chars, num_chars, opaque);
}
/* Pointer to the current compression stream. */
static struct lto_compression_stream *compression_stream = NULL;
/* Begin a new output section named NAME. If COMPRESS is true, zlib compress
the section. */
void
lto_begin_section (const char *name, bool compress)
{
lang_hooks.lto.begin_section (name);
gcc_assert (compression_stream == NULL);
if (compress)
compression_stream = lto_start_compression (lto_append_data, NULL);
}
/* End the current output section. */
void
lto_end_section (void)
{
if (compression_stream)
{
lto_end_compression (compression_stream);
compression_stream = NULL;
}
lang_hooks.lto.end_section ();
}
/* Write SIZE bytes starting at DATA to the assembler. */
void
lto_write_data (const void *data, unsigned int size)
{
if (compression_stream)
lto_compress_block (compression_stream, (const char *)data, size);
else
lang_hooks.lto.append_data ((const char *)data, size, NULL);
}
/* Write SIZE bytes starting at DATA to the assembler. */
void
lto_write_raw_data (const void *data, unsigned int size)
{
lang_hooks.lto.append_data ((const char *)data, size, NULL);
}
/* Write all of the chars in OBS to the assembler. Recycle the blocks
in obs as this is being done. */
void
lto_write_stream (struct lto_output_stream *obs)
{
unsigned int block_size = 1024;
struct lto_char_ptr_base *block;
struct lto_char_ptr_base *next_block;
if (!obs->first_block)
return;
for (block = obs->first_block; block; block = next_block)
{
const char *base = ((char *)block) + sizeof (struct lto_char_ptr_base);
unsigned int num_chars = block_size - sizeof (struct lto_char_ptr_base);
/* If this is not the last block, it is full. If it is the last
block, left_in_block indicates how many chars are unoccupied in
this block; subtract from num_chars to obtain occupancy. */
next_block = (struct lto_char_ptr_base *) block->ptr;
if (!next_block)
num_chars -= obs->left_in_block;
if (compression_stream)
lto_compress_block (compression_stream, base, num_chars);
else
lang_hooks.lto.append_data (base, num_chars, block);
free (block);
block_size *= 2;
}
}
/* Lookup NAME in ENCODER. If NAME is not found, create a new entry in
ENCODER for NAME with the next available index of ENCODER, then
print the index to OBS. True is returned if NAME was added to
ENCODER. The resulting index is stored in THIS_INDEX.
If OBS is NULL, the only action is to add NAME to the encoder. */
bool
lto_output_decl_index (struct lto_output_stream *obs,
struct lto_tree_ref_encoder *encoder,
tree name, unsigned int *this_index)
{
bool new_entry_p = FALSE;
bool existed_p;
unsigned int &index
= encoder->tree_hash_table->get_or_insert (name, &existed_p);
if (!existed_p)
{
index = encoder->trees.length ();
encoder->trees.safe_push (name);
new_entry_p = TRUE;
}
if (obs)
streamer_write_uhwi_stream (obs, index);
*this_index = index;
return new_entry_p;
}
/* Output a field DECL to OBS. */
void
lto_output_field_decl_index (struct lto_out_decl_state *decl_state,
struct lto_output_stream * obs, tree decl)
{
unsigned int index;
lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_FIELD_DECL],
decl, &index);
}
/* Output a function DECL to OBS. */
void
lto_output_fn_decl_index (struct lto_out_decl_state *decl_state,
struct lto_output_stream * obs, tree decl)
{
unsigned int index;
lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_FN_DECL],
decl, &index);
}
/* Output a namespace DECL to OBS. */
void
lto_output_namespace_decl_index (struct lto_out_decl_state *decl_state,
struct lto_output_stream * obs, tree decl)
{
unsigned int index;
lto_output_decl_index (obs,
&decl_state->streams[LTO_DECL_STREAM_NAMESPACE_DECL],
decl, &index);
}
/* Output a static or extern var DECL to OBS. */
void
lto_output_var_decl_index (struct lto_out_decl_state *decl_state,
struct lto_output_stream * obs, tree decl)
{
unsigned int index;
lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_VAR_DECL],
decl, &index);
}
/* Output a type DECL to OBS. */
void
lto_output_type_decl_index (struct lto_out_decl_state *decl_state,
struct lto_output_stream * obs, tree decl)
{
unsigned int index;
lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_TYPE_DECL],
decl, &index);
}
/* Output a type REF to OBS. */
void
lto_output_type_ref_index (struct lto_out_decl_state *decl_state,
struct lto_output_stream *obs, tree ref)
{
unsigned int index;
lto_output_decl_index (obs, &decl_state->streams[LTO_DECL_STREAM_TYPE],
ref, &index);
}
/* Create the output block and return it. */
struct lto_simple_output_block *
lto_create_simple_output_block (enum lto_section_type section_type)
{
struct lto_simple_output_block *ob
= ((struct lto_simple_output_block *)
xcalloc (1, sizeof (struct lto_simple_output_block)));
ob->section_type = section_type;
ob->decl_state = lto_get_out_decl_state ();
ob->main_stream = ((struct lto_output_stream *)
xcalloc (1, sizeof (struct lto_output_stream)));
return ob;
}
/* Produce a simple section for one of the ipa passes. */
void
lto_destroy_simple_output_block (struct lto_simple_output_block *ob)
{
char *section_name;
struct lto_simple_header header;
section_name = lto_get_section_name (ob->section_type, NULL, NULL);
lto_begin_section (section_name, !flag_wpa);
free (section_name);
/* Write the header which says how to decode the pieces of the
t. */
memset (&header, 0, sizeof (struct lto_simple_header));
header.major_version = LTO_major_version;
header.minor_version = LTO_minor_version;
header.main_size = ob->main_stream->total_size;
lto_write_data (&header, sizeof header);
lto_write_stream (ob->main_stream);
/* Put back the assembly section that was there before we started
writing lto info. */
lto_end_section ();
free (ob->main_stream);
free (ob);
}
/* Return a new lto_out_decl_state. */
struct lto_out_decl_state *
lto_new_out_decl_state (void)
{
struct lto_out_decl_state *state = XCNEW (struct lto_out_decl_state);
int i;
for (i = 0; i < LTO_N_DECL_STREAMS; i++)
lto_init_tree_ref_encoder (&state->streams[i]);
/* At WPA time we do not compress sections by default. */
state->compressed = !flag_wpa;
return state;
}
/* Delete STATE and components. */
void
lto_delete_out_decl_state (struct lto_out_decl_state *state)
{
int i;
for (i = 0; i < LTO_N_DECL_STREAMS; i++)
lto_destroy_tree_ref_encoder (&state->streams[i]);
free (state);
}
/* Get the currently used lto_out_decl_state structure. */
struct lto_out_decl_state *
lto_get_out_decl_state (void)
{
return decl_state_stack.last ();
}
/* Push STATE to top of out decl stack. */
void
lto_push_out_decl_state (struct lto_out_decl_state *state)
{
decl_state_stack.safe_push (state);
}
/* Pop the currently used out-decl state from top of stack. */
struct lto_out_decl_state *
lto_pop_out_decl_state (void)
{
return decl_state_stack.pop ();
}
/* Record STATE after it has been used in serializing the body of
FN_DECL. STATE should no longer be used by the caller. The ownership
of it is taken over from this point. */
void
lto_record_function_out_decl_state (tree fn_decl,
struct lto_out_decl_state *state)
{
int i;
/* Strip all hash tables to save some memory. */
for (i = 0; i < LTO_N_DECL_STREAMS; i++)
if (state->streams[i].tree_hash_table)
{
delete state->streams[i].tree_hash_table;
state->streams[i].tree_hash_table = NULL;
}
state->fn_decl = fn_decl;
lto_function_decl_states.safe_push (state);
}
|