2 Copyright (C) 2014 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
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
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/>. */
20 /* This is very simple pass that looks for static symbols that are used
21 exlusively by symbol within one comdat group. In this case it makes
22 sense to bring the symbol itself into the group to avoid dead code
23 that would arrise when the comdat group from current unit is replaced
24 by a different copy. Consider for example:
35 if Q is used only by T, it makes sense to put Q into T's comdat group.
37 The pass solve simple dataflow across the callgraph trying to prove what
38 symbols are used exclusively from a given comdat group.
40 The implementation maintains a queue linked by AUX pointer terminated by
41 pointer value 1. Lattice values are NULL for TOP, actual comdat group, or
42 ERROR_MARK_NODE for bottom.
44 TODO: When symbol is used only by comdat symbols, but from different groups,
45 it would make sense to produce a new comdat group for it with anonymous name.
47 TODO2: We can't mix variables and functions within one group. Currently
48 we just give up on references of symbols of different types. We also should
49 handle this by anonymous comdat group section. */
53 #include "coretypes.h"
58 #include "plugin-api.h"
63 #include "hard-reg-set.h"
68 #include "tree-pass.h"
70 /* Main dataflow loop propagating comdat groups across
71 the symbol table. All references to SYMBOL are examined
72 and NEWGROUP is updated accordingly. MAP holds current lattice
73 values for individual symbols. */
76 propagate_comdat_group (struct symtab_node
*symbol
,
77 tree newgroup
, hash_map
<symtab_node
*, tree
> &map
)
82 /* Walk all references to SYMBOL, recursively dive into aliases. */
85 symbol
->iterate_referring (i
, ref
)
86 && newgroup
!= error_mark_node
; i
++)
88 struct symtab_node
*symbol2
= ref
->referring
;
90 if (ref
->use
== IPA_REF_ALIAS
)
92 newgroup
= propagate_comdat_group (symbol2
, newgroup
, map
);
96 /* One COMDAT group can not hold both variables and functions at
97 a same time. For now we just go to BOTTOM, in future we may
98 invent special comdat groups for this case. */
100 if (symbol
->type
!= symbol2
->type
)
102 newgroup
= error_mark_node
;
106 /* If we see inline clone, its comdat group actually
107 corresponds to the comdat group of the function it is inlined
110 if (cgraph_node
* cn
= dyn_cast
<cgraph_node
*> (symbol2
))
112 if (cn
->global
.inlined_to
)
113 symbol2
= cn
->global
.inlined_to
;
116 /* The actual merge operation. */
118 tree
*val2
= map
.get (symbol2
);
120 if (val2
&& *val2
!= newgroup
)
125 newgroup
= error_mark_node
;
129 /* If we analyze function, walk also callers. */
131 cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (symbol
);
134 for (struct cgraph_edge
* edge
= cnode
->callers
;
135 edge
&& newgroup
!= error_mark_node
; edge
= edge
->next_caller
)
137 struct symtab_node
*symbol2
= edge
->caller
;
139 /* If we see inline clone, its comdat group actually
140 corresponds to the comdat group of the function it is inlined
143 if (cgraph_node
* cn
= dyn_cast
<cgraph_node
*> (symbol2
))
145 if (cn
->global
.inlined_to
)
146 symbol2
= cn
->global
.inlined_to
;
149 /* The actual merge operation. */
151 tree
*val2
= map
.get (symbol2
);
153 if (val2
&& *val2
!= newgroup
)
158 newgroup
= error_mark_node
;
165 /* Add all references of SYMBOL that are defined into queue started by FIRST
166 and linked by AUX pointer (unless they are already enqueued).
167 Walk recursively inlined functions. */
170 enqueue_references (symtab_node
**first
,
174 struct ipa_ref
*ref
= NULL
;
176 for (i
= 0; symbol
->iterate_reference (i
, ref
); i
++)
178 symtab_node
*node
= ref
->referred
->ultimate_alias_target ();
179 if (!node
->aux
&& node
->definition
)
186 if (cgraph_node
*cnode
= dyn_cast
<cgraph_node
*> (symbol
))
188 struct cgraph_edge
*edge
;
190 for (edge
= cnode
->callees
; edge
; edge
= edge
->next_callee
)
191 if (!edge
->inline_failed
)
192 enqueue_references (first
, edge
->callee
);
195 symtab_node
*node
= edge
->callee
->ultimate_alias_target ();
196 if (!node
->aux
&& node
->definition
)
205 /* Set comdat group of SYMBOL to GROUP.
206 Callback for symtab_for_node_and_aliases. */
209 set_comdat_group (symtab_node
*symbol
,
212 symtab_node
*head
= (symtab_node
*)head_p
;
214 gcc_assert (!symbol
->get_comdat_group ());
215 symbol
->set_comdat_group (head
->get_comdat_group ());
216 symbol
->add_to_same_comdat_group (head
);
220 /* The actual pass with the main dataflow loop. */
225 hash_map
<symtab_node
*, tree
> map (251);
226 hash_map
<tree
, symtab_node
*> comdat_head_map (251);
228 bool comdat_group_seen
= false;
229 symtab_node
*first
= (symtab_node
*) (void *) 1;
232 /* Start the dataflow by assigning comdat group to symbols that are in comdat
233 groups already. All other externally visible symbols must stay, we use
234 ERROR_MARK_NODE as bottom for the propagation. */
236 FOR_EACH_DEFINED_SYMBOL (symbol
)
237 if (!symbol
->real_symbol_p ())
239 else if ((group
= symbol
->get_comdat_group ()) != NULL
)
241 map
.put (symbol
, group
);
242 comdat_head_map
.put (group
, symbol
);
243 comdat_group_seen
= true;
245 /* Mark the symbol so we won't waste time visiting it for dataflow. */
246 symbol
->aux
= (symtab_node
*) (void *) 1;
248 /* See symbols that can not be privatized to comdats; that is externally
249 visible symbols or otherwise used ones. We also do not want to mangle
250 user section names. */
251 else if (symbol
->externally_visible
252 || symbol
->force_output
253 || symbol
->used_from_other_partition
254 || TREE_THIS_VOLATILE (symbol
->decl
)
255 || symbol
->get_section ()
256 || (TREE_CODE (symbol
->decl
) == FUNCTION_DECL
257 && (DECL_STATIC_CONSTRUCTOR (symbol
->decl
)
258 || DECL_STATIC_DESTRUCTOR (symbol
->decl
))))
260 map
.put (symbol
->ultimate_alias_target (), error_mark_node
);
262 /* Mark the symbol so we won't waste time visiting it for dataflow. */
263 symbol
->aux
= (symtab_node
*) (void *) 1;
267 /* Enqueue symbol for dataflow. */
272 if (!comdat_group_seen
)
274 FOR_EACH_DEFINED_SYMBOL (symbol
)
279 /* The actual dataflow. */
281 while (first
!= (void *) 1)
287 first
= (symtab_node
*)first
->aux
;
289 /* Get current lattice value of SYMBOL. */
290 val
= map
.get (symbol
);
294 /* If it is bottom, there is nothing to do; do not clear AUX
295 so we won't re-queue the symbol. */
296 if (group
== error_mark_node
)
299 newgroup
= propagate_comdat_group (symbol
, group
, map
);
301 /* If nothing changed, proceed to next symbol. */
302 if (newgroup
== group
)
308 /* Update lattice value and enqueue all references for re-visiting. */
309 gcc_assert (newgroup
);
313 map
.put (symbol
, newgroup
);
314 enqueue_references (&first
, symbol
);
316 /* We may need to revisit the symbol unless it is BOTTOM. */
317 if (newgroup
!= error_mark_node
)
321 /* Finally assign symbols to the sections. */
323 FOR_EACH_DEFINED_SYMBOL (symbol
)
326 if (!symbol
->get_comdat_group ()
328 && symbol
->real_symbol_p ())
330 tree group
= *map
.get (symbol
);
332 if (group
== error_mark_node
)
336 fprintf (dump_file
, "Localizing symbol\n");
337 symbol
->dump (dump_file
);
338 fprintf (dump_file
, "To group: %s\n", IDENTIFIER_POINTER (group
));
340 symbol
->call_for_symbol_and_aliases (set_comdat_group
,
341 *comdat_head_map
.get (group
),
350 const pass_data pass_data_ipa_comdats
=
353 "comdats", /* name */
354 OPTGROUP_NONE
, /* optinfo_flags */
355 TV_IPA_COMDATS
, /* tv_id */
356 0, /* properties_required */
357 0, /* properties_provided */
358 0, /* properties_destroyed */
359 0, /* todo_flags_start */
360 0, /* todo_flags_finish */
363 class pass_ipa_comdats
: public ipa_opt_pass_d
366 pass_ipa_comdats (gcc::context
*ctxt
)
367 : ipa_opt_pass_d (pass_data_ipa_comdats
, ctxt
,
368 NULL
, /* generate_summary */
369 NULL
, /* write_summary */
370 NULL
, /* read_summary */
371 NULL
, /* write_optimization_summary */
372 NULL
, /* read_optimization_summary */
373 NULL
, /* stmt_fixup */
374 0, /* function_transform_todo_flags_start */
375 NULL
, /* function_transform */
376 NULL
) /* variable_transform */
379 /* opt_pass methods: */
380 virtual bool gate (function
*);
381 virtual unsigned int execute (function
*) { return ipa_comdats (); }
383 }; // class pass_ipa_comdats
386 pass_ipa_comdats::gate (function
*)
394 make_pass_ipa_comdats (gcc::context
*ctxt
)
396 return new pass_ipa_comdats (ctxt
);