1 /* Callgraph handling code.
2 Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
25 #include "basic-block.h"
29 /* Not yet set by cgraph_function_body_availability. */
31 /* Function body/variable initializer is unknown. */
33 /* Function body/variable initializer is known but might be replaced
34 by a different one from other compilation unit and thus needs to
35 be dealt with a care. Like AVAIL_NOT_AVAILABLE it can have
36 arbitrary side effects on escaping variables and functions, while
37 like AVAILABLE it might access static variables. */
39 /* Function body/variable initializer is known and will be used in final
42 /* Function body/variable initializer is known and all it's uses are explicitly
43 visible within current unit (ie it's address is never taken and it is not
44 exported to other units).
45 Currently used only for functions. */
49 /* Information about the function collected locally.
50 Available after function is analyzed. */
52 struct cgraph_local_info
GTY(())
54 /* Size of the function before inlining. */
57 /* Set when function function is visible in current compilation unit only
58 and its address is never taken. */
61 /* Set when function is visible by other units. */
62 unsigned externally_visible
: 1;
64 /* Set once it has been finalized so we consider it to be output. */
65 unsigned finalized
: 1;
67 /* False when there something makes inlining impossible (such as va_arg). */
68 unsigned inlinable
: 1;
70 /* True when function should be inlined independently on its size. */
71 unsigned disregard_inline_limits
: 1;
73 /* True when the function has been originally extern inline, but it is
75 unsigned redefined_extern_inline
: 1;
77 /* True if statics_read_for_function and
78 statics_written_for_function contain valid data. */
79 unsigned for_functions_valid
: 1;
81 /* True if the function is going to be emitted in some other translation
82 unit, referenced from vtable. */
83 unsigned vtable_method
: 1;
86 /* Information about the function that needs to be computed globally
87 once compilation is finished. Available only with -funit-at-time. */
89 struct cgraph_global_info
GTY(())
91 /* For inline clones this points to the function they will be inlined into. */
92 struct cgraph_node
*inlined_to
;
94 /* Estimated size of the function after inlining. */
97 /* Estimated growth after inlining. INT_MIN if not computed. */
100 /* Set iff the function has been inlined at least once. */
104 /* Information about the function that is propagated by the RTL backend.
105 Available only for functions that has been already assembled. */
107 struct cgraph_rtl_info
GTY(())
109 int preferred_incoming_stack_boundary
;
112 /* The cgraph data structure.
113 Each function decl has assigned cgraph_node listing callees and callers. */
115 struct cgraph_node
GTY((chain_next ("%h.next"), chain_prev ("%h.previous")))
118 struct cgraph_edge
*callees
;
119 struct cgraph_edge
*callers
;
120 struct cgraph_node
*next
;
121 struct cgraph_node
*previous
;
122 /* For nested functions points to function the node is nested in. */
123 struct cgraph_node
*origin
;
124 /* Points to first nested function, if any. */
125 struct cgraph_node
*nested
;
126 /* Pointer to the next function with same origin, if any. */
127 struct cgraph_node
*next_nested
;
128 /* Pointer to the next function in cgraph_nodes_queue. */
129 struct cgraph_node
*next_needed
;
130 /* Pointer to the next clone. */
131 struct cgraph_node
*next_clone
;
132 struct cgraph_node
*prev_clone
;
133 /* Pointer to a single unique cgraph node for this function. If the
134 function is to be output, this is the copy that will survive. */
135 struct cgraph_node
*master_clone
;
137 PTR
GTY ((skip
)) aux
;
139 struct cgraph_local_info local
;
140 struct cgraph_global_info global
;
141 struct cgraph_rtl_info rtl
;
143 /* Expected number of executions: calculated in profile.c. */
145 /* Unique id of the node. */
147 /* Ordering of all cgraph nodes. */
150 /* Set when function must be output - it is externally visible
151 or its address is taken. */
153 /* Set when function is reachable by call from other function
154 that is either reachable or needed. */
155 unsigned reachable
: 1;
156 /* Set once the function is lowered (i.e. its CFG is built). */
157 unsigned lowered
: 1;
158 /* Set once the function has been instantiated and its callee
160 unsigned analyzed
: 1;
161 /* Set when function is scheduled to be assembled. */
163 /* Set when function is visible by other units. */
164 unsigned externally_visible
: 1;
165 /* Set for aliases once they got through assemble_alias. */
168 /* In non-unit-at-a-time mode the function body of inline candidates is saved
169 into clone before compiling so the function in original form can be
170 inlined later. This pointer points to the clone. */
174 struct cgraph_edge
GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller")))
176 struct cgraph_node
*caller
;
177 struct cgraph_node
*callee
;
178 struct cgraph_edge
*prev_caller
;
179 struct cgraph_edge
*next_caller
;
180 struct cgraph_edge
*prev_callee
;
181 struct cgraph_edge
*next_callee
;
183 PTR
GTY ((skip (""))) aux
;
184 /* When NULL, inline this call. When non-NULL, points to the explanation
185 why function was not inlined. */
186 const char *inline_failed
;
187 /* Expected number of executions: calculated in profile.c. */
189 /* Depth of loop nest, 1 means no loop nest. */
193 typedef struct cgraph_edge
*cgraph_edge_p
;
195 DEF_VEC_P(cgraph_edge_p
);
196 DEF_VEC_ALLOC_P(cgraph_edge_p
,heap
);
198 /* The cgraph_varpool data structure.
199 Each static variable decl has assigned cgraph_varpool_node. */
201 struct cgraph_varpool_node
GTY(())
204 /* Pointer to the next function in cgraph_varpool_nodes. */
205 struct cgraph_varpool_node
*next
;
206 /* Pointer to the next function in cgraph_varpool_nodes_queue. */
207 struct cgraph_varpool_node
*next_needed
;
208 /* Ordering of all cgraph nodes. */
211 /* Set when function must be output - it is externally visible
212 or its address is taken. */
214 /* Needed variables might become dead by optimization. This flag
215 forces the variable to be output even if it appears dead otherwise. */
216 unsigned force_output
: 1;
217 /* Set once the variable has been instantiated and its callee
219 unsigned analyzed
: 1;
220 /* Set once it has been finalized so we consider it to be output. */
221 unsigned finalized
: 1;
222 /* Set when variable is scheduled to be assembled. */
224 /* Set when function is visible by other units. */
225 unsigned externally_visible
: 1;
226 /* Set for aliases once they got through assemble_alias. */
230 /* Every top level asm statement is put into a cgraph_asm_node. */
232 struct cgraph_asm_node
GTY(())
235 struct cgraph_asm_node
*next
;
236 /* String for this asm node. */
238 /* Ordering of all cgraph nodes. */
242 extern GTY(()) struct cgraph_node
*cgraph_nodes
;
243 extern GTY(()) int cgraph_n_nodes
;
244 extern GTY(()) int cgraph_max_uid
;
245 extern bool cgraph_global_info_ready
;
246 extern bool cgraph_function_flags_ready
;
247 extern GTY(()) struct cgraph_node
*cgraph_nodes_queue
;
248 extern GTY(()) struct cgraph_node
*cgraph_expand_queue
;
250 extern GTY(()) struct cgraph_varpool_node
*cgraph_varpool_first_unanalyzed_node
;
251 extern GTY(()) struct cgraph_varpool_node
*cgraph_varpool_nodes_queue
;
252 extern GTY(()) struct cgraph_varpool_node
*cgraph_varpool_nodes
;
253 extern GTY(()) struct cgraph_asm_node
*cgraph_asm_nodes
;
254 extern GTY(()) int cgraph_order
;
257 void dump_cgraph (FILE *);
258 void dump_cgraph_node (FILE *, struct cgraph_node
*);
259 void cgraph_insert_node_to_hashtable (struct cgraph_node
*node
);
260 void dump_varpool (FILE *);
261 void dump_cgraph_varpool_node (FILE *, struct cgraph_varpool_node
*);
262 void cgraph_remove_edge (struct cgraph_edge
*);
263 void cgraph_remove_node (struct cgraph_node
*);
264 void cgraph_node_remove_callees (struct cgraph_node
*node
);
265 struct cgraph_edge
*cgraph_create_edge (struct cgraph_node
*,
266 struct cgraph_node
*,
267 tree
, gcov_type
, int);
268 struct cgraph_node
*cgraph_node (tree
);
269 struct cgraph_node
*cgraph_node_for_asm (tree asmname
);
270 struct cgraph_edge
*cgraph_edge (struct cgraph_node
*, tree
);
271 struct cgraph_local_info
*cgraph_local_info (tree
);
272 struct cgraph_global_info
*cgraph_global_info (tree
);
273 struct cgraph_rtl_info
*cgraph_rtl_info (tree
);
274 const char * cgraph_node_name (struct cgraph_node
*);
275 struct cgraph_edge
* cgraph_clone_edge (struct cgraph_edge
*,
276 struct cgraph_node
*,
277 tree
, gcov_type
, int, bool);
278 struct cgraph_node
* cgraph_clone_node (struct cgraph_node
*, gcov_type
,
281 struct cgraph_varpool_node
*cgraph_varpool_node (tree
);
282 struct cgraph_varpool_node
*cgraph_varpool_node_for_asm (tree asmname
);
283 void cgraph_varpool_mark_needed_node (struct cgraph_varpool_node
*);
284 void cgraph_varpool_finalize_decl (tree
);
285 void cgraph_redirect_edge_callee (struct cgraph_edge
*, struct cgraph_node
*);
287 struct cgraph_asm_node
*cgraph_add_asm_node (tree
);
289 bool cgraph_function_possibly_inlined_p (tree
);
290 void cgraph_unnest_node (struct cgraph_node
*);
291 void cgraph_varpool_enqueue_needed_node (struct cgraph_varpool_node
*);
292 void cgraph_varpool_reset_queue (void);
293 bool decide_is_variable_needed (struct cgraph_varpool_node
*, tree
);
295 enum availability
cgraph_function_body_availability (struct cgraph_node
*);
296 enum availability
cgraph_variable_initializer_availability (struct cgraph_varpool_node
*);
297 bool cgraph_is_master_clone (struct cgraph_node
*);
298 struct cgraph_node
*cgraph_master_clone (struct cgraph_node
*);
299 void cgraph_add_new_function (tree
);
301 /* In cgraphunit.c */
302 bool cgraph_assemble_pending_functions (void);
303 bool cgraph_varpool_assemble_pending_decls (void);
304 void cgraph_finalize_function (tree
, bool);
305 void cgraph_finalize_compilation_unit (void);
306 void cgraph_optimize (void);
307 void cgraph_mark_needed_node (struct cgraph_node
*);
308 void cgraph_mark_reachable_node (struct cgraph_node
*);
309 bool cgraph_inline_p (struct cgraph_edge
*, const char **reason
);
310 bool cgraph_preserve_function_body_p (tree
);
311 void verify_cgraph (void);
312 void verify_cgraph_node (struct cgraph_node
*);
313 void cgraph_build_static_cdtor (char which
, tree body
, int priority
);
314 void cgraph_reset_static_var_maps (void);
315 void init_cgraph (void);
316 struct cgraph_node
*cgraph_function_versioning (struct cgraph_node
*,
317 VEC(cgraph_edge_p
,heap
)*,
319 void cgraph_analyze_function (struct cgraph_node
*);
320 struct cgraph_node
*save_inline_function_body (struct cgraph_node
*);
323 bool cgraph_remove_unreachable_nodes (bool, FILE *);
324 int cgraph_postorder (struct cgraph_node
**);
326 /* In ipa-inline.c */
327 bool cgraph_decide_inlining_incrementally (struct cgraph_node
*, bool);
328 void cgraph_clone_inlined_nodes (struct cgraph_edge
*, bool, bool);
329 void cgraph_mark_inline_edge (struct cgraph_edge
*, bool);
330 bool cgraph_default_inline_p (struct cgraph_node
*, const char **);
331 #endif /* GCC_CGRAPH_H */