2008-05-20 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / cgraph.c
blobd3f8fa6671fd48ee8adde048af1e16d6ae6290b1
1 /* Callgraph handling code.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
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 indirect calls or calls
38 from other compilation unit. Flag NEEDED is set for each node that may
39 be accessed in such an invisible way and it shall be considered an
40 entry point to the callgraph.
42 Interprocedural information:
44 Callgraph is place to store data needed for interprocedural optimization.
45 All data structures are divided into three components: local_info that
46 is produced while analyzing the function, global_info that is result
47 of global walking of the callgraph on the end of compilation and
48 rtl_info used by RTL backend to propagate data from already compiled
49 functions to their callers.
51 Inlining plans:
53 The function inlining information is decided in advance and maintained
54 in the callgraph as so called inline plan.
55 For each inlined call, the callee's node is cloned to represent the
56 new function copy produced by inliner.
57 Each inlined call gets a unique corresponding clone node of the callee
58 and the data structure is updated while inlining is performed, so
59 the clones are eliminated and their callee edges redirected to the
60 caller.
62 Each edge has "inline_failed" field. When the field is set to NULL,
63 the call will be inlined. When it is non-NULL it contains a reason
64 why inlining wasn't performed. */
66 #include "config.h"
67 #include "system.h"
68 #include "coretypes.h"
69 #include "tm.h"
70 #include "tree.h"
71 #include "tree-inline.h"
72 #include "langhooks.h"
73 #include "hashtab.h"
74 #include "toplev.h"
75 #include "flags.h"
76 #include "ggc.h"
77 #include "debug.h"
78 #include "target.h"
79 #include "basic-block.h"
80 #include "cgraph.h"
81 #include "varray.h"
82 #include "output.h"
83 #include "intl.h"
84 #include "tree-gimple.h"
85 #include "tree-dump.h"
86 #include "tree-flow.h"
88 static void cgraph_node_remove_callers (struct cgraph_node *node);
89 static inline void cgraph_edge_remove_caller (struct cgraph_edge *e);
90 static inline void cgraph_edge_remove_callee (struct cgraph_edge *e);
92 /* Hash table used to convert declarations into nodes. */
93 static GTY((param_is (struct cgraph_node))) htab_t cgraph_hash;
95 /* The linked list of cgraph nodes. */
96 struct cgraph_node *cgraph_nodes;
98 /* Queue of cgraph nodes scheduled to be lowered. */
99 struct cgraph_node *cgraph_nodes_queue;
101 /* Queue of cgraph nodes scheduled to be added into cgraph. This is a
102 secondary queue used during optimization to accommodate passes that
103 may generate new functions that need to be optimized and expanded. */
104 struct cgraph_node *cgraph_new_nodes;
106 /* Number of nodes in existence. */
107 int cgraph_n_nodes;
109 /* Maximal uid used in cgraph nodes. */
110 int cgraph_max_uid;
112 /* Maximal pid used for profiling */
113 int cgraph_max_pid;
115 /* Set when whole unit has been analyzed so we can access global info. */
116 bool cgraph_global_info_ready = false;
118 /* What state callgraph is in right now. */
119 enum cgraph_state cgraph_state = CGRAPH_STATE_CONSTRUCTION;
121 /* Set when the cgraph is fully build and the basic flags are computed. */
122 bool cgraph_function_flags_ready = false;
124 /* Linked list of cgraph asm nodes. */
125 struct cgraph_asm_node *cgraph_asm_nodes;
127 /* Last node in cgraph_asm_nodes. */
128 static GTY(()) struct cgraph_asm_node *cgraph_asm_last_node;
130 /* The order index of the next cgraph node to be created. This is
131 used so that we can sort the cgraph nodes in order by when we saw
132 them, to support -fno-toplevel-reorder. */
133 int cgraph_order;
135 static hashval_t hash_node (const void *);
136 static int eq_node (const void *, const void *);
138 /* Returns a hash code for P. */
140 static hashval_t
141 hash_node (const void *p)
143 const struct cgraph_node *n = (const struct cgraph_node *) p;
144 return (hashval_t) DECL_UID (n->decl);
147 /* Returns nonzero if P1 and P2 are equal. */
149 static int
150 eq_node (const void *p1, const void *p2)
152 const struct cgraph_node *n1 = (const struct cgraph_node *) p1;
153 const struct cgraph_node *n2 = (const struct cgraph_node *) p2;
154 return DECL_UID (n1->decl) == DECL_UID (n2->decl);
157 /* Allocate new callgraph node and insert it into basic data structures. */
159 static struct cgraph_node *
160 cgraph_create_node (void)
162 struct cgraph_node *node;
164 node = GGC_CNEW (struct cgraph_node);
165 node->next = cgraph_nodes;
166 node->uid = cgraph_max_uid++;
167 node->pid = -1;
168 node->order = cgraph_order++;
169 if (cgraph_nodes)
170 cgraph_nodes->previous = node;
171 node->previous = NULL;
172 node->global.estimated_growth = INT_MIN;
173 cgraph_nodes = node;
174 cgraph_n_nodes++;
175 return node;
178 /* Return cgraph node assigned to DECL. Create new one when needed. */
180 struct cgraph_node *
181 cgraph_node (tree decl)
183 struct cgraph_node key, *node, **slot;
185 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
187 if (!cgraph_hash)
188 cgraph_hash = htab_create_ggc (10, hash_node, eq_node, NULL);
190 key.decl = decl;
192 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, &key, INSERT);
194 if (*slot)
196 node = *slot;
197 if (!node->master_clone)
198 node->master_clone = node;
199 return node;
202 node = cgraph_create_node ();
203 node->decl = decl;
204 *slot = node;
205 if (DECL_CONTEXT (decl) && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL)
207 node->origin = cgraph_node (DECL_CONTEXT (decl));
208 node->next_nested = node->origin->nested;
209 node->origin->nested = node;
210 node->master_clone = node;
212 return node;
215 /* Insert already constructed node into hashtable. */
217 void
218 cgraph_insert_node_to_hashtable (struct cgraph_node *node)
220 struct cgraph_node **slot;
222 slot = (struct cgraph_node **) htab_find_slot (cgraph_hash, node, INSERT);
224 gcc_assert (!*slot);
225 *slot = node;
229 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
230 Return NULL if there's no such node. */
232 struct cgraph_node *
233 cgraph_node_for_asm (tree asmname)
235 struct cgraph_node *node;
237 for (node = cgraph_nodes; node ; node = node->next)
238 if (decl_assembler_name_equal (node->decl, asmname))
239 return node;
241 return NULL;
244 /* Returns a hash value for X (which really is a die_struct). */
246 static hashval_t
247 edge_hash (const void *x)
249 return htab_hash_pointer (((const struct cgraph_edge *) x)->call_stmt);
252 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
254 static int
255 edge_eq (const void *x, const void *y)
257 return ((const struct cgraph_edge *) x)->call_stmt == y;
260 /* Return callgraph edge representing CALL_EXPR statement. */
261 struct cgraph_edge *
262 cgraph_edge (struct cgraph_node *node, tree call_stmt)
264 struct cgraph_edge *e, *e2;
265 int n = 0;
267 if (node->call_site_hash)
268 return htab_find_with_hash (node->call_site_hash, call_stmt,
269 htab_hash_pointer (call_stmt));
271 /* This loop may turn out to be performance problem. In such case adding
272 hashtables into call nodes with very many edges is probably best
273 solution. It is not good idea to add pointer into CALL_EXPR itself
274 because we want to make possible having multiple cgraph nodes representing
275 different clones of the same body before the body is actually cloned. */
276 for (e = node->callees; e; e= e->next_callee)
278 if (e->call_stmt == call_stmt)
279 break;
280 n++;
282 if (n > 100)
284 node->call_site_hash = htab_create_ggc (120, edge_hash, edge_eq, NULL);
285 for (e2 = node->callees; e2; e2 = e2->next_callee)
287 void **slot;
288 slot = htab_find_slot_with_hash (node->call_site_hash,
289 e2->call_stmt,
290 htab_hash_pointer (e2->call_stmt),
291 INSERT);
292 gcc_assert (!*slot);
293 *slot = e2;
296 return e;
299 /* Change call_smtt of edge E to NEW_STMT. */
301 void
302 cgraph_set_call_stmt (struct cgraph_edge *e, tree new_stmt)
304 if (e->caller->call_site_hash)
306 htab_remove_elt_with_hash (e->caller->call_site_hash,
307 e->call_stmt,
308 htab_hash_pointer (e->call_stmt));
310 e->call_stmt = new_stmt;
311 if (e->caller->call_site_hash)
313 void **slot;
314 slot = htab_find_slot_with_hash (e->caller->call_site_hash,
315 e->call_stmt,
316 htab_hash_pointer
317 (e->call_stmt), INSERT);
318 gcc_assert (!*slot);
319 *slot = e;
323 /* Create edge from CALLER to CALLEE in the cgraph. */
325 struct cgraph_edge *
326 cgraph_create_edge (struct cgraph_node *caller, struct cgraph_node *callee,
327 tree call_stmt, gcov_type count, int freq, int nest)
329 struct cgraph_edge *edge = GGC_NEW (struct cgraph_edge);
330 #ifdef ENABLE_CHECKING
331 struct cgraph_edge *e;
333 for (e = caller->callees; e; e = e->next_callee)
334 gcc_assert (e->call_stmt != call_stmt);
335 #endif
337 gcc_assert (get_call_expr_in (call_stmt));
339 if (!DECL_SAVED_TREE (callee->decl))
340 edge->inline_failed = N_("function body not available");
341 else if (callee->local.redefined_extern_inline)
342 edge->inline_failed = N_("redefined extern inline functions are not "
343 "considered for inlining");
344 else if (callee->local.inlinable)
345 edge->inline_failed = N_("function not considered for inlining");
346 else
347 edge->inline_failed = N_("function not inlinable");
349 edge->aux = NULL;
351 edge->caller = caller;
352 edge->callee = callee;
353 edge->call_stmt = call_stmt;
354 edge->prev_caller = NULL;
355 edge->next_caller = callee->callers;
356 if (callee->callers)
357 callee->callers->prev_caller = edge;
358 edge->prev_callee = NULL;
359 edge->next_callee = caller->callees;
360 if (caller->callees)
361 caller->callees->prev_callee = edge;
362 caller->callees = edge;
363 callee->callers = edge;
364 edge->count = count;
365 gcc_assert (count >= 0);
366 edge->frequency = freq;
367 gcc_assert (freq >= 0);
368 gcc_assert (freq <= CGRAPH_FREQ_MAX);
369 edge->loop_nest = nest;
370 if (caller->call_site_hash)
372 void **slot;
373 slot = htab_find_slot_with_hash (caller->call_site_hash,
374 edge->call_stmt,
375 htab_hash_pointer
376 (edge->call_stmt),
377 INSERT);
378 gcc_assert (!*slot);
379 *slot = edge;
381 return edge;
384 /* Remove the edge E from the list of the callers of the callee. */
386 static inline void
387 cgraph_edge_remove_callee (struct cgraph_edge *e)
389 if (e->prev_caller)
390 e->prev_caller->next_caller = e->next_caller;
391 if (e->next_caller)
392 e->next_caller->prev_caller = e->prev_caller;
393 if (!e->prev_caller)
394 e->callee->callers = e->next_caller;
397 /* Remove the edge E from the list of the callees of the caller. */
399 static inline void
400 cgraph_edge_remove_caller (struct cgraph_edge *e)
402 if (e->prev_callee)
403 e->prev_callee->next_callee = e->next_callee;
404 if (e->next_callee)
405 e->next_callee->prev_callee = e->prev_callee;
406 if (!e->prev_callee)
407 e->caller->callees = e->next_callee;
408 if (e->caller->call_site_hash)
409 htab_remove_elt_with_hash (e->caller->call_site_hash,
410 e->call_stmt,
411 htab_hash_pointer (e->call_stmt));
414 /* Remove the edge E in the cgraph. */
416 void
417 cgraph_remove_edge (struct cgraph_edge *e)
419 /* Remove from callers list of the callee. */
420 cgraph_edge_remove_callee (e);
422 /* Remove from callees list of the callers. */
423 cgraph_edge_remove_caller (e);
426 /* Redirect callee of E to N. The function does not update underlying
427 call expression. */
429 void
430 cgraph_redirect_edge_callee (struct cgraph_edge *e, struct cgraph_node *n)
432 /* Remove from callers list of the current callee. */
433 cgraph_edge_remove_callee (e);
435 /* Insert to callers list of the new callee. */
436 e->prev_caller = NULL;
437 if (n->callers)
438 n->callers->prev_caller = e;
439 e->next_caller = n->callers;
440 n->callers = e;
441 e->callee = n;
444 /* Update or remove corresponding cgraph edge if a call OLD_CALL
445 in OLD_STMT changed into NEW_STMT. */
447 void
448 cgraph_update_edges_for_call_stmt (tree old_stmt, tree old_call,
449 tree new_stmt)
451 tree new_call = get_call_expr_in (new_stmt);
452 struct cgraph_node *node = cgraph_node (cfun->decl);
454 if (old_call != new_call)
456 struct cgraph_edge *e = cgraph_edge (node, old_stmt);
457 struct cgraph_edge *ne = NULL;
458 tree new_decl;
460 if (e)
462 gcov_type count = e->count;
463 int frequency = e->frequency;
464 int loop_nest = e->loop_nest;
466 cgraph_remove_edge (e);
467 if (new_call)
469 new_decl = get_callee_fndecl (new_call);
470 if (new_decl)
472 ne = cgraph_create_edge (node, cgraph_node (new_decl),
473 new_stmt, count, frequency,
474 loop_nest);
475 gcc_assert (ne->inline_failed);
480 else if (old_stmt != new_stmt)
482 struct cgraph_edge *e = cgraph_edge (node, old_stmt);
484 if (e)
485 cgraph_set_call_stmt (e, new_stmt);
489 /* Remove all callees from the node. */
491 void
492 cgraph_node_remove_callees (struct cgraph_node *node)
494 struct cgraph_edge *e;
496 /* It is sufficient to remove the edges from the lists of callers of
497 the callees. The callee list of the node can be zapped with one
498 assignment. */
499 for (e = node->callees; e; e = e->next_callee)
500 cgraph_edge_remove_callee (e);
501 node->callees = NULL;
502 if (node->call_site_hash)
504 htab_delete (node->call_site_hash);
505 node->call_site_hash = NULL;
509 /* Remove all callers from the node. */
511 static void
512 cgraph_node_remove_callers (struct cgraph_node *node)
514 struct cgraph_edge *e;
516 /* It is sufficient to remove the edges from the lists of callees of
517 the callers. The caller list of the node can be zapped with one
518 assignment. */
519 for (e = node->callers; e; e = e->next_caller)
520 cgraph_edge_remove_caller (e);
521 node->callers = NULL;
524 /* Release memory used to represent body of function NODE. */
526 void
527 cgraph_release_function_body (struct cgraph_node *node)
529 if (DECL_STRUCT_FUNCTION (node->decl)
530 && DECL_STRUCT_FUNCTION (node->decl)->gimple_df)
532 tree old_decl = current_function_decl;
533 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
534 current_function_decl = node->decl;
535 delete_tree_ssa ();
536 delete_tree_cfg_annotations ();
537 cfun->eh = NULL;
538 current_function_decl = old_decl;
539 pop_cfun();
541 DECL_SAVED_TREE (node->decl) = NULL;
542 DECL_STRUCT_FUNCTION (node->decl) = NULL;
543 DECL_INITIAL (node->decl) = error_mark_node;
546 /* Remove the node from cgraph. */
548 void
549 cgraph_remove_node (struct cgraph_node *node)
551 void **slot;
552 bool kill_body = false;
554 cgraph_node_remove_callers (node);
555 cgraph_node_remove_callees (node);
556 /* Incremental inlining access removed nodes stored in the postorder list.
558 node->needed = node->reachable = false;
559 while (node->nested)
560 cgraph_remove_node (node->nested);
561 if (node->origin)
563 struct cgraph_node **node2 = &node->origin->nested;
565 while (*node2 != node)
566 node2 = &(*node2)->next_nested;
567 *node2 = node->next_nested;
569 if (node->previous)
570 node->previous->next = node->next;
571 else
572 cgraph_nodes = node->next;
573 if (node->next)
574 node->next->previous = node->previous;
575 node->next = NULL;
576 node->previous = NULL;
577 slot = htab_find_slot (cgraph_hash, node, NO_INSERT);
578 if (*slot == node)
580 if (node->next_clone)
582 struct cgraph_node *new_node = node->next_clone;
583 struct cgraph_node *n;
585 /* Make the next clone be the master clone */
586 for (n = new_node; n; n = n->next_clone)
587 n->master_clone = new_node;
589 *slot = new_node;
590 node->next_clone->prev_clone = NULL;
592 else
594 htab_clear_slot (cgraph_hash, slot);
595 kill_body = true;
598 else
600 node->prev_clone->next_clone = node->next_clone;
601 if (node->next_clone)
602 node->next_clone->prev_clone = node->prev_clone;
605 /* While all the clones are removed after being proceeded, the function
606 itself is kept in the cgraph even after it is compiled. Check whether
607 we are done with this body and reclaim it proactively if this is the case.
609 if (!kill_body && *slot)
611 struct cgraph_node *n = (struct cgraph_node *) *slot;
612 if (!n->next_clone && !n->global.inlined_to
613 && (cgraph_global_info_ready
614 && (TREE_ASM_WRITTEN (n->decl) || DECL_EXTERNAL (n->decl))))
615 kill_body = true;
618 if (kill_body && flag_unit_at_a_time)
619 cgraph_release_function_body (node);
620 node->decl = NULL;
621 if (node->call_site_hash)
623 htab_delete (node->call_site_hash);
624 node->call_site_hash = NULL;
626 cgraph_n_nodes--;
627 /* Do not free the structure itself so the walk over chain can continue. */
630 /* Notify finalize_compilation_unit that given node is reachable. */
632 void
633 cgraph_mark_reachable_node (struct cgraph_node *node)
635 if (!node->reachable && node->local.finalized)
637 notice_global_symbol (node->decl);
638 node->reachable = 1;
639 gcc_assert (!cgraph_global_info_ready);
641 node->next_needed = cgraph_nodes_queue;
642 cgraph_nodes_queue = node;
646 /* Likewise indicate that a node is needed, i.e. reachable via some
647 external means. */
649 void
650 cgraph_mark_needed_node (struct cgraph_node *node)
652 node->needed = 1;
653 cgraph_mark_reachable_node (node);
656 /* Return local info for the compiled function. */
658 struct cgraph_local_info *
659 cgraph_local_info (tree decl)
661 struct cgraph_node *node;
663 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
664 node = cgraph_node (decl);
665 return &node->local;
668 /* Return local info for the compiled function. */
670 struct cgraph_global_info *
671 cgraph_global_info (tree decl)
673 struct cgraph_node *node;
675 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL && cgraph_global_info_ready);
676 node = cgraph_node (decl);
677 return &node->global;
680 /* Return local info for the compiled function. */
682 struct cgraph_rtl_info *
683 cgraph_rtl_info (tree decl)
685 struct cgraph_node *node;
687 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL);
688 node = cgraph_node (decl);
689 if (decl != current_function_decl
690 && !TREE_ASM_WRITTEN (node->decl))
691 return NULL;
692 return &node->rtl;
695 /* Return name of the node used in debug output. */
696 const char *
697 cgraph_node_name (struct cgraph_node *node)
699 return lang_hooks.decl_printable_name (node->decl, 2);
702 /* Names used to print out the availability enum. */
703 const char * const cgraph_availability_names[] =
704 {"unset", "not_available", "overwrittable", "available", "local"};
707 /* Dump call graph node NODE to file F. */
709 void
710 dump_cgraph_node (FILE *f, struct cgraph_node *node)
712 struct cgraph_edge *edge;
713 fprintf (f, "%s/%i(%i):", cgraph_node_name (node), node->uid, node->pid);
714 if (node->global.inlined_to)
715 fprintf (f, " (inline copy in %s/%i)",
716 cgraph_node_name (node->global.inlined_to),
717 node->global.inlined_to->uid);
718 if (cgraph_function_flags_ready)
719 fprintf (f, " availability:%s",
720 cgraph_availability_names [cgraph_function_body_availability (node)]);
721 if (node->master_clone && node->master_clone->uid != node->uid)
722 fprintf (f, "(%i)", node->master_clone->uid);
723 if (node->count)
724 fprintf (f, " executed "HOST_WIDEST_INT_PRINT_DEC"x",
725 (HOST_WIDEST_INT)node->count);
726 if (node->local.inline_summary.self_insns)
727 fprintf (f, " %i insns", node->local.inline_summary.self_insns);
728 if (node->global.insns && node->global.insns
729 != node->local.inline_summary.self_insns)
730 fprintf (f, " (%i after inlining)", node->global.insns);
731 if (node->local.inline_summary.estimated_self_stack_size)
732 fprintf (f, " %i bytes stack usage", (int)node->local.inline_summary.estimated_self_stack_size);
733 if (node->global.estimated_stack_size != node->local.inline_summary.estimated_self_stack_size)
734 fprintf (f, " %i bytes after inlining", (int)node->global.estimated_stack_size);
735 if (node->origin)
736 fprintf (f, " nested in: %s", cgraph_node_name (node->origin));
737 if (node->needed)
738 fprintf (f, " needed");
739 else if (node->reachable)
740 fprintf (f, " reachable");
741 if (DECL_SAVED_TREE (node->decl))
742 fprintf (f, " tree");
743 if (node->output)
744 fprintf (f, " output");
745 if (node->local.local)
746 fprintf (f, " local");
747 if (node->local.externally_visible)
748 fprintf (f, " externally_visible");
749 if (node->local.finalized)
750 fprintf (f, " finalized");
751 if (node->local.disregard_inline_limits)
752 fprintf (f, " always_inline");
753 else if (node->local.inlinable)
754 fprintf (f, " inlinable");
755 if (node->local.redefined_extern_inline)
756 fprintf (f, " redefined_extern_inline");
757 if (TREE_ASM_WRITTEN (node->decl))
758 fprintf (f, " asm_written");
760 fprintf (f, "\n called by: ");
761 for (edge = node->callers; edge; edge = edge->next_caller)
763 fprintf (f, "%s/%i ", cgraph_node_name (edge->caller),
764 edge->caller->uid);
765 if (edge->count)
766 fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
767 (HOST_WIDEST_INT)edge->count);
768 if (edge->frequency)
769 fprintf (f, "(%.2f per call) ",
770 edge->frequency / (double)CGRAPH_FREQ_BASE);
771 if (!edge->inline_failed)
772 fprintf(f, "(inlined) ");
775 fprintf (f, "\n calls: ");
776 for (edge = node->callees; edge; edge = edge->next_callee)
778 fprintf (f, "%s/%i ", cgraph_node_name (edge->callee),
779 edge->callee->uid);
780 if (!edge->inline_failed)
781 fprintf(f, "(inlined) ");
782 if (edge->count)
783 fprintf (f, "("HOST_WIDEST_INT_PRINT_DEC"x) ",
784 (HOST_WIDEST_INT)edge->count);
785 if (edge->frequency)
786 fprintf (f, "(%.2f per call) ",
787 edge->frequency / (double)CGRAPH_FREQ_BASE);
788 if (edge->loop_nest)
789 fprintf (f, "(nested in %i loops) ", edge->loop_nest);
791 fprintf (f, "\n");
795 /* Dump call graph node NODE to stderr. */
797 void
798 debug_cgraph_node (struct cgraph_node *node)
800 dump_cgraph_node (stderr, node);
804 /* Dump the callgraph to file F. */
806 void
807 dump_cgraph (FILE *f)
809 struct cgraph_node *node;
811 fprintf (f, "callgraph:\n\n");
812 for (node = cgraph_nodes; node; node = node->next)
813 dump_cgraph_node (f, node);
817 /* Dump the call graph to stderr. */
819 void
820 debug_cgraph (void)
822 dump_cgraph (stderr);
826 /* Set the DECL_ASSEMBLER_NAME and update cgraph hashtables. */
828 void
829 change_decl_assembler_name (tree decl, tree name)
831 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
833 SET_DECL_ASSEMBLER_NAME (decl, name);
834 return;
836 if (name == DECL_ASSEMBLER_NAME (decl))
837 return;
839 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
840 && DECL_RTL_SET_P (decl))
841 warning (0, "%D renamed after being referenced in assembly", decl);
843 SET_DECL_ASSEMBLER_NAME (decl, name);
846 /* Add a top-level asm statement to the list. */
848 struct cgraph_asm_node *
849 cgraph_add_asm_node (tree asm_str)
851 struct cgraph_asm_node *node;
853 node = GGC_CNEW (struct cgraph_asm_node);
854 node->asm_str = asm_str;
855 node->order = cgraph_order++;
856 node->next = NULL;
857 if (cgraph_asm_nodes == NULL)
858 cgraph_asm_nodes = node;
859 else
860 cgraph_asm_last_node->next = node;
861 cgraph_asm_last_node = node;
862 return node;
865 /* Return true when the DECL can possibly be inlined. */
866 bool
867 cgraph_function_possibly_inlined_p (tree decl)
869 if (!cgraph_global_info_ready)
870 return (DECL_INLINE (decl) && !flag_really_no_inline);
871 return DECL_POSSIBLY_INLINED (decl);
874 /* Create clone of E in the node N represented by CALL_EXPR the callgraph. */
875 struct cgraph_edge *
876 cgraph_clone_edge (struct cgraph_edge *e, struct cgraph_node *n,
877 tree call_stmt, gcov_type count_scale, int freq_scale,
878 int loop_nest, bool update_original)
880 struct cgraph_edge *new;
881 gcov_type count = e->count * count_scale / REG_BR_PROB_BASE;
882 gcov_type freq = e->frequency * (gcov_type) freq_scale / CGRAPH_FREQ_BASE;
884 if (freq > CGRAPH_FREQ_MAX)
885 freq = CGRAPH_FREQ_MAX;
886 new = cgraph_create_edge (n, e->callee, call_stmt, count, freq,
887 e->loop_nest + loop_nest);
889 new->inline_failed = e->inline_failed;
890 if (update_original)
892 e->count -= new->count;
893 if (e->count < 0)
894 e->count = 0;
896 return new;
899 /* Create node representing clone of N executed COUNT times. Decrease
900 the execution counts from original node too.
902 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
903 function's profile to reflect the fact that part of execution is handled
904 by node. */
905 struct cgraph_node *
906 cgraph_clone_node (struct cgraph_node *n, gcov_type count, int freq, int loop_nest,
907 bool update_original)
909 struct cgraph_node *new = cgraph_create_node ();
910 struct cgraph_edge *e;
911 gcov_type count_scale;
913 new->decl = n->decl;
914 new->origin = n->origin;
915 if (new->origin)
917 new->next_nested = new->origin->nested;
918 new->origin->nested = new;
920 new->analyzed = n->analyzed;
921 new->local = n->local;
922 new->global = n->global;
923 new->rtl = n->rtl;
924 new->master_clone = n->master_clone;
925 new->count = count;
926 if (n->count)
927 count_scale = new->count * REG_BR_PROB_BASE / n->count;
928 else
929 count_scale = 0;
930 if (update_original)
932 n->count -= count;
933 if (n->count < 0)
934 n->count = 0;
937 for (e = n->callees;e; e=e->next_callee)
938 cgraph_clone_edge (e, new, e->call_stmt, count_scale, freq, loop_nest,
939 update_original);
941 new->next_clone = n->next_clone;
942 new->prev_clone = n;
943 n->next_clone = new;
944 if (new->next_clone)
945 new->next_clone->prev_clone = new;
947 return new;
950 /* Return true if N is an master_clone, (see cgraph_master_clone). */
952 bool
953 cgraph_is_master_clone (struct cgraph_node *n)
955 return (n == cgraph_master_clone (n));
958 struct cgraph_node *
959 cgraph_master_clone (struct cgraph_node *n)
961 enum availability avail = cgraph_function_body_availability (n);
963 if (avail == AVAIL_NOT_AVAILABLE || avail == AVAIL_OVERWRITABLE)
964 return NULL;
966 if (!n->master_clone)
967 n->master_clone = cgraph_node (n->decl);
969 return n->master_clone;
972 /* NODE is no longer nested function; update cgraph accordingly. */
973 void
974 cgraph_unnest_node (struct cgraph_node *node)
976 struct cgraph_node **node2 = &node->origin->nested;
977 gcc_assert (node->origin);
979 while (*node2 != node)
980 node2 = &(*node2)->next_nested;
981 *node2 = node->next_nested;
982 node->origin = NULL;
985 /* Return function availability. See cgraph.h for description of individual
986 return values. */
987 enum availability
988 cgraph_function_body_availability (struct cgraph_node *node)
990 enum availability avail;
991 gcc_assert (cgraph_function_flags_ready);
992 if (!node->analyzed)
993 avail = AVAIL_NOT_AVAILABLE;
994 else if (node->local.local)
995 avail = AVAIL_LOCAL;
996 else if (node->local.externally_visible)
997 avail = AVAIL_AVAILABLE;
999 /* If the function can be overwritten, return OVERWRITABLE. Take
1000 care at least of two notable extensions - the COMDAT functions
1001 used to share template instantiations in C++ (this is symmetric
1002 to code cp_cannot_inline_tree_fn and probably shall be shared and
1003 the inlinability hooks completely eliminated).
1005 ??? Does the C++ one definition rule allow us to always return
1006 AVAIL_AVAILABLE here? That would be good reason to preserve this
1007 hook Similarly deal with extern inline functions - this is again
1008 necessary to get C++ shared functions having keyed templates
1009 right and in the C extension documentation we probably should
1010 document the requirement of both versions of function (extern
1011 inline and offline) having same side effect characteristics as
1012 good optimization is what this optimization is about. */
1014 else if (!(*targetm.binds_local_p) (node->decl)
1015 && !DECL_COMDAT (node->decl) && !DECL_EXTERNAL (node->decl))
1016 avail = AVAIL_OVERWRITABLE;
1017 else avail = AVAIL_AVAILABLE;
1019 return avail;
1022 /* Add the function FNDECL to the call graph.
1023 Unlike cgraph_finalize_function, this function is intended to be used
1024 by middle end and allows insertion of new function at arbitrary point
1025 of compilation. The function can be either in high, low or SSA form
1026 GIMPLE.
1028 The function is assumed to be reachable and have address taken (so no
1029 API breaking optimizations are performed on it).
1031 Main work done by this function is to enqueue the function for later
1032 processing to avoid need the passes to be re-entrant. */
1034 void
1035 cgraph_add_new_function (tree fndecl, bool lowered)
1037 struct cgraph_node *node;
1038 switch (cgraph_state)
1040 case CGRAPH_STATE_CONSTRUCTION:
1041 /* Just enqueue function to be processed at nearest occurence. */
1042 node = cgraph_node (fndecl);
1043 node->next_needed = cgraph_new_nodes;
1044 if (lowered)
1045 node->lowered = true;
1046 cgraph_new_nodes = node;
1047 break;
1049 case CGRAPH_STATE_IPA:
1050 case CGRAPH_STATE_IPA_SSA:
1051 case CGRAPH_STATE_EXPANSION:
1052 /* Bring the function into finalized state and enqueue for later
1053 analyzing and compilation. */
1054 node = cgraph_node (fndecl);
1055 node->local.local = false;
1056 node->local.finalized = true;
1057 node->reachable = node->needed = true;
1058 if (lowered)
1059 node->lowered = true;
1060 node->next_needed = cgraph_new_nodes;
1061 cgraph_new_nodes = node;
1062 break;
1064 case CGRAPH_STATE_FINISHED:
1065 /* At the very end of compilation we have to do all the work up
1066 to expansion. */
1067 push_cfun (DECL_STRUCT_FUNCTION (fndecl));
1068 current_function_decl = fndecl;
1069 tree_register_cfg_hooks ();
1070 if (!lowered)
1071 tree_lowering_passes (fndecl);
1072 bitmap_obstack_initialize (NULL);
1073 if (!gimple_in_ssa_p (DECL_STRUCT_FUNCTION (fndecl)) && optimize)
1074 execute_pass_list (pass_early_local_passes.pass.sub);
1075 bitmap_obstack_release (NULL);
1076 tree_rest_of_compilation (fndecl);
1077 pop_cfun ();
1078 current_function_decl = NULL;
1079 break;
1083 #include "gt-cgraph.h"