[PR67828] don't unswitch on default defs of non-parms
[official-gcc.git] / gcc / ipa.c
blob6847305536c2534f525d5ab0f23192d894cd7b4f
1 /* Basic IPA optimizations and utilities.
2 Copyright (C) 2003-2015 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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "tree.h"
25 #include "gimple.h"
26 #include "hard-reg-set.h"
27 #include "alias.h"
28 #include "options.h"
29 #include "fold-const.h"
30 #include "calls.h"
31 #include "stringpool.h"
32 #include "cgraph.h"
33 #include "tree-pass.h"
34 #include "gimplify.h"
35 #include "flags.h"
36 #include "target.h"
37 #include "tree-iterator.h"
38 #include "ipa-utils.h"
39 #include "alloc-pool.h"
40 #include "symbol-summary.h"
41 #include "ipa-prop.h"
42 #include "ipa-inline.h"
43 #include "tree-inline.h"
44 #include "profile.h"
45 #include "params.h"
46 #include "internal-fn.h"
47 #include "dbgcnt.h"
50 /* Return true when NODE has ADDR reference. */
52 static bool
53 has_addr_references_p (struct cgraph_node *node,
54 void *data ATTRIBUTE_UNUSED)
56 int i;
57 struct ipa_ref *ref = NULL;
59 for (i = 0; node->iterate_referring (i, ref); i++)
60 if (ref->use == IPA_REF_ADDR)
61 return true;
62 return false;
65 /* Look for all functions inlined to NODE and update their inlined_to pointers
66 to INLINED_TO. */
68 static void
69 update_inlined_to_pointer (struct cgraph_node *node, struct cgraph_node *inlined_to)
71 struct cgraph_edge *e;
72 for (e = node->callees; e; e = e->next_callee)
73 if (e->callee->global.inlined_to)
75 e->callee->global.inlined_to = inlined_to;
76 update_inlined_to_pointer (e->callee, inlined_to);
80 /* Add symtab NODE to queue starting at FIRST.
82 The queue is linked via AUX pointers and terminated by pointer to 1.
83 We enqueue nodes at two occasions: when we find them reachable or when we find
84 their bodies needed for further clonning. In the second case we mark them
85 by pointer to 2 after processing so they are re-queue when they become
86 reachable. */
88 static void
89 enqueue_node (symtab_node *node, symtab_node **first,
90 hash_set<symtab_node *> *reachable)
92 /* Node is still in queue; do nothing. */
93 if (node->aux && node->aux != (void *) 2)
94 return;
95 /* Node was already processed as unreachable, re-enqueue
96 only if it became reachable now. */
97 if (node->aux == (void *)2 && !reachable->contains (node))
98 return;
99 node->aux = *first;
100 *first = node;
103 /* Process references. */
105 static void
106 process_references (symtab_node *snode,
107 symtab_node **first,
108 bool before_inlining_p,
109 hash_set<symtab_node *> *reachable)
111 int i;
112 struct ipa_ref *ref = NULL;
113 for (i = 0; snode->iterate_reference (i, ref); i++)
115 symtab_node *node = ref->referred;
116 symtab_node *body = node->ultimate_alias_target ();
118 if (node->definition && !node->in_other_partition
119 && ((!DECL_EXTERNAL (node->decl) || node->alias)
120 || (((before_inlining_p
121 && ((TREE_CODE (node->decl) != FUNCTION_DECL
122 && optimize)
123 || (TREE_CODE (node->decl) == FUNCTION_DECL
124 && opt_for_fn (body->decl, optimize))
125 || (symtab->state < IPA_SSA
126 && lookup_attribute
127 ("always_inline",
128 DECL_ATTRIBUTES (body->decl))))))
129 /* We use variable constructors during late compilation for
130 constant folding. Keep references alive so partitioning
131 knows about potential references. */
132 || (TREE_CODE (node->decl) == VAR_DECL
133 && flag_wpa
134 && ctor_for_folding (node->decl)
135 != error_mark_node))))
137 /* Be sure that we will not optimize out alias target
138 body. */
139 if (DECL_EXTERNAL (node->decl)
140 && node->alias
141 && before_inlining_p)
142 reachable->add (body);
143 reachable->add (node);
145 enqueue_node (node, first, reachable);
149 /* EDGE is an polymorphic call. If BEFORE_INLINING_P is set, mark
150 all its potential targets as reachable to permit later inlining if
151 devirtualization happens. After inlining still keep their declarations
152 around, so we can devirtualize to a direct call.
154 Also try to make trivial devirutalization when no or only one target is
155 possible. */
157 static void
158 walk_polymorphic_call_targets (hash_set<void *> *reachable_call_targets,
159 struct cgraph_edge *edge,
160 symtab_node **first,
161 hash_set<symtab_node *> *reachable,
162 bool before_inlining_p)
164 unsigned int i;
165 void *cache_token;
166 bool final;
167 vec <cgraph_node *>targets
168 = possible_polymorphic_call_targets
169 (edge, &final, &cache_token);
171 if (!reachable_call_targets->add (cache_token))
173 for (i = 0; i < targets.length (); i++)
175 struct cgraph_node *n = targets[i];
177 /* Do not bother to mark virtual methods in anonymous namespace;
178 either we will find use of virtual table defining it, or it is
179 unused. */
180 if (TREE_CODE (TREE_TYPE (n->decl)) == METHOD_TYPE
181 && type_in_anonymous_namespace_p
182 (TYPE_METHOD_BASETYPE (TREE_TYPE (n->decl))))
183 continue;
185 symtab_node *body = n->function_symbol ();
187 /* Prior inlining, keep alive bodies of possible targets for
188 devirtualization. */
189 if (n->definition
190 && (before_inlining_p
191 && opt_for_fn (body->decl, optimize)
192 && opt_for_fn (body->decl, flag_devirtualize)))
194 /* Be sure that we will not optimize out alias target
195 body. */
196 if (DECL_EXTERNAL (n->decl)
197 && n->alias
198 && before_inlining_p)
199 reachable->add (body);
200 reachable->add (n);
202 /* Even after inlining we want to keep the possible targets in the
203 boundary, so late passes can still produce direct call even if
204 the chance for inlining is lost. */
205 enqueue_node (n, first, reachable);
209 /* Very trivial devirtualization; when the type is
210 final or anonymous (so we know all its derivation)
211 and there is only one possible virtual call target,
212 make the edge direct. */
213 if (final)
215 if (targets.length () <= 1 && dbg_cnt (devirt))
217 cgraph_node *target, *node = edge->caller;
218 if (targets.length () == 1)
219 target = targets[0];
220 else
221 target = cgraph_node::get_create
222 (builtin_decl_implicit (BUILT_IN_UNREACHABLE));
224 if (dump_enabled_p ())
226 location_t locus;
227 if (edge->call_stmt)
228 locus = gimple_location (edge->call_stmt);
229 else
230 locus = UNKNOWN_LOCATION;
231 dump_printf_loc (MSG_OPTIMIZED_LOCATIONS, locus,
232 "devirtualizing call in %s/%i to %s/%i\n",
233 edge->caller->name (), edge->caller->order,
234 target->name (),
235 target->order);
237 edge = edge->make_direct (target);
238 if (inline_summaries)
239 inline_update_overall_summary (node);
240 else if (edge->call_stmt)
242 edge->redirect_call_stmt_to_callee ();
244 /* Call to __builtin_unreachable shouldn't be instrumented. */
245 if (!targets.length ())
246 gimple_call_set_with_bounds (edge->call_stmt, false);
252 /* Perform reachability analysis and reclaim all unreachable nodes.
254 The algorithm is basically mark&sweep but with some extra refinements:
256 - reachable extern inline functions needs special handling; the bodies needs
257 to stay in memory until inlining in hope that they will be inlined.
258 After inlining we release their bodies and turn them into unanalyzed
259 nodes even when they are reachable.
261 - virtual functions are kept in callgraph even if they seem unreachable in
262 hope calls to them will be devirtualized.
264 Again we remove them after inlining. In late optimization some
265 devirtualization may happen, but it is not important since we won't inline
266 the call. In theory early opts and IPA should work out all important cases.
268 - virtual clones needs bodies of their origins for later materialization;
269 this means that we want to keep the body even if the origin is unreachable
270 otherwise. To avoid origin from sitting in the callgraph and being
271 walked by IPA passes, we turn them into unanalyzed nodes with body
272 defined.
274 We maintain set of function declaration where body needs to stay in
275 body_needed_for_clonning
277 Inline clones represent special case: their declaration match the
278 declaration of origin and cgraph_remove_node already knows how to
279 reshape callgraph and preserve body when offline copy of function or
280 inline clone is being removed.
282 - C++ virtual tables keyed to other unit are represented as DECL_EXTERNAL
283 variables with DECL_INITIAL set. We finalize these and keep reachable
284 ones around for constant folding purposes. After inlining we however
285 stop walking their references to let everything static referneced by them
286 to be removed when it is otherwise unreachable.
288 We maintain queue of both reachable symbols (i.e. defined symbols that needs
289 to stay) and symbols that are in boundary (i.e. external symbols referenced
290 by reachable symbols or origins of clones). The queue is represented
291 as linked list by AUX pointer terminated by 1.
293 At the end we keep all reachable symbols. For symbols in boundary we always
294 turn definition into a declaration, but we may keep function body around
295 based on body_needed_for_clonning
297 All symbols that enter the queue have AUX pointer non-zero and are in the
298 boundary. Pointer set REACHABLE is used to track reachable symbols.
300 Every symbol can be visited twice - once as part of boundary and once
301 as real reachable symbol. enqueue_node needs to decide whether the
302 node needs to be re-queued for second processing. For this purpose
303 we set AUX pointer of processed symbols in the boundary to constant 2. */
305 bool
306 symbol_table::remove_unreachable_nodes (FILE *file)
308 symtab_node *first = (symtab_node *) (void *) 1;
309 struct cgraph_node *node, *next;
310 varpool_node *vnode, *vnext;
311 bool changed = false;
312 hash_set<symtab_node *> reachable;
313 hash_set<tree> body_needed_for_clonning;
314 hash_set<void *> reachable_call_targets;
315 bool before_inlining_p = symtab->state < (!optimize ? IPA_SSA
316 : IPA_SSA_AFTER_INLINING);
318 timevar_push (TV_IPA_UNREACHABLE);
319 build_type_inheritance_graph ();
320 if (file)
321 fprintf (file, "\nReclaiming functions:");
322 #ifdef ENABLE_CHECKING
323 FOR_EACH_FUNCTION (node)
324 gcc_assert (!node->aux);
325 FOR_EACH_VARIABLE (vnode)
326 gcc_assert (!vnode->aux);
327 #endif
328 /* Mark functions whose bodies are obviously needed.
329 This is mostly when they can be referenced externally. Inline clones
330 are special since their declarations are shared with master clone and thus
331 cgraph_can_remove_if_no_direct_calls_and_refs_p should not be called on them. */
332 FOR_EACH_FUNCTION (node)
334 node->used_as_abstract_origin = false;
335 if (node->definition
336 && !node->global.inlined_to
337 && !node->in_other_partition
338 && !node->can_remove_if_no_direct_calls_and_refs_p ())
340 gcc_assert (!node->global.inlined_to);
341 reachable.add (node);
342 enqueue_node (node, &first, &reachable);
344 else
345 gcc_assert (!node->aux);
348 /* Mark variables that are obviously needed. */
349 FOR_EACH_DEFINED_VARIABLE (vnode)
350 if (!vnode->can_remove_if_no_refs_p()
351 && !vnode->in_other_partition)
353 reachable.add (vnode);
354 enqueue_node (vnode, &first, &reachable);
357 /* Perform reachability analysis. */
358 while (first != (symtab_node *) (void *) 1)
360 bool in_boundary_p = !reachable.contains (first);
361 symtab_node *node = first;
363 first = (symtab_node *)first->aux;
365 /* If we are processing symbol in boundary, mark its AUX pointer for
366 possible later re-processing in enqueue_node. */
367 if (in_boundary_p)
369 node->aux = (void *)2;
370 if (node->alias && node->analyzed)
371 enqueue_node (node->get_alias_target (), &first, &reachable);
373 else
375 if (TREE_CODE (node->decl) == FUNCTION_DECL
376 && DECL_ABSTRACT_ORIGIN (node->decl))
378 struct cgraph_node *origin_node
379 = cgraph_node::get (DECL_ABSTRACT_ORIGIN (node->decl));
380 if (origin_node && !origin_node->used_as_abstract_origin)
382 origin_node->used_as_abstract_origin = true;
383 gcc_assert (!origin_node->prev_sibling_clone);
384 gcc_assert (!origin_node->next_sibling_clone);
385 for (cgraph_node *n = origin_node->clones; n;
386 n = n->next_sibling_clone)
387 if (n->decl == DECL_ABSTRACT_ORIGIN (node->decl))
388 n->used_as_abstract_origin = true;
391 /* If any symbol in a comdat group is reachable, force
392 all externally visible symbols in the same comdat
393 group to be reachable as well. Comdat-local symbols
394 can be discarded if all uses were inlined. */
395 if (node->same_comdat_group)
397 symtab_node *next;
398 for (next = node->same_comdat_group;
399 next != node;
400 next = next->same_comdat_group)
401 if (!next->comdat_local_p ()
402 && !reachable.add (next))
403 enqueue_node (next, &first, &reachable);
405 /* Mark references as reachable. */
406 process_references (node, &first, before_inlining_p, &reachable);
409 if (cgraph_node *cnode = dyn_cast <cgraph_node *> (node))
411 /* Mark the callees reachable unless they are direct calls to extern
412 inline functions we decided to not inline. */
413 if (!in_boundary_p)
415 struct cgraph_edge *e;
416 /* Keep alive possible targets for devirtualization. */
417 if (opt_for_fn (cnode->decl, optimize)
418 && opt_for_fn (cnode->decl, flag_devirtualize))
420 struct cgraph_edge *next;
421 for (e = cnode->indirect_calls; e; e = next)
423 next = e->next_callee;
424 if (e->indirect_info->polymorphic)
425 walk_polymorphic_call_targets (&reachable_call_targets,
426 e, &first, &reachable,
427 before_inlining_p);
430 for (e = cnode->callees; e; e = e->next_callee)
432 symtab_node *body = e->callee->function_symbol ();
433 if (e->callee->definition
434 && !e->callee->in_other_partition
435 && (!e->inline_failed
436 || !DECL_EXTERNAL (e->callee->decl)
437 || e->callee->alias
438 || (before_inlining_p
439 && (opt_for_fn (body->decl, optimize)
440 || (symtab->state < IPA_SSA
441 && lookup_attribute
442 ("always_inline",
443 DECL_ATTRIBUTES (body->decl)))))))
445 /* Be sure that we will not optimize out alias target
446 body. */
447 if (DECL_EXTERNAL (e->callee->decl)
448 && e->callee->alias
449 && before_inlining_p)
450 reachable.add (body);
451 reachable.add (e->callee);
453 enqueue_node (e->callee, &first, &reachable);
456 /* When inline clone exists, mark body to be preserved so when removing
457 offline copy of the function we don't kill it. */
458 if (cnode->global.inlined_to)
459 body_needed_for_clonning.add (cnode->decl);
461 /* For instrumentation clones we always need original
462 function node for proper LTO privatization. */
463 if (cnode->instrumentation_clone
464 && cnode->definition)
466 gcc_assert (cnode->instrumented_version || in_lto_p);
467 if (cnode->instrumented_version)
469 enqueue_node (cnode->instrumented_version, &first,
470 &reachable);
471 reachable.add (cnode->instrumented_version);
475 /* For non-inline clones, force their origins to the boundary and ensure
476 that body is not removed. */
477 while (cnode->clone_of)
479 bool noninline = cnode->clone_of->decl != cnode->decl;
480 cnode = cnode->clone_of;
481 if (noninline)
483 body_needed_for_clonning.add (cnode->decl);
484 enqueue_node (cnode, &first, &reachable);
489 else if (cnode->thunk.thunk_p)
490 enqueue_node (cnode->callees->callee, &first, &reachable);
492 /* If any reachable function has simd clones, mark them as
493 reachable as well. */
494 if (cnode->simd_clones)
496 cgraph_node *next;
497 for (next = cnode->simd_clones;
498 next;
499 next = next->simdclone->next_clone)
500 if (in_boundary_p
501 || !reachable.add (next))
502 enqueue_node (next, &first, &reachable);
505 /* When we see constructor of external variable, keep referred nodes in the
506 boundary. This will also hold initializers of the external vars NODE
507 refers to. */
508 varpool_node *vnode = dyn_cast <varpool_node *> (node);
509 if (vnode
510 && DECL_EXTERNAL (node->decl)
511 && !vnode->alias
512 && in_boundary_p)
514 struct ipa_ref *ref = NULL;
515 for (int i = 0; node->iterate_reference (i, ref); i++)
516 enqueue_node (ref->referred, &first, &reachable);
520 /* Remove unreachable functions. */
521 for (node = first_function (); node; node = next)
523 next = next_function (node);
525 /* If node is not needed at all, remove it. */
526 if (!node->aux)
528 if (file)
529 fprintf (file, " %s/%i", node->name (), node->order);
530 node->remove ();
531 changed = true;
533 /* If node is unreachable, remove its body. */
534 else if (!reachable.contains (node))
536 /* We keep definitions of thunks and aliases in the boundary so
537 we can walk to the ultimate alias targets and function symbols
538 reliably. */
539 if (node->alias || node->thunk.thunk_p)
541 else if (!body_needed_for_clonning.contains (node->decl)
542 && !node->alias && !node->thunk.thunk_p)
543 node->release_body ();
544 else if (!node->clone_of)
545 gcc_assert (in_lto_p || DECL_RESULT (node->decl));
546 if (node->definition && !node->alias && !node->thunk.thunk_p)
548 if (file)
549 fprintf (file, " %s/%i", node->name (), node->order);
550 node->body_removed = true;
551 node->analyzed = false;
552 node->definition = false;
553 node->cpp_implicit_alias = false;
554 node->alias = false;
555 node->thunk.thunk_p = false;
556 node->weakref = false;
557 /* After early inlining we drop always_inline attributes on
558 bodies of functions that are still referenced (have their
559 address taken). */
560 DECL_ATTRIBUTES (node->decl)
561 = remove_attribute ("always_inline",
562 DECL_ATTRIBUTES (node->decl));
563 if (!node->in_other_partition)
564 node->local.local = false;
565 node->remove_callees ();
566 node->remove_all_references ();
567 changed = true;
568 if (node->thunk.thunk_p
569 && node->thunk.add_pointer_bounds_args)
571 node->thunk.thunk_p = false;
572 node->thunk.add_pointer_bounds_args = false;
576 else
577 gcc_assert (node->clone_of || !node->has_gimple_body_p ()
578 || in_lto_p || DECL_RESULT (node->decl));
581 /* Inline clones might be kept around so their materializing allows further
582 cloning. If the function the clone is inlined into is removed, we need
583 to turn it into normal cone. */
584 FOR_EACH_FUNCTION (node)
586 if (node->global.inlined_to
587 && !node->callers)
589 gcc_assert (node->clones);
590 node->global.inlined_to = NULL;
591 update_inlined_to_pointer (node, node);
593 node->aux = NULL;
596 /* Remove unreachable variables. */
597 if (file)
598 fprintf (file, "\nReclaiming variables:");
599 for (vnode = first_variable (); vnode; vnode = vnext)
601 vnext = next_variable (vnode);
602 if (!vnode->aux
603 /* For can_refer_decl_in_current_unit_p we want to track for
604 all external variables if they are defined in other partition
605 or not. */
606 && (!flag_ltrans || !DECL_EXTERNAL (vnode->decl)))
608 struct ipa_ref *ref = NULL;
610 /* First remove the aliases, so varpool::remove can possibly lookup
611 the constructor and save it for future use. */
612 while (vnode->iterate_direct_aliases (0, ref))
614 if (file)
615 fprintf (file, " %s/%i", ref->referred->name (),
616 ref->referred->order);
617 ref->referring->remove ();
619 if (file)
620 fprintf (file, " %s/%i", vnode->name (), vnode->order);
621 vnext = next_variable (vnode);
622 vnode->remove ();
623 changed = true;
625 else if (!reachable.contains (vnode) && !vnode->alias)
627 tree init;
628 if (vnode->definition)
630 if (file)
631 fprintf (file, " %s", vnode->name ());
632 changed = true;
634 /* Keep body if it may be useful for constant folding. */
635 if ((init = ctor_for_folding (vnode->decl)) == error_mark_node
636 && !POINTER_BOUNDS_P (vnode->decl))
637 vnode->remove_initializer ();
638 else
639 DECL_INITIAL (vnode->decl) = init;
640 vnode->body_removed = true;
641 vnode->definition = false;
642 vnode->analyzed = false;
643 vnode->aux = NULL;
645 vnode->remove_from_same_comdat_group ();
647 vnode->remove_all_references ();
649 else
650 vnode->aux = NULL;
653 /* Now update address_taken flags and try to promote functions to be local. */
654 if (file)
655 fprintf (file, "\nClearing address taken flags:");
656 FOR_EACH_DEFINED_FUNCTION (node)
657 if (node->address_taken
658 && !node->used_from_other_partition)
660 if (!node->call_for_symbol_and_aliases
661 (has_addr_references_p, NULL, true)
662 && (!node->instrumentation_clone
663 || !node->instrumented_version
664 || !node->instrumented_version->address_taken))
666 if (file)
667 fprintf (file, " %s", node->name ());
668 node->address_taken = false;
669 changed = true;
670 if (node->local_p ())
672 node->local.local = true;
673 if (file)
674 fprintf (file, " (local)");
678 if (file)
679 fprintf (file, "\n");
681 #ifdef ENABLE_CHECKING
682 symtab_node::verify_symtab_nodes ();
683 #endif
685 /* If we removed something, perhaps profile could be improved. */
686 if (changed && optimize && inline_edge_summary_vec.exists ())
687 FOR_EACH_DEFINED_FUNCTION (node)
688 ipa_propagate_frequency (node);
690 timevar_pop (TV_IPA_UNREACHABLE);
691 return changed;
694 /* Process references to VNODE and set flags WRITTEN, ADDRESS_TAKEN, READ
695 as needed, also clear EXPLICIT_REFS if the references to given variable
696 do not need to be explicit. */
698 void
699 process_references (varpool_node *vnode,
700 bool *written, bool *address_taken,
701 bool *read, bool *explicit_refs)
703 int i;
704 struct ipa_ref *ref;
706 if (!vnode->all_refs_explicit_p ()
707 || TREE_THIS_VOLATILE (vnode->decl))
708 *explicit_refs = false;
710 for (i = 0; vnode->iterate_referring (i, ref)
711 && *explicit_refs && (!*written || !*address_taken || !*read); i++)
712 switch (ref->use)
714 case IPA_REF_ADDR:
715 *address_taken = true;
716 break;
717 case IPA_REF_LOAD:
718 *read = true;
719 break;
720 case IPA_REF_STORE:
721 *written = true;
722 break;
723 case IPA_REF_ALIAS:
724 process_references (dyn_cast<varpool_node *> (ref->referring), written,
725 address_taken, read, explicit_refs);
726 break;
727 case IPA_REF_CHKP:
728 gcc_unreachable ();
732 /* Set TREE_READONLY bit. */
734 bool
735 set_readonly_bit (varpool_node *vnode, void *data ATTRIBUTE_UNUSED)
737 TREE_READONLY (vnode->decl) = true;
738 return false;
741 /* Set writeonly bit and clear the initalizer, since it will not be needed. */
743 bool
744 set_writeonly_bit (varpool_node *vnode, void *data)
746 vnode->writeonly = true;
747 if (optimize)
749 DECL_INITIAL (vnode->decl) = NULL;
750 if (!vnode->alias)
752 if (vnode->num_references ())
753 *(bool *)data = true;
754 vnode->remove_all_references ();
757 return false;
760 /* Clear addressale bit of VNODE. */
762 bool
763 clear_addressable_bit (varpool_node *vnode, void *data ATTRIBUTE_UNUSED)
765 vnode->address_taken = false;
766 TREE_ADDRESSABLE (vnode->decl) = 0;
767 return false;
770 /* Discover variables that have no longer address taken or that are read only
771 and update their flags.
773 Return true when unreachable symbol removan should be done.
775 FIXME: This can not be done in between gimplify and omp_expand since
776 readonly flag plays role on what is shared and what is not. Currently we do
777 this transformation as part of whole program visibility and re-do at
778 ipa-reference pass (to take into account clonning), but it would
779 make sense to do it before early optimizations. */
781 bool
782 ipa_discover_readonly_nonaddressable_vars (void)
784 bool remove_p = false;
785 varpool_node *vnode;
786 if (dump_file)
787 fprintf (dump_file, "Clearing variable flags:");
788 FOR_EACH_VARIABLE (vnode)
789 if (!vnode->alias
790 && (TREE_ADDRESSABLE (vnode->decl)
791 || !vnode->writeonly
792 || !TREE_READONLY (vnode->decl)))
794 bool written = false;
795 bool address_taken = false;
796 bool read = false;
797 bool explicit_refs = true;
799 process_references (vnode, &written, &address_taken, &read,
800 &explicit_refs);
801 if (!explicit_refs)
802 continue;
803 if (!address_taken)
805 if (TREE_ADDRESSABLE (vnode->decl) && dump_file)
806 fprintf (dump_file, " %s (non-addressable)", vnode->name ());
807 vnode->call_for_symbol_and_aliases (clear_addressable_bit, NULL,
808 true);
810 if (!address_taken && !written
811 /* Making variable in explicit section readonly can cause section
812 type conflict.
813 See e.g. gcc.c-torture/compile/pr23237.c */
814 && vnode->get_section () == NULL)
816 if (!TREE_READONLY (vnode->decl) && dump_file)
817 fprintf (dump_file, " %s (read-only)", vnode->name ());
818 vnode->call_for_symbol_and_aliases (set_readonly_bit, NULL, true);
820 if (!vnode->writeonly && !read && !address_taken && written)
822 if (dump_file)
823 fprintf (dump_file, " %s (write-only)", vnode->name ());
824 vnode->call_for_symbol_and_aliases (set_writeonly_bit, &remove_p,
825 true);
828 if (dump_file)
829 fprintf (dump_file, "\n");
830 return remove_p;
833 /* Free inline summary. */
835 namespace {
837 const pass_data pass_data_ipa_free_inline_summary =
839 SIMPLE_IPA_PASS, /* type */
840 "free-inline-summary", /* name */
841 OPTGROUP_NONE, /* optinfo_flags */
842 TV_IPA_FREE_INLINE_SUMMARY, /* tv_id */
843 0, /* properties_required */
844 0, /* properties_provided */
845 0, /* properties_destroyed */
846 0, /* todo_flags_start */
847 /* Early optimizations may make function unreachable. We can not
848 remove unreachable functions as part of the ealry opts pass because
849 TODOs are run before subpasses. Do it here. */
850 ( TODO_remove_functions | TODO_dump_symtab ), /* todo_flags_finish */
853 class pass_ipa_free_inline_summary : public simple_ipa_opt_pass
855 public:
856 pass_ipa_free_inline_summary (gcc::context *ctxt)
857 : simple_ipa_opt_pass (pass_data_ipa_free_inline_summary, ctxt)
860 /* opt_pass methods: */
861 virtual unsigned int execute (function *)
863 inline_free_summary ();
864 return 0;
867 }; // class pass_ipa_free_inline_summary
869 } // anon namespace
871 simple_ipa_opt_pass *
872 make_pass_ipa_free_inline_summary (gcc::context *ctxt)
874 return new pass_ipa_free_inline_summary (ctxt);
877 /* Generate and emit a static constructor or destructor. WHICH must
878 be one of 'I' (for a constructor), 'D' (for a destructor), 'P'
879 (for chp static vars constructor) or 'B' (for chkp static bounds
880 constructor). BODY is a STATEMENT_LIST containing GENERIC
881 statements. PRIORITY is the initialization priority for this
882 constructor or destructor.
884 FINAL specify whether the externally visible name for collect2 should
885 be produced. */
887 static void
888 cgraph_build_static_cdtor_1 (char which, tree body, int priority, bool final)
890 static int counter = 0;
891 char which_buf[16];
892 tree decl, name, resdecl;
894 /* The priority is encoded in the constructor or destructor name.
895 collect2 will sort the names and arrange that they are called at
896 program startup. */
897 if (final)
898 sprintf (which_buf, "%c_%.5d_%d", which, priority, counter++);
899 else
900 /* Proudce sane name but one not recognizable by collect2, just for the
901 case we fail to inline the function. */
902 sprintf (which_buf, "sub_%c_%.5d_%d", which, priority, counter++);
903 name = get_file_function_name (which_buf);
905 decl = build_decl (input_location, FUNCTION_DECL, name,
906 build_function_type_list (void_type_node, NULL_TREE));
907 current_function_decl = decl;
909 resdecl = build_decl (input_location,
910 RESULT_DECL, NULL_TREE, void_type_node);
911 DECL_ARTIFICIAL (resdecl) = 1;
912 DECL_RESULT (decl) = resdecl;
913 DECL_CONTEXT (resdecl) = decl;
915 allocate_struct_function (decl, false);
917 TREE_STATIC (decl) = 1;
918 TREE_USED (decl) = 1;
919 DECL_ARTIFICIAL (decl) = 1;
920 DECL_IGNORED_P (decl) = 1;
921 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (decl) = 1;
922 DECL_SAVED_TREE (decl) = body;
923 if (!targetm.have_ctors_dtors && final)
925 TREE_PUBLIC (decl) = 1;
926 DECL_PRESERVE_P (decl) = 1;
928 DECL_UNINLINABLE (decl) = 1;
930 DECL_INITIAL (decl) = make_node (BLOCK);
931 TREE_USED (DECL_INITIAL (decl)) = 1;
933 DECL_SOURCE_LOCATION (decl) = input_location;
934 cfun->function_end_locus = input_location;
936 switch (which)
938 case 'I':
939 DECL_STATIC_CONSTRUCTOR (decl) = 1;
940 decl_init_priority_insert (decl, priority);
941 break;
942 case 'P':
943 DECL_STATIC_CONSTRUCTOR (decl) = 1;
944 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("chkp ctor"),
945 NULL,
946 NULL_TREE);
947 decl_init_priority_insert (decl, priority);
948 break;
949 case 'B':
950 DECL_STATIC_CONSTRUCTOR (decl) = 1;
951 DECL_ATTRIBUTES (decl) = tree_cons (get_identifier ("bnd_legacy"),
952 NULL,
953 NULL_TREE);
954 decl_init_priority_insert (decl, priority);
955 break;
956 case 'D':
957 DECL_STATIC_DESTRUCTOR (decl) = 1;
958 decl_fini_priority_insert (decl, priority);
959 break;
960 default:
961 gcc_unreachable ();
964 gimplify_function_tree (decl);
966 cgraph_node::add_new_function (decl, false);
968 set_cfun (NULL);
969 current_function_decl = NULL;
972 /* Generate and emit a static constructor or destructor. WHICH must
973 be one of 'I' (for a constructor), 'D' (for a destructor), 'P'
974 (for chkp static vars constructor) or 'B' (for chkp static bounds
975 constructor). BODY is a STATEMENT_LIST containing GENERIC
976 statements. PRIORITY is the initialization priority for this
977 constructor or destructor. */
979 void
980 cgraph_build_static_cdtor (char which, tree body, int priority)
982 cgraph_build_static_cdtor_1 (which, body, priority, false);
985 /* A vector of FUNCTION_DECLs declared as static constructors. */
986 static vec<tree> static_ctors;
987 /* A vector of FUNCTION_DECLs declared as static destructors. */
988 static vec<tree> static_dtors;
990 /* When target does not have ctors and dtors, we call all constructor
991 and destructor by special initialization/destruction function
992 recognized by collect2.
994 When we are going to build this function, collect all constructors and
995 destructors and turn them into normal functions. */
997 static void
998 record_cdtor_fn (struct cgraph_node *node)
1000 if (DECL_STATIC_CONSTRUCTOR (node->decl))
1001 static_ctors.safe_push (node->decl);
1002 if (DECL_STATIC_DESTRUCTOR (node->decl))
1003 static_dtors.safe_push (node->decl);
1004 node = cgraph_node::get (node->decl);
1005 DECL_DISREGARD_INLINE_LIMITS (node->decl) = 1;
1008 /* Define global constructors/destructor functions for the CDTORS, of
1009 which they are LEN. The CDTORS are sorted by initialization
1010 priority. If CTOR_P is true, these are constructors; otherwise,
1011 they are destructors. */
1013 static void
1014 build_cdtor (bool ctor_p, vec<tree> cdtors)
1016 size_t i,j;
1017 size_t len = cdtors.length ();
1019 i = 0;
1020 while (i < len)
1022 tree body;
1023 tree fn;
1024 priority_type priority;
1026 priority = 0;
1027 body = NULL_TREE;
1028 j = i;
1031 priority_type p;
1032 fn = cdtors[j];
1033 p = ctor_p ? DECL_INIT_PRIORITY (fn) : DECL_FINI_PRIORITY (fn);
1034 if (j == i)
1035 priority = p;
1036 else if (p != priority)
1037 break;
1038 j++;
1040 while (j < len);
1042 /* When there is only one cdtor and target supports them, do nothing. */
1043 if (j == i + 1
1044 && targetm.have_ctors_dtors)
1046 i++;
1047 continue;
1049 /* Find the next batch of constructors/destructors with the same
1050 initialization priority. */
1051 for (;i < j; i++)
1053 tree call;
1054 fn = cdtors[i];
1055 call = build_call_expr (fn, 0);
1056 if (ctor_p)
1057 DECL_STATIC_CONSTRUCTOR (fn) = 0;
1058 else
1059 DECL_STATIC_DESTRUCTOR (fn) = 0;
1060 /* We do not want to optimize away pure/const calls here.
1061 When optimizing, these should be already removed, when not
1062 optimizing, we want user to be able to breakpoint in them. */
1063 TREE_SIDE_EFFECTS (call) = 1;
1064 append_to_statement_list (call, &body);
1066 gcc_assert (body != NULL_TREE);
1067 /* Generate a function to call all the function of like
1068 priority. */
1069 cgraph_build_static_cdtor_1 (ctor_p ? 'I' : 'D', body, priority, true);
1073 /* Comparison function for qsort. P1 and P2 are actually of type
1074 "tree *" and point to static constructors. DECL_INIT_PRIORITY is
1075 used to determine the sort order. */
1077 static int
1078 compare_ctor (const void *p1, const void *p2)
1080 tree f1;
1081 tree f2;
1082 int priority1;
1083 int priority2;
1085 f1 = *(const tree *)p1;
1086 f2 = *(const tree *)p2;
1087 priority1 = DECL_INIT_PRIORITY (f1);
1088 priority2 = DECL_INIT_PRIORITY (f2);
1090 if (priority1 < priority2)
1091 return -1;
1092 else if (priority1 > priority2)
1093 return 1;
1094 else
1095 /* Ensure a stable sort. Constructors are executed in backwarding
1096 order to make LTO initialize braries first. */
1097 return DECL_UID (f2) - DECL_UID (f1);
1100 /* Comparison function for qsort. P1 and P2 are actually of type
1101 "tree *" and point to static destructors. DECL_FINI_PRIORITY is
1102 used to determine the sort order. */
1104 static int
1105 compare_dtor (const void *p1, const void *p2)
1107 tree f1;
1108 tree f2;
1109 int priority1;
1110 int priority2;
1112 f1 = *(const tree *)p1;
1113 f2 = *(const tree *)p2;
1114 priority1 = DECL_FINI_PRIORITY (f1);
1115 priority2 = DECL_FINI_PRIORITY (f2);
1117 if (priority1 < priority2)
1118 return -1;
1119 else if (priority1 > priority2)
1120 return 1;
1121 else
1122 /* Ensure a stable sort. */
1123 return DECL_UID (f1) - DECL_UID (f2);
1126 /* Generate functions to call static constructors and destructors
1127 for targets that do not support .ctors/.dtors sections. These
1128 functions have magic names which are detected by collect2. */
1130 static void
1131 build_cdtor_fns (void)
1133 if (!static_ctors.is_empty ())
1135 gcc_assert (!targetm.have_ctors_dtors || in_lto_p);
1136 static_ctors.qsort (compare_ctor);
1137 build_cdtor (/*ctor_p=*/true, static_ctors);
1140 if (!static_dtors.is_empty ())
1142 gcc_assert (!targetm.have_ctors_dtors || in_lto_p);
1143 static_dtors.qsort (compare_dtor);
1144 build_cdtor (/*ctor_p=*/false, static_dtors);
1148 /* Look for constructors and destructors and produce function calling them.
1149 This is needed for targets not supporting ctors or dtors, but we perform the
1150 transformation also at linktime to merge possibly numerous
1151 constructors/destructors into single function to improve code locality and
1152 reduce size. */
1154 static unsigned int
1155 ipa_cdtor_merge (void)
1157 struct cgraph_node *node;
1158 FOR_EACH_DEFINED_FUNCTION (node)
1159 if (DECL_STATIC_CONSTRUCTOR (node->decl)
1160 || DECL_STATIC_DESTRUCTOR (node->decl))
1161 record_cdtor_fn (node);
1162 build_cdtor_fns ();
1163 static_ctors.release ();
1164 static_dtors.release ();
1165 return 0;
1168 namespace {
1170 const pass_data pass_data_ipa_cdtor_merge =
1172 IPA_PASS, /* type */
1173 "cdtor", /* name */
1174 OPTGROUP_NONE, /* optinfo_flags */
1175 TV_CGRAPHOPT, /* tv_id */
1176 0, /* properties_required */
1177 0, /* properties_provided */
1178 0, /* properties_destroyed */
1179 0, /* todo_flags_start */
1180 0, /* todo_flags_finish */
1183 class pass_ipa_cdtor_merge : public ipa_opt_pass_d
1185 public:
1186 pass_ipa_cdtor_merge (gcc::context *ctxt)
1187 : ipa_opt_pass_d (pass_data_ipa_cdtor_merge, ctxt,
1188 NULL, /* generate_summary */
1189 NULL, /* write_summary */
1190 NULL, /* read_summary */
1191 NULL, /* write_optimization_summary */
1192 NULL, /* read_optimization_summary */
1193 NULL, /* stmt_fixup */
1194 0, /* function_transform_todo_flags_start */
1195 NULL, /* function_transform */
1196 NULL) /* variable_transform */
1199 /* opt_pass methods: */
1200 virtual bool gate (function *);
1201 virtual unsigned int execute (function *) { return ipa_cdtor_merge (); }
1203 }; // class pass_ipa_cdtor_merge
1205 bool
1206 pass_ipa_cdtor_merge::gate (function *)
1208 /* Perform the pass when we have no ctors/dtors support
1209 or at LTO time to merge multiple constructors into single
1210 function. */
1211 return !targetm.have_ctors_dtors || (optimize && in_lto_p);
1214 } // anon namespace
1216 ipa_opt_pass_d *
1217 make_pass_ipa_cdtor_merge (gcc::context *ctxt)
1219 return new pass_ipa_cdtor_merge (ctxt);
1222 /* Invalid pointer representing BOTTOM for single user dataflow. */
1223 #define BOTTOM ((cgraph_node *)(size_t) 2)
1225 /* Meet operation for single user dataflow.
1226 Here we want to associate variables with sigle function that may access it.
1228 FUNCTION is current single user of a variable, VAR is variable that uses it.
1229 Latttice is stored in SINGLE_USER_MAP.
1231 We represent:
1232 - TOP by no entry in SIGNLE_USER_MAP
1233 - BOTTOM by BOTTOM in AUX pointer (to save lookups)
1234 - known single user by cgraph pointer in SINGLE_USER_MAP. */
1236 cgraph_node *
1237 meet (cgraph_node *function, varpool_node *var,
1238 hash_map<varpool_node *, cgraph_node *> &single_user_map)
1240 struct cgraph_node *user, **f;
1242 if (var->aux == BOTTOM)
1243 return BOTTOM;
1245 f = single_user_map.get (var);
1246 if (!f)
1247 return function;
1248 user = *f;
1249 if (!function)
1250 return user;
1251 else if (function != user)
1252 return BOTTOM;
1253 else
1254 return function;
1257 /* Propagation step of single-use dataflow.
1259 Check all uses of VNODE and see if they are used by single function FUNCTION.
1260 SINGLE_USER_MAP represents the dataflow lattice. */
1262 cgraph_node *
1263 propagate_single_user (varpool_node *vnode, cgraph_node *function,
1264 hash_map<varpool_node *, cgraph_node *> &single_user_map)
1266 int i;
1267 struct ipa_ref *ref;
1269 gcc_assert (!vnode->externally_visible);
1271 /* If node is an alias, first meet with its target. */
1272 if (vnode->alias)
1273 function = meet (function, vnode->get_alias_target (), single_user_map);
1275 /* Check all users and see if they correspond to a single function. */
1276 for (i = 0; vnode->iterate_referring (i, ref) && function != BOTTOM; i++)
1278 struct cgraph_node *cnode = dyn_cast <cgraph_node *> (ref->referring);
1279 if (cnode)
1281 if (cnode->global.inlined_to)
1282 cnode = cnode->global.inlined_to;
1283 if (!function)
1284 function = cnode;
1285 else if (function != cnode)
1286 function = BOTTOM;
1288 else
1289 function = meet (function, dyn_cast <varpool_node *> (ref->referring),
1290 single_user_map);
1292 return function;
1295 /* Pass setting used_by_single_function flag.
1296 This flag is set on variable when there is only one function that may
1297 possibly referr to it. */
1299 static unsigned int
1300 ipa_single_use (void)
1302 varpool_node *first = (varpool_node *) (void *) 1;
1303 varpool_node *var;
1304 hash_map<varpool_node *, cgraph_node *> single_user_map;
1306 FOR_EACH_DEFINED_VARIABLE (var)
1307 if (!var->all_refs_explicit_p ())
1308 var->aux = BOTTOM;
1309 else
1311 /* Enqueue symbol for dataflow. */
1312 var->aux = first;
1313 first = var;
1316 /* The actual dataflow. */
1318 while (first != (void *) 1)
1320 cgraph_node *user, *orig_user, **f;
1322 var = first;
1323 first = (varpool_node *)first->aux;
1325 f = single_user_map.get (var);
1326 if (f)
1327 orig_user = *f;
1328 else
1329 orig_user = NULL;
1330 user = propagate_single_user (var, orig_user, single_user_map);
1332 gcc_checking_assert (var->aux != BOTTOM);
1334 /* If user differs, enqueue all references. */
1335 if (user != orig_user)
1337 unsigned int i;
1338 ipa_ref *ref;
1340 single_user_map.put (var, user);
1342 /* Enqueue all aliases for re-processing. */
1343 for (i = 0; var->iterate_direct_aliases (i, ref); i++)
1344 if (!ref->referring->aux)
1346 ref->referring->aux = first;
1347 first = dyn_cast <varpool_node *> (ref->referring);
1349 /* Enqueue all users for re-processing. */
1350 for (i = 0; var->iterate_reference (i, ref); i++)
1351 if (!ref->referred->aux
1352 && ref->referred->definition
1353 && is_a <varpool_node *> (ref->referred))
1355 ref->referred->aux = first;
1356 first = dyn_cast <varpool_node *> (ref->referred);
1359 /* If user is BOTTOM, just punt on this var. */
1360 if (user == BOTTOM)
1361 var->aux = BOTTOM;
1362 else
1363 var->aux = NULL;
1365 else
1366 var->aux = NULL;
1369 FOR_EACH_DEFINED_VARIABLE (var)
1371 if (var->aux != BOTTOM)
1373 #ifdef ENABLE_CHECKING
1374 /* Not having the single user known means that the VAR is
1375 unreachable. Either someone forgot to remove unreachable
1376 variables or the reachability here is wrong. */
1378 gcc_assert (single_user_map.get (var));
1379 #endif
1380 if (dump_file)
1382 fprintf (dump_file, "Variable %s/%i is used by single function\n",
1383 var->name (), var->order);
1385 var->used_by_single_function = true;
1387 var->aux = NULL;
1389 return 0;
1392 namespace {
1394 const pass_data pass_data_ipa_single_use =
1396 IPA_PASS, /* type */
1397 "single-use", /* name */
1398 OPTGROUP_NONE, /* optinfo_flags */
1399 TV_CGRAPHOPT, /* tv_id */
1400 0, /* properties_required */
1401 0, /* properties_provided */
1402 0, /* properties_destroyed */
1403 0, /* todo_flags_start */
1404 0, /* todo_flags_finish */
1407 class pass_ipa_single_use : public ipa_opt_pass_d
1409 public:
1410 pass_ipa_single_use (gcc::context *ctxt)
1411 : ipa_opt_pass_d (pass_data_ipa_single_use, ctxt,
1412 NULL, /* generate_summary */
1413 NULL, /* write_summary */
1414 NULL, /* read_summary */
1415 NULL, /* write_optimization_summary */
1416 NULL, /* read_optimization_summary */
1417 NULL, /* stmt_fixup */
1418 0, /* function_transform_todo_flags_start */
1419 NULL, /* function_transform */
1420 NULL) /* variable_transform */
1423 /* opt_pass methods: */
1424 virtual bool gate (function *);
1425 virtual unsigned int execute (function *) { return ipa_single_use (); }
1427 }; // class pass_ipa_single_use
1429 bool
1430 pass_ipa_single_use::gate (function *)
1432 return optimize;
1435 } // anon namespace
1437 ipa_opt_pass_d *
1438 make_pass_ipa_single_use (gcc::context *ctxt)
1440 return new pass_ipa_single_use (ctxt);