In gcc/: 2010-10-20 Nicola Pero <nicola.pero@meta-innovation.com>
[official-gcc.git] / gcc / cgraph.c
blob342ad63562f90c03e7b6f60408aa8da0f5ce80c1
1 /* Callgraph handling code.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Jan Hubicka
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This file contains basic routines manipulating call graph
24 The callgraph:
26 The call-graph is data structure designed for intra-procedural optimization
27 but it is also used in non-unit-at-a-time compilation to allow easier code
28 sharing.
30 The call-graph consist of nodes and edges represented via linked lists.
31 Each function (external or not) corresponds to the unique node.
33 The mapping from declarations to call-graph nodes is done using hash table
34 based on DECL_UID. The call-graph nodes are created lazily using
35 cgraph_node function when called for unknown declaration.
37 The callgraph at the moment does not represent all indirect calls or calls
38 from other compilation units. Flag NEEDED is set for each node that may be
39 accessed in such an invisible way and it shall be considered an entry point
40 to the callgraph.
42 On the other hand, the callgraph currently does contain some edges for
43 indirect calls with unknown callees which can be accessed through
44 indirect_calls field of a node. It should be noted however that at the
45 moment only calls which are potential candidates for indirect inlining are
46 added there.
48 Interprocedural information:
50 Callgraph is place to store data needed for interprocedural optimization.
51 All data structures are divided into three components: local_info that
52 is produced while analyzing the function, global_info that is result
53 of global walking of the callgraph on the end of compilation and
54 rtl_info used by RTL backend to propagate data from already compiled
55 functions to their callers.
57 Moreover, each node has a uid which can be used to keep information in
58 on-the-side arrays. UIDs are reused and therefore reasonably dense.
60 Inlining plans:
62 The function inlining information is decided in advance and maintained
63 in the callgraph as so called inline plan.
64 For each inlined call, the callee's node is cloned to represent the
65 new function copy produced by inliner.
66 Each inlined call gets a unique corresponding clone node of the callee
67 and the data structure is updated while inlining is performed, so
68 the clones are eliminated and their callee edges redirected to the
69 caller.
71 Each edge has "inline_failed" field. When the field is set to NULL,
72 the call will be inlined. When it is non-NULL it contains a reason
73 why inlining wasn't performed. */
75 #include "config.h"
76 #include "system.h"
77 #include "coretypes.h"
78 #include "tm.h"
79 #include "tree.h"
80 #include "tree-inline.h"
81 #include "langhooks.h"
82 #include "hashtab.h"
83 #include "toplev.h"
84 #include "flags.h"
85 #include "ggc.h"
86 #include "debug.h"
87 #include "target.h"
88 #include "basic-block.h"
89 #include "cgraph.h"
90 #include "output.h"
91 #include "intl.h"
92 #include "gimple.h"
93 #include "tree-dump.h"
94 #include "tree-flow.h"
95 #include "value-prof.h"
96 #include "except.h"
97 #include "diagnostic-core.h"
98 #include "rtl.h"
99 #include "ipa-utils.h"
100 #include "lto-streamer.h"
102 static void cgraph_node_remove_callers (struct cgraph_node *node);
103 static inline void cgraph_edge_remove_caller (struct cgraph_edge *e);
104 static inline void cgraph_edge_remove_callee (struct cgraph_edge *e);
106 /* Hash table used to convert declarations into nodes. */
107 static GTY((param_is (struct cgraph_node))) htab_t cgraph_hash;
108 /* Hash table used to convert assembler names into nodes. */
109 static GTY((param_is (struct cgraph_node))) htab_t assembler_name_hash;
111 /* The linked list of cgraph nodes. */
112 struct cgraph_node *cgraph_nodes;
114 /* Queue of cgraph nodes scheduled to be lowered. */
115 struct cgraph_node *cgraph_nodes_queue;
117 /* Queue of cgraph nodes scheduled to be added into cgraph. This is a
118 secondary queue used during optimization to accommodate passes that
119 may generate new functions that need to be optimized and expanded. */
120 struct cgraph_node *cgraph_new_nodes;
122 /* Number of nodes in existence. */
123 int cgraph_n_nodes;
125 /* Maximal uid used in cgraph nodes. */
126 int cgraph_max_uid;
128 /* Maximal uid used in cgraph edges. */
129 int cgraph_edge_max_uid;
131 /* Maximal pid used for profiling */
132 int cgraph_max_pid;
134 /* Set when whole unit has been analyzed so we can access global info. */
135 bool cgraph_global_info_ready = false;
137 /* What state callgraph is in right now. */
138 enum cgraph_state cgraph_state = CGRAPH_STATE_CONSTRUCTION;
140 /* Set when the cgraph is fully build and the basic flags are computed. */
141 bool cgraph_function_flags_ready = false;
143 /* Linked list of cgraph asm nodes. */
144 struct cgraph_asm_node *cgraph_asm_nodes;
146 /* Last node in cgraph_asm_nodes. */
147 static GTY(()) struct cgraph_asm_node *cgraph_asm_last_node;
149 /* The order index of the next cgraph node to be created. This is
150 used so that we can sort the cgraph nodes in order by when we saw
151 them, to support -fno-toplevel-reorder. */
152 int cgraph_order;
154 /* List of hooks trigerred on cgraph_edge events. */
155 struct cgraph_edge_hook_list {
156 cgraph_edge_hook hook;
157 void *data;
158 struct cgraph_edge_hook_list *next;
161 /* List of hooks trigerred on cgraph_node events. */
162 struct cgraph_node_hook_list {
163 cgraph_node_hook hook;
164 void *data;
165 struct cgraph_node_hook_list *next;
168 /* List of hooks trigerred on events involving two cgraph_edges. */
169 struct cgraph_2edge_hook_list {
170 cgraph_2edge_hook hook;
171 void *data;
172 struct cgraph_2edge_hook_list *next;
175 /* List of hooks trigerred on events involving two cgraph_nodes. */
176 struct cgraph_2node_hook_list {
177 cgraph_2node_hook hook;
178 void *data;
179 struct cgraph_2node_hook_list *next;
182 /* List of hooks triggered when an edge is removed. */
183 struct cgraph_edge_hook_list *first_cgraph_edge_removal_hook;
184 /* List of hooks triggered when a node is removed. */
185 struct cgraph_node_hook_list *first_cgraph_node_removal_hook;
186 /* List of hooks triggered when an edge is duplicated. */
187 struct cgraph_2edge_hook_list *first_cgraph_edge_duplicated_hook;
188 /* List of hooks triggered when a node is duplicated. */
189 struct cgraph_2node_hook_list *first_cgraph_node_duplicated_hook;
190 /* List of hooks triggered when an function is inserted. */
191 struct cgraph_node_hook_list *first_cgraph_function_insertion_hook;
193 /* Head of a linked list of unused (freed) call graph nodes.
194 Do not GTY((delete)) this list so UIDs gets reliably recycled. */
195 static GTY(()) struct cgraph_node *free_nodes;
196 /* Head of a linked list of unused (freed) call graph edges.
197 Do not GTY((delete)) this list so UIDs gets reliably recycled. */
198 static GTY(()) struct cgraph_edge *free_edges;
200 /* Macros to access the next item in the list of free cgraph nodes and
201 edges. */
202 #define NEXT_FREE_NODE(NODE) (NODE)->next
203 #define NEXT_FREE_EDGE(EDGE) (EDGE)->prev_caller
205 /* Register HOOK to be called with DATA on each removed edge. */
206 struct cgraph_edge_hook_list *
207 cgraph_add_edge_removal_hook (cgraph_edge_hook hook, void *data)
209 struct cgraph_edge_hook_list *entry;
210 struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
212 entry = (struct cgraph_edge_hook_list *) xmalloc (sizeof (*entry));
213 entry->hook = hook;
214 entry->data = data;
215 entry->next = NULL;
216 while (*ptr)
217 ptr = &(*ptr)->next;
218 *ptr = entry;
219 return entry;
222 /* Remove ENTRY from the list of hooks called on removing edges. */
223 void
224 cgraph_remove_edge_removal_hook (struct cgraph_edge_hook_list *entry)
226 struct cgraph_edge_hook_list **ptr = &first_cgraph_edge_removal_hook;
228 while (*ptr != entry)
229 ptr = &(*ptr)->next;
230 *ptr = entry->next;
231 free (entry);
234 /* Call all edge removal hooks. */
235 static void
236 cgraph_call_edge_removal_hooks (struct cgraph_edge *e)
238 struct cgraph_edge_hook_list *entry = first_cgraph_edge_removal_hook;
239 while (entry)
241 entry->hook (e, entry->data);
242 entry = entry->next;
246 /* Register HOOK to be called with DATA on each removed node. */
247 struct cgraph_node_hook_list *
248 cgraph_add_node_removal_hook (cgraph_node_hook hook, void *data)
250 struct cgraph_node_hook_list *entry;
251 struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
253 entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
254 entry->hook = hook;
255 entry->data = data;
256 entry->next = NULL;
257 while (*ptr)
258 ptr = &(*ptr)->next;
259 *ptr = entry;
260 return entry;
263 /* Remove ENTRY from the list of hooks called on removing nodes. */
264 void
265 cgraph_remove_node_removal_hook (struct cgraph_node_hook_list *entry)
267 struct cgraph_node_hook_list **ptr = &first_cgraph_node_removal_hook;
269 while (*ptr != entry)
270 ptr = &(*ptr)->next;
271 *ptr = entry->next;
272 free (entry);
275 /* Call all node removal hooks. */
276 static void
277 cgraph_call_node_removal_hooks (struct cgraph_node *node)
279 struct cgraph_node_hook_list *entry = first_cgraph_node_removal_hook;
280 while (entry)
282 entry->hook (node, entry->data);
283 entry = entry->next;
287 /* Register HOOK to be called with DATA on each inserted node. */
288 struct cgraph_node_hook_list *
289 cgraph_add_function_insertion_hook (cgraph_node_hook hook, void *data)
291 struct cgraph_node_hook_list *entry;
292 struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
294 entry = (struct cgraph_node_hook_list *) xmalloc (sizeof (*entry));
295 entry->hook = hook;
296 entry->data = data;
297 entry->next = NULL;
298 while (*ptr)
299 ptr = &(*ptr)->next;
300 *ptr = entry;
301 return entry;
304 /* Remove ENTRY from the list of hooks called on inserted nodes. */
305 void
306 cgraph_remove_function_insertion_hook (struct cgraph_node_hook_list *entry)
308 struct cgraph_node_hook_list **ptr = &first_cgraph_function_insertion_hook;
310 while (*ptr != entry)
311 ptr = &(*ptr)->next;
312 *ptr = entry->next;
313 free (entry);
316 /* Call all node insertion hooks. */
317 void
318 cgraph_call_function_insertion_hooks (struct cgraph_node *node)
320 struct cgraph_node_hook_list *entry = first_cgraph_function_insertion_hook;
321 while (entry)
323 entry->hook (node, entry->data);
324 entry = entry->next;
328 /* Register HOOK to be called with DATA on each duplicated edge. */
329 struct cgraph_2edge_hook_list *
330 cgraph_add_edge_duplication_hook (cgraph_2edge_hook hook, void *data)
332 struct cgraph_2edge_hook_list *entry;
333 struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
335 entry = (struct cgraph_2edge_hook_list *) xmalloc (sizeof (*entry));
336 entry->hook = hook;
337 entry->data = data;
338 entry->next = NULL;
339 while (*ptr)
340 ptr = &(*ptr)->next;
341 *ptr = entry;
342 return entry;
345 /* Remove ENTRY from the list of hooks called on duplicating edges. */
346 void
347 cgraph_remove_edge_duplication_hook (struct cgraph_2edge_hook_list *entry)
349 struct cgraph_2edge_hook_list **ptr = &first_cgraph_edge_duplicated_hook;
351 while (*ptr != entry)
352 ptr = &(*ptr)->next;
353 *ptr = entry->next;
354 free (entry);
357 /* Call all edge duplication hooks. */
358 static void
359 cgraph_call_edge_duplication_hooks (struct cgraph_edge *cs1,
360 struct cgraph_edge *cs2)
362 struct cgraph_2edge_hook_list *entry = first_cgraph_edge_duplicated_hook;
363 while (entry)
365 entry->hook (cs1, cs2, entry->data);
366 entry = entry->next;
370 /* Register HOOK to be called with DATA on each duplicated node. */
371 struct cgraph_2node_hook_list *
372 cgraph_add_node_duplication_hook (cgraph_2node_hook hook, void *data)
374 struct cgraph_2node_hook_list *entry;
375 struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
377 entry = (struct cgraph_2node_hook_list *) xmalloc (sizeof (*entry));
378 entry->hook = hook;
379 entry->data = data;
380 entry->next = NULL;
381 while (*ptr)
382 ptr = &(*ptr)->next;
383 *ptr = entry;
384 return entry;
387 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
388 void
389 cgraph_remove_node_duplication_hook (struct cgraph_2node_hook_list *entry)
391 struct cgraph_2node_hook_list **ptr = &first_cgraph_node_duplicated_hook;
393 while (*ptr != entry)
394 ptr = &(*ptr)->next;
395 *ptr = entry->next;
396 free (entry);
399 /* Call all node duplication hooks. */
400 static void
401 cgraph_call_node_duplication_hooks (struct cgraph_node *node1,
402 struct cgraph_node *node2)
404 struct cgraph_2node_hook_list *entry = first_cgraph_node_duplicated_hook;
405 while (entry)
407 entry->hook (node1, node2, entry->data);
408 entry = entry->next;
412 /* Returns a hash code for P. */
414 static hashval_t
415 hash_node (const void *p)
417 const struct cgraph_node *n = (const struct cgraph_node *) p;
418 return (hashval_t) DECL_UID (n->decl);
422 /* Returns nonzero if P1 and P2 are equal. */
424 static int
425 eq_node (const void *p1, const void *p2)
427 const struct cgraph_node *n1 = (const struct cgraph_node *) p1;
428 const struct cgraph_node *n2 = (const struct cgraph_node *) p2;
429 return DECL_UID (n1->decl) == DECL_UID (n2->decl);
432 /* Allocate new callgraph node. */
434 static inline struct cgraph_node *
435 cgraph_allocate_node (void)
437 struct cgraph_node *node;
439 if (free_nodes)
441 node = free_nodes;
442 free_nodes = NEXT_FREE_NODE (node);
444 else
446 node = ggc_alloc_cleared_cgraph_node ();
447 node->uid = cgraph_max_uid++;
450 return node;
453 /* Allocate new callgraph node and insert it into basic data structures. */
455 static struct cgraph_node *
456 cgraph_create_node (void)
458 struct cgraph_node *node = cgraph_allocate_node ();
460 node->next = cgraph_nodes;
461 node->pid = -1;
462 node->order = cgraph_order++;
463 if (cgraph_nodes)
464 cgraph_nodes->previous = node;
465 node->previous = NULL;
466 node->global.estimated_growth = INT_MIN;
467 node->frequency = NODE_FREQUENCY_NORMAL;
468 ipa_empty_ref_list (&node->ref_list);
469 cgraph_nodes = node;
470 cgraph_n_nodes++;
471 return node;
474 /* Return cgraph node assigned to DECL. Create new one when needed. */
476 struct cgraph_node *
477 cgraph_node (tree decl)
479 struct cgraph_node key, *node, **slot;
481 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
483 if (!cgraph_hash)
484 cgraph_hash = htab_create_ggc (10, hash_node, eq_node, NULL);
486 key.decl = decl;
488 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key, INSERT);
490 if (*slot)
492 node = *slot;
493 if (node->same_body_alias)
494 node = node->same_body;
495 return node;
498 node = cgraph_create_node ();
499 node->decl = decl;
500 *slot = node;
501 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
503 node->origin = cgraph_node (DECL_CONTEXT (decl));
504 node->next_nested = node->origin->nested;
505 node->origin->nested = node;
507 if (assembler_name_hash)
509 void **aslot;
510 tree name = DECL_ASSEMBLER_NAME (decl);
512 aslot = htab_find_slot_with_hash (assembler_name_hash, name,
513 decl_assembler_name_hash (name),
514 INSERT);
515 /* We can have multiple declarations with same assembler name. For C++
516 it is __builtin_strlen and strlen, for instance. Do we need to
517 record them all? Original implementation marked just first one
518 so lets hope for the best. */
519 if (*aslot == NULL)
520 *aslot = node;
522 return node;
525 /* Mark ALIAS as an alias to DECL. */
527 static struct cgraph_node *
528 cgraph_same_body_alias_1 (tree alias, tree decl)
530 struct cgraph_node key, *alias_node, *decl_node, **slot;
532 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
533 gcc_assert (TREE_CODE (alias) == FUNCTION_DECL);
534 decl_node = cgraph_node (decl);
536 key.decl = alias;
538 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key, INSERT);
540 /* If the cgraph_node has been already created, fail. */
541 if (*slot)
542 return NULL;
544 alias_node = cgraph_allocate_node ();
545 alias_node->decl = alias;
546 alias_node->same_body_alias = 1;
547 alias_node->same_body = decl_node;
548 alias_node->previous = NULL;
549 if (decl_node->same_body)
550 decl_node->same_body->previous = alias_node;
551 alias_node->next = decl_node->same_body;
552 alias_node->thunk.alias = decl;
553 decl_node->same_body = alias_node;
554 *slot = alias_node;
555 return alias_node;
558 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if successful
559 and NULL otherwise.
560 Same body aliases are output whenever the body of DECL is output,
561 and cgraph_node (ALIAS) transparently returns cgraph_node (DECL). */
563 struct cgraph_node *
564 cgraph_same_body_alias (tree alias, tree decl)
566 #ifndef ASM_OUTPUT_DEF
567 /* If aliases aren't supported by the assembler, fail. */
568 return NULL;
569 #endif
571 /*gcc_assert (!assembler_name_hash);*/
573 return cgraph_same_body_alias_1 (alias, decl);
576 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
577 alises DECL with an adjustments made into the first parameter.
578 See comments in thunk_adjust for detail on the parameters. */
580 struct cgraph_node *
581 cgraph_add_thunk (tree alias, tree decl, bool this_adjusting,
582 HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value,
583 tree virtual_offset,
584 tree real_alias)
586 struct cgraph_node *node = cgraph_get_node (alias);
588 if (node)
590 gcc_assert (node->local.finalized);
591 gcc_assert (!node->same_body);
592 cgraph_remove_node (node);
595 node = cgraph_same_body_alias_1 (alias, decl);
596 gcc_assert (node);
597 #ifdef ENABLE_CHECKING
598 gcc_assert (!virtual_offset
599 || tree_int_cst_equal (virtual_offset, size_int (virtual_value)));
600 #endif
601 node->thunk.fixed_offset = fixed_offset;
602 node->thunk.this_adjusting = this_adjusting;
603 node->thunk.virtual_value = virtual_value;
604 node->thunk.virtual_offset_p = virtual_offset != NULL;
605 node->thunk.alias = real_alias;
606 node->thunk.thunk_p = true;
607 return node;
610 /* Returns the cgraph node assigned to DECL or NULL if no cgraph node
611 is assigned. */
613 struct cgraph_node *
614 cgraph_get_node_or_alias (const_tree decl)
616 struct cgraph_node key, *node = NULL, **slot;
618 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
620 if (!cgraph_hash)
621 return NULL;
623 key.decl = CONST_CAST2 (tree, const_tree, decl);
625 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key,
626 NO_INSERT);
628 if (slot && *slot)
629 node = *slot;
630 return node;
633 /* Returns the cgraph node assigned to DECL or NULL if no cgraph node
634 is assigned. */
636 struct cgraph_node *
637 cgraph_get_node (const_tree decl)
639 struct cgraph_node key, *node = NULL, **slot;
641 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
643 if (!cgraph_hash)
644 return NULL;
646 key.decl = CONST_CAST2 (tree, const_tree, decl);
648 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key,
649 NO_INSERT);
651 if (slot && *slot)
653 node = *slot;
654 if (node->same_body_alias)
655 node = node->same_body;
657 return node;
660 /* Insert already constructed node into hashtable. */
662 void
663 cgraph_insert_node_to_hashtable (struct cgraph_node *node)
665 struct cgraph_node **slot;
667 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, node, INSERT);
669 gcc_assert (!*slot);
670 *slot = node;
673 /* Returns a hash code for P. */
675 static hashval_t
676 hash_node_by_assembler_name (const void *p)
678 const struct cgraph_node *n = (const struct cgraph_node *) p;
679 return (hashval_t) decl_assembler_name_hash (DECL_ASSEMBLER_NAME (n->decl));
682 /* Returns nonzero if P1 and P2 are equal. */
684 static int
685 eq_assembler_name (const void *p1, const void *p2)
687 const struct cgraph_node *n1 = (const struct cgraph_node *) p1;
688 const_tree name = (const_tree)p2;
689 return (decl_assembler_name_equal (n1->decl, name));
692 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
693 Return NULL if there's no such node. */
695 struct cgraph_node *
696 cgraph_node_for_asm (tree asmname)
698 struct cgraph_node *node;
699 void **slot;
701 if (!assembler_name_hash)
703 assembler_name_hash =
704 htab_create_ggc (10, hash_node_by_assembler_name, eq_assembler_name,
705 NULL);
706 for (node = cgraph_nodes; node; node = node->next)
707 if (!node->global.inlined_to)
709 tree name = DECL_ASSEMBLER_NAME (node->decl);
710 slot = htab_find_slot_with_hash (assembler_name_hash, name,
711 decl_assembler_name_hash (name),
712 INSERT);
713 /* We can have multiple declarations with same assembler name. For C++
714 it is __builtin_strlen and strlen, for instance. Do we need to
715 record them all? Original implementation marked just first one
716 so lets hope for the best. */
717 if (!*slot)
718 *slot = node;
719 if (node->same_body)
721 struct cgraph_node *alias;
723 for (alias = node->same_body; alias; alias = alias->next)
725 hashval_t hash;
726 name = DECL_ASSEMBLER_NAME (alias->decl);
727 hash = decl_assembler_name_hash (name);
728 slot = htab_find_slot_with_hash (assembler_name_hash, name,
729 hash, INSERT);
730 if (!*slot)
731 *slot = alias;
737 slot = htab_find_slot_with_hash (assembler_name_hash, asmname,
738 decl_assembler_name_hash (asmname),
739 NO_INSERT);
741 if (slot)
743 node = (struct cgraph_node *) *slot;
744 if (node->same_body_alias)
745 node = node->same_body;
746 return node;
748 return NULL;
751 /* Returns a hash value for X (which really is a die_struct). */
753 static hashval_t
754 edge_hash (const void *x)
756 return htab_hash_pointer (((const struct cgraph_edge *) x)->call_stmt);
759 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
761 static int
762 edge_eq (const void *x, const void *y)
764 return ((const struct cgraph_edge *) x)->call_stmt == y;
767 /* Add call graph edge E to call site hash of its caller. */
769 static inline void
770 cgraph_add_edge_to_call_site_hash (struct cgraph_edge *e)
772 void **slot;
773 slot = htab_find_slot_with_hash (e->caller->call_site_hash,
774 e->call_stmt,
775 htab_hash_pointer (e->call_stmt),
776 INSERT);
777 gcc_assert (!*slot);
778 *slot = e;
781 /* Return the callgraph edge representing the GIMPLE_CALL statement
782 CALL_STMT. */
784 struct cgraph_edge *
785 cgraph_edge (struct cgraph_node *node, gimple call_stmt)
787 struct cgraph_edge *e, *e2;
788 int n = 0;
790 if (node->call_site_hash)
791 return (struct cgraph_edge *)
792 htab_find_with_hash (node->call_site_hash, call_stmt,
793 htab_hash_pointer (call_stmt));
795 /* This loop may turn out to be performance problem. In such case adding
796 hashtables into call nodes with very many edges is probably best
797 solution. It is not good idea to add pointer into CALL_EXPR itself
798 because we want to make possible having multiple cgraph nodes representing
799 different clones of the same body before the body is actually cloned. */
800 for (e = node->callees; e; e = e->next_callee)
802 if (e->call_stmt == call_stmt)
803 break;
804 n++;
807 if (!e)
808 for (e = node->indirect_calls; e; e = e->next_callee)
810 if (e->call_stmt == call_stmt)
811 break;
812 n++;
815 if (n > 100)
817 node->call_site_hash = htab_create_ggc (120, edge_hash, edge_eq, NULL);
818 for (e2 = node->callees; e2; e2 = e2->next_callee)
819 cgraph_add_edge_to_call_site_hash (e2);
820 for (e2 = node->indirect_calls; e2; e2 = e2->next_callee)
821 cgraph_add_edge_to_call_site_hash (e2);
824 return e;
828 /* Change field call_stmt of edge E to NEW_STMT. */
830 void
831 cgraph_set_call_stmt (struct cgraph_edge *e, gimple new_stmt)
833 tree decl;
835 if (e->caller->call_site_hash)
837 htab_remove_elt_with_hash (e->caller->call_site_hash,
838 e->call_stmt,
839 htab_hash_pointer (e->call_stmt));
842 e->call_stmt = new_stmt;
843 if (e->indirect_unknown_callee
844 && (decl = gimple_call_fndecl (new_stmt)))
846 /* Constant propagation (and possibly also inlining?) can turn an
847 indirect call into a direct one. */
848 struct cgraph_node *new_callee = cgraph_node (decl);
850 cgraph_make_edge_direct (e, new_callee);
853 push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl));
854 e->can_throw_external = stmt_can_throw_external (new_stmt);
855 pop_cfun ();
856 if (e->caller->call_site_hash)
857 cgraph_add_edge_to_call_site_hash (e);
860 /* Like cgraph_set_call_stmt but walk the clone tree and update all
861 clones sharing the same function body. */
863 void
864 cgraph_set_call_stmt_including_clones (struct cgraph_node *orig,
865 gimple old_stmt, gimple new_stmt)
867 struct cgraph_node *node;
868 struct cgraph_edge *edge = cgraph_edge (orig, old_stmt);
870 if (edge)
871 cgraph_set_call_stmt (edge, new_stmt);
873 node = orig->clones;
874 if (node)
875 while (node != orig)
877 struct cgraph_edge *edge = cgraph_edge (node, old_stmt);
878 if (edge)
879 cgraph_set_call_stmt (edge, new_stmt);
880 if (node->clones)
881 node = node->clones;
882 else if (node->next_sibling_clone)
883 node = node->next_sibling_clone;
884 else
886 while (node != orig && !node->next_sibling_clone)
887 node = node->clone_of;
888 if (node != orig)
889 node = node->next_sibling_clone;
894 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
895 same function body. If clones already have edge for OLD_STMT; only
896 update the edge same way as cgraph_set_call_stmt_including_clones does.
898 TODO: COUNT and LOOP_DEPTH should be properly distributed based on relative
899 frequencies of the clones. */
901 void
902 cgraph_create_edge_including_clones (struct cgraph_node *orig,
903 struct cgraph_node *callee,
904 gimple old_stmt,
905 gimple stmt, gcov_type count,
906 int freq, int loop_depth,
907 cgraph_inline_failed_t reason)
909 struct cgraph_node *node;
910 struct cgraph_edge *edge;
912 if (!cgraph_edge (orig, stmt))
914 edge = cgraph_create_edge (orig, callee, stmt, count, freq, loop_depth);
915 edge->inline_failed = reason;
918 node = orig->clones;
919 if (node)
920 while (node != orig)
922 struct cgraph_edge *edge = cgraph_edge (node, old_stmt);
924 /* It is possible that clones already contain the edge while
925 master didn't. Either we promoted indirect call into direct
926 call in the clone or we are processing clones of unreachable
927 master where edges has been rmeoved. */
928 if (edge)
929 cgraph_set_call_stmt (edge, stmt);
930 else if (!cgraph_edge (node, stmt))
932 edge = cgraph_create_edge (node, callee, stmt, count,
933 freq, loop_depth);
934 edge->inline_failed = reason;
937 if (node->clones)
938 node = node->clones;
939 else if (node->next_sibling_clone)
940 node = node->next_sibling_clone;
941 else
943 while (node != orig && !node->next_sibling_clone)
944 node = node->clone_of;
945 if (node != orig)
946 node = node->next_sibling_clone;
951 /* Give initial reasons why inlining would fail on EDGE. This gets either
952 nullified or usually overwritten by more precise reasons later. */
954 static void
955 initialize_inline_failed (struct cgraph_edge *e)
957 struct cgraph_node *callee = e->callee;
959 if (e->indirect_unknown_callee)
960 e->inline_failed = CIF_INDIRECT_UNKNOWN_CALL;
961 else if (!callee->analyzed)
962 e->inline_failed = CIF_BODY_NOT_AVAILABLE;
963 else if (callee->local.redefined_extern_inline)
964 e->inline_failed = CIF_REDEFINED_EXTERN_INLINE;
965 else if (!callee->local.inlinable)
966 e->inline_failed = CIF_FUNCTION_NOT_INLINABLE;
967 else if (e->call_stmt && gimple_call_cannot_inline_p (e->call_stmt))
968 e->inline_failed = CIF_MISMATCHED_ARGUMENTS;
969 else
970 e->inline_failed = CIF_FUNCTION_NOT_CONSIDERED;
973 /* Allocate a cgraph_edge structure and fill it with data according to the
974 parameters of which only CALLEE can be NULL (when creating an indirect call
975 edge). */
977 static struct cgraph_edge *
978 cgraph_create_edge_1 (struct cgraph_node *caller, struct cgraph_node *callee,
979 gimple call_stmt, gcov_type count, int freq, int nest)
981 struct cgraph_edge *edge;
983 /* LTO does not actually have access to the call_stmt since these
984 have not been loaded yet. */
985 if (call_stmt)
987 #ifdef ENABLE_CHECKING
988 /* This is rather pricely check possibly trigerring construction of
989 call stmt hashtable. */
990 gcc_assert (!cgraph_edge (caller, call_stmt));
991 #endif
993 gcc_assert (is_gimple_call (call_stmt));
996 if (free_edges)
998 edge = free_edges;
999 free_edges = NEXT_FREE_EDGE (edge);
1001 else
1003 edge = ggc_alloc_cgraph_edge ();
1004 edge->uid = cgraph_edge_max_uid++;
1007 edge->aux = NULL;
1008 edge->caller = caller;
1009 edge->callee = callee;
1010 edge->prev_caller = NULL;
1011 edge->next_caller = NULL;
1012 edge->prev_callee = NULL;
1013 edge->next_callee = NULL;
1015 edge->count = count;
1016 gcc_assert (count >= 0);
1017 edge->frequency = freq;
1018 gcc_assert (freq >= 0);
1019 gcc_assert (freq <= CGRAPH_FREQ_MAX);
1020 edge->loop_nest = nest;
1022 edge->call_stmt = call_stmt;
1023 push_cfun (DECL_STRUCT_FUNCTION (caller->decl));
1024 edge->can_throw_external
1025 = call_stmt ? stmt_can_throw_external (call_stmt) : false;
1026 pop_cfun ();
1027 edge->call_stmt_cannot_inline_p =
1028 (call_stmt ? gimple_call_cannot_inline_p (call_stmt) : false);
1029 if (call_stmt && caller->call_site_hash)
1030 cgraph_add_edge_to_call_site_hash (edge);
1032 edge->indirect_info = NULL;
1033 edge->indirect_inlining_edge = 0;
1035 return edge;
1038 /* Create edge from CALLER to CALLEE in the cgraph. */
1040 struct cgraph_edge *
1041 cgraph_create_edge (struct cgraph_node *caller, struct cgraph_node *callee,
1042 gimple call_stmt, gcov_type count, int freq, int nest)
1044 struct cgraph_edge *edge = cgraph_create_edge_1 (caller, callee, call_stmt,
1045 count, freq, nest);
1047 edge->indirect_unknown_callee = 0;
1048 initialize_inline_failed (edge);
1050 edge->next_caller = callee->callers;
1051 if (callee->callers)
1052 callee->callers->prev_caller = edge;
1053 edge->next_callee = caller->callees;
1054 if (caller->callees)
1055 caller->callees->prev_callee = edge;
1056 caller->callees = edge;
1057 callee->callers = edge;
1059 return edge;
1063 /* Create an indirect edge with a yet-undetermined callee where the call
1064 statement destination is a formal parameter of the caller with index
1065 PARAM_INDEX. */
1067 struct cgraph_edge *
1068 cgraph_create_indirect_edge (struct cgraph_node *caller, gimple call_stmt,
1069 int ecf_flags,
1070 gcov_type count, int freq, int nest)
1072 struct cgraph_edge *edge = cgraph_create_edge_1 (caller, NULL, call_stmt,
1073 count, freq, nest);
1075 edge->indirect_unknown_callee = 1;
1076 initialize_inline_failed (edge);
1078 edge->indirect_info = ggc_alloc_cleared_cgraph_indirect_call_info ();
1079 edge->indirect_info->param_index = -1;
1080 edge->indirect_info->ecf_flags = ecf_flags;
1082 edge->next_callee = caller->indirect_calls;
1083 if (caller->indirect_calls)
1084 caller->indirect_calls->prev_callee = edge;
1085 caller->indirect_calls = edge;
1087 return edge;
1090 /* Remove the edge E from the list of the callers of the callee. */
1092 static inline void
1093 cgraph_edge_remove_callee (struct cgraph_edge *e)
1095 gcc_assert (!e->indirect_unknown_callee);
1096 if (e->prev_caller)
1097 e->prev_caller->next_caller = e->next_caller;
1098 if (e->next_caller)
1099 e->next_caller->prev_caller = e->prev_caller;
1100 if (!e->prev_caller)
1101 e->callee->callers = e->next_caller;
1104 /* Remove the edge E from the list of the callees of the caller. */
1106 static inline void
1107 cgraph_edge_remove_caller (struct cgraph_edge *e)
1109 if (e->prev_callee)
1110 e->prev_callee->next_callee = e->next_callee;
1111 if (e->next_callee)
1112 e->next_callee->prev_callee = e->prev_callee;
1113 if (!e->prev_callee)
1115 if (e->indirect_unknown_callee)
1116 e->caller->indirect_calls = e->next_callee;
1117 else
1118 e->caller->callees = e->next_callee;
1120 if (e->caller->call_site_hash)
1121 htab_remove_elt_with_hash (e->caller->call_site_hash,
1122 e->call_stmt,
1123 htab_hash_pointer (e->call_stmt));
1126 /* Put the edge onto the free list. */
1128 static void
1129 cgraph_free_edge (struct cgraph_edge *e)
1131 int uid = e->uid;
1133 /* Clear out the edge so we do not dangle pointers. */
1134 memset (e, 0, sizeof (*e));
1135 e->uid = uid;
1136 NEXT_FREE_EDGE (e) = free_edges;
1137 free_edges = e;
1140 /* Remove the edge E in the cgraph. */
1142 void
1143 cgraph_remove_edge (struct cgraph_edge *e)
1145 /* Call all edge removal hooks. */
1146 cgraph_call_edge_removal_hooks (e);
1148 if (!e->indirect_unknown_callee)
1149 /* Remove from callers list of the callee. */
1150 cgraph_edge_remove_callee (e);
1152 /* Remove from callees list of the callers. */
1153 cgraph_edge_remove_caller (e);
1155 /* Put the edge onto the free list. */
1156 cgraph_free_edge (e);
1159 /* Set callee of call graph edge E and add it to the corresponding set of
1160 callers. */
1162 static void
1163 cgraph_set_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
1165 e->prev_caller = NULL;
1166 if (n->callers)
1167 n->callers->prev_caller = e;
1168 e->next_caller = n->callers;
1169 n->callers = e;
1170 e->callee = n;
1173 /* Redirect callee of E to N. The function does not update underlying
1174 call expression. */
1176 void
1177 cgraph_redirect_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
1179 /* Remove from callers list of the current callee. */
1180 cgraph_edge_remove_callee (e);
1182 /* Insert to callers list of the new callee. */
1183 cgraph_set_edge_callee (e, n);
1186 /* Make an indirect EDGE with an unknown callee an ordinary edge leading to
1187 CALLEE. */
1189 void
1190 cgraph_make_edge_direct (struct cgraph_edge *edge, struct cgraph_node *callee)
1192 edge->indirect_unknown_callee = 0;
1194 /* Get the edge out of the indirect edge list. */
1195 if (edge->prev_callee)
1196 edge->prev_callee->next_callee = edge->next_callee;
1197 if (edge->next_callee)
1198 edge->next_callee->prev_callee = edge->prev_callee;
1199 if (!edge->prev_callee)
1200 edge->caller->indirect_calls = edge->next_callee;
1202 /* Put it into the normal callee list */
1203 edge->prev_callee = NULL;
1204 edge->next_callee = edge->caller->callees;
1205 if (edge->caller->callees)
1206 edge->caller->callees->prev_callee = edge;
1207 edge->caller->callees = edge;
1209 /* Insert to callers list of the new callee. */
1210 cgraph_set_edge_callee (edge, callee);
1212 /* We need to re-determine the inlining status of the edge. */
1213 initialize_inline_failed (edge);
1217 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1218 OLD_STMT changed into NEW_STMT. OLD_CALL is gimple_call_fndecl
1219 of OLD_STMT if it was previously call statement. */
1221 static void
1222 cgraph_update_edges_for_call_stmt_node (struct cgraph_node *node,
1223 gimple old_stmt, tree old_call, gimple new_stmt)
1225 tree new_call = (is_gimple_call (new_stmt)) ? gimple_call_fndecl (new_stmt) : 0;
1227 /* We are seeing indirect calls, then there is nothing to update. */
1228 if (!new_call && !old_call)
1229 return;
1230 /* See if we turned indirect call into direct call or folded call to one builtin
1231 into different bultin. */
1232 if (old_call != new_call)
1234 struct cgraph_edge *e = cgraph_edge (node, old_stmt);
1235 struct cgraph_edge *ne = NULL;
1236 gcov_type count;
1237 int frequency;
1238 int loop_nest;
1240 if (e)
1242 /* See if the edge is already there and has the correct callee. It
1243 might be so because of indirect inlining has already updated
1244 it. We also might've cloned and redirected the edge. */
1245 if (new_call && e->callee)
1247 struct cgraph_node *callee = e->callee;
1248 while (callee)
1250 if (callee->decl == new_call
1251 || callee->former_clone_of == new_call)
1252 return;
1253 callee = callee->clone_of;
1257 /* Otherwise remove edge and create new one; we can't simply redirect
1258 since function has changed, so inline plan and other information
1259 attached to edge is invalid. */
1260 count = e->count;
1261 frequency = e->frequency;
1262 loop_nest = e->loop_nest;
1263 cgraph_remove_edge (e);
1265 else
1267 /* We are seeing new direct call; compute profile info based on BB. */
1268 basic_block bb = gimple_bb (new_stmt);
1269 count = bb->count;
1270 frequency = compute_call_stmt_bb_frequency (current_function_decl,
1271 bb);
1272 loop_nest = bb->loop_depth;
1275 if (new_call)
1277 ne = cgraph_create_edge (node, cgraph_node (new_call),
1278 new_stmt, count, frequency,
1279 loop_nest);
1280 gcc_assert (ne->inline_failed);
1283 /* We only updated the call stmt; update pointer in cgraph edge.. */
1284 else if (old_stmt != new_stmt)
1285 cgraph_set_call_stmt (cgraph_edge (node, old_stmt), new_stmt);
1288 /* Update or remove the corresponding cgraph edge if a GIMPLE_CALL
1289 OLD_STMT changed into NEW_STMT. OLD_DECL is gimple_call_fndecl
1290 of OLD_STMT before it was updated (updating can happen inplace). */
1292 void
1293 cgraph_update_edges_for_call_stmt (gimple old_stmt, tree old_decl, gimple new_stmt)
1295 struct cgraph_node *orig = cgraph_node (cfun->decl);
1296 struct cgraph_node *node;
1298 cgraph_update_edges_for_call_stmt_node (orig, old_stmt, old_decl, new_stmt);
1299 if (orig->clones)
1300 for (node = orig->clones; node != orig;)
1302 cgraph_update_edges_for_call_stmt_node (node, old_stmt, old_decl, new_stmt);
1303 if (node->clones)
1304 node = node->clones;
1305 else if (node->next_sibling_clone)
1306 node = node->next_sibling_clone;
1307 else
1309 while (node != orig && !node->next_sibling_clone)
1310 node = node->clone_of;
1311 if (node != orig)
1312 node = node->next_sibling_clone;
1318 /* Remove all callees from the node. */
1320 void
1321 cgraph_node_remove_callees (struct cgraph_node *node)
1323 struct cgraph_edge *e, *f;
1325 /* It is sufficient to remove the edges from the lists of callers of
1326 the callees. The callee list of the node can be zapped with one
1327 assignment. */
1328 for (e = node->callees; e; e = f)
1330 f = e->next_callee;
1331 cgraph_call_edge_removal_hooks (e);
1332 if (!e->indirect_unknown_callee)
1333 cgraph_edge_remove_callee (e);
1334 cgraph_free_edge (e);
1336 for (e = node->indirect_calls; e; e = f)
1338 f = e->next_callee;
1339 cgraph_call_edge_removal_hooks (e);
1340 if (!e->indirect_unknown_callee)
1341 cgraph_edge_remove_callee (e);
1342 cgraph_free_edge (e);
1344 node->indirect_calls = NULL;
1345 node->callees = NULL;
1346 if (node->call_site_hash)
1348 htab_delete (node->call_site_hash);
1349 node->call_site_hash = NULL;
1353 /* Remove all callers from the node. */
1355 static void
1356 cgraph_node_remove_callers (struct cgraph_node *node)
1358 struct cgraph_edge *e, *f;
1360 /* It is sufficient to remove the edges from the lists of callees of
1361 the callers. The caller list of the node can be zapped with one
1362 assignment. */
1363 for (e = node->callers; e; e = f)
1365 f = e->next_caller;
1366 cgraph_call_edge_removal_hooks (e);
1367 cgraph_edge_remove_caller (e);
1368 cgraph_free_edge (e);
1370 node->callers = NULL;
1373 /* Release memory used to represent body of function NODE. */
1375 void
1376 cgraph_release_function_body (struct cgraph_node *node)
1378 if (DECL_STRUCT_FUNCTION (node->decl))
1380 tree old_decl = current_function_decl;
1381 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
1382 if (cfun->gimple_df)
1384 current_function_decl = node->decl;
1385 delete_tree_ssa ();
1386 delete_tree_cfg_annotations ();
1387 cfun->eh = NULL;
1388 current_function_decl = old_decl;
1390 if (cfun->cfg)
1392 gcc_assert (dom_computed[0] == DOM_NONE);
1393 gcc_assert (dom_computed[1] == DOM_NONE);
1394 clear_edges ();
1396 if (cfun->value_histograms)
1397 free_histograms ();
1398 gcc_assert (!current_loops);
1399 pop_cfun();
1400 gimple_set_body (node->decl, NULL);
1401 VEC_free (ipa_opt_pass, heap,
1402 node->ipa_transforms_to_apply);
1403 /* Struct function hangs a lot of data that would leak if we didn't
1404 removed all pointers to it. */
1405 ggc_free (DECL_STRUCT_FUNCTION (node->decl));
1406 DECL_STRUCT_FUNCTION (node->decl) = NULL;
1408 DECL_SAVED_TREE (node->decl) = NULL;
1409 /* If the node is abstract and needed, then do not clear DECL_INITIAL
1410 of its associated function function declaration because it's
1411 needed to emit debug info later. */
1412 if (!node->abstract_and_needed)
1413 DECL_INITIAL (node->decl) = error_mark_node;
1416 /* Remove same body alias node. */
1418 void
1419 cgraph_remove_same_body_alias (struct cgraph_node *node)
1421 void **slot;
1422 int uid = node->uid;
1424 gcc_assert (node->same_body_alias);
1425 if (node->previous)
1426 node->previous->next = node->next;
1427 else
1428 node->same_body->same_body = node->next;
1429 if (node->next)
1430 node->next->previous = node->previous;
1431 node->next = NULL;
1432 node->previous = NULL;
1433 slot = htab_find_slot (cgraph_hash, node, NO_INSERT);
1434 if (*slot == node)
1435 htab_clear_slot (cgraph_hash, slot);
1436 if (assembler_name_hash)
1438 tree name = DECL_ASSEMBLER_NAME (node->decl);
1439 slot = htab_find_slot_with_hash (assembler_name_hash, name,
1440 decl_assembler_name_hash (name),
1441 NO_INSERT);
1442 if (slot && *slot == node)
1443 htab_clear_slot (assembler_name_hash, slot);
1446 /* Clear out the node to NULL all pointers and add the node to the free
1447 list. */
1448 memset (node, 0, sizeof(*node));
1449 node->uid = uid;
1450 NEXT_FREE_NODE (node) = free_nodes;
1451 free_nodes = node;
1454 /* Remove the node from cgraph. */
1456 void
1457 cgraph_remove_node (struct cgraph_node *node)
1459 void **slot;
1460 bool kill_body = false;
1461 struct cgraph_node *n;
1462 int uid = node->uid;
1464 cgraph_call_node_removal_hooks (node);
1465 cgraph_node_remove_callers (node);
1466 cgraph_node_remove_callees (node);
1467 ipa_remove_all_references (&node->ref_list);
1468 ipa_remove_all_refering (&node->ref_list);
1469 VEC_free (ipa_opt_pass, heap,
1470 node->ipa_transforms_to_apply);
1472 /* Incremental inlining access removed nodes stored in the postorder list.
1474 node->needed = node->reachable = false;
1475 for (n = node->nested; n; n = n->next_nested)
1476 n->origin = NULL;
1477 node->nested = NULL;
1478 if (node->origin)
1480 struct cgraph_node **node2 = &node->origin->nested;
1482 while (*node2 != node)
1483 node2 = &(*node2)->next_nested;
1484 *node2 = node->next_nested;
1486 if (node->previous)
1487 node->previous->next = node->next;
1488 else
1489 cgraph_nodes = node->next;
1490 if (node->next)
1491 node->next->previous = node->previous;
1492 node->next = NULL;
1493 node->previous = NULL;
1494 slot = htab_find_slot (cgraph_hash, node, NO_INSERT);
1495 if (*slot == node)
1497 struct cgraph_node *next_inline_clone;
1499 for (next_inline_clone = node->clones;
1500 next_inline_clone && next_inline_clone->decl != node->decl;
1501 next_inline_clone = next_inline_clone->next_sibling_clone)
1504 /* If there is inline clone of the node being removed, we need
1505 to put it into the position of removed node and reorganize all
1506 other clones to be based on it. */
1507 if (next_inline_clone)
1509 struct cgraph_node *n;
1510 struct cgraph_node *new_clones;
1512 *slot = next_inline_clone;
1514 /* Unlink inline clone from the list of clones of removed node. */
1515 if (next_inline_clone->next_sibling_clone)
1516 next_inline_clone->next_sibling_clone->prev_sibling_clone
1517 = next_inline_clone->prev_sibling_clone;
1518 if (next_inline_clone->prev_sibling_clone)
1520 gcc_assert (node->clones != next_inline_clone);
1521 next_inline_clone->prev_sibling_clone->next_sibling_clone
1522 = next_inline_clone->next_sibling_clone;
1524 else
1526 gcc_assert (node->clones == next_inline_clone);
1527 node->clones = next_inline_clone->next_sibling_clone;
1530 new_clones = node->clones;
1531 node->clones = NULL;
1533 /* Copy clone info. */
1534 next_inline_clone->clone = node->clone;
1536 /* Now place it into clone tree at same level at NODE. */
1537 next_inline_clone->clone_of = node->clone_of;
1538 next_inline_clone->prev_sibling_clone = NULL;
1539 next_inline_clone->next_sibling_clone = NULL;
1540 if (node->clone_of)
1542 if (node->clone_of->clones)
1543 node->clone_of->clones->prev_sibling_clone = next_inline_clone;
1544 next_inline_clone->next_sibling_clone = node->clone_of->clones;
1545 node->clone_of->clones = next_inline_clone;
1548 /* Merge the clone list. */
1549 if (new_clones)
1551 if (!next_inline_clone->clones)
1552 next_inline_clone->clones = new_clones;
1553 else
1555 n = next_inline_clone->clones;
1556 while (n->next_sibling_clone)
1557 n = n->next_sibling_clone;
1558 n->next_sibling_clone = new_clones;
1559 new_clones->prev_sibling_clone = n;
1563 /* Update clone_of pointers. */
1564 n = new_clones;
1565 while (n)
1567 n->clone_of = next_inline_clone;
1568 n = n->next_sibling_clone;
1571 else
1573 htab_clear_slot (cgraph_hash, slot);
1574 kill_body = true;
1578 if (node->prev_sibling_clone)
1579 node->prev_sibling_clone->next_sibling_clone = node->next_sibling_clone;
1580 else if (node->clone_of)
1581 node->clone_of->clones = node->next_sibling_clone;
1582 if (node->next_sibling_clone)
1583 node->next_sibling_clone->prev_sibling_clone = node->prev_sibling_clone;
1584 if (node->clones)
1586 struct cgraph_node *n, *next;
1588 if (node->clone_of)
1590 for (n = node->clones; n->next_sibling_clone; n = n->next_sibling_clone)
1591 n->clone_of = node->clone_of;
1592 n->clone_of = node->clone_of;
1593 n->next_sibling_clone = node->clone_of->clones;
1594 if (node->clone_of->clones)
1595 node->clone_of->clones->prev_sibling_clone = n;
1596 node->clone_of->clones = node->clones;
1598 else
1600 /* We are removing node with clones. this makes clones inconsistent,
1601 but assume they will be removed subsequently and just keep clone
1602 tree intact. This can happen in unreachable function removal since
1603 we remove unreachable functions in random order, not by bottom-up
1604 walk of clone trees. */
1605 for (n = node->clones; n; n = next)
1607 next = n->next_sibling_clone;
1608 n->next_sibling_clone = NULL;
1609 n->prev_sibling_clone = NULL;
1610 n->clone_of = NULL;
1615 while (node->same_body)
1616 cgraph_remove_same_body_alias (node->same_body);
1618 if (node->same_comdat_group)
1620 struct cgraph_node *prev;
1621 for (prev = node->same_comdat_group;
1622 prev->same_comdat_group != node;
1623 prev = prev->same_comdat_group)
1625 if (node->same_comdat_group == prev)
1626 prev->same_comdat_group = NULL;
1627 else
1628 prev->same_comdat_group = node->same_comdat_group;
1629 node->same_comdat_group = NULL;
1632 /* While all the clones are removed after being proceeded, the function
1633 itself is kept in the cgraph even after it is compiled. Check whether
1634 we are done with this body and reclaim it proactively if this is the case.
1636 if (!kill_body && *slot)
1638 struct cgraph_node *n = (struct cgraph_node *) *slot;
1639 if (!n->clones && !n->clone_of && !n->global.inlined_to
1640 && (cgraph_global_info_ready
1641 && (TREE_ASM_WRITTEN (n->decl) || DECL_EXTERNAL (n->decl)
1642 || n->in_other_partition)))
1643 kill_body = true;
1645 if (assembler_name_hash)
1647 tree name = DECL_ASSEMBLER_NAME (node->decl);
1648 slot = htab_find_slot_with_hash (assembler_name_hash, name,
1649 decl_assembler_name_hash (name),
1650 NO_INSERT);
1651 /* Inline clones are not hashed. */
1652 if (slot && *slot == node)
1653 htab_clear_slot (assembler_name_hash, slot);
1656 if (kill_body)
1657 cgraph_release_function_body (node);
1658 node->decl = NULL;
1659 if (node->call_site_hash)
1661 htab_delete (node->call_site_hash);
1662 node->call_site_hash = NULL;
1664 cgraph_n_nodes--;
1666 /* Clear out the node to NULL all pointers and add the node to the free
1667 list. */
1668 memset (node, 0, sizeof(*node));
1669 node->uid = uid;
1670 NEXT_FREE_NODE (node) = free_nodes;
1671 free_nodes = node;
1674 /* Remove the node from cgraph. */
1676 void
1677 cgraph_remove_node_and_inline_clones (struct cgraph_node *node)
1679 struct cgraph_edge *e, *next;
1680 for (e = node->callees; e; e = next)
1682 next = e->next_callee;
1683 if (!e->inline_failed)
1684 cgraph_remove_node_and_inline_clones (e->callee);
1686 cgraph_remove_node (node);
1689 /* Notify finalize_compilation_unit that given node is reachable. */
1691 void
1692 cgraph_mark_reachable_node (struct cgraph_node *node)
1694 if (!node->reachable && node->local.finalized)
1696 if (cgraph_global_info_ready)
1698 /* Verify that function does not appear to be needed out of blue
1699 during the optimization process. This can happen for extern
1700 inlines when bodies was removed after inlining. */
1701 gcc_assert ((node->analyzed || node->in_other_partition
1702 || DECL_EXTERNAL (node->decl)));
1704 else
1705 notice_global_symbol (node->decl);
1706 node->reachable = 1;
1708 node->next_needed = cgraph_nodes_queue;
1709 cgraph_nodes_queue = node;
1713 /* Likewise indicate that a node is needed, i.e. reachable via some
1714 external means. */
1716 void
1717 cgraph_mark_needed_node (struct cgraph_node *node)
1719 node->needed = 1;
1720 gcc_assert (!node->global.inlined_to);
1721 cgraph_mark_reachable_node (node);
1724 /* Likewise indicate that a node is having address taken. */
1726 void
1727 cgraph_mark_address_taken_node (struct cgraph_node *node)
1729 cgraph_mark_reachable_node (node);
1730 node->address_taken = 1;
1733 /* Return local info for the compiled function. */
1735 struct cgraph_local_info *
1736 cgraph_local_info (tree decl)
1738 struct cgraph_node *node;
1740 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1741 node = cgraph_node (decl);
1742 return &node->local;
1745 /* Return local info for the compiled function. */
1747 struct cgraph_global_info *
1748 cgraph_global_info (tree decl)
1750 struct cgraph_node *node;
1752 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL && cgraph_global_info_ready);
1753 node = cgraph_node (decl);
1754 return &node->global;
1757 /* Return local info for the compiled function. */
1759 struct cgraph_rtl_info *
1760 cgraph_rtl_info (tree decl)
1762 struct cgraph_node *node;
1764 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
1765 node = cgraph_node (decl);
1766 if (decl != current_function_decl
1767 && !TREE_ASM_WRITTEN (node->decl))
1768 return NULL;
1769 return &node->rtl;
1772 /* Return a string describing the failure REASON. */
1774 const char*
1775 cgraph_inline_failed_string (cgraph_inline_failed_t reason)
1777 #undef DEFCIFCODE
1778 #define DEFCIFCODE(code, string) string,
1780 static const char *cif_string_table[CIF_N_REASONS] = {
1781 #include "cif-code.def"
1784 /* Signedness of an enum type is implementation defined, so cast it
1785 to unsigned before testing. */
1786 gcc_assert ((unsigned) reason < CIF_N_REASONS);
1787 return cif_string_table[reason];
1790 /* Return name of the node used in debug output. */
1791 const char *
1792 cgraph_node_name (struct cgraph_node *node)
1794 return lang_hooks.decl_printable_name (node->decl, 2);
1797 /* Names used to print out the availability enum. */
1798 const char * const cgraph_availability_names[] =
1799 {"unset", "not_available", "overwritable", "available", "local"};
1802 /* Dump call graph node NODE to file F. */
1804 void
1805 dump_cgraph_node (FILE *f, struct cgraph_node *node)
1807 struct cgraph_edge *edge;
1808 int indirect_calls_count = 0;
1810 fprintf (f, "%s/%i(%i)", cgraph_node_name (node), node->uid,
1811 node->pid);
1812 dump_addr (f, " @", (void *)node);
1813 if (DECL_ASSEMBLER_NAME_SET_P (node->decl))
1814 fprintf (f, " (asm: %s)", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (node->decl)));
1815 if (node->global.inlined_to)
1816 fprintf (f, " (inline copy in %s/%i)",
1817 cgraph_node_name (node->global.inlined_to),
1818 node->global.inlined_to->uid);
1819 if (node->same_comdat_group)
1820 fprintf (f, " (same comdat group as %s/%i)",
1821 cgraph_node_name (node->same_comdat_group),
1822 node->same_comdat_group->uid);
1823 if (node->clone_of)
1824 fprintf (f, " (clone of %s/%i)",
1825 cgraph_node_name (node->clone_of),
1826 node->clone_of->uid);
1827 if (cgraph_function_flags_ready)
1828 fprintf (f, " availability:%s",
1829 cgraph_availability_names [cgraph_function_body_availability (node)]);
1830 if (node->analyzed)
1831 fprintf (f, " analyzed");
1832 if (node->in_other_partition)
1833 fprintf (f, " in_other_partition");
1834 if (node->count)
1835 fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x",
1836 (HOST_WIDEST_INT)node->count);
1837 if (node->local.inline_summary.self_time)
1838 fprintf (f, " %i time, %i benefit", node->local.inline_summary.self_time,
1839 node->local.inline_summary.time_inlining_benefit);
1840 if (node->global.time && node->global.time
1841 != node->local.inline_summary.self_time)
1842 fprintf (f, " (%i after inlining)", node->global.time);
1843 if (node->local.inline_summary.self_size)
1844 fprintf (f, " %i size, %i benefit", node->local.inline_summary.self_size,
1845 node->local.inline_summary.size_inlining_benefit);
1846 if (node->global.size && node->global.size
1847 != node->local.inline_summary.self_size)
1848 fprintf (f, " (%i after inlining)", node->global.size);
1849 if (node->local.inline_summary.estimated_self_stack_size)
1850 fprintf (f, " %i bytes stack usage", (int)node->local.inline_summary.estimated_self_stack_size);
1851 if (node->global.estimated_stack_size != node->local.inline_summary.estimated_self_stack_size)
1852 fprintf (f, " %i bytes after inlining", (int)node->global.estimated_stack_size);
1853 if (node->origin)
1854 fprintf (f, " nested in: %s", cgraph_node_name (node->origin));
1855 if (node->needed)
1856 fprintf (f, " needed");
1857 if (node->address_taken)
1858 fprintf (f, " address_taken");
1859 else if (node->reachable)
1860 fprintf (f, " reachable");
1861 else if (node->reachable_from_other_partition)
1862 fprintf (f, " reachable_from_other_partition");
1863 if (gimple_has_body_p (node->decl))
1864 fprintf (f, " body");
1865 if (node->process)
1866 fprintf (f, " process");
1867 if (node->local.local)
1868 fprintf (f, " local");
1869 if (node->local.externally_visible)
1870 fprintf (f, " externally_visible");
1871 if (node->local.finalized)
1872 fprintf (f, " finalized");
1873 if (node->local.disregard_inline_limits)
1874 fprintf (f, " always_inline");
1875 else if (node->local.inlinable)
1876 fprintf (f, " inlinable");
1877 else if (node->local.versionable)
1878 fprintf (f, " versionable");
1879 if (node->local.redefined_extern_inline)
1880 fprintf (f, " redefined_extern_inline");
1881 if (TREE_ASM_WRITTEN (node->decl))
1882 fprintf (f, " asm_written");
1883 if (node->only_called_at_startup)
1884 fprintf (f, " only_called_at_startup");
1885 if (node->only_called_at_exit)
1886 fprintf (f, " only_called_at_exit");
1888 fprintf (f, "\n called by: ");
1889 for (edge = node->callers; edge; edge = edge->next_caller)
1891 fprintf (f, "%s/%i ", cgraph_node_name (edge->caller),
1892 edge->caller->uid);
1893 if (edge->count)
1894 fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1895 (HOST_WIDEST_INT)edge->count);
1896 if (edge->frequency)
1897 fprintf (f, "(%.2f per call) ",
1898 edge->frequency / (double)CGRAPH_FREQ_BASE);
1899 if (!edge->inline_failed)
1900 fprintf(f, "(inlined) ");
1901 if (edge->indirect_inlining_edge)
1902 fprintf(f, "(indirect_inlining) ");
1903 if (edge->can_throw_external)
1904 fprintf(f, "(can throw external) ");
1907 fprintf (f, "\n calls: ");
1908 for (edge = node->callees; edge; edge = edge->next_callee)
1910 fprintf (f, "%s/%i ", cgraph_node_name (edge->callee),
1911 edge->callee->uid);
1912 if (!edge->inline_failed)
1913 fprintf(f, "(inlined) ");
1914 if (edge->indirect_inlining_edge)
1915 fprintf(f, "(indirect_inlining) ");
1916 if (edge->count)
1917 fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
1918 (HOST_WIDEST_INT)edge->count);
1919 if (edge->frequency)
1920 fprintf (f, "(%.2f per call) ",
1921 edge->frequency / (double)CGRAPH_FREQ_BASE);
1922 if (edge->loop_nest)
1923 fprintf (f, "(nested in %i loops) ", edge->loop_nest);
1924 if (edge->can_throw_external)
1925 fprintf(f, "(can throw external) ");
1927 fprintf (f, "\n");
1928 fprintf (f, " References: ");
1929 ipa_dump_references (f, &node->ref_list);
1930 fprintf (f, " Refering this function: ");
1931 ipa_dump_refering (f, &node->ref_list);
1933 for (edge = node->indirect_calls; edge; edge = edge->next_callee)
1934 indirect_calls_count++;
1935 if (indirect_calls_count)
1936 fprintf (f, " has %i outgoing edges for indirect calls.\n",
1937 indirect_calls_count);
1939 if (node->same_body)
1941 struct cgraph_node *n;
1942 fprintf (f, " aliases & thunks:");
1943 for (n = node->same_body; n; n = n->next)
1945 fprintf (f, " %s/%i", cgraph_node_name (n), n->uid);
1946 if (n->thunk.thunk_p)
1948 fprintf (f, " (thunk of %s fixed ofset %i virtual value %i has "
1949 "virtual offset %i",
1950 lang_hooks.decl_printable_name (n->thunk.alias, 2),
1951 (int)n->thunk.fixed_offset,
1952 (int)n->thunk.virtual_value,
1953 (int)n->thunk.virtual_offset_p);
1954 fprintf (f, ")");
1956 if (DECL_ASSEMBLER_NAME_SET_P (n->decl))
1957 fprintf (f, " (asm: %s)", IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl)));
1959 fprintf (f, "\n");
1964 /* Dump call graph node NODE to stderr. */
1966 DEBUG_FUNCTION void
1967 debug_cgraph_node (struct cgraph_node *node)
1969 dump_cgraph_node (stderr, node);
1973 /* Dump the callgraph to file F. */
1975 void
1976 dump_cgraph (FILE *f)
1978 struct cgraph_node *node;
1980 fprintf (f, "callgraph:\n\n");
1981 for (node = cgraph_nodes; node; node = node->next)
1982 dump_cgraph_node (f, node);
1986 /* Dump the call graph to stderr. */
1988 DEBUG_FUNCTION void
1989 debug_cgraph (void)
1991 dump_cgraph (stderr);
1995 /* Set the DECL_ASSEMBLER_NAME and update cgraph hashtables. */
1997 void
1998 change_decl_assembler_name (tree decl, tree name)
2000 struct cgraph_node *node;
2001 void **slot;
2002 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
2003 SET_DECL_ASSEMBLER_NAME (decl, name);
2004 else
2006 if (name == DECL_ASSEMBLER_NAME (decl))
2007 return;
2009 if (assembler_name_hash
2010 && TREE_CODE (decl) == FUNCTION_DECL
2011 && (node = cgraph_get_node_or_alias (decl)) != NULL)
2013 tree old_name = DECL_ASSEMBLER_NAME (decl);
2014 slot = htab_find_slot_with_hash (assembler_name_hash, old_name,
2015 decl_assembler_name_hash (old_name),
2016 NO_INSERT);
2017 /* Inline clones are not hashed. */
2018 if (slot && *slot == node)
2019 htab_clear_slot (assembler_name_hash, slot);
2021 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
2022 && DECL_RTL_SET_P (decl))
2023 warning (0, "%D renamed after being referenced in assembly", decl);
2025 SET_DECL_ASSEMBLER_NAME (decl, name);
2027 if (assembler_name_hash
2028 && TREE_CODE (decl) == FUNCTION_DECL
2029 && (node = cgraph_get_node_or_alias (decl)) != NULL)
2031 slot = htab_find_slot_with_hash (assembler_name_hash, name,
2032 decl_assembler_name_hash (name),
2033 INSERT);
2034 gcc_assert (!*slot);
2035 *slot = node;
2039 /* Add a top-level asm statement to the list. */
2041 struct cgraph_asm_node *
2042 cgraph_add_asm_node (tree asm_str)
2044 struct cgraph_asm_node *node;
2046 node = ggc_alloc_cleared_cgraph_asm_node ();
2047 node->asm_str = asm_str;
2048 node->order = cgraph_order++;
2049 node->next = NULL;
2050 if (cgraph_asm_nodes == NULL)
2051 cgraph_asm_nodes = node;
2052 else
2053 cgraph_asm_last_node->next = node;
2054 cgraph_asm_last_node = node;
2055 return node;
2058 /* Return true when the DECL can possibly be inlined. */
2059 bool
2060 cgraph_function_possibly_inlined_p (tree decl)
2062 if (!cgraph_global_info_ready)
2063 return !DECL_UNINLINABLE (decl);
2064 return DECL_POSSIBLY_INLINED (decl);
2067 /* Create clone of E in the node N represented by CALL_EXPR the callgraph. */
2068 struct cgraph_edge *
2069 cgraph_clone_edge (struct cgraph_edge *e, struct cgraph_node *n,
2070 gimple call_stmt, unsigned stmt_uid, gcov_type count_scale,
2071 int freq_scale, int loop_nest, bool update_original)
2073 struct cgraph_edge *new_edge;
2074 gcov_type count = e->count * count_scale / REG_BR_PROB_BASE;
2075 gcov_type freq;
2077 /* We do not want to ignore loop nest after frequency drops to 0. */
2078 if (!freq_scale)
2079 freq_scale = 1;
2080 freq = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
2081 if (freq > CGRAPH_FREQ_MAX)
2082 freq = CGRAPH_FREQ_MAX;
2084 if (e->indirect_unknown_callee)
2086 tree decl;
2088 if (call_stmt && (decl = gimple_call_fndecl (call_stmt)))
2090 struct cgraph_node *callee = cgraph_node (decl);
2091 new_edge = cgraph_create_edge (n, callee, call_stmt, count, freq,
2092 e->loop_nest + loop_nest);
2094 else
2096 new_edge = cgraph_create_indirect_edge (n, call_stmt,
2097 e->indirect_info->ecf_flags,
2098 count, freq,
2099 e->loop_nest + loop_nest);
2100 *new_edge->indirect_info = *e->indirect_info;
2103 else
2104 new_edge = cgraph_create_edge (n, e->callee, call_stmt, count, freq,
2105 e->loop_nest + loop_nest);
2107 new_edge->inline_failed = e->inline_failed;
2108 new_edge->indirect_inlining_edge = e->indirect_inlining_edge;
2109 new_edge->lto_stmt_uid = stmt_uid;
2110 if (update_original)
2112 e->count -= new_edge->count;
2113 if (e->count < 0)
2114 e->count = 0;
2116 cgraph_call_edge_duplication_hooks (e, new_edge);
2117 return new_edge;
2120 /* Create node representing clone of N executed COUNT times. Decrease
2121 the execution counts from original node too.
2122 The new clone will have decl set to DECL that may or may not be the same
2123 as decl of N.
2125 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
2126 function's profile to reflect the fact that part of execution is handled
2127 by node. */
2128 struct cgraph_node *
2129 cgraph_clone_node (struct cgraph_node *n, tree decl, gcov_type count, int freq,
2130 int loop_nest, bool update_original,
2131 VEC(cgraph_edge_p,heap) *redirect_callers)
2133 struct cgraph_node *new_node = cgraph_create_node ();
2134 struct cgraph_edge *e;
2135 gcov_type count_scale;
2136 unsigned i;
2138 new_node->decl = decl;
2139 new_node->origin = n->origin;
2140 if (new_node->origin)
2142 new_node->next_nested = new_node->origin->nested;
2143 new_node->origin->nested = new_node;
2145 new_node->analyzed = n->analyzed;
2146 new_node->local = n->local;
2147 new_node->local.externally_visible = false;
2148 new_node->local.local = true;
2149 new_node->local.vtable_method = false;
2150 new_node->global = n->global;
2151 new_node->rtl = n->rtl;
2152 new_node->count = count;
2153 new_node->frequency = n->frequency;
2154 new_node->clone = n->clone;
2155 new_node->clone.tree_map = 0;
2156 if (n->count)
2158 if (new_node->count > n->count)
2159 count_scale = REG_BR_PROB_BASE;
2160 else
2161 count_scale = new_node->count * REG_BR_PROB_BASE / n->count;
2163 else
2164 count_scale = 0;
2165 if (update_original)
2167 n->count -= count;
2168 if (n->count < 0)
2169 n->count = 0;
2172 FOR_EACH_VEC_ELT (cgraph_edge_p, redirect_callers, i, e)
2174 /* Redirect calls to the old version node to point to its new
2175 version. */
2176 cgraph_redirect_edge_callee (e, new_node);
2180 for (e = n->callees;e; e=e->next_callee)
2181 cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
2182 count_scale, freq, loop_nest, update_original);
2184 for (e = n->indirect_calls; e; e = e->next_callee)
2185 cgraph_clone_edge (e, new_node, e->call_stmt, e->lto_stmt_uid,
2186 count_scale, freq, loop_nest, update_original);
2187 ipa_clone_references (new_node, NULL, &n->ref_list);
2189 new_node->next_sibling_clone = n->clones;
2190 if (n->clones)
2191 n->clones->prev_sibling_clone = new_node;
2192 n->clones = new_node;
2193 new_node->clone_of = n;
2195 cgraph_call_node_duplication_hooks (n, new_node);
2196 if (n->decl != decl)
2198 struct cgraph_node **slot;
2199 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, new_node, INSERT);
2200 gcc_assert (!*slot);
2201 *slot = new_node;
2202 if (assembler_name_hash)
2204 void **aslot;
2205 tree name = DECL_ASSEMBLER_NAME (decl);
2207 aslot = htab_find_slot_with_hash (assembler_name_hash, name,
2208 decl_assembler_name_hash (name),
2209 INSERT);
2210 gcc_assert (!*aslot);
2211 *aslot = new_node;
2214 return new_node;
2217 /* Create a new name for clone of DECL, add SUFFIX. Returns an identifier. */
2219 static GTY(()) unsigned int clone_fn_id_num;
2221 tree
2222 clone_function_name (tree decl, const char *suffix)
2224 tree name = DECL_ASSEMBLER_NAME (decl);
2225 size_t len = IDENTIFIER_LENGTH (name);
2226 char *tmp_name, *prefix;
2228 prefix = XALLOCAVEC (char, len + strlen (suffix) + 2);
2229 memcpy (prefix, IDENTIFIER_POINTER (name), len);
2230 strcpy (prefix + len + 1, suffix);
2231 #ifndef NO_DOT_IN_LABEL
2232 prefix[len] = '.';
2233 #elif !defined NO_DOLLAR_IN_LABEL
2234 prefix[len] = '$';
2235 #else
2236 prefix[len] = '_';
2237 #endif
2238 ASM_FORMAT_PRIVATE_NAME (tmp_name, prefix, clone_fn_id_num++);
2239 return get_identifier (tmp_name);
2242 /* Create callgraph node clone with new declaration. The actual body will
2243 be copied later at compilation stage.
2245 TODO: after merging in ipa-sra use function call notes instead of args_to_skip
2246 bitmap interface.
2248 struct cgraph_node *
2249 cgraph_create_virtual_clone (struct cgraph_node *old_node,
2250 VEC(cgraph_edge_p,heap) *redirect_callers,
2251 VEC(ipa_replace_map_p,gc) *tree_map,
2252 bitmap args_to_skip,
2253 const char * suffix)
2255 tree old_decl = old_node->decl;
2256 struct cgraph_node *new_node = NULL;
2257 tree new_decl;
2258 size_t i;
2259 struct ipa_replace_map *map;
2261 #ifdef ENABLE_CHECKING
2262 if (!flag_wpa)
2263 gcc_assert (tree_versionable_function_p (old_decl));
2264 #endif
2266 /* Make a new FUNCTION_DECL tree node */
2267 if (!args_to_skip)
2268 new_decl = copy_node (old_decl);
2269 else
2270 new_decl = build_function_decl_skip_args (old_decl, args_to_skip);
2271 DECL_STRUCT_FUNCTION (new_decl) = NULL;
2273 /* Generate a new name for the new version. */
2274 DECL_NAME (new_decl) = clone_function_name (old_decl, suffix);
2275 SET_DECL_ASSEMBLER_NAME (new_decl, DECL_NAME (new_decl));
2276 SET_DECL_RTL (new_decl, NULL);
2278 new_node = cgraph_clone_node (old_node, new_decl, old_node->count,
2279 CGRAPH_FREQ_BASE, 0, false,
2280 redirect_callers);
2281 /* Update the properties.
2282 Make clone visible only within this translation unit. Make sure
2283 that is not weak also.
2284 ??? We cannot use COMDAT linkage because there is no
2285 ABI support for this. */
2286 DECL_EXTERNAL (new_node->decl) = 0;
2287 if (DECL_ONE_ONLY (old_decl))
2288 DECL_SECTION_NAME (new_node->decl) = NULL;
2289 DECL_COMDAT_GROUP (new_node->decl) = 0;
2290 TREE_PUBLIC (new_node->decl) = 0;
2291 DECL_COMDAT (new_node->decl) = 0;
2292 DECL_WEAK (new_node->decl) = 0;
2293 new_node->clone.tree_map = tree_map;
2294 new_node->clone.args_to_skip = args_to_skip;
2295 FOR_EACH_VEC_ELT (ipa_replace_map_p, tree_map, i, map)
2297 tree var = map->new_tree;
2299 STRIP_NOPS (var);
2300 if (TREE_CODE (var) != ADDR_EXPR)
2301 continue;
2302 var = get_base_var (var);
2303 if (!var)
2304 continue;
2306 /* Record references of the future statement initializing the constant
2307 argument. */
2308 if (TREE_CODE (var) == FUNCTION_DECL)
2309 ipa_record_reference (new_node, NULL, cgraph_node (var),
2310 NULL, IPA_REF_ADDR, NULL);
2311 else if (TREE_CODE (var) == VAR_DECL)
2312 ipa_record_reference (new_node, NULL, NULL, varpool_node (var),
2313 IPA_REF_ADDR, NULL);
2315 if (!args_to_skip)
2316 new_node->clone.combined_args_to_skip = old_node->clone.combined_args_to_skip;
2317 else if (old_node->clone.combined_args_to_skip)
2319 int newi = 0, oldi = 0;
2320 tree arg;
2321 bitmap new_args_to_skip = BITMAP_GGC_ALLOC ();
2322 struct cgraph_node *orig_node;
2323 for (orig_node = old_node; orig_node->clone_of; orig_node = orig_node->clone_of)
2325 for (arg = DECL_ARGUMENTS (orig_node->decl); arg; arg = DECL_CHAIN (arg), oldi++)
2327 if (bitmap_bit_p (old_node->clone.combined_args_to_skip, oldi))
2329 bitmap_set_bit (new_args_to_skip, oldi);
2330 continue;
2332 if (bitmap_bit_p (args_to_skip, newi))
2333 bitmap_set_bit (new_args_to_skip, oldi);
2334 newi++;
2336 new_node->clone.combined_args_to_skip = new_args_to_skip;
2338 else
2339 new_node->clone.combined_args_to_skip = args_to_skip;
2340 new_node->local.externally_visible = 0;
2341 new_node->local.local = 1;
2342 new_node->lowered = true;
2343 new_node->reachable = true;
2346 return new_node;
2349 /* NODE is no longer nested function; update cgraph accordingly. */
2350 void
2351 cgraph_unnest_node (struct cgraph_node *node)
2353 struct cgraph_node **node2 = &node->origin->nested;
2354 gcc_assert (node->origin);
2356 while (*node2 != node)
2357 node2 = &(*node2)->next_nested;
2358 *node2 = node->next_nested;
2359 node->origin = NULL;
2362 /* Return function availability. See cgraph.h for description of individual
2363 return values. */
2364 enum availability
2365 cgraph_function_body_availability (struct cgraph_node *node)
2367 enum availability avail;
2368 gcc_assert (cgraph_function_flags_ready);
2369 if (!node->analyzed)
2370 avail = AVAIL_NOT_AVAILABLE;
2371 else if (node->local.local)
2372 avail = AVAIL_LOCAL;
2373 else if (!node->local.externally_visible)
2374 avail = AVAIL_AVAILABLE;
2375 /* Inline functions are safe to be analyzed even if their sybol can
2376 be overwritten at runtime. It is not meaningful to enfore any sane
2377 behaviour on replacing inline function by different body. */
2378 else if (DECL_DECLARED_INLINE_P (node->decl))
2379 avail = AVAIL_AVAILABLE;
2381 /* If the function can be overwritten, return OVERWRITABLE. Take
2382 care at least of two notable extensions - the COMDAT functions
2383 used to share template instantiations in C++ (this is symmetric
2384 to code cp_cannot_inline_tree_fn and probably shall be shared and
2385 the inlinability hooks completely eliminated).
2387 ??? Does the C++ one definition rule allow us to always return
2388 AVAIL_AVAILABLE here? That would be good reason to preserve this
2389 bit. */
2391 else if (decl_replaceable_p (node->decl) && !DECL_EXTERNAL (node->decl))
2392 avail = AVAIL_OVERWRITABLE;
2393 else avail = AVAIL_AVAILABLE;
2395 return avail;
2398 /* Add the function FNDECL to the call graph.
2399 Unlike cgraph_finalize_function, this function is intended to be used
2400 by middle end and allows insertion of new function at arbitrary point
2401 of compilation. The function can be either in high, low or SSA form
2402 GIMPLE.
2404 The function is assumed to be reachable and have address taken (so no
2405 API breaking optimizations are performed on it).
2407 Main work done by this function is to enqueue the function for later
2408 processing to avoid need the passes to be re-entrant. */
2410 void
2411 cgraph_add_new_function (tree fndecl, bool lowered)
2413 struct cgraph_node *node;
2414 switch (cgraph_state)
2416 case CGRAPH_STATE_CONSTRUCTION:
2417 /* Just enqueue function to be processed at nearest occurrence. */
2418 node = cgraph_node (fndecl);
2419 node->next_needed = cgraph_new_nodes;
2420 if (lowered)
2421 node->lowered = true;
2422 cgraph_new_nodes = node;
2423 break;
2425 case CGRAPH_STATE_IPA:
2426 case CGRAPH_STATE_IPA_SSA:
2427 case CGRAPH_STATE_EXPANSION:
2428 /* Bring the function into finalized state and enqueue for later
2429 analyzing and compilation. */
2430 node = cgraph_node (fndecl);
2431 node->local.local = false;
2432 node->local.finalized = true;
2433 node->reachable = node->needed = true;
2434 if (!lowered && cgraph_state == CGRAPH_STATE_EXPANSION)
2436 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
2437 current_function_decl = fndecl;
2438 gimple_register_cfg_hooks ();
2439 tree_lowering_passes (fndecl);
2440 bitmap_obstack_initialize (NULL);
2441 if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
2442 execute_pass_list (pass_early_local_passes.pass.sub);
2443 bitmap_obstack_release (NULL);
2444 pop_cfun ();
2445 current_function_decl = NULL;
2447 lowered = true;
2449 if (lowered)
2450 node->lowered = true;
2451 node->next_needed = cgraph_new_nodes;
2452 cgraph_new_nodes = node;
2453 break;
2455 case CGRAPH_STATE_FINISHED:
2456 /* At the very end of compilation we have to do all the work up
2457 to expansion. */
2458 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
2459 current_function_decl = fndecl;
2460 gimple_register_cfg_hooks ();
2461 if (!lowered)
2462 tree_lowering_passes (fndecl);
2463 bitmap_obstack_initialize (NULL);
2464 if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)))
2465 execute_pass_list (pass_early_local_passes.pass.sub);
2466 bitmap_obstack_release (NULL);
2467 tree_rest_of_compilation (fndecl);
2468 pop_cfun ();
2469 current_function_decl = NULL;
2470 break;
2473 /* Set a personality if required and we already passed EH lowering. */
2474 if (lowered
2475 && (function_needs_eh_personality (DECL_STRUCT_FUNCTION (fndecl))
2476 == eh_personality_lang))
2477 DECL_FUNCTION_PERSONALITY (fndecl) = lang_hooks.eh_personality ();
2480 /* Return true if NODE can be made local for API change.
2481 Extern inline functions and C++ COMDAT functions can be made local
2482 at the expense of possible code size growth if function is used in multiple
2483 compilation units. */
2484 bool
2485 cgraph_node_can_be_local_p (struct cgraph_node *node)
2487 return (!node->needed && !node->address_taken
2488 && ((DECL_COMDAT (node->decl) && !node->same_comdat_group)
2489 || !node->local.externally_visible));
2492 /* Make DECL local. FIXME: We shouldn't need to mess with rtl this early,
2493 but other code such as notice_global_symbol generates rtl. */
2494 void
2495 cgraph_make_decl_local (tree decl)
2497 rtx rtl, symbol;
2499 if (TREE_CODE (decl) == VAR_DECL)
2500 DECL_COMMON (decl) = 0;
2501 else gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
2503 if (DECL_COMDAT (decl))
2505 /* It is possible that we are linking against library defining same COMDAT
2506 function. To avoid conflict we need to rename our local name of the
2507 function just in the case WHOPR partitioning decide to make it hidden
2508 to avoid cross partition references. */
2509 if (flag_wpa)
2511 const char *old_name;
2513 old_name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
2514 if (TREE_CODE (decl) == FUNCTION_DECL)
2516 struct cgraph_node *node = cgraph_get_node_or_alias (decl);
2517 change_decl_assembler_name (decl,
2518 clone_function_name (decl, "local"));
2519 if (node->local.lto_file_data)
2520 lto_record_renamed_decl (node->local.lto_file_data,
2521 old_name,
2522 IDENTIFIER_POINTER
2523 (DECL_ASSEMBLER_NAME (decl)));
2525 else if (TREE_CODE (decl) == VAR_DECL)
2527 struct varpool_node *vnode = varpool_get_node (decl);
2528 /* change_decl_assembler_name will warn here on vtables because
2529 C++ frontend still sets TREE_SYMBOL_REFERENCED on them. */
2530 SET_DECL_ASSEMBLER_NAME (decl,
2531 clone_function_name (decl, "local"));
2532 if (vnode->lto_file_data)
2533 lto_record_renamed_decl (vnode->lto_file_data,
2534 old_name,
2535 IDENTIFIER_POINTER
2536 (DECL_ASSEMBLER_NAME (decl)));
2539 DECL_SECTION_NAME (decl) = 0;
2540 DECL_COMDAT (decl) = 0;
2542 DECL_COMDAT_GROUP (decl) = 0;
2543 DECL_WEAK (decl) = 0;
2544 DECL_EXTERNAL (decl) = 0;
2545 TREE_PUBLIC (decl) = 0;
2546 if (!DECL_RTL_SET_P (decl))
2547 return;
2549 /* Update rtl flags. */
2550 make_decl_rtl (decl);
2552 rtl = DECL_RTL (decl);
2553 if (!MEM_P (rtl))
2554 return;
2556 symbol = XEXP (rtl, 0);
2557 if (GET_CODE (symbol) != SYMBOL_REF)
2558 return;
2560 SYMBOL_REF_WEAK (symbol) = DECL_WEAK (decl);
2563 /* Bring NODE local. */
2564 void
2565 cgraph_make_node_local (struct cgraph_node *node)
2567 gcc_assert (cgraph_node_can_be_local_p (node));
2568 if (DECL_COMDAT (node->decl) || DECL_EXTERNAL (node->decl))
2570 struct cgraph_node *alias;
2571 cgraph_make_decl_local (node->decl);
2573 for (alias = node->same_body; alias; alias = alias->next)
2574 cgraph_make_decl_local (alias->decl);
2576 node->local.externally_visible = false;
2577 node->local.local = true;
2578 node->resolution = LDPR_PREVAILING_DEF_IRONLY;
2579 gcc_assert (cgraph_function_body_availability (node) == AVAIL_LOCAL);
2583 /* Set TREE_NOTHROW on NODE's decl and on same_body aliases of NODE
2584 if any to NOTHROW. */
2586 void
2587 cgraph_set_nothrow_flag (struct cgraph_node *node, bool nothrow)
2589 struct cgraph_node *alias;
2590 TREE_NOTHROW (node->decl) = nothrow;
2591 for (alias = node->same_body; alias; alias = alias->next)
2592 TREE_NOTHROW (alias->decl) = nothrow;
2595 /* Set TREE_READONLY on NODE's decl and on same_body aliases of NODE
2596 if any to READONLY. */
2598 void
2599 cgraph_set_readonly_flag (struct cgraph_node *node, bool readonly)
2601 struct cgraph_node *alias;
2602 TREE_READONLY (node->decl) = readonly;
2603 for (alias = node->same_body; alias; alias = alias->next)
2604 TREE_READONLY (alias->decl) = readonly;
2607 /* Set DECL_PURE_P on NODE's decl and on same_body aliases of NODE
2608 if any to PURE. */
2610 void
2611 cgraph_set_pure_flag (struct cgraph_node *node, bool pure)
2613 struct cgraph_node *alias;
2614 DECL_PURE_P (node->decl) = pure;
2615 for (alias = node->same_body; alias; alias = alias->next)
2616 DECL_PURE_P (alias->decl) = pure;
2619 /* Set DECL_LOOPING_CONST_OR_PURE_P on NODE's decl and on
2620 same_body aliases of NODE if any to LOOPING_CONST_OR_PURE. */
2622 void
2623 cgraph_set_looping_const_or_pure_flag (struct cgraph_node *node,
2624 bool looping_const_or_pure)
2626 struct cgraph_node *alias;
2627 DECL_LOOPING_CONST_OR_PURE_P (node->decl) = looping_const_or_pure;
2628 for (alias = node->same_body; alias; alias = alias->next)
2629 DECL_LOOPING_CONST_OR_PURE_P (alias->decl) = looping_const_or_pure;
2632 /* See if the frequency of NODE can be updated based on frequencies of its
2633 callers. */
2634 bool
2635 cgraph_propagate_frequency (struct cgraph_node *node)
2637 bool maybe_unlikely_executed = true, maybe_executed_once = true;
2638 bool only_called_at_startup = true;
2639 bool only_called_at_exit = true;
2640 bool changed = false;
2641 struct cgraph_edge *edge;
2643 if (!node->local.local)
2644 return false;
2645 gcc_assert (node->analyzed);
2646 if (dump_file && (dump_flags & TDF_DETAILS))
2647 fprintf (dump_file, "Processing frequency %s\n", cgraph_node_name (node));
2649 for (edge = node->callers;
2650 edge && (maybe_unlikely_executed || maybe_executed_once
2651 || only_called_at_startup || only_called_at_exit);
2652 edge = edge->next_caller)
2654 if (edge->caller != node)
2656 only_called_at_startup &= edge->caller->only_called_at_startup;
2657 /* It makes snese to put main() together with the static constructors.
2658 It will be executed for sure, but rest of functions called from
2659 main are definitly not at startup only. */
2660 if (MAIN_NAME_P (DECL_NAME (edge->caller->decl)))
2661 only_called_at_startup = 0;
2662 only_called_at_exit &= edge->caller->only_called_at_exit;
2664 if (!edge->frequency)
2665 continue;
2666 switch (edge->caller->frequency)
2668 case NODE_FREQUENCY_UNLIKELY_EXECUTED:
2669 break;
2670 case NODE_FREQUENCY_EXECUTED_ONCE:
2671 if (dump_file && (dump_flags & TDF_DETAILS))
2672 fprintf (dump_file, " Called by %s that is executed once\n",
2673 cgraph_node_name (node));
2674 maybe_unlikely_executed = false;
2675 if (edge->loop_nest)
2677 maybe_executed_once = false;
2678 if (dump_file && (dump_flags & TDF_DETAILS))
2679 fprintf (dump_file, " Called in loop\n");
2681 break;
2682 case NODE_FREQUENCY_HOT:
2683 case NODE_FREQUENCY_NORMAL:
2684 if (dump_file && (dump_flags & TDF_DETAILS))
2685 fprintf (dump_file, " Called by %s that is normal or hot\n",
2686 cgraph_node_name (node));
2687 maybe_unlikely_executed = false;
2688 maybe_executed_once = false;
2689 break;
2692 if ((only_called_at_startup && !only_called_at_exit)
2693 && !node->only_called_at_startup)
2695 node->only_called_at_startup = true;
2696 if (dump_file)
2697 fprintf (dump_file, "Node %s promoted to only called at startup.\n",
2698 cgraph_node_name (node));
2699 changed = true;
2701 if ((only_called_at_exit && !only_called_at_startup)
2702 && !node->only_called_at_exit)
2704 node->only_called_at_exit = true;
2705 if (dump_file)
2706 fprintf (dump_file, "Node %s promoted to only called at exit.\n",
2707 cgraph_node_name (node));
2708 changed = true;
2710 /* These come either from profile or user hints; never update them. */
2711 if (node->frequency == NODE_FREQUENCY_HOT
2712 || node->frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
2713 return changed;
2714 if (maybe_unlikely_executed)
2716 node->frequency = NODE_FREQUENCY_UNLIKELY_EXECUTED;
2717 if (dump_file)
2718 fprintf (dump_file, "Node %s promoted to unlikely executed.\n",
2719 cgraph_node_name (node));
2720 changed = true;
2722 if (maybe_executed_once && node->frequency != NODE_FREQUENCY_EXECUTED_ONCE)
2724 node->frequency = NODE_FREQUENCY_EXECUTED_ONCE;
2725 if (dump_file)
2726 fprintf (dump_file, "Node %s promoted to executed once.\n",
2727 cgraph_node_name (node));
2728 changed = true;
2730 return changed;
2733 /* Return true when NODE can not return or throw and thus
2734 it is safe to ignore its side effects for IPA analysis. */
2736 bool
2737 cgraph_node_cannot_return (struct cgraph_node *node)
2739 int flags = flags_from_decl_or_type (node->decl);
2740 if (!flag_exceptions)
2741 return (flags & ECF_NORETURN) != 0;
2742 else
2743 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2744 == (ECF_NORETURN | ECF_NOTHROW));
2747 /* Return true when call of E can not lead to return from caller
2748 and thus it is safe to ignore its side effects for IPA analysis
2749 when computing side effects of the caller.
2750 FIXME: We could actually mark all edges that have no reaching
2751 patch to EXIT_BLOCK_PTR or throw to get better results. */
2752 bool
2753 cgraph_edge_cannot_lead_to_return (struct cgraph_edge *e)
2755 if (cgraph_node_cannot_return (e->caller))
2756 return true;
2757 if (e->indirect_unknown_callee)
2759 int flags = e->indirect_info->ecf_flags;
2760 if (!flag_exceptions)
2761 return (flags & ECF_NORETURN) != 0;
2762 else
2763 return ((flags & (ECF_NORETURN | ECF_NOTHROW))
2764 == (ECF_NORETURN | ECF_NOTHROW));
2766 else
2767 return cgraph_node_cannot_return (e->callee);
2770 /* Return true when function NODE can be removed from callgraph
2771 if all direct calls are eliminated. */
2773 bool
2774 cgraph_can_remove_if_no_direct_calls_and_refs_p (struct cgraph_node *node)
2776 /* When function is needed, we can not remove it. */
2777 if (node->needed || node->reachable_from_other_partition)
2778 return false;
2779 /* Only COMDAT functions can be removed if externally visible. */
2780 if (node->local.externally_visible
2781 && (!DECL_COMDAT (node->decl)
2782 || cgraph_used_from_object_file_p (node)))
2783 return false;
2784 /* Constructors and destructors are executed by the runtime, however
2785 we can get rid of all pure constructors and destructors. */
2786 if (DECL_STATIC_CONSTRUCTOR (node->decl)
2787 || DECL_STATIC_DESTRUCTOR (node->decl))
2789 int flags = flags_from_decl_or_type (node->decl);
2790 if (!optimize
2791 || !(flags & (ECF_CONST | ECF_PURE))
2792 || (flags & ECF_LOOPING_CONST_OR_PURE))
2793 return false;
2795 return true;
2798 /* Return true when function NODE can be excpected to be removed
2799 from program when direct calls in this compilation unit are removed.
2801 As a special case COMDAT functions are
2802 cgraph_can_remove_if_no_direct_calls_p while the are not
2803 cgraph_only_called_directly_p (it is possible they are called from other
2804 unit)
2806 This function behaves as cgraph_only_called_directly_p because eliminating
2807 all uses of COMDAT function does not make it neccesarily disappear from
2808 the program unless we are compiling whole program or we do LTO. In this
2809 case we know we win since dynamic linking will not really discard the
2810 linkonce section. */
2812 bool
2813 cgraph_will_be_removed_from_program_if_no_direct_calls (struct cgraph_node *node)
2815 if (cgraph_used_from_object_file_p (node))
2816 return false;
2817 if (!in_lto_p && !flag_whole_program)
2818 return cgraph_only_called_directly_p (node);
2819 else
2820 return cgraph_can_remove_if_no_direct_calls_p (node);
2823 /* Return true when RESOLUTION indicate that linker will use
2824 the symbol from non-LTo object files. */
2826 bool
2827 resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution)
2829 return (resolution == LDPR_PREVAILING_DEF
2830 || resolution == LDPR_PREEMPTED_REG
2831 || resolution == LDPR_RESOLVED_EXEC
2832 || resolution == LDPR_RESOLVED_DYN);
2835 /* Return true when NODE is known to be used from other (non-LTO) object file.
2836 Known only when doing LTO via linker plugin. */
2838 bool
2839 cgraph_used_from_object_file_p (struct cgraph_node *node)
2841 struct cgraph_node *alias;
2843 if (!TREE_PUBLIC (node->decl))
2844 return false;
2845 if (resolution_used_from_other_file_p (node->resolution))
2846 return true;
2847 for (alias = node->same_body; alias; alias = alias->next)
2848 if (TREE_PUBLIC (alias->decl)
2849 && resolution_used_from_other_file_p (alias->resolution))
2850 return true;
2851 return false;
2854 #include "gt-cgraph.h"