re PR c++/29234 (Call to operator() of temporary object wrongly parsed)
[gcc.git] / gcc / cgraph.h
1 /* Callgraph handling code.
2 Copyright (C) 2003-2013 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
4
5 This file is part of GCC.
6
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 3, or (at your option) any later
10 version.
11
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
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21 #ifndef GCC_CGRAPH_H
22 #define GCC_CGRAPH_H
23
24 #include "is-a.h"
25 #include "plugin-api.h"
26 #include "vec.h"
27 #include "basic-block.h"
28 #include "function.h"
29 #include "ipa-ref.h"
30
31 /* Symbol table consists of functions and variables.
32 TODO: add labels and CONST_DECLs. */
33 enum symtab_type
34 {
35 SYMTAB_SYMBOL,
36 SYMTAB_FUNCTION,
37 SYMTAB_VARIABLE
38 };
39
40 /* Base of all entries in the symbol table.
41 The symtab_node is inherited by cgraph and varpol nodes. */
42 class GTY((desc ("%h.type"), tag ("SYMTAB_SYMBOL"),
43 chain_next ("%h.next"), chain_prev ("%h.previous")))
44 symtab_node
45 {
46 public:
47 /* Type of the symbol. */
48 ENUM_BITFIELD (symtab_type) type : 8;
49
50 /* The symbols resolution. */
51 ENUM_BITFIELD (ld_plugin_symbol_resolution) resolution : 8;
52
53 /*** Flags representing the symbol type. ***/
54
55 /* True when symbol corresponds to a definition in current unit.
56 set via cgraph_finalize_function or varpool_finalize_decl */
57 unsigned definition : 1;
58 /* True when symbol is an alias.
59 Set by assemble_alias. */
60 unsigned alias : 1;
61 /* True when alias is a weakref. */
62 unsigned weakref : 1;
63 /* C++ frontend produce same body aliases and extra name aliases for
64 virtual functions and vtables that are obviously equivalent.
65 Those aliases are bit special, especially because C++ frontend
66 visibility code is so ugly it can not get them right at first time
67 and their visibility needs to be copied from their "masters" at
68 the end of parsing. */
69 unsigned cpp_implicit_alias : 1;
70 /* Set once the definition was analyzed. The list of references and
71 other properties are built during analysis. */
72 unsigned analyzed : 1;
73
74
75 /*** Visibility and linkage flags. ***/
76
77 /* Set when function is visible by other units. */
78 unsigned externally_visible : 1;
79 /* The symbol will be assumed to be used in an invisiable way (like
80 by an toplevel asm statement). */
81 unsigned force_output : 1;
82 /* Like FORCE_OUTPUT, but in the case it is ABI requiring the symbol to be
83 exported. Unlike FORCE_OUTPUT this flag gets cleared to symbols promoted
84 to static and it does not inhibit optimization. */
85 unsigned forced_by_abi : 1;
86 /* True when the name is known to be unique and thus it does not need mangling. */
87 unsigned unique_name : 1;
88
89
90 /*** WHOPR Partitioning flags.
91 These flags are used at ltrans stage when only part of the callgraph is
92 available. ***/
93
94 /* Set when variable is used from other LTRANS partition. */
95 unsigned used_from_other_partition : 1;
96 /* Set when function is available in the other LTRANS partition.
97 During WPA output it is used to mark nodes that are present in
98 multiple partitions. */
99 unsigned in_other_partition : 1;
100
101
102
103 /*** other flags. ***/
104
105 /* Set when symbol has address taken. */
106 unsigned address_taken : 1;
107
108
109 /* Ordering of all symtab entries. */
110 int order;
111
112 /* Declaration representing the symbol. */
113 tree decl;
114
115 /* Linked list of symbol table entries starting with symtab_nodes. */
116 symtab_node *next;
117 symtab_node *previous;
118
119 /* Linked list of symbols with the same asm name. There may be multiple
120 entries for single symbol name during LTO, because symbols are renamed
121 only after partitioning.
122
123 Because inline clones are kept in the assembler name has, they also produce
124 duplicate entries.
125
126 There are also several long standing bugs where frontends and builtin
127 code produce duplicated decls. */
128 symtab_node *next_sharing_asm_name;
129 symtab_node *previous_sharing_asm_name;
130
131 /* Circular list of nodes in the same comdat group if non-NULL. */
132 symtab_node *same_comdat_group;
133
134 /* Vectors of referring and referenced entities. */
135 struct ipa_ref_list ref_list;
136
137 /* Alias target. May be either DECL pointer or ASSEMBLER_NAME pointer
138 depending to what was known to frontend on the creation time.
139 Once alias is resolved, this pointer become NULL. */
140 tree alias_target;
141
142 /* File stream where this node is being written to. */
143 struct lto_file_decl_data * lto_file_data;
144
145 PTR GTY ((skip)) aux;
146 };
147
148 enum availability
149 {
150 /* Not yet set by cgraph_function_body_availability. */
151 AVAIL_UNSET,
152 /* Function body/variable initializer is unknown. */
153 AVAIL_NOT_AVAILABLE,
154 /* Function body/variable initializer is known but might be replaced
155 by a different one from other compilation unit and thus needs to
156 be dealt with a care. Like AVAIL_NOT_AVAILABLE it can have
157 arbitrary side effects on escaping variables and functions, while
158 like AVAILABLE it might access static variables. */
159 AVAIL_OVERWRITABLE,
160 /* Function body/variable initializer is known and will be used in final
161 program. */
162 AVAIL_AVAILABLE,
163 /* Function body/variable initializer is known and all it's uses are explicitly
164 visible within current unit (ie it's address is never taken and it is not
165 exported to other units).
166 Currently used only for functions. */
167 AVAIL_LOCAL
168 };
169
170 /* This is the information that is put into the cgraph local structure
171 to recover a function. */
172 struct lto_file_decl_data;
173
174 extern const char * const cgraph_availability_names[];
175 extern const char * const ld_plugin_symbol_resolution_names[];
176
177 /* Information about thunk, used only for same body aliases. */
178
179 struct GTY(()) cgraph_thunk_info {
180 /* Information about the thunk. */
181 HOST_WIDE_INT fixed_offset;
182 HOST_WIDE_INT virtual_value;
183 tree alias;
184 bool this_adjusting;
185 bool virtual_offset_p;
186 /* Set to true when alias node is thunk. */
187 bool thunk_p;
188 };
189
190 /* Information about the function collected locally.
191 Available after function is analyzed. */
192
193 struct GTY(()) cgraph_local_info {
194 /* Set when function function is visible in current compilation unit only
195 and its address is never taken. */
196 unsigned local : 1;
197
198 /* False when there is something makes versioning impossible. */
199 unsigned versionable : 1;
200
201 /* False when function calling convention and signature can not be changed.
202 This is the case when __builtin_apply_args is used. */
203 unsigned can_change_signature : 1;
204
205 /* True when the function has been originally extern inline, but it is
206 redefined now. */
207 unsigned redefined_extern_inline : 1;
208
209 /* True if the function may enter serial irrevocable mode. */
210 unsigned tm_may_enter_irr : 1;
211 };
212
213 /* Information about the function that needs to be computed globally
214 once compilation is finished. Available only with -funit-at-a-time. */
215
216 struct GTY(()) cgraph_global_info {
217 /* For inline clones this points to the function they will be
218 inlined into. */
219 struct cgraph_node *inlined_to;
220 };
221
222 /* Information about the function that is propagated by the RTL backend.
223 Available only for functions that has been already assembled. */
224
225 struct GTY(()) cgraph_rtl_info {
226 unsigned int preferred_incoming_stack_boundary;
227 };
228
229 /* Represent which DECL tree (or reference to such tree)
230 will be replaced by another tree while versioning. */
231 struct GTY(()) ipa_replace_map
232 {
233 /* The tree that will be replaced. */
234 tree old_tree;
235 /* The new (replacing) tree. */
236 tree new_tree;
237 /* Parameter number to replace, when old_tree is NULL. */
238 int parm_num;
239 /* True when a substitution should be done, false otherwise. */
240 bool replace_p;
241 /* True when we replace a reference to old_tree. */
242 bool ref_p;
243 };
244 typedef struct ipa_replace_map *ipa_replace_map_p;
245
246 struct GTY(()) cgraph_clone_info
247 {
248 vec<ipa_replace_map_p, va_gc> *tree_map;
249 bitmap args_to_skip;
250 bitmap combined_args_to_skip;
251 };
252
253
254 /* The cgraph data structure.
255 Each function decl has assigned cgraph_node listing callees and callers. */
256
257 struct GTY((tag ("SYMTAB_FUNCTION"))) cgraph_node : public symtab_node {
258 public:
259 struct cgraph_edge *callees;
260 struct cgraph_edge *callers;
261 /* List of edges representing indirect calls with a yet undetermined
262 callee. */
263 struct cgraph_edge *indirect_calls;
264 /* For nested functions points to function the node is nested in. */
265 struct cgraph_node *origin;
266 /* Points to first nested function, if any. */
267 struct cgraph_node *nested;
268 /* Pointer to the next function with same origin, if any. */
269 struct cgraph_node *next_nested;
270 /* Pointer to the next clone. */
271 struct cgraph_node *next_sibling_clone;
272 struct cgraph_node *prev_sibling_clone;
273 struct cgraph_node *clones;
274 struct cgraph_node *clone_of;
275 /* For functions with many calls sites it holds map from call expression
276 to the edge to speed up cgraph_edge function. */
277 htab_t GTY((param_is (struct cgraph_edge))) call_site_hash;
278 /* Declaration node used to be clone of. */
279 tree former_clone_of;
280
281 /* Interprocedural passes scheduled to have their transform functions
282 applied next time we execute local pass on them. We maintain it
283 per-function in order to allow IPA passes to introduce new functions. */
284 vec<ipa_opt_pass> GTY((skip)) ipa_transforms_to_apply;
285
286 struct cgraph_local_info local;
287 struct cgraph_global_info global;
288 struct cgraph_rtl_info rtl;
289 struct cgraph_clone_info clone;
290 struct cgraph_thunk_info thunk;
291
292 /* Expected number of executions: calculated in profile.c. */
293 gcov_type count;
294 /* How to scale counts at materialization time; used to merge
295 LTO units with different number of profile runs. */
296 int count_materialization_scale;
297 /* Unique id of the node. */
298 int uid;
299 /* ID assigned by the profiling. */
300 unsigned int profile_id;
301
302 /* Set when decl is an abstract function pointed to by the
303 ABSTRACT_DECL_ORIGIN of a reachable function. */
304 unsigned used_as_abstract_origin : 1;
305 /* Set once the function is lowered (i.e. its CFG is built). */
306 unsigned lowered : 1;
307 /* Set once the function has been instantiated and its callee
308 lists created. */
309 unsigned process : 1;
310 /* How commonly executed the node is. Initialized during branch
311 probabilities pass. */
312 ENUM_BITFIELD (node_frequency) frequency : 2;
313 /* True when function can only be called at startup (from static ctor). */
314 unsigned only_called_at_startup : 1;
315 /* True when function can only be called at startup (from static dtor). */
316 unsigned only_called_at_exit : 1;
317 /* True when function is the transactional clone of a function which
318 is called only from inside transactions. */
319 /* ?? We should be able to remove this. We have enough bits in
320 cgraph to calculate it. */
321 unsigned tm_clone : 1;
322 /* True if this decl is a dispatcher for function versions. */
323 unsigned dispatcher_function : 1;
324 };
325
326
327 typedef struct cgraph_node *cgraph_node_ptr;
328
329
330 /* Function Multiversioning info. */
331 struct GTY(()) cgraph_function_version_info {
332 /* The cgraph_node for which the function version info is stored. */
333 struct cgraph_node *this_node;
334 /* Chains all the semantically identical function versions. The
335 first function in this chain is the version_info node of the
336 default function. */
337 struct cgraph_function_version_info *prev;
338 /* If this version node corresponds to a dispatcher for function
339 versions, this points to the version info node of the default
340 function, the first node in the chain. */
341 struct cgraph_function_version_info *next;
342 /* If this node corresponds to a function version, this points
343 to the dispatcher function decl, which is the function that must
344 be called to execute the right function version at run-time.
345
346 If this cgraph node is a dispatcher (if dispatcher_function is
347 true, in the cgraph_node struct) for function versions, this
348 points to resolver function, which holds the function body of the
349 dispatcher. The dispatcher decl is an alias to the resolver
350 function decl. */
351 tree dispatcher_resolver;
352 };
353
354 /* Get the cgraph_function_version_info node corresponding to node. */
355 struct cgraph_function_version_info *
356 get_cgraph_node_version (struct cgraph_node *node);
357
358 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
359 corresponding to cgraph_node NODE. */
360 struct cgraph_function_version_info *
361 insert_new_cgraph_node_version (struct cgraph_node *node);
362
363 /* Record that DECL1 and DECL2 are semantically identical function
364 versions. */
365 void record_function_versions (tree decl1, tree decl2);
366
367 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
368 DECL is a duplicate declaration. */
369 void delete_function_version (tree decl);
370
371 /* A cgraph node set is a collection of cgraph nodes. A cgraph node
372 can appear in multiple sets. */
373 struct cgraph_node_set_def
374 {
375 struct pointer_map_t *map;
376 vec<cgraph_node_ptr> nodes;
377 };
378
379 typedef struct varpool_node *varpool_node_ptr;
380
381
382 /* A varpool node set is a collection of varpool nodes. A varpool node
383 can appear in multiple sets. */
384 struct varpool_node_set_def
385 {
386 struct pointer_map_t * map;
387 vec<varpool_node_ptr> nodes;
388 };
389
390 typedef struct cgraph_node_set_def *cgraph_node_set;
391
392
393 typedef struct varpool_node_set_def *varpool_node_set;
394
395
396 /* Iterator structure for cgraph node sets. */
397 typedef struct
398 {
399 cgraph_node_set set;
400 unsigned index;
401 } cgraph_node_set_iterator;
402
403 /* Iterator structure for varpool node sets. */
404 typedef struct
405 {
406 varpool_node_set set;
407 unsigned index;
408 } varpool_node_set_iterator;
409
410 #define DEFCIFCODE(code, string) CIF_ ## code,
411 /* Reasons for inlining failures. */
412 typedef enum cgraph_inline_failed_enum {
413 #include "cif-code.def"
414 CIF_N_REASONS
415 } cgraph_inline_failed_t;
416
417 /* Structure containing additional information about an indirect call. */
418
419 struct GTY(()) cgraph_indirect_call_info
420 {
421 /* When polymorphic is set, this field contains offset where the object which
422 was actually used in the polymorphic resides within a larger structure.
423 If agg_contents is set, the field contains the offset within the aggregate
424 from which the address to call was loaded. */
425 HOST_WIDE_INT offset;
426 /* OBJ_TYPE_REF_TOKEN of a polymorphic call (if polymorphic is set). */
427 HOST_WIDE_INT otr_token;
428 /* Type of the object from OBJ_TYPE_REF_OBJECT. */
429 tree otr_type;
430 /* Index of the parameter that is called. */
431 int param_index;
432 /* ECF flags determined from the caller. */
433 int ecf_flags;
434 /* Profile_id of common target obtrained from profile. */
435 int common_target_id;
436 /* Probability that call will land in function with COMMON_TARGET_ID. */
437 int common_target_probability;
438
439 /* Set when the call is a virtual call with the parameter being the
440 associated object pointer rather than a simple direct call. */
441 unsigned polymorphic : 1;
442 /* Set when the call is a call of a pointer loaded from contents of an
443 aggregate at offset. */
444 unsigned agg_contents : 1;
445 /* Set when this is a call through a member pointer. */
446 unsigned member_ptr : 1;
447 /* When the previous bit is set, this one determines whether the destination
448 is loaded from a parameter passed by reference. */
449 unsigned by_ref : 1;
450 };
451
452 struct GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"))) cgraph_edge {
453 /* Expected number of executions: calculated in profile.c. */
454 gcov_type count;
455 struct cgraph_node *caller;
456 struct cgraph_node *callee;
457 struct cgraph_edge *prev_caller;
458 struct cgraph_edge *next_caller;
459 struct cgraph_edge *prev_callee;
460 struct cgraph_edge *next_callee;
461 gimple call_stmt;
462 /* Additional information about an indirect call. Not cleared when an edge
463 becomes direct. */
464 struct cgraph_indirect_call_info *indirect_info;
465 PTR GTY ((skip (""))) aux;
466 /* When equal to CIF_OK, inline this call. Otherwise, points to the
467 explanation why function was not inlined. */
468 cgraph_inline_failed_t inline_failed;
469 /* The stmt_uid of call_stmt. This is used by LTO to recover the call_stmt
470 when the function is serialized in. */
471 unsigned int lto_stmt_uid;
472 /* Expected frequency of executions within the function.
473 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
474 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
475 int frequency;
476 /* Unique id of the edge. */
477 int uid;
478 /* Whether this edge was made direct by indirect inlining. */
479 unsigned int indirect_inlining_edge : 1;
480 /* Whether this edge describes an indirect call with an undetermined
481 callee. */
482 unsigned int indirect_unknown_callee : 1;
483 /* Whether this edge is still a dangling */
484 /* True if the corresponding CALL stmt cannot be inlined. */
485 unsigned int call_stmt_cannot_inline_p : 1;
486 /* Can this call throw externally? */
487 unsigned int can_throw_external : 1;
488 /* Edges with SPECULATIVE flag represents indirect calls that was
489 speculatively turned into direct (i.e. by profile feedback).
490 The final code sequence will have form:
491
492 if (call_target == expected_fn)
493 expected_fn ();
494 else
495 call_target ();
496
497 Every speculative call is represented by three components attached
498 to a same call statement:
499 1) a direct call (to expected_fn)
500 2) an indirect call (to call_target)
501 3) a IPA_REF_ADDR refrence to expected_fn.
502
503 Optimizers may later redirect direct call to clone, so 1) and 3)
504 do not need to necesarily agree with destination. */
505 unsigned int speculative : 1;
506 };
507
508 #define CGRAPH_FREQ_BASE 1000
509 #define CGRAPH_FREQ_MAX 100000
510
511 typedef struct cgraph_edge *cgraph_edge_p;
512
513
514 /* The varpool data structure.
515 Each static variable decl has assigned varpool_node. */
516
517 class GTY((tag ("SYMTAB_VARIABLE"))) varpool_node : public symtab_node {
518 public:
519 /* Set when variable is scheduled to be assembled. */
520 unsigned output : 1;
521 };
522
523 /* Every top level asm statement is put into a asm_node. */
524
525 struct GTY(()) asm_node {
526 /* Next asm node. */
527 struct asm_node *next;
528 /* String for this asm node. */
529 tree asm_str;
530 /* Ordering of all cgraph nodes. */
531 int order;
532 };
533
534 /* Report whether or not THIS symtab node is a function, aka cgraph_node. */
535
536 template <>
537 template <>
538 inline bool
539 is_a_helper <cgraph_node>::test (symtab_node *p)
540 {
541 return p->type == SYMTAB_FUNCTION;
542 }
543
544 /* Report whether or not THIS symtab node is a vriable, aka varpool_node. */
545
546 template <>
547 template <>
548 inline bool
549 is_a_helper <varpool_node>::test (symtab_node *p)
550 {
551 return p->type == SYMTAB_VARIABLE;
552 }
553
554 extern GTY(()) symtab_node *symtab_nodes;
555 extern GTY(()) int cgraph_n_nodes;
556 extern GTY(()) int cgraph_max_uid;
557 extern GTY(()) int cgraph_edge_max_uid;
558 extern bool cgraph_global_info_ready;
559 enum cgraph_state
560 {
561 /* Frontend is parsing and finalizing functions. */
562 CGRAPH_STATE_PARSING,
563 /* Callgraph is being constructed. It is safe to add new functions. */
564 CGRAPH_STATE_CONSTRUCTION,
565 /* Callgraph is being at LTO time. */
566 CGRAPH_LTO_STREAMING,
567 /* Callgraph is built and IPA passes are being run. */
568 CGRAPH_STATE_IPA,
569 /* Callgraph is built and all functions are transformed to SSA form. */
570 CGRAPH_STATE_IPA_SSA,
571 /* Functions are now ordered and being passed to RTL expanders. */
572 CGRAPH_STATE_EXPANSION,
573 /* All cgraph expansion is done. */
574 CGRAPH_STATE_FINISHED
575 };
576 extern enum cgraph_state cgraph_state;
577 extern bool cgraph_function_flags_ready;
578 extern cgraph_node_set cgraph_new_nodes;
579
580 extern GTY(()) struct asm_node *asm_nodes;
581 extern GTY(()) int symtab_order;
582 extern bool cpp_implicit_aliases_done;
583
584 /* In symtab.c */
585 void symtab_register_node (symtab_node *);
586 void symtab_unregister_node (symtab_node *);
587 void symtab_remove_node (symtab_node *);
588 symtab_node *symtab_get_node (const_tree);
589 symtab_node *symtab_node_for_asm (const_tree asmname);
590 const char * symtab_node_asm_name (symtab_node *);
591 const char * symtab_node_name (symtab_node *);
592 void symtab_insert_node_to_hashtable (symtab_node *);
593 void symtab_add_to_same_comdat_group (symtab_node *, symtab_node *);
594 void symtab_dissolve_same_comdat_group_list (symtab_node *node);
595 void dump_symtab (FILE *);
596 void debug_symtab (void);
597 void dump_symtab_node (FILE *, symtab_node *);
598 void debug_symtab_node (symtab_node *);
599 void dump_symtab_base (FILE *, symtab_node *);
600 void verify_symtab (void);
601 void verify_symtab_node (symtab_node *);
602 bool verify_symtab_base (symtab_node *);
603 bool symtab_used_from_object_file_p (symtab_node *);
604 void symtab_make_decl_local (tree);
605 symtab_node *symtab_alias_ultimate_target (symtab_node *,
606 enum availability *avail = NULL);
607 bool symtab_resolve_alias (symtab_node *node, symtab_node *target);
608 void fixup_same_cpp_alias_visibility (symtab_node *node, symtab_node *target);
609 bool symtab_for_node_and_aliases (symtab_node *,
610 bool (*) (symtab_node *, void *),
611 void *,
612 bool);
613 symtab_node *symtab_nonoverwritable_alias (symtab_node *);
614 enum availability symtab_node_availability (symtab_node *);
615 bool symtab_semantically_equivalent_p (symtab_node *, symtab_node *);
616
617 /* In cgraph.c */
618 void dump_cgraph (FILE *);
619 void debug_cgraph (void);
620 void dump_cgraph_node (FILE *, struct cgraph_node *);
621 void debug_cgraph_node (struct cgraph_node *);
622 void cgraph_remove_edge (struct cgraph_edge *);
623 void cgraph_remove_node (struct cgraph_node *);
624 void cgraph_release_function_body (struct cgraph_node *);
625 void release_function_body (tree);
626 void cgraph_node_remove_callees (struct cgraph_node *node);
627 struct cgraph_edge *cgraph_create_edge (struct cgraph_node *,
628 struct cgraph_node *,
629 gimple, gcov_type, int);
630 struct cgraph_edge *cgraph_create_indirect_edge (struct cgraph_node *, gimple,
631 int, gcov_type, int);
632 struct cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void);
633 struct cgraph_node * cgraph_create_node (tree);
634 struct cgraph_node * cgraph_create_empty_node (void);
635 struct cgraph_node * cgraph_get_create_node (tree);
636 struct cgraph_node * cgraph_get_create_real_symbol_node (tree);
637 struct cgraph_node * cgraph_same_body_alias (struct cgraph_node *, tree, tree);
638 struct cgraph_node * cgraph_add_thunk (struct cgraph_node *, tree, tree, bool, HOST_WIDE_INT,
639 HOST_WIDE_INT, tree, tree);
640 struct cgraph_node *cgraph_node_for_asm (tree);
641 struct cgraph_edge *cgraph_edge (struct cgraph_node *, gimple);
642 void cgraph_set_call_stmt (struct cgraph_edge *, gimple, bool update_speculative = true);
643 void cgraph_update_edges_for_call_stmt (gimple, tree, gimple);
644 struct cgraph_local_info *cgraph_local_info (tree);
645 struct cgraph_global_info *cgraph_global_info (tree);
646 struct cgraph_rtl_info *cgraph_rtl_info (tree);
647 struct cgraph_node *cgraph_create_function_alias (tree, tree);
648 void cgraph_call_node_duplication_hooks (struct cgraph_node *,
649 struct cgraph_node *);
650 void cgraph_call_edge_duplication_hooks (struct cgraph_edge *,
651 struct cgraph_edge *);
652
653 void cgraph_redirect_edge_callee (struct cgraph_edge *, struct cgraph_node *);
654 struct cgraph_edge *cgraph_make_edge_direct (struct cgraph_edge *, struct cgraph_node *);
655 bool cgraph_only_called_directly_p (struct cgraph_node *);
656
657 bool cgraph_function_possibly_inlined_p (tree);
658 void cgraph_unnest_node (struct cgraph_node *);
659
660 enum availability cgraph_function_body_availability (struct cgraph_node *);
661 void cgraph_add_new_function (tree, bool);
662 const char* cgraph_inline_failed_string (cgraph_inline_failed_t);
663
664 void cgraph_set_nothrow_flag (struct cgraph_node *, bool);
665 void cgraph_set_const_flag (struct cgraph_node *, bool, bool);
666 void cgraph_set_pure_flag (struct cgraph_node *, bool, bool);
667 bool cgraph_node_cannot_return (struct cgraph_node *);
668 bool cgraph_edge_cannot_lead_to_return (struct cgraph_edge *);
669 bool cgraph_will_be_removed_from_program_if_no_direct_calls
670 (struct cgraph_node *node);
671 bool cgraph_can_remove_if_no_direct_calls_and_refs_p
672 (struct cgraph_node *node);
673 bool cgraph_can_remove_if_no_direct_calls_p (struct cgraph_node *node);
674 bool resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution);
675 bool cgraph_for_node_thunks_and_aliases (struct cgraph_node *,
676 bool (*) (struct cgraph_node *, void *),
677 void *,
678 bool);
679 bool cgraph_for_node_and_aliases (struct cgraph_node *,
680 bool (*) (struct cgraph_node *, void *),
681 void *, bool);
682 vec<cgraph_edge_p> collect_callers_of_node (struct cgraph_node *node);
683 void verify_cgraph (void);
684 void verify_cgraph_node (struct cgraph_node *);
685 void cgraph_mark_address_taken_node (struct cgraph_node *);
686
687 typedef void (*cgraph_edge_hook)(struct cgraph_edge *, void *);
688 typedef void (*cgraph_node_hook)(struct cgraph_node *, void *);
689 typedef void (*varpool_node_hook)(struct varpool_node *, void *);
690 typedef void (*cgraph_2edge_hook)(struct cgraph_edge *, struct cgraph_edge *,
691 void *);
692 typedef void (*cgraph_2node_hook)(struct cgraph_node *, struct cgraph_node *,
693 void *);
694 struct cgraph_edge_hook_list;
695 struct cgraph_node_hook_list;
696 struct varpool_node_hook_list;
697 struct cgraph_2edge_hook_list;
698 struct cgraph_2node_hook_list;
699 struct cgraph_edge_hook_list *cgraph_add_edge_removal_hook (cgraph_edge_hook, void *);
700 void cgraph_remove_edge_removal_hook (struct cgraph_edge_hook_list *);
701 struct cgraph_node_hook_list *cgraph_add_node_removal_hook (cgraph_node_hook,
702 void *);
703 void cgraph_remove_node_removal_hook (struct cgraph_node_hook_list *);
704 struct varpool_node_hook_list *varpool_add_node_removal_hook (varpool_node_hook,
705 void *);
706 void varpool_remove_node_removal_hook (struct varpool_node_hook_list *);
707 struct cgraph_node_hook_list *cgraph_add_function_insertion_hook (cgraph_node_hook,
708 void *);
709 void cgraph_remove_function_insertion_hook (struct cgraph_node_hook_list *);
710 struct varpool_node_hook_list *varpool_add_variable_insertion_hook (varpool_node_hook,
711 void *);
712 void varpool_remove_variable_insertion_hook (struct varpool_node_hook_list *);
713 void cgraph_call_function_insertion_hooks (struct cgraph_node *node);
714 struct cgraph_2edge_hook_list *cgraph_add_edge_duplication_hook (cgraph_2edge_hook, void *);
715 void cgraph_remove_edge_duplication_hook (struct cgraph_2edge_hook_list *);
716 struct cgraph_2node_hook_list *cgraph_add_node_duplication_hook (cgraph_2node_hook, void *);
717 void cgraph_remove_node_duplication_hook (struct cgraph_2node_hook_list *);
718 gimple cgraph_redirect_edge_call_stmt_to_callee (struct cgraph_edge *);
719 struct cgraph_node * cgraph_function_node (struct cgraph_node *,
720 enum availability *avail = NULL);
721 bool cgraph_get_body (struct cgraph_node *node);
722 struct cgraph_edge *
723 cgraph_turn_edge_to_speculative (struct cgraph_edge *,
724 struct cgraph_node *,
725 gcov_type, int);
726 void cgraph_speculative_call_info (struct cgraph_edge *,
727 struct cgraph_edge *&,
728 struct cgraph_edge *&,
729 struct ipa_ref *&);
730 extern bool gimple_check_call_matching_types (gimple, tree, bool);
731
732 /* In cgraphunit.c */
733 struct asm_node *add_asm_node (tree);
734 extern FILE *cgraph_dump_file;
735 void cgraph_finalize_function (tree, bool);
736 void finalize_compilation_unit (void);
737 void compile (void);
738 void init_cgraph (void);
739 bool cgraph_process_new_functions (void);
740 void cgraph_process_same_body_aliases (void);
741 void fixup_same_cpp_alias_visibility (symtab_node *, symtab_node *target, tree);
742 /* Initialize datastructures so DECL is a function in lowered gimple form.
743 IN_SSA is true if the gimple is in SSA. */
744 basic_block init_lowered_empty_function (tree, bool);
745 void cgraph_reset_node (struct cgraph_node *);
746 bool expand_thunk (struct cgraph_node *, bool);
747
748 /* In cgraphclones.c */
749
750 struct cgraph_edge * cgraph_clone_edge (struct cgraph_edge *,
751 struct cgraph_node *, gimple,
752 unsigned, gcov_type, int, bool);
753 struct cgraph_node * cgraph_clone_node (struct cgraph_node *, tree, gcov_type,
754 int, bool, vec<cgraph_edge_p>,
755 bool, struct cgraph_node *);
756 tree clone_function_name (tree decl, const char *);
757 struct cgraph_node * cgraph_create_virtual_clone (struct cgraph_node *old_node,
758 vec<cgraph_edge_p>,
759 vec<ipa_replace_map_p, va_gc> *tree_map,
760 bitmap args_to_skip,
761 const char *clone_name);
762 struct cgraph_node *cgraph_find_replacement_node (struct cgraph_node *);
763 bool cgraph_remove_node_and_inline_clones (struct cgraph_node *, struct cgraph_node *);
764 void cgraph_set_call_stmt_including_clones (struct cgraph_node *, gimple, gimple,
765 bool update_speculative = true);
766 void cgraph_create_edge_including_clones (struct cgraph_node *,
767 struct cgraph_node *,
768 gimple, gimple, gcov_type, int,
769 cgraph_inline_failed_t);
770 void cgraph_materialize_all_clones (void);
771 struct cgraph_node * cgraph_copy_node_for_versioning (struct cgraph_node *,
772 tree, vec<cgraph_edge_p>, bitmap);
773 struct cgraph_node *cgraph_function_versioning (struct cgraph_node *,
774 vec<cgraph_edge_p>,
775 vec<ipa_replace_map_p, va_gc> *,
776 bitmap, bool, bitmap,
777 basic_block, const char *);
778 void tree_function_versioning (tree, tree, vec<ipa_replace_map_p, va_gc> *,
779 bool, bitmap, bool, bitmap, basic_block);
780 struct cgraph_edge *cgraph_resolve_speculation (struct cgraph_edge *, tree);
781
782 /* In cgraphbuild.c */
783 unsigned int rebuild_cgraph_edges (void);
784 void cgraph_rebuild_references (void);
785 int compute_call_stmt_bb_frequency (tree, basic_block bb);
786 void record_references_in_initializer (tree, bool);
787 void ipa_record_stmt_references (struct cgraph_node *, gimple);
788
789 /* In ipa.c */
790 bool symtab_remove_unreachable_nodes (bool, FILE *);
791 cgraph_node_set cgraph_node_set_new (void);
792 cgraph_node_set_iterator cgraph_node_set_find (cgraph_node_set,
793 struct cgraph_node *);
794 void cgraph_node_set_add (cgraph_node_set, struct cgraph_node *);
795 void cgraph_node_set_remove (cgraph_node_set, struct cgraph_node *);
796 void dump_cgraph_node_set (FILE *, cgraph_node_set);
797 void debug_cgraph_node_set (cgraph_node_set);
798 void free_cgraph_node_set (cgraph_node_set);
799 void cgraph_build_static_cdtor (char which, tree body, int priority);
800
801 varpool_node_set varpool_node_set_new (void);
802 varpool_node_set_iterator varpool_node_set_find (varpool_node_set,
803 struct varpool_node *);
804 void varpool_node_set_add (varpool_node_set, struct varpool_node *);
805 void varpool_node_set_remove (varpool_node_set, struct varpool_node *);
806 void dump_varpool_node_set (FILE *, varpool_node_set);
807 void debug_varpool_node_set (varpool_node_set);
808 void free_varpool_node_set (varpool_node_set);
809 void ipa_discover_readonly_nonaddressable_vars (void);
810 bool varpool_externally_visible_p (struct varpool_node *);
811
812 /* In predict.c */
813 bool cgraph_maybe_hot_edge_p (struct cgraph_edge *e);
814 bool cgraph_optimize_for_size_p (struct cgraph_node *);
815
816 /* In varpool.c */
817 struct varpool_node *varpool_create_empty_node (void);
818 struct varpool_node *varpool_node_for_decl (tree);
819 struct varpool_node *varpool_node_for_asm (tree asmname);
820 void varpool_mark_needed_node (struct varpool_node *);
821 void debug_varpool (void);
822 void dump_varpool (FILE *);
823 void dump_varpool_node (FILE *, struct varpool_node *);
824
825 void varpool_finalize_decl (tree);
826 enum availability cgraph_variable_initializer_availability (struct varpool_node *);
827 void cgraph_make_node_local (struct cgraph_node *);
828 bool cgraph_node_can_be_local_p (struct cgraph_node *);
829
830
831 void varpool_remove_node (struct varpool_node *node);
832 void varpool_finalize_named_section_flags (struct varpool_node *node);
833 bool varpool_output_variables (void);
834 bool varpool_assemble_decl (struct varpool_node *node);
835 void varpool_analyze_node (struct varpool_node *);
836 struct varpool_node * varpool_extra_name_alias (tree, tree);
837 struct varpool_node * varpool_create_variable_alias (tree, tree);
838 void varpool_reset_queue (void);
839 tree ctor_for_folding (tree);
840 bool varpool_for_node_and_aliases (struct varpool_node *,
841 bool (*) (struct varpool_node *, void *),
842 void *, bool);
843 void varpool_add_new_variable (tree);
844 void symtab_initialize_asm_name_hash (void);
845 void symtab_prevail_in_asm_name_hash (symtab_node *node);
846 void varpool_remove_initializer (struct varpool_node *);
847
848
849 /* Return callgraph node for given symbol and check it is a function. */
850 static inline struct cgraph_node *
851 cgraph (symtab_node *node)
852 {
853 gcc_checking_assert (!node || node->type == SYMTAB_FUNCTION);
854 return (struct cgraph_node *)node;
855 }
856
857 /* Return varpool node for given symbol and check it is a variable. */
858 static inline struct varpool_node *
859 varpool (symtab_node *node)
860 {
861 gcc_checking_assert (!node || node->type == SYMTAB_VARIABLE);
862 return (struct varpool_node *)node;
863 }
864
865 /* Return callgraph node for given symbol and check it is a function. */
866 static inline struct cgraph_node *
867 cgraph_get_node (const_tree decl)
868 {
869 gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL);
870 return cgraph (symtab_get_node (decl));
871 }
872
873 /* Return varpool node for given symbol and check it is a function. */
874 static inline struct varpool_node *
875 varpool_get_node (const_tree decl)
876 {
877 gcc_checking_assert (TREE_CODE (decl) == VAR_DECL);
878 return varpool (symtab_get_node (decl));
879 }
880
881 /* Return asm name of cgraph node. */
882 static inline const char *
883 cgraph_node_asm_name (struct cgraph_node *node)
884 {
885 return symtab_node_asm_name (node);
886 }
887
888 /* Return asm name of varpool node. */
889 static inline const char *
890 varpool_node_asm_name (struct varpool_node *node)
891 {
892 return symtab_node_asm_name (node);
893 }
894
895 /* Return name of cgraph node. */
896 static inline const char *
897 cgraph_node_name (struct cgraph_node *node)
898 {
899 return symtab_node_name (node);
900 }
901
902 /* Return name of varpool node. */
903 static inline const char *
904 varpool_node_name (struct varpool_node *node)
905 {
906 return symtab_node_name (node);
907 }
908
909 /* Walk all symbols. */
910 #define FOR_EACH_SYMBOL(node) \
911 for ((node) = symtab_nodes; (node); (node) = (node)->next)
912
913
914 /* Return first variable. */
915 static inline struct varpool_node *
916 varpool_first_variable (void)
917 {
918 symtab_node *node;
919 for (node = symtab_nodes; node; node = node->next)
920 if (varpool_node *vnode = dyn_cast <varpool_node> (node))
921 return vnode;
922 return NULL;
923 }
924
925 /* Return next variable after NODE. */
926 static inline struct varpool_node *
927 varpool_next_variable (struct varpool_node *node)
928 {
929 symtab_node *node1 = node->next;
930 for (; node1; node1 = node1->next)
931 if (varpool_node *vnode1 = dyn_cast <varpool_node> (node1))
932 return vnode1;
933 return NULL;
934 }
935 /* Walk all variables. */
936 #define FOR_EACH_VARIABLE(node) \
937 for ((node) = varpool_first_variable (); \
938 (node); \
939 (node) = varpool_next_variable ((node)))
940
941 /* Return first reachable static variable with initializer. */
942 static inline struct varpool_node *
943 varpool_first_static_initializer (void)
944 {
945 symtab_node *node;
946 for (node = symtab_nodes; node; node = node->next)
947 {
948 varpool_node *vnode = dyn_cast <varpool_node> (node);
949 if (vnode && DECL_INITIAL (node->decl))
950 return vnode;
951 }
952 return NULL;
953 }
954
955 /* Return next reachable static variable with initializer after NODE. */
956 static inline struct varpool_node *
957 varpool_next_static_initializer (struct varpool_node *node)
958 {
959 symtab_node *node1 = node->next;
960 for (; node1; node1 = node1->next)
961 {
962 varpool_node *vnode1 = dyn_cast <varpool_node> (node1);
963 if (vnode1 && DECL_INITIAL (node1->decl))
964 return vnode1;
965 }
966 return NULL;
967 }
968
969 /* Walk all static variables with initializer set. */
970 #define FOR_EACH_STATIC_INITIALIZER(node) \
971 for ((node) = varpool_first_static_initializer (); (node); \
972 (node) = varpool_next_static_initializer (node))
973
974 /* Return first reachable static variable with initializer. */
975 static inline struct varpool_node *
976 varpool_first_defined_variable (void)
977 {
978 symtab_node *node;
979 for (node = symtab_nodes; node; node = node->next)
980 {
981 varpool_node *vnode = dyn_cast <varpool_node> (node);
982 if (vnode && vnode->definition)
983 return vnode;
984 }
985 return NULL;
986 }
987
988 /* Return next reachable static variable with initializer after NODE. */
989 static inline struct varpool_node *
990 varpool_next_defined_variable (struct varpool_node *node)
991 {
992 symtab_node *node1 = node->next;
993 for (; node1; node1 = node1->next)
994 {
995 varpool_node *vnode1 = dyn_cast <varpool_node> (node1);
996 if (vnode1 && vnode1->definition)
997 return vnode1;
998 }
999 return NULL;
1000 }
1001 /* Walk all variables with definitions in current unit. */
1002 #define FOR_EACH_DEFINED_VARIABLE(node) \
1003 for ((node) = varpool_first_defined_variable (); (node); \
1004 (node) = varpool_next_defined_variable (node))
1005
1006 /* Return first function with body defined. */
1007 static inline struct cgraph_node *
1008 cgraph_first_defined_function (void)
1009 {
1010 symtab_node *node;
1011 for (node = symtab_nodes; node; node = node->next)
1012 {
1013 cgraph_node *cn = dyn_cast <cgraph_node> (node);
1014 if (cn && cn->definition)
1015 return cn;
1016 }
1017 return NULL;
1018 }
1019
1020 /* Return next function with body defined after NODE. */
1021 static inline struct cgraph_node *
1022 cgraph_next_defined_function (struct cgraph_node *node)
1023 {
1024 symtab_node *node1 = node->next;
1025 for (; node1; node1 = node1->next)
1026 {
1027 cgraph_node *cn1 = dyn_cast <cgraph_node> (node1);
1028 if (cn1 && cn1->definition)
1029 return cn1;
1030 }
1031 return NULL;
1032 }
1033
1034 /* Walk all functions with body defined. */
1035 #define FOR_EACH_DEFINED_FUNCTION(node) \
1036 for ((node) = cgraph_first_defined_function (); (node); \
1037 (node) = cgraph_next_defined_function ((node)))
1038
1039 /* Return first function. */
1040 static inline struct cgraph_node *
1041 cgraph_first_function (void)
1042 {
1043 symtab_node *node;
1044 for (node = symtab_nodes; node; node = node->next)
1045 if (cgraph_node *cn = dyn_cast <cgraph_node> (node))
1046 return cn;
1047 return NULL;
1048 }
1049
1050 /* Return next function. */
1051 static inline struct cgraph_node *
1052 cgraph_next_function (struct cgraph_node *node)
1053 {
1054 symtab_node *node1 = node->next;
1055 for (; node1; node1 = node1->next)
1056 if (cgraph_node *cn1 = dyn_cast <cgraph_node> (node1))
1057 return cn1;
1058 return NULL;
1059 }
1060 /* Walk all functions. */
1061 #define FOR_EACH_FUNCTION(node) \
1062 for ((node) = cgraph_first_function (); (node); \
1063 (node) = cgraph_next_function ((node)))
1064
1065 /* Return true when NODE is a function with Gimple body defined
1066 in current unit. Functions can also be define externally or they
1067 can be thunks with no Gimple representation.
1068
1069 Note that at WPA stage, the function body may not be present in memory. */
1070
1071 static inline bool
1072 cgraph_function_with_gimple_body_p (struct cgraph_node *node)
1073 {
1074 return node->definition && !node->thunk.thunk_p && !node->alias;
1075 }
1076
1077 /* Return first function with body defined. */
1078 static inline struct cgraph_node *
1079 cgraph_first_function_with_gimple_body (void)
1080 {
1081 symtab_node *node;
1082 for (node = symtab_nodes; node; node = node->next)
1083 {
1084 cgraph_node *cn = dyn_cast <cgraph_node> (node);
1085 if (cn && cgraph_function_with_gimple_body_p (cn))
1086 return cn;
1087 }
1088 return NULL;
1089 }
1090
1091 /* Return next reachable static variable with initializer after NODE. */
1092 static inline struct cgraph_node *
1093 cgraph_next_function_with_gimple_body (struct cgraph_node *node)
1094 {
1095 symtab_node *node1 = node->next;
1096 for (; node1; node1 = node1->next)
1097 {
1098 cgraph_node *cn1 = dyn_cast <cgraph_node> (node1);
1099 if (cn1 && cgraph_function_with_gimple_body_p (cn1))
1100 return cn1;
1101 }
1102 return NULL;
1103 }
1104
1105 /* Walk all functions with body defined. */
1106 #define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
1107 for ((node) = cgraph_first_function_with_gimple_body (); (node); \
1108 (node) = cgraph_next_function_with_gimple_body (node))
1109
1110 /* Create a new static variable of type TYPE. */
1111 tree add_new_static_var (tree type);
1112
1113 /* Return true if iterator CSI points to nothing. */
1114 static inline bool
1115 csi_end_p (cgraph_node_set_iterator csi)
1116 {
1117 return csi.index >= csi.set->nodes.length ();
1118 }
1119
1120 /* Advance iterator CSI. */
1121 static inline void
1122 csi_next (cgraph_node_set_iterator *csi)
1123 {
1124 csi->index++;
1125 }
1126
1127 /* Return the node pointed to by CSI. */
1128 static inline struct cgraph_node *
1129 csi_node (cgraph_node_set_iterator csi)
1130 {
1131 return csi.set->nodes[csi.index];
1132 }
1133
1134 /* Return an iterator to the first node in SET. */
1135 static inline cgraph_node_set_iterator
1136 csi_start (cgraph_node_set set)
1137 {
1138 cgraph_node_set_iterator csi;
1139
1140 csi.set = set;
1141 csi.index = 0;
1142 return csi;
1143 }
1144
1145 /* Return true if SET contains NODE. */
1146 static inline bool
1147 cgraph_node_in_set_p (struct cgraph_node *node, cgraph_node_set set)
1148 {
1149 cgraph_node_set_iterator csi;
1150 csi = cgraph_node_set_find (set, node);
1151 return !csi_end_p (csi);
1152 }
1153
1154 /* Return number of nodes in SET. */
1155 static inline size_t
1156 cgraph_node_set_size (cgraph_node_set set)
1157 {
1158 return set->nodes.length ();
1159 }
1160
1161 /* Return true if iterator VSI points to nothing. */
1162 static inline bool
1163 vsi_end_p (varpool_node_set_iterator vsi)
1164 {
1165 return vsi.index >= vsi.set->nodes.length ();
1166 }
1167
1168 /* Advance iterator VSI. */
1169 static inline void
1170 vsi_next (varpool_node_set_iterator *vsi)
1171 {
1172 vsi->index++;
1173 }
1174
1175 /* Return the node pointed to by VSI. */
1176 static inline struct varpool_node *
1177 vsi_node (varpool_node_set_iterator vsi)
1178 {
1179 return vsi.set->nodes[vsi.index];
1180 }
1181
1182 /* Return an iterator to the first node in SET. */
1183 static inline varpool_node_set_iterator
1184 vsi_start (varpool_node_set set)
1185 {
1186 varpool_node_set_iterator vsi;
1187
1188 vsi.set = set;
1189 vsi.index = 0;
1190 return vsi;
1191 }
1192
1193 /* Return true if SET contains NODE. */
1194 static inline bool
1195 varpool_node_in_set_p (struct varpool_node *node, varpool_node_set set)
1196 {
1197 varpool_node_set_iterator vsi;
1198 vsi = varpool_node_set_find (set, node);
1199 return !vsi_end_p (vsi);
1200 }
1201
1202 /* Return number of nodes in SET. */
1203 static inline size_t
1204 varpool_node_set_size (varpool_node_set set)
1205 {
1206 return set->nodes.length ();
1207 }
1208
1209 /* Uniquize all constants that appear in memory.
1210 Each constant in memory thus far output is recorded
1211 in `const_desc_table'. */
1212
1213 struct GTY(()) constant_descriptor_tree {
1214 /* A MEM for the constant. */
1215 rtx rtl;
1216
1217 /* The value of the constant. */
1218 tree value;
1219
1220 /* Hash of value. Computing the hash from value each time
1221 hashfn is called can't work properly, as that means recursive
1222 use of the hash table during hash table expansion. */
1223 hashval_t hash;
1224 };
1225
1226 /* Return true if set is nonempty. */
1227 static inline bool
1228 cgraph_node_set_nonempty_p (cgraph_node_set set)
1229 {
1230 return !set->nodes.is_empty ();
1231 }
1232
1233 /* Return true if set is nonempty. */
1234 static inline bool
1235 varpool_node_set_nonempty_p (varpool_node_set set)
1236 {
1237 return !set->nodes.is_empty ();
1238 }
1239
1240 /* Return true when function NODE is only called directly or it has alias.
1241 i.e. it is not externally visible, address was not taken and
1242 it is not used in any other non-standard way. */
1243
1244 static inline bool
1245 cgraph_only_called_directly_or_aliased_p (struct cgraph_node *node)
1246 {
1247 gcc_assert (!node->global.inlined_to);
1248 return (!node->force_output && !node->address_taken
1249 && !node->used_from_other_partition
1250 && !DECL_VIRTUAL_P (node->decl)
1251 && !DECL_STATIC_CONSTRUCTOR (node->decl)
1252 && !DECL_STATIC_DESTRUCTOR (node->decl)
1253 && !node->externally_visible);
1254 }
1255
1256 /* Return true when function NODE can be removed from callgraph
1257 if all direct calls are eliminated. */
1258
1259 static inline bool
1260 varpool_can_remove_if_no_refs (struct varpool_node *node)
1261 {
1262 if (DECL_EXTERNAL (node->decl))
1263 return true;
1264 return (!node->force_output && !node->used_from_other_partition
1265 && ((DECL_COMDAT (node->decl)
1266 && !node->forced_by_abi
1267 && !symtab_used_from_object_file_p (node))
1268 || !node->externally_visible
1269 || DECL_HAS_VALUE_EXPR_P (node->decl)));
1270 }
1271
1272 /* Return true when all references to VNODE must be visible in ipa_ref_list.
1273 i.e. if the variable is not externally visible or not used in some magic
1274 way (asm statement or such).
1275 The magic uses are all summarized in force_output flag. */
1276
1277 static inline bool
1278 varpool_all_refs_explicit_p (struct varpool_node *vnode)
1279 {
1280 return (vnode->definition
1281 && !vnode->externally_visible
1282 && !vnode->used_from_other_partition
1283 && !vnode->force_output);
1284 }
1285
1286 /* Constant pool accessor function. */
1287 htab_t constant_pool_htab (void);
1288
1289 /* FIXME: inappropriate dependency of cgraph on IPA. */
1290 #include "ipa-ref-inline.h"
1291
1292 /* Return node that alias N is aliasing. */
1293
1294 static inline symtab_node *
1295 symtab_alias_target (symtab_node *n)
1296 {
1297 struct ipa_ref *ref;
1298 ipa_ref_list_reference_iterate (&n->ref_list, 0, ref);
1299 gcc_checking_assert (ref->use == IPA_REF_ALIAS);
1300 return ref->referred;
1301 }
1302
1303 static inline struct cgraph_node *
1304 cgraph_alias_target (struct cgraph_node *n)
1305 {
1306 return dyn_cast <cgraph_node> (symtab_alias_target (n));
1307 }
1308
1309 static inline struct varpool_node *
1310 varpool_alias_target (struct varpool_node *n)
1311 {
1312 return dyn_cast <varpool_node> (symtab_alias_target (n));
1313 }
1314
1315 /* Given NODE, walk the alias chain to return the function NODE is alias of.
1316 Do not walk through thunks.
1317 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
1318
1319 static inline struct cgraph_node *
1320 cgraph_function_or_thunk_node (struct cgraph_node *node,
1321 enum availability *availability = NULL)
1322 {
1323 struct cgraph_node *n;
1324
1325 n = dyn_cast <cgraph_node> (symtab_alias_ultimate_target (node,
1326 availability));
1327 if (!n && availability)
1328 *availability = AVAIL_NOT_AVAILABLE;
1329 return n;
1330 }
1331 /* Given NODE, walk the alias chain to return the function NODE is alias of.
1332 Do not walk through thunks.
1333 When AVAILABILITY is non-NULL, get minimal availability in the chain. */
1334
1335 static inline struct varpool_node *
1336 varpool_variable_node (struct varpool_node *node,
1337 enum availability *availability = NULL)
1338 {
1339 struct varpool_node *n;
1340
1341 n = dyn_cast <varpool_node> (symtab_alias_ultimate_target (node,
1342 availability));
1343 if (!n && availability)
1344 *availability = AVAIL_NOT_AVAILABLE;
1345 return n;
1346 }
1347
1348 /* Return true when the edge E represents a direct recursion. */
1349 static inline bool
1350 cgraph_edge_recursive_p (struct cgraph_edge *e)
1351 {
1352 struct cgraph_node *callee = cgraph_function_or_thunk_node (e->callee, NULL);
1353 if (e->caller->global.inlined_to)
1354 return e->caller->global.inlined_to->decl == callee->decl;
1355 else
1356 return e->caller->decl == callee->decl;
1357 }
1358
1359 /* Return true if the TM_CLONE bit is set for a given FNDECL. */
1360 static inline bool
1361 decl_is_tm_clone (const_tree fndecl)
1362 {
1363 struct cgraph_node *n = cgraph_get_node (fndecl);
1364 if (n)
1365 return n->tm_clone;
1366 return false;
1367 }
1368
1369 /* Likewise indicate that a node is needed, i.e. reachable via some
1370 external means. */
1371
1372 static inline void
1373 cgraph_mark_force_output_node (struct cgraph_node *node)
1374 {
1375 node->force_output = 1;
1376 gcc_checking_assert (!node->global.inlined_to);
1377 }
1378
1379 /* Return true when the symbol is real symbol, i.e. it is not inline clone
1380 or abstract function kept for debug info purposes only. */
1381
1382 static inline bool
1383 symtab_real_symbol_p (symtab_node *node)
1384 {
1385 struct cgraph_node *cnode;
1386
1387 if (DECL_ABSTRACT (node->decl))
1388 return false;
1389 if (!is_a <cgraph_node> (node))
1390 return true;
1391 cnode = cgraph (node);
1392 if (cnode->global.inlined_to)
1393 return false;
1394 return true;
1395 }
1396
1397 /* Return true if NODE can be discarded by linker from the binary. */
1398
1399 static inline bool
1400 symtab_can_be_discarded (symtab_node *node)
1401 {
1402 return (DECL_EXTERNAL (node->decl)
1403 || (DECL_ONE_ONLY (node->decl)
1404 && node->resolution != LDPR_PREVAILING_DEF
1405 && node->resolution != LDPR_PREVAILING_DEF_IRONLY
1406 && node->resolution != LDPR_PREVAILING_DEF_IRONLY_EXP));
1407 }
1408 #endif /* GCC_CGRAPH_H */