Add testcase for PR43423.
[official-gcc/graphite-test-results.git] / gcc / cgraph.h
blobc82fc181ebef64bab9de49f810c91909371570cf
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 #ifndef GCC_CGRAPH_H
23 #define GCC_CGRAPH_H
25 #include "vec.h"
26 #include "tree.h"
27 #include "basic-block.h"
28 #include "function.h"
29 #include "ipa-ref.h" /* FIXME: inappropriate dependency of cgraph on IPA. */
31 enum availability
33 /* Not yet set by cgraph_function_body_availability. */
34 AVAIL_UNSET,
35 /* Function body/variable initializer is unknown. */
36 AVAIL_NOT_AVAILABLE,
37 /* Function body/variable initializer is known but might be replaced
38 by a different one from other compilation unit and thus needs to
39 be dealt with a care. Like AVAIL_NOT_AVAILABLE it can have
40 arbitrary side effects on escaping variables and functions, while
41 like AVAILABLE it might access static variables. */
42 AVAIL_OVERWRITABLE,
43 /* Function body/variable initializer is known and will be used in final
44 program. */
45 AVAIL_AVAILABLE,
46 /* Function body/variable initializer is known and all it's uses are explicitly
47 visible within current unit (ie it's address is never taken and it is not
48 exported to other units).
49 Currently used only for functions. */
50 AVAIL_LOCAL
53 /* This is the information that is put into the cgraph local structure
54 to recover a function. */
55 struct lto_file_decl_data;
57 extern const char * const cgraph_availability_names[];
59 /* Function inlining information. */
61 struct GTY(()) inline_summary
63 /* Estimated stack frame consumption by the function. */
64 HOST_WIDE_INT estimated_self_stack_size;
66 /* Size of the function body. */
67 int self_size;
68 /* How many instructions are likely going to disappear after inlining. */
69 int size_inlining_benefit;
70 /* Estimated time spent executing the function body. */
71 int self_time;
72 /* How much time is going to be saved by inlining. */
73 int time_inlining_benefit;
76 /* Information about thunk, used only for same body aliases. */
78 struct GTY(()) cgraph_thunk_info {
79 /* Information about the thunk. */
80 HOST_WIDE_INT fixed_offset;
81 HOST_WIDE_INT virtual_value;
82 tree alias;
83 bool this_adjusting;
84 bool virtual_offset_p;
85 /* Set to true when alias node is thunk. */
86 bool thunk_p;
89 /* Information about the function collected locally.
90 Available after function is analyzed. */
92 struct GTY(()) cgraph_local_info {
93 /* File stream where this node is being written to. */
94 struct lto_file_decl_data * lto_file_data;
96 struct inline_summary inline_summary;
98 /* Set when function function is visible in current compilation unit only
99 and its address is never taken. */
100 unsigned local : 1;
102 /* Set when function is visible by other units. */
103 unsigned externally_visible : 1;
105 /* Set once it has been finalized so we consider it to be output. */
106 unsigned finalized : 1;
108 /* False when there something makes inlining impossible (such as va_arg). */
109 unsigned inlinable : 1;
111 /* False when there something makes versioning impossible.
112 Currently computed and used only by ipa-cp. */
113 unsigned versionable : 1;
115 /* True when function should be inlined independently on its size. */
116 unsigned disregard_inline_limits : 1;
118 /* True when the function has been originally extern inline, but it is
119 redefined now. */
120 unsigned redefined_extern_inline : 1;
122 /* True if the function is going to be emitted in some other translation
123 unit, referenced from vtable. */
124 unsigned vtable_method : 1;
127 /* Information about the function that needs to be computed globally
128 once compilation is finished. Available only with -funit-at-a-time. */
130 struct GTY(()) cgraph_global_info {
131 /* Estimated stack frame consumption by the function. */
132 HOST_WIDE_INT estimated_stack_size;
133 /* Expected offset of the stack frame of inlined function. */
134 HOST_WIDE_INT stack_frame_offset;
136 /* For inline clones this points to the function they will be
137 inlined into. */
138 struct cgraph_node *inlined_to;
140 /* Estimated size of the function after inlining. */
141 int time;
142 int size;
144 /* Estimated growth after inlining. INT_MIN if not computed. */
145 int estimated_growth;
148 /* Information about the function that is propagated by the RTL backend.
149 Available only for functions that has been already assembled. */
151 struct GTY(()) cgraph_rtl_info {
152 unsigned int preferred_incoming_stack_boundary;
155 /* Represent which DECL tree (or reference to such tree)
156 will be replaced by another tree while versioning. */
157 struct GTY(()) ipa_replace_map
159 /* The tree that will be replaced. */
160 tree old_tree;
161 /* The new (replacing) tree. */
162 tree new_tree;
163 /* Parameter number to replace, when old_tree is NULL. */
164 int parm_num;
165 /* True when a substitution should be done, false otherwise. */
166 bool replace_p;
167 /* True when we replace a reference to old_tree. */
168 bool ref_p;
170 typedef struct ipa_replace_map *ipa_replace_map_p;
171 DEF_VEC_P(ipa_replace_map_p);
172 DEF_VEC_ALLOC_P(ipa_replace_map_p,gc);
174 struct GTY(()) cgraph_clone_info
176 VEC(ipa_replace_map_p,gc)* tree_map;
177 bitmap args_to_skip;
178 bitmap combined_args_to_skip;
181 enum node_frequency {
182 /* This function most likely won't be executed at all.
183 (set only when profile feedback is available or via function attribute). */
184 NODE_FREQUENCY_UNLIKELY_EXECUTED,
185 /* For functions that are known to be executed once (i.e. constructors, destructors
186 and main function. */
187 NODE_FREQUENCY_EXECUTED_ONCE,
188 /* The default value. */
189 NODE_FREQUENCY_NORMAL,
190 /* Optimize this function hard
191 (set only when profile feedback is available or via function attribute). */
192 NODE_FREQUENCY_HOT
196 /* The cgraph data structure.
197 Each function decl has assigned cgraph_node listing callees and callers. */
199 struct GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) cgraph_node {
200 tree decl;
201 struct cgraph_edge *callees;
202 struct cgraph_edge *callers;
203 struct cgraph_node *next;
204 struct cgraph_node *previous;
205 /* List of edges representing indirect calls with a yet undetermined
206 callee. */
207 struct cgraph_edge *indirect_calls;
208 /* For nested functions points to function the node is nested in. */
209 struct cgraph_node *origin;
210 /* Points to first nested function, if any. */
211 struct cgraph_node *nested;
212 /* Pointer to the next function with same origin, if any. */
213 struct cgraph_node *next_nested;
214 /* Pointer to the next function in cgraph_nodes_queue. */
215 struct cgraph_node *next_needed;
216 /* Pointer to the next clone. */
217 struct cgraph_node *next_sibling_clone;
218 struct cgraph_node *prev_sibling_clone;
219 struct cgraph_node *clones;
220 struct cgraph_node *clone_of;
221 /* For normal nodes pointer to the list of alias and thunk nodes,
222 in alias/thunk nodes pointer to the normal node. */
223 struct cgraph_node *same_body;
224 /* Circular list of nodes in the same comdat group if non-NULL. */
225 struct cgraph_node *same_comdat_group;
226 /* For functions with many calls sites it holds map from call expression
227 to the edge to speed up cgraph_edge function. */
228 htab_t GTY((param_is (struct cgraph_edge))) call_site_hash;
229 #ifdef ENABLE_CHECKING
230 /* Declaration node used to be clone of. Used for checking only.
231 We must skip it or we get references from release checking GGC files. */
232 tree GTY ((skip)) former_clone_of;
233 #endif
235 PTR GTY ((skip)) aux;
237 /* Interprocedural passes scheduled to have their transform functions
238 applied next time we execute local pass on them. We maintain it
239 per-function in order to allow IPA passes to introduce new functions. */
240 VEC(ipa_opt_pass,heap) * GTY((skip)) ipa_transforms_to_apply;
242 struct ipa_ref_list ref_list;
243 struct cgraph_local_info local;
244 struct cgraph_global_info global;
245 struct cgraph_rtl_info rtl;
246 struct cgraph_clone_info clone;
247 struct cgraph_thunk_info thunk;
249 /* Expected number of executions: calculated in profile.c. */
250 gcov_type count;
251 /* Unique id of the node. */
252 int uid;
253 /* Ordering of all cgraph nodes. */
254 int order;
256 /* unique id for profiling. pid is not suitable because of different
257 number of cfg nodes with -fprofile-generate and -fprofile-use */
258 int pid;
260 /* Set when function must be output for some reason. The primary
261 use of this flag is to mark functions needed to be output for
262 non-standard reason. Functions that are externally visible
263 or reachable from functions needed to be output are marked
264 by specialized flags. */
265 unsigned needed : 1;
266 /* Set when function has address taken.
267 In current implementation it imply needed flag. */
268 unsigned address_taken : 1;
269 /* Set when decl is an abstract function pointed to by the
270 ABSTRACT_DECL_ORIGIN of a reachable function. */
271 unsigned abstract_and_needed : 1;
272 /* Set when function is reachable by call from other function
273 that is either reachable or needed.
274 This flag is computed at original cgraph construction and then
275 updated in cgraph_remove_unreachable_nodes. Note that after
276 cgraph_remove_unreachable_nodes cgraph still can contain unreachable
277 nodes when they are needed for virtual clone instantiation. */
278 unsigned reachable : 1;
279 /* Set when function is reachable by call from other LTRANS partition. */
280 unsigned reachable_from_other_partition : 1;
281 /* Set once the function is lowered (i.e. its CFG is built). */
282 unsigned lowered : 1;
283 /* Set once the function has been instantiated and its callee
284 lists created. */
285 unsigned analyzed : 1;
286 /* Set when function is available in the other LTRANS partition. */
287 unsigned in_other_partition : 1;
288 /* Set when function is scheduled to be processed by local passes. */
289 unsigned process : 1;
290 /* Set for aliases once they got through assemble_alias. */
291 unsigned alias : 1;
292 /* Set for nodes that was constructed and finalized by frontend. */
293 unsigned finalized_by_frontend : 1;
294 /* Set for alias and thunk nodes, same_body points to the node they are alias
295 of and they are linked through the next/previous pointers. */
296 unsigned same_body_alias : 1;
297 /* How commonly executed the node is. Initialized during branch
298 probabilities pass. */
299 ENUM_BITFIELD (node_frequency) frequency : 2;
302 typedef struct cgraph_node *cgraph_node_ptr;
304 DEF_VEC_P(cgraph_node_ptr);
305 DEF_VEC_ALLOC_P(cgraph_node_ptr,heap);
306 DEF_VEC_ALLOC_P(cgraph_node_ptr,gc);
308 /* A cgraph node set is a collection of cgraph nodes. A cgraph node
309 can appear in multiple sets. */
310 struct GTY(()) cgraph_node_set_def
312 htab_t GTY((param_is (struct cgraph_node_set_element_def))) hashtab;
313 VEC(cgraph_node_ptr, gc) *nodes;
316 typedef struct varpool_node *varpool_node_ptr;
318 DEF_VEC_P(varpool_node_ptr);
319 DEF_VEC_ALLOC_P(varpool_node_ptr,heap);
320 DEF_VEC_ALLOC_P(varpool_node_ptr,gc);
322 /* A varpool node set is a collection of varpool nodes. A varpool node
323 can appear in multiple sets. */
324 struct GTY(()) varpool_node_set_def
326 htab_t GTY((param_is (struct varpool_node_set_element_def))) hashtab;
327 VEC(varpool_node_ptr, gc) *nodes;
330 typedef struct cgraph_node_set_def *cgraph_node_set;
332 DEF_VEC_P(cgraph_node_set);
333 DEF_VEC_ALLOC_P(cgraph_node_set,gc);
334 DEF_VEC_ALLOC_P(cgraph_node_set,heap);
336 typedef struct varpool_node_set_def *varpool_node_set;
338 DEF_VEC_P(varpool_node_set);
339 DEF_VEC_ALLOC_P(varpool_node_set,gc);
340 DEF_VEC_ALLOC_P(varpool_node_set,heap);
342 /* A cgraph node set element contains an index in the vector of nodes in
343 the set. */
344 struct GTY(()) cgraph_node_set_element_def
346 struct cgraph_node *node;
347 HOST_WIDE_INT index;
350 typedef struct cgraph_node_set_element_def *cgraph_node_set_element;
351 typedef const struct cgraph_node_set_element_def *const_cgraph_node_set_element;
353 /* Iterator structure for cgraph node sets. */
354 typedef struct
356 cgraph_node_set set;
357 unsigned index;
358 } cgraph_node_set_iterator;
360 /* A varpool node set element contains an index in the vector of nodes in
361 the set. */
362 struct GTY(()) varpool_node_set_element_def
364 struct varpool_node *node;
365 HOST_WIDE_INT index;
368 typedef struct varpool_node_set_element_def *varpool_node_set_element;
369 typedef const struct varpool_node_set_element_def *const_varpool_node_set_element;
371 /* Iterator structure for varpool node sets. */
372 typedef struct
374 varpool_node_set set;
375 unsigned index;
376 } varpool_node_set_iterator;
378 #define DEFCIFCODE(code, string) CIF_ ## code,
379 /* Reasons for inlining failures. */
380 typedef enum {
381 #include "cif-code.def"
382 CIF_N_REASONS
383 } cgraph_inline_failed_t;
385 /* Structure containing additional information about an indirect call. */
387 struct GTY(()) cgraph_indirect_call_info
389 /* Offset accumulated from ancestor jump functions of inlined call graph
390 edges. */
391 HOST_WIDE_INT anc_offset;
392 /* OBJ_TYPE_REF_TOKEN of a polymorphic call (if polymorphic is set). */
393 HOST_WIDE_INT otr_token;
394 /* Type of the object from OBJ_TYPE_REF_OBJECT. */
395 tree otr_type;
396 /* Index of the parameter that is called. */
397 int param_index;
398 /* ECF flags determined from the caller. */
399 int ecf_flags;
401 /* Set when the call is a virtual call with the parameter being the
402 associated object pointer rather than a simple direct call. */
403 unsigned polymorphic : 1;
406 struct GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"))) cgraph_edge {
407 /* Expected number of executions: calculated in profile.c. */
408 gcov_type count;
409 struct cgraph_node *caller;
410 struct cgraph_node *callee;
411 struct cgraph_edge *prev_caller;
412 struct cgraph_edge *next_caller;
413 struct cgraph_edge *prev_callee;
414 struct cgraph_edge *next_callee;
415 gimple call_stmt;
416 /* Additional information about an indirect call. Not cleared when an edge
417 becomes direct. */
418 struct cgraph_indirect_call_info *indirect_info;
419 PTR GTY ((skip (""))) aux;
420 /* When equal to CIF_OK, inline this call. Otherwise, points to the
421 explanation why function was not inlined. */
422 cgraph_inline_failed_t inline_failed;
423 /* The stmt_uid of call_stmt. This is used by LTO to recover the call_stmt
424 when the function is serialized in. */
425 unsigned int lto_stmt_uid;
426 /* Expected frequency of executions within the function.
427 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
428 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
429 int frequency;
430 /* Unique id of the edge. */
431 int uid;
432 /* Depth of loop nest, 1 means no loop nest. */
433 unsigned short int loop_nest;
434 /* Whether this edge was made direct by indirect inlining. */
435 unsigned int indirect_inlining_edge : 1;
436 /* Whether this edge describes an indirect call with an undetermined
437 callee. */
438 unsigned int indirect_unknown_callee : 1;
439 /* Whether this edge is still a dangling */
440 /* True if the corresponding CALL stmt cannot be inlined. */
441 unsigned int call_stmt_cannot_inline_p : 1;
442 /* Can this call throw externally? */
443 unsigned int can_throw_external : 1;
446 #define CGRAPH_FREQ_BASE 1000
447 #define CGRAPH_FREQ_MAX 100000
449 typedef struct cgraph_edge *cgraph_edge_p;
451 DEF_VEC_P(cgraph_edge_p);
452 DEF_VEC_ALLOC_P(cgraph_edge_p,heap);
454 /* The varpool data structure.
455 Each static variable decl has assigned varpool_node. */
457 struct GTY((chain_next ("%h.next"), chain_prev ("%h.prev"))) varpool_node {
458 tree decl;
459 /* Pointer to the next function in varpool_nodes. */
460 struct varpool_node *next, *prev;
461 /* Pointer to the next function in varpool_nodes_queue. */
462 struct varpool_node *next_needed, *prev_needed;
463 /* For normal nodes a pointer to the first extra name alias. For alias
464 nodes a pointer to the normal node. */
465 struct varpool_node *extra_name;
466 /* Circular list of nodes in the same comdat group if non-NULL. */
467 struct varpool_node *same_comdat_group;
468 struct ipa_ref_list ref_list;
469 PTR GTY ((skip)) aux;
470 /* Ordering of all cgraph nodes. */
471 int order;
473 /* Set when function must be output - it is externally visible
474 or its address is taken. */
475 unsigned needed : 1;
476 /* Needed variables might become dead by optimization. This flag
477 forces the variable to be output even if it appears dead otherwise. */
478 unsigned force_output : 1;
479 /* Set once the variable has been instantiated and its callee
480 lists created. */
481 unsigned analyzed : 1;
482 /* Set once it has been finalized so we consider it to be output. */
483 unsigned finalized : 1;
484 /* Set when variable is scheduled to be assembled. */
485 unsigned output : 1;
486 /* Set when function is visible by other units. */
487 unsigned externally_visible : 1;
488 /* Set for aliases once they got through assemble_alias. Also set for
489 extra name aliases in varpool_extra_name_alias. */
490 unsigned alias : 1;
491 /* Set when variable is used from other LTRANS partition. */
492 unsigned used_from_other_partition : 1;
493 /* Set when variable is available in the other LTRANS partition. */
494 unsigned in_other_partition : 1;
497 /* Every top level asm statement is put into a cgraph_asm_node. */
499 struct GTY(()) cgraph_asm_node {
500 /* Next asm node. */
501 struct cgraph_asm_node *next;
502 /* String for this asm node. */
503 tree asm_str;
504 /* Ordering of all cgraph nodes. */
505 int order;
508 extern GTY(()) struct cgraph_node *cgraph_nodes;
509 extern GTY(()) int cgraph_n_nodes;
510 extern GTY(()) int cgraph_max_uid;
511 extern GTY(()) int cgraph_edge_max_uid;
512 extern GTY(()) int cgraph_max_pid;
513 extern bool cgraph_global_info_ready;
514 enum cgraph_state
516 /* Callgraph is being constructed. It is safe to add new functions. */
517 CGRAPH_STATE_CONSTRUCTION,
518 /* Callgraph is built and IPA passes are being run. */
519 CGRAPH_STATE_IPA,
520 /* Callgraph is built and all functions are transformed to SSA form. */
521 CGRAPH_STATE_IPA_SSA,
522 /* Functions are now ordered and being passed to RTL expanders. */
523 CGRAPH_STATE_EXPANSION,
524 /* All cgraph expansion is done. */
525 CGRAPH_STATE_FINISHED
527 extern enum cgraph_state cgraph_state;
528 extern bool cgraph_function_flags_ready;
529 extern GTY(()) struct cgraph_node *cgraph_nodes_queue;
530 extern GTY(()) struct cgraph_node *cgraph_new_nodes;
532 extern GTY(()) struct cgraph_asm_node *cgraph_asm_nodes;
533 extern GTY(()) int cgraph_order;
535 /* In cgraph.c */
536 void dump_cgraph (FILE *);
537 void debug_cgraph (void);
538 void dump_cgraph_node (FILE *, struct cgraph_node *);
539 void debug_cgraph_node (struct cgraph_node *);
540 void cgraph_insert_node_to_hashtable (struct cgraph_node *node);
541 void cgraph_remove_edge (struct cgraph_edge *);
542 void cgraph_remove_node (struct cgraph_node *);
543 void cgraph_remove_node_and_inline_clones (struct cgraph_node *);
544 void cgraph_release_function_body (struct cgraph_node *);
545 void cgraph_node_remove_callees (struct cgraph_node *node);
546 struct cgraph_edge *cgraph_create_edge (struct cgraph_node *,
547 struct cgraph_node *,
548 gimple, gcov_type, int, int);
549 struct cgraph_edge *cgraph_create_indirect_edge (struct cgraph_node *, gimple, int,
550 gcov_type, int, int);
551 struct cgraph_node * cgraph_get_node (tree);
552 struct cgraph_node *cgraph_node (tree);
553 bool cgraph_same_body_alias (tree, tree);
554 void cgraph_add_thunk (tree, tree, bool, HOST_WIDE_INT, HOST_WIDE_INT, tree, tree);
555 void cgraph_remove_same_body_alias (struct cgraph_node *);
556 struct cgraph_node *cgraph_node_for_asm (tree);
557 struct cgraph_edge *cgraph_edge (struct cgraph_node *, gimple);
558 void cgraph_set_call_stmt (struct cgraph_edge *, gimple);
559 void cgraph_set_call_stmt_including_clones (struct cgraph_node *, gimple, gimple);
560 void cgraph_create_edge_including_clones (struct cgraph_node *,
561 struct cgraph_node *,
562 gimple, gimple, gcov_type, int, int,
563 cgraph_inline_failed_t);
564 void cgraph_update_edges_for_call_stmt (gimple, tree, gimple);
565 struct cgraph_local_info *cgraph_local_info (tree);
566 struct cgraph_global_info *cgraph_global_info (tree);
567 struct cgraph_rtl_info *cgraph_rtl_info (tree);
568 const char * cgraph_node_name (struct cgraph_node *);
569 struct cgraph_edge * cgraph_clone_edge (struct cgraph_edge *,
570 struct cgraph_node *, gimple,
571 unsigned, gcov_type, int, int, bool);
572 struct cgraph_node * cgraph_clone_node (struct cgraph_node *, tree, gcov_type, int,
573 int, bool, VEC(cgraph_edge_p,heap) *);
575 void cgraph_redirect_edge_callee (struct cgraph_edge *, struct cgraph_node *);
576 void cgraph_make_edge_direct (struct cgraph_edge *, struct cgraph_node *);
578 struct cgraph_asm_node *cgraph_add_asm_node (tree);
580 bool cgraph_function_possibly_inlined_p (tree);
581 void cgraph_unnest_node (struct cgraph_node *);
583 enum availability cgraph_function_body_availability (struct cgraph_node *);
584 void cgraph_add_new_function (tree, bool);
585 const char* cgraph_inline_failed_string (cgraph_inline_failed_t);
586 struct cgraph_node * cgraph_create_virtual_clone (struct cgraph_node *old_node,
587 VEC(cgraph_edge_p,heap)*,
588 VEC(ipa_replace_map_p,gc)* tree_map,
589 bitmap args_to_skip,
590 const char *clone_name);
592 void cgraph_set_nothrow_flag (struct cgraph_node *, bool);
593 void cgraph_set_readonly_flag (struct cgraph_node *, bool);
594 void cgraph_set_pure_flag (struct cgraph_node *, bool);
595 void cgraph_set_looping_const_or_pure_flag (struct cgraph_node *, bool);
596 tree clone_function_name (tree decl, const char *);
597 bool cgraph_node_cannot_return (struct cgraph_node *);
598 bool cgraph_edge_cannot_lead_to_return (struct cgraph_edge *);
600 /* In cgraphunit.c */
601 extern FILE *cgraph_dump_file;
602 void cgraph_finalize_function (tree, bool);
603 void cgraph_mark_if_needed (tree);
604 void cgraph_finalize_compilation_unit (void);
605 void cgraph_optimize (void);
606 void cgraph_mark_needed_node (struct cgraph_node *);
607 void cgraph_mark_address_taken_node (struct cgraph_node *);
608 void cgraph_mark_reachable_node (struct cgraph_node *);
609 bool cgraph_inline_p (struct cgraph_edge *, cgraph_inline_failed_t *reason);
610 bool cgraph_preserve_function_body_p (tree);
611 void verify_cgraph (void);
612 void verify_cgraph_node (struct cgraph_node *);
613 void cgraph_build_static_cdtor (char which, tree body, int priority);
614 void cgraph_reset_static_var_maps (void);
615 void init_cgraph (void);
616 struct cgraph_node *cgraph_function_versioning (struct cgraph_node *,
617 VEC(cgraph_edge_p,heap)*,
618 VEC(ipa_replace_map_p,gc)*,
619 bitmap, bitmap, basic_block,
620 const char *);
621 void tree_function_versioning (tree, tree, VEC (ipa_replace_map_p,gc)*, bool, bitmap,
622 bitmap, basic_block);
623 struct cgraph_node *save_inline_function_body (struct cgraph_node *);
624 void record_references_in_initializer (tree, bool);
625 bool cgraph_process_new_functions (void);
627 bool cgraph_decide_is_function_needed (struct cgraph_node *, tree);
629 typedef void (*cgraph_edge_hook)(struct cgraph_edge *, void *);
630 typedef void (*cgraph_node_hook)(struct cgraph_node *, void *);
631 typedef void (*cgraph_2edge_hook)(struct cgraph_edge *, struct cgraph_edge *,
632 void *);
633 typedef void (*cgraph_2node_hook)(struct cgraph_node *, struct cgraph_node *,
634 void *);
635 struct cgraph_edge_hook_list;
636 struct cgraph_node_hook_list;
637 struct cgraph_2edge_hook_list;
638 struct cgraph_2node_hook_list;
639 struct cgraph_edge_hook_list *cgraph_add_edge_removal_hook (cgraph_edge_hook, void *);
640 void cgraph_remove_edge_removal_hook (struct cgraph_edge_hook_list *);
641 struct cgraph_node_hook_list *cgraph_add_node_removal_hook (cgraph_node_hook,
642 void *);
643 void cgraph_remove_node_removal_hook (struct cgraph_node_hook_list *);
644 struct cgraph_node_hook_list *cgraph_add_function_insertion_hook (cgraph_node_hook,
645 void *);
646 void cgraph_remove_function_insertion_hook (struct cgraph_node_hook_list *);
647 void cgraph_call_function_insertion_hooks (struct cgraph_node *node);
648 struct cgraph_2edge_hook_list *cgraph_add_edge_duplication_hook (cgraph_2edge_hook, void *);
649 void cgraph_remove_edge_duplication_hook (struct cgraph_2edge_hook_list *);
650 struct cgraph_2node_hook_list *cgraph_add_node_duplication_hook (cgraph_2node_hook, void *);
651 void cgraph_remove_node_duplication_hook (struct cgraph_2node_hook_list *);
652 void cgraph_materialize_all_clones (void);
653 gimple cgraph_redirect_edge_call_stmt_to_callee (struct cgraph_edge *);
654 bool cgraph_propagate_frequency (struct cgraph_node *node);
655 /* In cgraphbuild.c */
656 unsigned int rebuild_cgraph_edges (void);
657 void cgraph_rebuild_references (void);
658 void reset_inline_failed (struct cgraph_node *);
659 int compute_call_stmt_bb_frequency (tree, basic_block bb);
661 /* In ipa.c */
662 bool cgraph_remove_unreachable_nodes (bool, FILE *);
663 int cgraph_postorder (struct cgraph_node **);
664 cgraph_node_set cgraph_node_set_new (void);
665 cgraph_node_set_iterator cgraph_node_set_find (cgraph_node_set,
666 struct cgraph_node *);
667 void cgraph_node_set_add (cgraph_node_set, struct cgraph_node *);
668 void cgraph_node_set_remove (cgraph_node_set, struct cgraph_node *);
669 void dump_cgraph_node_set (FILE *, cgraph_node_set);
670 void debug_cgraph_node_set (cgraph_node_set);
672 varpool_node_set varpool_node_set_new (void);
673 varpool_node_set_iterator varpool_node_set_find (varpool_node_set,
674 struct varpool_node *);
675 void varpool_node_set_add (varpool_node_set, struct varpool_node *);
676 void varpool_node_set_remove (varpool_node_set, struct varpool_node *);
677 void dump_varpool_node_set (FILE *, varpool_node_set);
678 void debug_varpool_node_set (varpool_node_set);
679 void ipa_discover_readonly_nonaddressable_vars (void);
681 /* In predict.c */
682 bool cgraph_maybe_hot_edge_p (struct cgraph_edge *e);
684 /* In varpool.c */
685 extern GTY(()) struct varpool_node *varpool_nodes_queue;
686 extern GTY(()) struct varpool_node *varpool_nodes;
688 struct varpool_node *varpool_node (tree);
689 struct varpool_node *varpool_node_for_asm (tree asmname);
690 void varpool_mark_needed_node (struct varpool_node *);
691 void debug_varpool (void);
692 void dump_varpool (FILE *);
693 void dump_varpool_node (FILE *, struct varpool_node *);
695 void varpool_finalize_decl (tree);
696 bool decide_is_variable_needed (struct varpool_node *, tree);
697 enum availability cgraph_variable_initializer_availability (struct varpool_node *);
698 void cgraph_make_decl_local (tree);
699 void cgraph_make_node_local (struct cgraph_node *);
700 bool cgraph_node_can_be_local_p (struct cgraph_node *);
703 struct varpool_node * varpool_get_node (tree decl);
704 void varpool_remove_node (struct varpool_node *node);
705 bool varpool_assemble_pending_decls (void);
706 bool varpool_assemble_decl (struct varpool_node *node);
707 bool varpool_analyze_pending_decls (void);
708 void varpool_remove_unreferenced_decls (void);
709 void varpool_empty_needed_queue (void);
710 bool varpool_extra_name_alias (tree, tree);
711 const char * varpool_node_name (struct varpool_node *node);
712 void varpool_reset_queue (void);
714 /* Walk all reachable static variables. */
715 #define FOR_EACH_STATIC_VARIABLE(node) \
716 for ((node) = varpool_nodes_queue; (node); (node) = (node)->next_needed)
718 /* Return first reachable static variable with initializer. */
719 static inline struct varpool_node *
720 varpool_first_static_initializer (void)
722 struct varpool_node *node;
723 for (node = varpool_nodes_queue; node; node = node->next_needed)
725 gcc_assert (TREE_CODE (node->decl) == VAR_DECL);
726 if (DECL_INITIAL (node->decl))
727 return node;
729 return NULL;
732 /* Return next reachable static variable with initializer after NODE. */
733 static inline struct varpool_node *
734 varpool_next_static_initializer (struct varpool_node *node)
736 for (node = node->next_needed; node; node = node->next_needed)
738 gcc_assert (TREE_CODE (node->decl) == VAR_DECL);
739 if (DECL_INITIAL (node->decl))
740 return node;
742 return NULL;
745 /* Walk all static variables with initializer set. */
746 #define FOR_EACH_STATIC_INITIALIZER(node) \
747 for ((node) = varpool_first_static_initializer (); (node); \
748 (node) = varpool_next_static_initializer (node))
750 /* In ipa-inline.c */
751 void cgraph_clone_inlined_nodes (struct cgraph_edge *, bool, bool);
752 unsigned int compute_inline_parameters (struct cgraph_node *);
755 /* Create a new static variable of type TYPE. */
756 tree add_new_static_var (tree type);
758 /* Return true if iterator CSI points to nothing. */
759 static inline bool
760 csi_end_p (cgraph_node_set_iterator csi)
762 return csi.index >= VEC_length (cgraph_node_ptr, csi.set->nodes);
765 /* Advance iterator CSI. */
766 static inline void
767 csi_next (cgraph_node_set_iterator *csi)
769 csi->index++;
772 /* Return the node pointed to by CSI. */
773 static inline struct cgraph_node *
774 csi_node (cgraph_node_set_iterator csi)
776 return VEC_index (cgraph_node_ptr, csi.set->nodes, csi.index);
779 /* Return an iterator to the first node in SET. */
780 static inline cgraph_node_set_iterator
781 csi_start (cgraph_node_set set)
783 cgraph_node_set_iterator csi;
785 csi.set = set;
786 csi.index = 0;
787 return csi;
790 /* Return true if SET contains NODE. */
791 static inline bool
792 cgraph_node_in_set_p (struct cgraph_node *node, cgraph_node_set set)
794 cgraph_node_set_iterator csi;
795 csi = cgraph_node_set_find (set, node);
796 return !csi_end_p (csi);
799 /* Return number of nodes in SET. */
800 static inline size_t
801 cgraph_node_set_size (cgraph_node_set set)
803 return htab_elements (set->hashtab);
806 /* Return true if iterator VSI points to nothing. */
807 static inline bool
808 vsi_end_p (varpool_node_set_iterator vsi)
810 return vsi.index >= VEC_length (varpool_node_ptr, vsi.set->nodes);
813 /* Advance iterator VSI. */
814 static inline void
815 vsi_next (varpool_node_set_iterator *vsi)
817 vsi->index++;
820 /* Return the node pointed to by VSI. */
821 static inline struct varpool_node *
822 vsi_node (varpool_node_set_iterator vsi)
824 return VEC_index (varpool_node_ptr, vsi.set->nodes, vsi.index);
827 /* Return an iterator to the first node in SET. */
828 static inline varpool_node_set_iterator
829 vsi_start (varpool_node_set set)
831 varpool_node_set_iterator vsi;
833 vsi.set = set;
834 vsi.index = 0;
835 return vsi;
838 /* Return true if SET contains NODE. */
839 static inline bool
840 varpool_node_in_set_p (struct varpool_node *node, varpool_node_set set)
842 varpool_node_set_iterator vsi;
843 vsi = varpool_node_set_find (set, node);
844 return !vsi_end_p (vsi);
847 /* Return number of nodes in SET. */
848 static inline size_t
849 varpool_node_set_size (varpool_node_set set)
851 return htab_elements (set->hashtab);
854 /* Uniquize all constants that appear in memory.
855 Each constant in memory thus far output is recorded
856 in `const_desc_table'. */
858 struct GTY(()) constant_descriptor_tree {
859 /* A MEM for the constant. */
860 rtx rtl;
862 /* The value of the constant. */
863 tree value;
865 /* Hash of value. Computing the hash from value each time
866 hashfn is called can't work properly, as that means recursive
867 use of the hash table during hash table expansion. */
868 hashval_t hash;
871 /* Return true if set is nonempty. */
872 static inline bool
873 cgraph_node_set_nonempty_p (cgraph_node_set set)
875 return !VEC_empty (cgraph_node_ptr, set->nodes);
878 /* Return true if set is nonempty. */
879 static inline bool
880 varpool_node_set_nonempty_p (varpool_node_set set)
882 return !VEC_empty (varpool_node_ptr, set->nodes);
885 /* Return true when function NODE is only called directly.
886 i.e. it is not externally visible, address was not taken and
887 it is not used in any other non-standard way. */
889 static inline bool
890 cgraph_only_called_directly_p (struct cgraph_node *node)
892 return !node->needed && !node->address_taken && !node->local.externally_visible;
895 /* Return true when function NODE can be removed from callgraph
896 if all direct calls are eliminated. */
898 static inline bool
899 cgraph_can_remove_if_no_direct_calls_and_refs_p (struct cgraph_node *node)
901 return (!node->needed && !node->reachable_from_other_partition
902 && (DECL_COMDAT (node->decl) || !node->local.externally_visible));
905 /* Return true when function NODE can be removed from callgraph
906 if all direct calls are eliminated. */
908 static inline bool
909 cgraph_can_remove_if_no_direct_calls_p (struct cgraph_node *node)
911 return !node->address_taken && cgraph_can_remove_if_no_direct_calls_and_refs_p (node);
914 /* Return true when all references to VNODE must be visible in ipa_ref_list.
915 i.e. if the variable is not externally visible or not used in some magic
916 way (asm statement or such).
917 The magic uses are all sumarized in force_output flag. */
919 static inline bool
920 varpool_all_refs_explicit_p (struct varpool_node *vnode)
922 return (!vnode->externally_visible
923 && !vnode->used_from_other_partition
924 && !vnode->force_output);
927 /* Constant pool accessor function. */
928 htab_t constant_pool_htab (void);
930 /* FIXME: inappropriate dependency of cgraph on IPA. */
931 #include "ipa-ref-inline.h"
933 #endif /* GCC_CGRAPH_H */