OSDN Git Service

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