1 /* Basic IPA optimizations and utilities.
2 Copyright (C) 2003, 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
26 #include "tree-pass.h"
31 /* Fill array order with all nodes with output flag set in the reverse
35 cgraph_postorder (struct cgraph_node
**order
)
37 struct cgraph_node
*node
, *node2
;
40 struct cgraph_edge
*edge
, last
;
43 struct cgraph_node
**stack
=
44 XCNEWVEC (struct cgraph_node
*, cgraph_n_nodes
);
46 /* We have to deal with cycles nicely, so use a depth first traversal
47 output algorithm. Ignore the fact that some functions won't need
48 to be output and put them into order as well, so we get dependencies
49 right through inline functions. */
50 for (node
= cgraph_nodes
; node
; node
= node
->next
)
52 for (pass
= 0; pass
< 2; pass
++)
53 for (node
= cgraph_nodes
; node
; node
= node
->next
)
56 || (!cgraph_only_called_directly_p (node
)
57 && !node
->address_taken
)))
63 node
->aux
= node
->callers
;
66 while (node2
->aux
!= &last
)
68 edge
= (struct cgraph_edge
*) node2
->aux
;
69 if (edge
->next_caller
)
70 node2
->aux
= edge
->next_caller
;
73 if (!edge
->caller
->aux
)
75 if (!edge
->caller
->callers
)
76 edge
->caller
->aux
= &last
;
78 edge
->caller
->aux
= edge
->caller
->callers
;
79 stack
[stack_size
++] = node2
;
84 if (node2
->aux
== &last
)
86 order
[order_pos
++] = node2
;
88 node2
= stack
[--stack_size
];
95 for (node
= cgraph_nodes
; node
; node
= node
->next
)
100 /* Look for all functions inlined to NODE and update their inlined_to pointers
104 update_inlined_to_pointer (struct cgraph_node
*node
, struct cgraph_node
*inlined_to
)
106 struct cgraph_edge
*e
;
107 for (e
= node
->callees
; e
; e
= e
->next_callee
)
108 if (e
->callee
->global
.inlined_to
)
110 e
->callee
->global
.inlined_to
= inlined_to
;
111 update_inlined_to_pointer (e
->callee
, inlined_to
);
115 /* Perform reachability analysis and reclaim all unreachable nodes.
116 If BEFORE_INLINING_P is true this function is called before inlining
117 decisions has been made. If BEFORE_INLINING_P is false this function also
118 removes unneeded bodies of extern inline functions. */
121 cgraph_remove_unreachable_nodes (bool before_inlining_p
, FILE *file
)
123 struct cgraph_node
*first
= (struct cgraph_node
*) (void *) 1;
124 struct cgraph_node
*processed
= (struct cgraph_node
*) (void *) 2;
125 struct cgraph_node
*node
, *next
;
126 bool changed
= false;
128 #ifdef ENABLE_CHECKING
132 fprintf (file
, "\nReclaiming functions:");
133 #ifdef ENABLE_CHECKING
134 for (node
= cgraph_nodes
; node
; node
= node
->next
)
135 gcc_assert (!node
->aux
);
137 for (node
= cgraph_nodes
; node
; node
= node
->next
)
138 if (!cgraph_can_remove_if_no_direct_calls_p (node
)
139 && ((!DECL_EXTERNAL (node
->decl
))
141 || before_inlining_p
))
143 gcc_assert (!node
->global
.inlined_to
);
146 node
->reachable
= true;
150 gcc_assert (!node
->aux
);
151 node
->reachable
= false;
154 /* Perform reachability analysis. As a special case do not consider
155 extern inline functions not inlined as live because we won't output
157 while (first
!= (void *) 1)
159 struct cgraph_edge
*e
;
161 first
= (struct cgraph_node
*) first
->aux
;
162 node
->aux
= processed
;
165 for (e
= node
->callees
; e
; e
= e
->next_callee
)
166 if (!e
->callee
->reachable
168 && (!e
->inline_failed
|| !e
->callee
->analyzed
169 || (!DECL_EXTERNAL (e
->callee
->decl
))
170 || before_inlining_p
))
172 bool prev_reachable
= e
->callee
->reachable
;
173 e
->callee
->reachable
|= node
->reachable
;
175 || (e
->callee
->aux
== processed
176 && prev_reachable
!= e
->callee
->reachable
))
178 e
->callee
->aux
= first
;
183 /* If any function in a comdat group is reachable, force
184 all other functions in the same comdat group to be
186 if (node
->same_comdat_group
188 && !node
->global
.inlined_to
)
190 for (next
= node
->same_comdat_group
;
192 next
= next
->same_comdat_group
)
193 if (!next
->reachable
)
197 next
->reachable
= true;
201 /* We can freely remove inline clones even if they are cloned, however if
202 function is clone of real clone, we must keep it around in order to
203 make materialize_clones produce function body with the changes
205 while (node
->clone_of
&& !node
->clone_of
->aux
&& !gimple_has_body_p (node
->decl
))
207 bool noninline
= node
->clone_of
->decl
!= node
->decl
;
208 node
= node
->clone_of
;
218 /* Remove unreachable nodes. Extern inline functions need special care;
219 Unreachable extern inline functions shall be removed.
220 Reachable extern inline functions we never inlined shall get their bodies
222 Reachable extern inline functions we sometimes inlined will be turned into
223 unanalyzed nodes so they look like for true extern functions to the rest
224 of code. Body of such functions is released via remove_node once the
225 inline clones are eliminated. */
226 for (node
= cgraph_nodes
; node
; node
= next
)
229 if (node
->aux
&& !node
->reachable
)
231 cgraph_node_remove_callees (node
);
232 node
->analyzed
= false;
233 node
->local
.inlinable
= false;
237 node
->global
.inlined_to
= NULL
;
239 fprintf (file
, " %s", cgraph_node_name (node
));
240 if (!node
->analyzed
|| !DECL_EXTERNAL (node
->decl
) || before_inlining_p
)
241 cgraph_remove_node (node
);
244 struct cgraph_edge
*e
;
246 /* See if there is reachable caller. */
247 for (e
= node
->callers
; e
; e
= e
->next_caller
)
251 /* If so, we need to keep node in the callgraph. */
252 if (e
|| node
->needed
)
254 struct cgraph_node
*clone
;
256 /* If there are still clones, we must keep body around.
257 Otherwise we can just remove the body but keep the clone. */
258 for (clone
= node
->clones
; clone
;
259 clone
= clone
->next_sibling_clone
)
264 cgraph_release_function_body (node
);
265 node
->analyzed
= false;
266 node
->local
.inlinable
= false;
268 cgraph_node_remove_callees (node
);
269 if (node
->prev_sibling_clone
)
270 node
->prev_sibling_clone
->next_sibling_clone
= node
->next_sibling_clone
;
271 else if (node
->clone_of
)
272 node
->clone_of
->clones
= node
->next_sibling_clone
;
273 if (node
->next_sibling_clone
)
274 node
->next_sibling_clone
->prev_sibling_clone
= node
->prev_sibling_clone
;
275 node
->clone_of
= NULL
;
276 node
->next_sibling_clone
= NULL
;
277 node
->prev_sibling_clone
= NULL
;
280 cgraph_remove_node (node
);
285 for (node
= cgraph_nodes
; node
; node
= node
->next
)
287 /* Inline clones might be kept around so their materializing allows further
288 cloning. If the function the clone is inlined into is removed, we need
289 to turn it into normal cone. */
290 if (node
->global
.inlined_to
293 gcc_assert (node
->clones
);
294 node
->global
.inlined_to
= NULL
;
295 update_inlined_to_pointer (node
, node
);
299 #ifdef ENABLE_CHECKING
303 /* Reclaim alias pairs for functions that have disappeared from the
305 remove_unreachable_alias_pairs ();
311 cgraph_externally_visible_p (struct cgraph_node
*node
, bool whole_program
)
313 if (!node
->local
.finalized
)
315 if (!DECL_COMDAT (node
->decl
)
316 && (!TREE_PUBLIC (node
->decl
) || DECL_EXTERNAL (node
->decl
)))
320 /* COMDAT functions must be shared only if they have address taken,
321 otherwise we can produce our own private implementation with
323 if (DECL_COMDAT (node
->decl
))
325 if (node
->address_taken
|| !node
->analyzed
)
327 if (node
->same_comdat_group
)
329 struct cgraph_node
*next
;
331 /* If more than one function is in the same COMDAT group, it must
332 be shared even if just one function in the comdat group has
334 for (next
= node
->same_comdat_group
;
336 next
= next
->same_comdat_group
)
337 if (next
->address_taken
|| !next
->analyzed
)
341 if (MAIN_NAME_P (DECL_NAME (node
->decl
)))
343 if (lookup_attribute ("externally_visible", DECL_ATTRIBUTES (node
->decl
)))
348 /* Mark visibility of all functions.
350 A local function is one whose calls can occur only in the current
351 compilation unit and all its calls are explicit, so we can change
352 its calling convention. We simply mark all static functions whose
353 address is not taken as local.
355 We also change the TREE_PUBLIC flag of all declarations that are public
356 in language point of view but we want to overwrite this default
357 via visibilities for the backend point of view. */
360 function_and_variable_visibility (bool whole_program
)
362 struct cgraph_node
*node
;
363 struct varpool_node
*vnode
;
365 for (node
= cgraph_nodes
; node
; node
= node
->next
)
367 /* C++ FE on lack of COMDAT support create local COMDAT functions
368 (that ought to be shared but can not due to object format
369 limitations). It is neccesary to keep the flag to make rest of C++ FE
370 happy. Clear the flag here to avoid confusion in middle-end. */
371 if (DECL_COMDAT (node
->decl
) && !TREE_PUBLIC (node
->decl
))
372 DECL_COMDAT (node
->decl
) = 0;
373 /* For external decls stop tracking same_comdat_group, it doesn't matter
374 what comdat group they are in when they won't be emitted in this TU,
375 and simplifies later passes. */
376 if (node
->same_comdat_group
&& DECL_EXTERNAL (node
->decl
))
378 struct cgraph_node
*n
= node
, *next
;
381 /* If at least one of same comdat group functions is external,
382 all of them have to be, otherwise it is a front-end bug. */
383 gcc_assert (DECL_EXTERNAL (n
->decl
));
384 next
= n
->same_comdat_group
;
385 n
->same_comdat_group
= NULL
;
390 gcc_assert ((!DECL_WEAK (node
->decl
) && !DECL_COMDAT (node
->decl
))
391 || TREE_PUBLIC (node
->decl
) || DECL_EXTERNAL (node
->decl
));
392 if (cgraph_externally_visible_p (node
, whole_program
))
394 gcc_assert (!node
->global
.inlined_to
);
395 node
->local
.externally_visible
= true;
398 node
->local
.externally_visible
= false;
399 if (!node
->local
.externally_visible
&& node
->analyzed
400 && !DECL_EXTERNAL (node
->decl
))
402 gcc_assert (whole_program
|| !TREE_PUBLIC (node
->decl
));
403 cgraph_make_decl_local (node
->decl
);
405 node
->local
.local
= (cgraph_only_called_directly_p (node
)
407 && !DECL_EXTERNAL (node
->decl
)
408 && !node
->local
.externally_visible
);
410 for (vnode
= varpool_nodes
; vnode
; vnode
= vnode
->next
)
412 /* weak flag makes no sense on local variables. */
413 gcc_assert (!DECL_WEAK (vnode
->decl
)
414 || TREE_PUBLIC (vnode
->decl
) || DECL_EXTERNAL (vnode
->decl
));
415 /* In several cases declarations can not be common:
417 - when declaration has initializer
419 - when it has specific section
420 - when it resides in non-generic address space.
421 - if declaration is local, it will get into .local common section
422 so common flag is not needed. Frontends still produce these in
423 certain cases, such as for:
425 static int a __attribute__ ((common))
427 Canonicalize things here and clear the redundant flag. */
428 if (DECL_COMMON (vnode
->decl
)
429 && (!(TREE_PUBLIC (vnode
->decl
) || DECL_EXTERNAL (vnode
->decl
))
430 || (DECL_INITIAL (vnode
->decl
)
431 && DECL_INITIAL (vnode
->decl
) != error_mark_node
)
432 || DECL_WEAK (vnode
->decl
)
433 || DECL_SECTION_NAME (vnode
->decl
) != NULL
434 || ! (ADDR_SPACE_GENERIC_P
435 (TYPE_ADDR_SPACE (TREE_TYPE (vnode
->decl
))))))
436 DECL_COMMON (vnode
->decl
) = 0;
438 for (vnode
= varpool_nodes_queue
; vnode
; vnode
= vnode
->next_needed
)
440 if (!vnode
->finalized
)
443 && (DECL_COMDAT (vnode
->decl
) || TREE_PUBLIC (vnode
->decl
))
445 /* We can privatize comdat readonly variables whose address is not taken,
446 but doing so is not going to bring us optimization oppurtunities until
447 we start reordering datastructures. */
448 || DECL_COMDAT (vnode
->decl
)
449 || DECL_WEAK (vnode
->decl
)
450 || lookup_attribute ("externally_visible",
451 DECL_ATTRIBUTES (vnode
->decl
))))
452 vnode
->externally_visible
= true;
454 vnode
->externally_visible
= false;
455 if (!vnode
->externally_visible
)
457 gcc_assert (whole_program
|| !TREE_PUBLIC (vnode
->decl
));
458 cgraph_make_decl_local (vnode
->decl
);
460 gcc_assert (TREE_STATIC (vnode
->decl
));
465 fprintf (dump_file
, "\nMarking local functions:");
466 for (node
= cgraph_nodes
; node
; node
= node
->next
)
467 if (node
->local
.local
)
468 fprintf (dump_file
, " %s", cgraph_node_name (node
));
469 fprintf (dump_file
, "\n\n");
470 fprintf (dump_file
, "\nMarking externally visible functions:");
471 for (node
= cgraph_nodes
; node
; node
= node
->next
)
472 if (node
->local
.externally_visible
)
473 fprintf (dump_file
, " %s", cgraph_node_name (node
));
474 fprintf (dump_file
, "\n\n");
475 fprintf (dump_file
, "\nMarking externally visible variables:");
476 for (vnode
= varpool_nodes_queue
; vnode
; vnode
= vnode
->next_needed
)
477 if (vnode
->externally_visible
)
478 fprintf (dump_file
, " %s", varpool_node_name (vnode
));
479 fprintf (dump_file
, "\n\n");
481 cgraph_function_flags_ready
= true;
485 /* Local function pass handling visibilities. This happens before LTO streaming
486 so in particular -fwhole-program should be ignored at this level. */
489 local_function_and_variable_visibility (void)
491 return function_and_variable_visibility (flag_whole_program
&& !flag_lto
&& !flag_whopr
);
494 struct simple_ipa_opt_pass pass_ipa_function_and_variable_visibility
=
498 "visibility", /* name */
500 local_function_and_variable_visibility
,/* execute */
503 0, /* static_pass_number */
504 TV_CGRAPHOPT
, /* tv_id */
505 0, /* properties_required */
506 0, /* properties_provided */
507 0, /* properties_destroyed */
508 0, /* todo_flags_start */
509 TODO_remove_functions
| TODO_dump_cgraph
/* todo_flags_finish */
513 /* Do not re-run on ltrans stage. */
516 gate_whole_program_function_and_variable_visibility (void)
521 /* Bring functionss local at LTO time whith -fwhole-program. */
524 whole_program_function_and_variable_visibility (void)
526 struct cgraph_node
*node
;
527 struct varpool_node
*vnode
;
529 function_and_variable_visibility (flag_whole_program
);
531 for (node
= cgraph_nodes
; node
; node
= node
->next
)
532 if ((node
->local
.externally_visible
&& !DECL_COMDAT (node
->decl
))
533 && node
->local
.finalized
)
534 cgraph_mark_needed_node (node
);
535 for (vnode
= varpool_nodes_queue
; vnode
; vnode
= vnode
->next_needed
)
536 if (vnode
->externally_visible
&& !DECL_COMDAT (vnode
->decl
))
537 varpool_mark_needed_node (vnode
);
540 fprintf (dump_file
, "\nNeeded variables:");
541 for (vnode
= varpool_nodes_queue
; vnode
; vnode
= vnode
->next_needed
)
543 fprintf (dump_file
, " %s", varpool_node_name (vnode
));
544 fprintf (dump_file
, "\n\n");
549 struct ipa_opt_pass_d pass_ipa_whole_program_visibility
=
553 "whole-program", /* name */
554 gate_whole_program_function_and_variable_visibility
,/* gate */
555 whole_program_function_and_variable_visibility
,/* execute */
558 0, /* static_pass_number */
559 TV_CGRAPHOPT
, /* tv_id */
560 0, /* properties_required */
561 0, /* properties_provided */
562 0, /* properties_destroyed */
563 0, /* todo_flags_start */
564 TODO_dump_cgraph
| TODO_remove_functions
/* todo_flags_finish */
566 NULL
, /* generate_summary */
567 NULL
, /* write_summary */
568 NULL
, /* read_summary */
569 NULL
, /* function_read_summary */
570 NULL
, /* stmt_fixup */
572 NULL
, /* function_transform */
573 NULL
, /* variable_transform */
576 /* Hash a cgraph node set element. */
579 hash_cgraph_node_set_element (const void *p
)
581 const_cgraph_node_set_element element
= (const_cgraph_node_set_element
) p
;
582 return htab_hash_pointer (element
->node
);
585 /* Compare two cgraph node set elements. */
588 eq_cgraph_node_set_element (const void *p1
, const void *p2
)
590 const_cgraph_node_set_element e1
= (const_cgraph_node_set_element
) p1
;
591 const_cgraph_node_set_element e2
= (const_cgraph_node_set_element
) p2
;
593 return e1
->node
== e2
->node
;
596 /* Create a new cgraph node set. */
599 cgraph_node_set_new (void)
601 cgraph_node_set new_node_set
;
603 new_node_set
= GGC_NEW (struct cgraph_node_set_def
);
604 new_node_set
->hashtab
= htab_create_ggc (10,
605 hash_cgraph_node_set_element
,
606 eq_cgraph_node_set_element
,
608 new_node_set
->nodes
= NULL
;
612 /* Add cgraph_node NODE to cgraph_node_set SET. */
615 cgraph_node_set_add (cgraph_node_set set
, struct cgraph_node
*node
)
618 cgraph_node_set_element element
;
619 struct cgraph_node_set_element_def dummy
;
622 slot
= htab_find_slot (set
->hashtab
, &dummy
, INSERT
);
624 if (*slot
!= HTAB_EMPTY_ENTRY
)
626 element
= (cgraph_node_set_element
) *slot
;
627 gcc_assert (node
== element
->node
628 && (VEC_index (cgraph_node_ptr
, set
->nodes
, element
->index
)
633 /* Insert node into hash table. */
635 (cgraph_node_set_element
) GGC_NEW (struct cgraph_node_set_element_def
);
636 element
->node
= node
;
637 element
->index
= VEC_length (cgraph_node_ptr
, set
->nodes
);
640 /* Insert into node vector. */
641 VEC_safe_push (cgraph_node_ptr
, gc
, set
->nodes
, node
);
644 /* Remove cgraph_node NODE from cgraph_node_set SET. */
647 cgraph_node_set_remove (cgraph_node_set set
, struct cgraph_node
*node
)
649 void **slot
, **last_slot
;
650 cgraph_node_set_element element
, last_element
;
651 struct cgraph_node
*last_node
;
652 struct cgraph_node_set_element_def dummy
;
655 slot
= htab_find_slot (set
->hashtab
, &dummy
, NO_INSERT
);
659 element
= (cgraph_node_set_element
) *slot
;
660 gcc_assert (VEC_index (cgraph_node_ptr
, set
->nodes
, element
->index
)
663 /* Remove from vector. We do this by swapping node with the last element
665 last_node
= VEC_pop (cgraph_node_ptr
, set
->nodes
);
666 if (last_node
!= node
)
668 dummy
.node
= last_node
;
669 last_slot
= htab_find_slot (set
->hashtab
, &dummy
, NO_INSERT
);
670 last_element
= (cgraph_node_set_element
) *last_slot
;
671 gcc_assert (last_element
);
673 /* Move the last element to the original spot of NODE. */
674 last_element
->index
= element
->index
;
675 VEC_replace (cgraph_node_ptr
, set
->nodes
, last_element
->index
,
679 /* Remove element from hash table. */
680 htab_clear_slot (set
->hashtab
, slot
);
684 /* Find NODE in SET and return an iterator to it if found. A null iterator
685 is returned if NODE is not in SET. */
687 cgraph_node_set_iterator
688 cgraph_node_set_find (cgraph_node_set set
, struct cgraph_node
*node
)
691 struct cgraph_node_set_element_def dummy
;
692 cgraph_node_set_element element
;
693 cgraph_node_set_iterator csi
;
696 slot
= htab_find_slot (set
->hashtab
, &dummy
, NO_INSERT
);
698 csi
.index
= (unsigned) ~0;
701 element
= (cgraph_node_set_element
) *slot
;
702 gcc_assert (VEC_index (cgraph_node_ptr
, set
->nodes
, element
->index
)
704 csi
.index
= element
->index
;
711 /* Dump content of SET to file F. */
714 dump_cgraph_node_set (FILE *f
, cgraph_node_set set
)
716 cgraph_node_set_iterator iter
;
718 for (iter
= csi_start (set
); !csi_end_p (iter
); csi_next (&iter
))
720 struct cgraph_node
*node
= csi_node (iter
);
721 dump_cgraph_node (f
, node
);
725 /* Dump content of SET to stderr. */
728 debug_cgraph_node_set (cgraph_node_set set
)
730 dump_cgraph_node_set (stderr
, set
);