re PR rtl-optimization/54739 (FAIL: gcc.dg/lower-subreg-1.c scan-rtl-dump subreg1...
[official-gcc.git] / gcc / lto / lto-partition.h
blob5bf4055269f208ecc242ad6d37a4e10ee85b1b0d
1 /* LTO partitioning logic routines.
2 Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 /* Structure describing ltrans partitions. */
23 struct ltrans_partition_def
25 lto_symtab_encoder_t encoder;
26 const char * name;
27 int insns;
28 pointer_set_t *initializers_visited;
31 typedef struct ltrans_partition_def *ltrans_partition;
32 DEF_VEC_P(ltrans_partition);
33 DEF_VEC_ALLOC_P(ltrans_partition,heap);
35 extern VEC(ltrans_partition, heap) *ltrans_partitions;
37 void lto_1_to_1_map (void);
38 void lto_max_map (void);
39 void lto_balanced_map (void);
40 void lto_promote_cross_file_statics (void);
41 void free_ltrans_partitions (void);