1 /* Callgraph construction.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009
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
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
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/>. */
24 #include "coretypes.h"
27 #include "tree-flow.h"
28 #include "langhooks.h"
29 #include "pointer-set.h"
33 #include "tree-pass.h"
35 /* Walk tree and record all calls and references to functions/variables.
36 Called via walk_tree: TP is pointer to tree to be examined. */
39 record_reference (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
44 switch (TREE_CODE (t
))
47 if (TREE_STATIC (t
) || DECL_EXTERNAL (t
))
49 varpool_mark_needed_node (varpool_node (t
));
50 if (lang_hooks
.callgraph
.analyze_expr
)
51 return lang_hooks
.callgraph
.analyze_expr (tp
, walk_subtrees
);
57 /* Record dereferences to the functions. This makes the
58 functions reachable unconditionally. */
59 decl
= TREE_OPERAND (*tp
, 0);
60 if (TREE_CODE (decl
) == FUNCTION_DECL
)
61 cgraph_mark_needed_node (cgraph_node (decl
));
65 /* Save some cycles by not walking types and declaration as we
66 won't find anything useful there anyway. */
67 if (IS_TYPE_OR_DECL_P (*tp
))
73 if ((unsigned int) TREE_CODE (t
) >= LAST_AND_UNUSED_TREE_CODE
)
74 return lang_hooks
.callgraph
.analyze_expr (tp
, walk_subtrees
);
81 /* Computes the frequency of the call statement so that it can be stored in
82 cgraph_edge. BB is the basic block of the call statement. */
84 compute_call_stmt_bb_frequency (basic_block bb
)
86 int entry_freq
= ENTRY_BLOCK_PTR
->frequency
;
87 int freq
= bb
->frequency
;
90 entry_freq
= 1, freq
++;
92 freq
= freq
* CGRAPH_FREQ_BASE
/ entry_freq
;
93 if (freq
> CGRAPH_FREQ_MAX
)
94 freq
= CGRAPH_FREQ_MAX
;
99 /* Create cgraph edges for function calls.
100 Also look for functions and variables having addresses taken. */
103 build_cgraph_edges (void)
106 struct cgraph_node
*node
= cgraph_node (current_function_decl
);
107 struct pointer_set_t
*visited_nodes
= pointer_set_create ();
108 gimple_stmt_iterator gsi
;
111 /* Create the callgraph edges and record the nodes referenced by the function.
114 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
116 gimple stmt
= gsi_stmt (gsi
);
119 if (is_gimple_call (stmt
) && (decl
= gimple_call_fndecl (stmt
)))
122 size_t n
= gimple_call_num_args (stmt
);
123 cgraph_create_edge (node
, cgraph_node (decl
), stmt
,
124 bb
->count
, compute_call_stmt_bb_frequency (bb
),
126 for (i
= 0; i
< n
; i
++)
127 walk_tree (gimple_call_arg_ptr (stmt
, i
), record_reference
,
128 node
, visited_nodes
);
129 if (gimple_call_lhs (stmt
))
130 walk_tree (gimple_call_lhs_ptr (stmt
), record_reference
, node
,
135 struct walk_stmt_info wi
;
136 memset (&wi
, 0, sizeof (wi
));
138 wi
.pset
= visited_nodes
;
139 walk_gimple_op (stmt
, record_reference
, &wi
);
140 if (gimple_code (stmt
) == GIMPLE_OMP_PARALLEL
141 && gimple_omp_parallel_child_fn (stmt
))
143 tree fn
= gimple_omp_parallel_child_fn (stmt
);
144 cgraph_mark_needed_node (cgraph_node (fn
));
146 if (gimple_code (stmt
) == GIMPLE_OMP_TASK
)
148 tree fn
= gimple_omp_task_child_fn (stmt
);
150 cgraph_mark_needed_node (cgraph_node (fn
));
151 fn
= gimple_omp_task_copy_fn (stmt
);
153 cgraph_mark_needed_node (cgraph_node (fn
));
158 /* Look for initializers of constant variables and private statics. */
159 for (step
= cfun
->local_decls
;
161 step
= TREE_CHAIN (step
))
163 tree decl
= TREE_VALUE (step
);
164 if (TREE_CODE (decl
) == VAR_DECL
165 && (TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
)))
166 varpool_finalize_decl (decl
);
167 else if (TREE_CODE (decl
) == VAR_DECL
&& DECL_INITIAL (decl
))
168 walk_tree (&DECL_INITIAL (decl
), record_reference
, node
, visited_nodes
);
171 pointer_set_destroy (visited_nodes
);
175 struct gimple_opt_pass pass_build_cgraph_edges
=
181 build_cgraph_edges
, /* execute */
184 0, /* static_pass_number */
186 PROP_cfg
, /* properties_required */
187 0, /* properties_provided */
188 0, /* properties_destroyed */
189 0, /* todo_flags_start */
190 0 /* todo_flags_finish */
194 /* Record references to functions and other variables present in the
195 initial value of DECL, a variable. */
198 record_references_in_initializer (tree decl
)
200 struct pointer_set_t
*visited_nodes
= pointer_set_create ();
201 walk_tree (&DECL_INITIAL (decl
), record_reference
, NULL
, visited_nodes
);
202 pointer_set_destroy (visited_nodes
);
205 /* Rebuild cgraph edges for current function node. This needs to be run after
206 passes that don't update the cgraph. */
209 rebuild_cgraph_edges (void)
212 struct cgraph_node
*node
= cgraph_node (current_function_decl
);
213 gimple_stmt_iterator gsi
;
215 cgraph_node_remove_callees (node
);
217 node
->count
= ENTRY_BLOCK_PTR
->count
;
220 for (gsi
= gsi_start_bb (bb
); !gsi_end_p (gsi
); gsi_next (&gsi
))
222 gimple stmt
= gsi_stmt (gsi
);
225 if (is_gimple_call (stmt
) && (decl
= gimple_call_fndecl (stmt
)))
226 cgraph_create_edge (node
, cgraph_node (decl
), stmt
,
227 bb
->count
, compute_call_stmt_bb_frequency (bb
),
231 gcc_assert (!node
->global
.inlined_to
);
236 struct gimple_opt_pass pass_rebuild_cgraph_edges
=
242 rebuild_cgraph_edges
, /* execute */
245 0, /* static_pass_number */
247 PROP_cfg
, /* properties_required */
248 0, /* properties_provided */
249 0, /* properties_destroyed */
250 0, /* todo_flags_start */
251 0, /* todo_flags_finish */
257 remove_cgraph_callee_edges (void)
259 cgraph_node_remove_callees (cgraph_node (current_function_decl
));
263 struct gimple_opt_pass pass_remove_cgraph_callee_edges
=
269 remove_cgraph_callee_edges
, /* execute */
272 0, /* static_pass_number */
274 0, /* properties_required */
275 0, /* properties_provided */
276 0, /* properties_destroyed */
277 0, /* todo_flags_start */
278 0, /* todo_flags_finish */