Fix oversight in handling of reverse SSO in SRA pass
[official-gcc.git] / gcc / cgraph.h
blobd54a258c2ee3f33ab542c988a03e6bdcc4dfbeaa
1 /* Callgraph handling code.
2 Copyright (C) 2003-2021 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
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.
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/>. */
21 #ifndef GCC_CGRAPH_H
22 #define GCC_CGRAPH_H
24 #include "profile-count.h"
25 #include "ipa-ref.h"
26 #include "plugin-api.h"
27 #include "ipa-param-manipulation.h"
29 extern void debuginfo_early_init (void);
30 extern void debuginfo_init (void);
31 extern void debuginfo_fini (void);
32 extern void debuginfo_start (void);
33 extern void debuginfo_stop (void);
34 extern void debuginfo_early_start (void);
35 extern void debuginfo_early_stop (void);
37 class ipa_opt_pass_d;
38 typedef ipa_opt_pass_d *ipa_opt_pass;
40 /* Symbol table consists of functions and variables.
41 TODO: add labels and CONST_DECLs. */
42 enum symtab_type
44 SYMTAB_SYMBOL,
45 SYMTAB_FUNCTION,
46 SYMTAB_VARIABLE
49 /* Section names are stored as reference counted strings in GGC safe hashtable
50 (to make them survive through PCH). */
52 struct GTY((for_user)) section_hash_entry
54 int ref_count;
55 char *name; /* As long as this datastructure stays in GGC, we cannot put
56 string at the tail of structure of GGC dies in horrible
57 way */
60 struct section_name_hasher : ggc_ptr_hash<section_hash_entry>
62 typedef const char *compare_type;
64 static hashval_t hash (section_hash_entry *);
65 static bool equal (section_hash_entry *, const char *);
68 enum availability
70 /* Not yet set by cgraph_function_body_availability. */
71 AVAIL_UNSET,
72 /* Function body/variable initializer is unknown. */
73 AVAIL_NOT_AVAILABLE,
74 /* Function body/variable initializer is known but might be replaced
75 by a different one from other compilation unit and thus needs to
76 be dealt with a care. Like AVAIL_NOT_AVAILABLE it can have
77 arbitrary side effects on escaping variables and functions, while
78 like AVAILABLE it might access static variables. */
79 AVAIL_INTERPOSABLE,
80 /* Function body/variable initializer is known and will be used in final
81 program. */
82 AVAIL_AVAILABLE,
83 /* Function body/variable initializer is known and all it's uses are
84 explicitly visible within current unit (i.e. it's address is never taken
85 and it is not exported to other units). Currently used only for
86 functions. */
87 AVAIL_LOCAL
90 /* Classification of symbols WRT partitioning. */
91 enum symbol_partitioning_class
93 /* External declarations are ignored by partitioning algorithms and they are
94 added into the boundary later via compute_ltrans_boundary. */
95 SYMBOL_EXTERNAL,
96 /* Partitioned symbols are put into one of partitions. */
97 SYMBOL_PARTITION,
98 /* Duplicated symbols (such as comdat or constant pool references) are
99 copied into every node needing them via add_symbol_to_partition. */
100 SYMBOL_DUPLICATE
103 /* Base of all entries in the symbol table.
104 The symtab_node is inherited by cgraph and varpol nodes. */
105 struct GTY((desc ("%h.type"), tag ("SYMTAB_SYMBOL"),
106 chain_next ("%h.next"), chain_prev ("%h.previous")))
107 symtab_node
109 public:
110 friend class symbol_table;
112 /* Constructor. */
113 explicit symtab_node (symtab_type t)
114 : type (t), resolution (LDPR_UNKNOWN), definition (false), alias (false),
115 transparent_alias (false), weakref (false), cpp_implicit_alias (false),
116 symver (false), analyzed (false), writeonly (false),
117 refuse_visibility_changes (false), externally_visible (false),
118 no_reorder (false), force_output (false), forced_by_abi (false),
119 unique_name (false), implicit_section (false), body_removed (false),
120 used_from_other_partition (false), in_other_partition (false),
121 address_taken (false), in_init_priority_hash (false),
122 need_lto_streaming (false), offloadable (false), ifunc_resolver (false),
123 order (false), next_sharing_asm_name (NULL),
124 previous_sharing_asm_name (NULL), same_comdat_group (NULL), ref_list (),
125 alias_target (NULL), lto_file_data (NULL), aux (NULL),
126 x_comdat_group (NULL_TREE), x_section (NULL)
129 /* Return name. */
130 const char *name () const;
132 /* Return dump name. */
133 const char *dump_name () const;
135 /* Return asm name. */
136 const char *asm_name () const;
138 /* Return dump name with assembler name. */
139 const char *dump_asm_name () const;
141 /* Return visibility name. */
142 const char *get_visibility_string () const;
144 /* Return type_name name. */
145 const char *get_symtab_type_string () const;
147 /* Add node into symbol table. This function is not used directly, but via
148 cgraph/varpool node creation routines. */
149 void register_symbol (void);
151 /* Remove symbol from symbol table. */
152 void remove (void);
154 /* Dump symtab node to F. */
155 void dump (FILE *f);
157 /* Dump symtab callgraph in graphviz format. */
158 void dump_graphviz (FILE *f);
160 /* Dump symtab node to stderr. */
161 void DEBUG_FUNCTION debug (void);
163 /* Verify consistency of node. */
164 void DEBUG_FUNCTION verify (void);
166 /* Return ipa reference from this symtab_node to
167 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
168 of the use and STMT the statement (if it exists). */
169 ipa_ref *create_reference (symtab_node *referred_node,
170 enum ipa_ref_use use_type);
172 /* Return ipa reference from this symtab_node to
173 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
174 of the use and STMT the statement (if it exists). */
175 ipa_ref *create_reference (symtab_node *referred_node,
176 enum ipa_ref_use use_type, gimple *stmt);
178 /* If VAL is a reference to a function or a variable, add a reference from
179 this symtab_node to the corresponding symbol table node. Return the new
180 reference or NULL if none was created. */
181 ipa_ref *maybe_create_reference (tree val, gimple *stmt);
183 /* Clone all references from symtab NODE to this symtab_node. */
184 void clone_references (symtab_node *node);
186 /* Remove all stmt references in non-speculative references.
187 Those are not maintained during inlining & clonning.
188 The exception are speculative references that are updated along
189 with callgraph edges associated with them. */
190 void clone_referring (symtab_node *node);
192 /* Clone reference REF to this symtab_node and set its stmt to STMT. */
193 ipa_ref *clone_reference (ipa_ref *ref, gimple *stmt);
195 /* Find the structure describing a reference to REFERRED_NODE
196 and associated with statement STMT. */
197 ipa_ref *find_reference (symtab_node *referred_node, gimple *stmt,
198 unsigned int lto_stmt_uid);
200 /* Remove all references that are associated with statement STMT. */
201 void remove_stmt_references (gimple *stmt);
203 /* Remove all stmt references in non-speculative references.
204 Those are not maintained during inlining & clonning.
205 The exception are speculative references that are updated along
206 with callgraph edges associated with them. */
207 void clear_stmts_in_references (void);
209 /* Remove all references in ref list. */
210 void remove_all_references (void);
212 /* Remove all referring items in ref list. */
213 void remove_all_referring (void);
215 /* Dump references in ref list to FILE. */
216 void dump_references (FILE *file);
218 /* Dump referring in list to FILE. */
219 void dump_referring (FILE *);
221 /* Get number of references for this node. */
222 inline unsigned num_references (void)
224 return ref_list.references.length ();
227 /* Iterates I-th reference in the list, REF is also set. */
228 ipa_ref *iterate_reference (unsigned i, ipa_ref *&ref);
230 /* Iterates I-th referring item in the list, REF is also set. */
231 ipa_ref *iterate_referring (unsigned i, ipa_ref *&ref);
233 /* Iterates I-th referring alias item in the list, REF is also set. */
234 ipa_ref *iterate_direct_aliases (unsigned i, ipa_ref *&ref);
236 /* Return true if symtab node and TARGET represents
237 semantically equivalent symbols. */
238 bool semantically_equivalent_p (symtab_node *target);
240 /* Classify symbol symtab node for partitioning. */
241 enum symbol_partitioning_class get_partitioning_class (void);
243 /* Return comdat group. */
244 tree get_comdat_group ()
246 return x_comdat_group;
249 /* Return comdat group as identifier_node. */
250 tree get_comdat_group_id ()
252 if (x_comdat_group && TREE_CODE (x_comdat_group) != IDENTIFIER_NODE)
253 x_comdat_group = DECL_ASSEMBLER_NAME (x_comdat_group);
254 return x_comdat_group;
257 /* Set comdat group. */
258 void set_comdat_group (tree group)
260 gcc_checking_assert (!group || TREE_CODE (group) == IDENTIFIER_NODE
261 || DECL_P (group));
262 x_comdat_group = group;
265 /* Return section as string. */
266 const char * get_section () const
268 if (!x_section)
269 return NULL;
270 return x_section->name;
273 /* Remove node from same comdat group. */
274 void remove_from_same_comdat_group (void);
276 /* Add this symtab_node to the same comdat group that OLD is in. */
277 void add_to_same_comdat_group (symtab_node *old_node);
279 /* Dissolve the same_comdat_group list in which NODE resides. */
280 void dissolve_same_comdat_group_list (void);
282 /* Return true when symtab_node is known to be used from other (non-LTO)
283 object file. Known only when doing LTO via linker plugin. */
284 bool used_from_object_file_p (void);
286 /* Walk the alias chain to return the symbol NODE is alias of.
287 If NODE is not an alias, return NODE.
288 When AVAILABILITY is non-NULL, get minimal availability in the chain.
289 When REF is non-NULL, assume that reference happens in symbol REF
290 when determining the availability. */
291 symtab_node *ultimate_alias_target (enum availability *avail = NULL,
292 struct symtab_node *ref = NULL);
294 /* Return next reachable static symbol with initializer after NODE. */
295 inline symtab_node *next_defined_symbol (void);
297 /* Add reference recording that symtab node is alias of TARGET.
298 If TRANSPARENT is true make the alias to be transparent alias.
299 The function can fail in the case of aliasing cycles; in this case
300 it returns false. */
301 bool resolve_alias (symtab_node *target, bool transparent = false);
303 /* C++ FE sometimes change linkage flags after producing same
304 body aliases. */
305 void fixup_same_cpp_alias_visibility (symtab_node *target);
307 /* Call callback on symtab node and aliases associated to this node.
308 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
309 skipped. */
310 bool call_for_symbol_and_aliases (bool (*callback) (symtab_node *, void *),
311 void *data,
312 bool include_overwrite);
314 /* If node cannot be interposable by static or dynamic linker to point to
315 different definition, return this symbol. Otherwise look for alias with
316 such property and if none exists, introduce new one. */
317 symtab_node *noninterposable_alias (void);
319 /* Return node that alias is aliasing. */
320 inline symtab_node *get_alias_target (void);
322 /* Return DECL that alias is aliasing. */
323 inline tree get_alias_target_tree ();
325 /* Set section for symbol and its aliases. */
326 void set_section (const char *section);
328 /* Like set_section, but copying the section name from another node. */
329 void set_section (const symtab_node &other);
331 /* Set section, do not recurse into aliases.
332 When one wants to change section of symbol and its aliases,
333 use set_section. */
334 void set_section_for_node (const char *section);
336 /* Like set_section_for_node, but copying the section name from another
337 node. */
338 void set_section_for_node (const symtab_node &other);
340 /* Set initialization priority to PRIORITY. */
341 void set_init_priority (priority_type priority);
343 /* Return the initialization priority. */
344 priority_type get_init_priority ();
346 /* Return availability of NODE when referenced from REF. */
347 enum availability get_availability (symtab_node *ref = NULL);
349 /* During LTO stream-in this predicate can be used to check whether node
350 in question prevails in the linking to save some memory usage. */
351 bool prevailing_p (void);
353 /* Return true if NODE binds to current definition in final executable
354 when referenced from REF. If REF is NULL return conservative value
355 for any reference. */
356 bool binds_to_current_def_p (symtab_node *ref = NULL);
358 /* Make DECL local. */
359 void make_decl_local (void);
361 /* Copy visibility from N. */
362 void copy_visibility_from (symtab_node *n);
364 /* Return desired alignment of the definition. This is NOT alignment useful
365 to access THIS, because THIS may be interposable and DECL_ALIGN should
366 be used instead. It however must be guaranteed when output definition
367 of THIS. */
368 unsigned int definition_alignment ();
370 /* Return true if alignment can be increased. */
371 bool can_increase_alignment_p ();
373 /* Increase alignment of symbol to ALIGN. */
374 void increase_alignment (unsigned int align);
376 /* Return true if list contains an alias. */
377 bool has_aliases_p (void);
379 /* Return true when the symbol is real symbol, i.e. it is not inline clone
380 or abstract function kept for debug info purposes only. */
381 bool real_symbol_p (void);
383 /* Return true when the symbol needs to be output to the LTO symbol table. */
384 bool output_to_lto_symbol_table_p (void);
386 /* Determine if symbol declaration is needed. That is, visible to something
387 either outside this translation unit, something magic in the system
388 configury. This function is used just during symbol creation. */
389 bool needed_p (void);
391 /* Return true if this symbol is a function from the C frontend specified
392 directly in RTL form (with "__RTL"). */
393 bool native_rtl_p () const;
395 /* Return true when there are references to the node. */
396 bool referred_to_p (bool include_self = true);
398 /* Return true if symbol can be discarded by linker from the binary.
399 Assume that symbol is used (so there is no need to take into account
400 garbage collecting linkers)
402 This can happen for comdats, commons and weaks when they are prevailed
403 by other definition at static linking time. */
404 inline bool
405 can_be_discarded_p (void)
407 return (DECL_EXTERNAL (decl)
408 || ((get_comdat_group ()
409 || DECL_COMMON (decl)
410 || (DECL_SECTION_NAME (decl) && DECL_WEAK (decl)))
411 && ((resolution != LDPR_PREVAILING_DEF
412 && resolution != LDPR_PREVAILING_DEF_IRONLY_EXP)
413 || flag_incremental_link)
414 && resolution != LDPR_PREVAILING_DEF_IRONLY));
417 /* Return true if NODE is local to a particular COMDAT group, and must not
418 be named from outside the COMDAT. This is used for C++ decloned
419 constructors. */
420 inline bool comdat_local_p (void)
422 return (same_comdat_group && !TREE_PUBLIC (decl));
425 /* Return true if ONE and TWO are part of the same COMDAT group. */
426 inline bool in_same_comdat_group_p (symtab_node *target);
428 /* Return true if symbol is known to be nonzero. */
429 bool nonzero_address ();
431 /* Return 0 if symbol is known to have different address than S2,
432 Return 1 if symbol is known to have same address as S2,
433 return 2 otherwise.
435 If MEMORY_ACCESSED is true, assume that both memory pointer to THIS
436 and S2 is going to be accessed. This eliminates the situations when
437 either THIS or S2 is NULL and is useful for comparing bases when deciding
438 about memory aliasing. */
439 int equal_address_to (symtab_node *s2, bool memory_accessed = false);
441 /* Return true if symbol's address may possibly be compared to other
442 symbol's address. */
443 bool address_matters_p ();
445 /* Return true if NODE's address can be compared. This use properties
446 of NODE only and does not look if the address is actually taken in
447 interesting way. For that use ADDRESS_MATTERS_P instead. */
448 bool address_can_be_compared_p (void);
450 /* Return symbol table node associated with DECL, if any,
451 and NULL otherwise. */
452 static inline symtab_node *get (const_tree decl)
454 /* Check that we are called for sane type of object - functions
455 and static or external variables. */
456 gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL
457 || (TREE_CODE (decl) == VAR_DECL
458 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
459 || in_lto_p)));
460 /* Check that the mapping is sane - perhaps this check can go away,
461 but at the moment frontends tends to corrupt the mapping by calling
462 memcpy/memset on the tree nodes. */
463 gcc_checking_assert (!decl->decl_with_vis.symtab_node
464 || decl->decl_with_vis.symtab_node->decl == decl);
465 return decl->decl_with_vis.symtab_node;
468 /* Try to find a symtab node for declaration DECL and if it does not
469 exist or if it corresponds to an inline clone, create a new one. */
470 static inline symtab_node * get_create (tree node);
472 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
473 Return NULL if there's no such node. */
474 static symtab_node *get_for_asmname (const_tree asmname);
476 /* Verify symbol table for internal consistency. */
477 static DEBUG_FUNCTION void verify_symtab_nodes (void);
479 /* Perform internal consistency checks, if they are enabled. */
480 static inline void checking_verify_symtab_nodes (void);
482 /* Type of the symbol. */
483 ENUM_BITFIELD (symtab_type) type : 8;
485 /* The symbols resolution. */
486 ENUM_BITFIELD (ld_plugin_symbol_resolution) resolution : 8;
488 /*** Flags representing the symbol type. ***/
490 /* True when symbol corresponds to a definition in current unit.
491 set via finalize_function or finalize_decl */
492 unsigned definition : 1;
493 /* True when symbol is an alias.
494 Set by assemble_alias. */
495 unsigned alias : 1;
496 /* When true the alias is translated into its target symbol either by GCC
497 or assembler (it also may just be a duplicate declaration of the same
498 linker name).
500 Currently transparent aliases come in three different flavors
501 - aliases having the same assembler name as their target (aka duplicated
502 declarations). In this case the assembler names compare via
503 assembler_names_equal_p and weakref is false
504 - aliases that are renamed at a time being output to final file
505 by varasm.c. For those DECL_ASSEMBLER_NAME have
506 IDENTIFIER_TRANSPARENT_ALIAS set and thus also their assembler
507 name must be unique.
508 Weakrefs belong to this category when we target assembler without
509 .weakref directive.
510 - weakrefs that are renamed by assembler via .weakref directive.
511 In this case the alias may or may not be definition (depending if
512 target declaration was seen by the compiler), weakref is set.
513 Unless we are before renaming statics, assembler names are different.
515 Given that we now support duplicate declarations, the second option is
516 redundant and will be removed. */
517 unsigned transparent_alias : 1;
518 /* True when alias is a weakref. */
519 unsigned weakref : 1;
520 /* C++ frontend produce same body aliases and extra name aliases for
521 virtual functions and vtables that are obviously equivalent.
522 Those aliases are bit special, especially because C++ frontend
523 visibility code is so ugly it cannot get them right at first time
524 and their visibility needs to be copied from their "masters" at
525 the end of parsing. */
526 unsigned cpp_implicit_alias : 1;
527 /* The alias is a symbol version. */
528 unsigned symver : 1;
529 /* Set once the definition was analyzed. The list of references and
530 other properties are built during analysis. */
531 unsigned analyzed : 1;
532 /* Set for write-only variables. */
533 unsigned writeonly : 1;
534 /* Visibility of symbol was used for further optimization; do not
535 permit further changes. */
536 unsigned refuse_visibility_changes : 1;
538 /*** Visibility and linkage flags. ***/
540 /* Set when function is visible by other units. */
541 unsigned externally_visible : 1;
542 /* Don't reorder to other symbols having this set. */
543 unsigned no_reorder : 1;
544 /* The symbol will be assumed to be used in an invisible way (like
545 by an toplevel asm statement). */
546 unsigned force_output : 1;
547 /* Like FORCE_OUTPUT, but in the case it is ABI requiring the symbol to be
548 exported. Unlike FORCE_OUTPUT this flag gets cleared to symbols promoted
549 to static and it does not inhibit optimization. */
550 unsigned forced_by_abi : 1;
551 /* True when the name is known to be unique and thus it does not need mangling. */
552 unsigned unique_name : 1;
553 /* Specify whether the section was set by user or by
554 compiler via -ffunction-sections. */
555 unsigned implicit_section : 1;
556 /* True when body and other characteristics have been removed by
557 symtab_remove_unreachable_nodes. */
558 unsigned body_removed : 1;
560 /*** WHOPR Partitioning flags.
561 These flags are used at ltrans stage when only part of the callgraph is
562 available. ***/
564 /* Set when variable is used from other LTRANS partition. */
565 unsigned used_from_other_partition : 1;
566 /* Set when function is available in the other LTRANS partition.
567 During WPA output it is used to mark nodes that are present in
568 multiple partitions. */
569 unsigned in_other_partition : 1;
573 /*** other flags. ***/
575 /* Set when symbol has address taken. */
576 unsigned address_taken : 1;
577 /* Set when init priority is set. */
578 unsigned in_init_priority_hash : 1;
580 /* Set when symbol needs to be streamed into LTO bytecode for LTO, or in case
581 of offloading, for separate compilation for a different target. */
582 unsigned need_lto_streaming : 1;
584 /* Set when symbol can be streamed into bytecode for offloading. */
585 unsigned offloadable : 1;
587 /* Set when symbol is an IFUNC resolver. */
588 unsigned ifunc_resolver : 1;
591 /* Ordering of all symtab entries. */
592 int order;
594 /* Declaration representing the symbol. */
595 tree decl;
597 /* Linked list of symbol table entries starting with symtab_nodes. */
598 symtab_node *next;
599 symtab_node *previous;
601 /* Linked list of symbols with the same asm name. There may be multiple
602 entries for single symbol name during LTO, because symbols are renamed
603 only after partitioning.
605 Because inline clones are kept in the assembler name has, they also produce
606 duplicate entries.
608 There are also several long standing bugs where frontends and builtin
609 code produce duplicated decls. */
610 symtab_node *next_sharing_asm_name;
611 symtab_node *previous_sharing_asm_name;
613 /* Circular list of nodes in the same comdat group if non-NULL. */
614 symtab_node *same_comdat_group;
616 /* Vectors of referring and referenced entities. */
617 ipa_ref_list GTY((skip)) ref_list;
619 /* Alias target. May be either DECL pointer or ASSEMBLER_NAME pointer
620 depending to what was known to frontend on the creation time.
621 Once alias is resolved, this pointer become NULL. */
622 tree alias_target;
624 /* File stream where this node is being written to. */
625 struct lto_file_decl_data * lto_file_data;
627 PTR GTY ((skip)) aux;
629 /* Comdat group the symbol is in. Can be private if GGC allowed that. */
630 tree x_comdat_group;
632 /* Section name. Again can be private, if allowed. */
633 section_hash_entry *x_section;
635 protected:
636 /* Dump base fields of symtab nodes to F. Not to be used directly. */
637 void dump_base (FILE *);
639 /* Verify common part of symtab node. */
640 bool DEBUG_FUNCTION verify_base (void);
642 /* Remove node from symbol table. This function is not used directly, but via
643 cgraph/varpool node removal routines. */
644 void unregister (struct clone_info *);
646 /* Return the initialization and finalization priority information for
647 DECL. If there is no previous priority information, a freshly
648 allocated structure is returned. */
649 struct symbol_priority_map *priority_info (void);
651 /* Worker for call_for_symbol_and_aliases_1. */
652 bool call_for_symbol_and_aliases_1 (bool (*callback) (symtab_node *, void *),
653 void *data,
654 bool include_overwrite);
655 private:
656 /* Workers for set_section. */
657 static bool set_section_from_string (symtab_node *n, void *s);
658 static bool set_section_from_node (symtab_node *n, void *o);
660 /* Worker for symtab_resolve_alias. */
661 static bool set_implicit_section (symtab_node *n, void *);
663 /* Worker searching noninterposable alias. */
664 static bool noninterposable_alias (symtab_node *node, void *data);
666 /* Worker for ultimate_alias_target. */
667 symtab_node *ultimate_alias_target_1 (enum availability *avail = NULL,
668 symtab_node *ref = NULL);
670 /* Get dump name with normal or assembly name. */
671 const char *get_dump_name (bool asm_name_p) const;
674 inline void
675 symtab_node::checking_verify_symtab_nodes (void)
677 if (flag_checking)
678 symtab_node::verify_symtab_nodes ();
681 /* Walk all aliases for NODE. */
682 #define FOR_EACH_ALIAS(NODE, ALIAS) \
683 for (unsigned ALIAS##_iter_ = 0; \
684 (NODE)->iterate_direct_aliases (ALIAS##_iter_, ALIAS); \
685 ALIAS##_iter_++)
687 /* This is the information that is put into the cgraph local structure
688 to recover a function. */
689 struct lto_file_decl_data;
691 extern const char * const cgraph_availability_names[];
692 extern const char * const ld_plugin_symbol_resolution_names[];
693 extern const char * const tls_model_names[];
695 /* Represent which DECL tree (or reference to such tree)
696 will be replaced by another tree while versioning. */
697 struct GTY(()) ipa_replace_map
699 /* The new (replacing) tree. */
700 tree new_tree;
701 /* Parameter number to replace, when old_tree is NULL. */
702 int parm_num;
703 /* Set if the newly added reference should not be an address one, but a load
704 one from the operand of the ADDR_EXPR in NEW_TREE. This is for cases when
705 the corresponding parameter p is used only as *p. */
706 unsigned force_load_ref : 1;
709 enum cgraph_simd_clone_arg_type
711 SIMD_CLONE_ARG_TYPE_VECTOR,
712 SIMD_CLONE_ARG_TYPE_UNIFORM,
713 /* These are only for integer/pointer arguments passed by value. */
714 SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP,
715 SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP,
716 /* These 6 are only for reference type arguments or arguments passed
717 by reference. */
718 SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP,
719 SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP,
720 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP,
721 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP,
722 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP,
723 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP,
724 SIMD_CLONE_ARG_TYPE_MASK
727 /* Function arguments in the original function of a SIMD clone.
728 Supplementary data for `struct simd_clone'. */
730 struct GTY(()) cgraph_simd_clone_arg {
731 /* Original function argument as it originally existed in
732 DECL_ARGUMENTS. */
733 tree orig_arg;
735 /* orig_arg's function (or for extern functions type from
736 TYPE_ARG_TYPES). */
737 tree orig_type;
739 /* If argument is a vector, this holds the vector version of
740 orig_arg that after adjusting the argument types will live in
741 DECL_ARGUMENTS. Otherwise, this is NULL.
743 This basically holds:
744 vector(simdlen) __typeof__(orig_arg) new_arg. */
745 tree vector_arg;
747 /* vector_arg's type (or for extern functions new vector type. */
748 tree vector_type;
750 /* If argument is a vector, this holds the array where the simd
751 argument is held while executing the simd clone function. This
752 is a local variable in the cloned function. Its content is
753 copied from vector_arg upon entry to the clone.
755 This basically holds:
756 __typeof__(orig_arg) simd_array[simdlen]. */
757 tree simd_array;
759 /* A SIMD clone's argument can be either linear (constant or
760 variable), uniform, or vector. */
761 enum cgraph_simd_clone_arg_type arg_type;
763 /* For arg_type SIMD_CLONE_ARG_TYPE_LINEAR_*CONSTANT_STEP this is
764 the constant linear step, if arg_type is
765 SIMD_CLONE_ARG_TYPE_LINEAR_*VARIABLE_STEP, this is index of
766 the uniform argument holding the step, otherwise 0. */
767 HOST_WIDE_INT linear_step;
769 /* Variable alignment if available, otherwise 0. */
770 unsigned int alignment;
773 /* Specific data for a SIMD function clone. */
775 struct GTY(()) cgraph_simd_clone {
776 /* Number of words in the SIMD lane associated with this clone. */
777 poly_uint64 simdlen;
779 /* Number of annotated function arguments in `args'. This is
780 usually the number of named arguments in FNDECL. */
781 unsigned int nargs;
783 /* Max hardware vector size in bits for integral vectors. */
784 poly_uint64 vecsize_int;
786 /* Max hardware vector size in bits for floating point vectors. */
787 poly_uint64 vecsize_float;
789 /* Machine mode of the mask argument(s), if they are to be passed
790 as bitmasks in integer argument(s). VOIDmode if masks are passed
791 as vectors of characteristic type. */
792 machine_mode mask_mode;
794 /* The mangling character for a given vector size. This is used
795 to determine the ISA mangling bit as specified in the Intel
796 Vector ABI. */
797 unsigned char vecsize_mangle;
799 /* True if this is the masked, in-branch version of the clone,
800 otherwise false. */
801 unsigned int inbranch : 1;
803 /* Doubly linked list of SIMD clones. */
804 cgraph_node *prev_clone, *next_clone;
806 /* Original cgraph node the SIMD clones were created for. */
807 cgraph_node *origin;
809 /* Annotated function arguments for the original function. */
810 cgraph_simd_clone_arg GTY((length ("%h.nargs"))) args[1];
813 /* Function Multiversioning info. */
814 struct GTY((for_user)) cgraph_function_version_info {
815 /* The cgraph_node for which the function version info is stored. */
816 cgraph_node *this_node;
817 /* Chains all the semantically identical function versions. The
818 first function in this chain is the version_info node of the
819 default function. */
820 cgraph_function_version_info *prev;
821 /* If this version node corresponds to a dispatcher for function
822 versions, this points to the version info node of the default
823 function, the first node in the chain. */
824 cgraph_function_version_info *next;
825 /* If this node corresponds to a function version, this points
826 to the dispatcher function decl, which is the function that must
827 be called to execute the right function version at run-time.
829 If this cgraph node is a dispatcher (if dispatcher_function is
830 true, in the cgraph_node struct) for function versions, this
831 points to resolver function, which holds the function body of the
832 dispatcher. The dispatcher decl is an alias to the resolver
833 function decl. */
834 tree dispatcher_resolver;
837 #define DEFCIFCODE(code, type, string) CIF_ ## code,
838 /* Reasons for inlining failures. */
840 enum cgraph_inline_failed_t {
841 #include "cif-code.def"
842 CIF_N_REASONS
845 enum cgraph_inline_failed_type_t
847 CIF_FINAL_NORMAL = 0,
848 CIF_FINAL_ERROR
851 struct cgraph_edge;
853 struct cgraph_edge_hasher : ggc_ptr_hash<cgraph_edge>
855 typedef gimple *compare_type;
857 static hashval_t hash (cgraph_edge *);
858 static hashval_t hash (gimple *);
859 static bool equal (cgraph_edge *, gimple *);
862 /* The cgraph data structure.
863 Each function decl has assigned cgraph_node listing callees and callers. */
865 struct GTY((tag ("SYMTAB_FUNCTION"))) cgraph_node : public symtab_node
867 friend class symbol_table;
869 /* Constructor. */
870 explicit cgraph_node (int uid)
871 : symtab_node (SYMTAB_FUNCTION), callees (NULL), callers (NULL),
872 indirect_calls (NULL),
873 next_sibling_clone (NULL), prev_sibling_clone (NULL), clones (NULL),
874 clone_of (NULL), call_site_hash (NULL), former_clone_of (NULL),
875 simdclone (NULL), simd_clones (NULL), ipa_transforms_to_apply (vNULL),
876 inlined_to (NULL), rtl (NULL),
877 count (profile_count::uninitialized ()),
878 count_materialization_scale (REG_BR_PROB_BASE), profile_id (0),
879 unit_id (0), tp_first_run (0), thunk (false),
880 used_as_abstract_origin (false),
881 lowered (false), process (false), frequency (NODE_FREQUENCY_NORMAL),
882 only_called_at_startup (false), only_called_at_exit (false),
883 tm_clone (false), dispatcher_function (false), calls_comdat_local (false),
884 icf_merged (false), nonfreeing_fn (false), merged_comdat (false),
885 merged_extern_inline (false), parallelized_function (false),
886 split_part (false), indirect_call_target (false), local (false),
887 versionable (false), can_change_signature (false),
888 redefined_extern_inline (false), tm_may_enter_irr (false),
889 ipcp_clone (false), declare_variant_alt (false),
890 calls_declare_variant_alt (false), m_uid (uid), m_summary_id (-1)
893 /* Remove the node from cgraph and all inline clones inlined into it.
894 Skip however removal of FORBIDDEN_NODE and return true if it needs to be
895 removed. This allows to call the function from outer loop walking clone
896 tree. */
897 bool remove_symbol_and_inline_clones (cgraph_node *forbidden_node = NULL);
899 /* Record all references from cgraph_node that are taken
900 in statement STMT. */
901 void record_stmt_references (gimple *stmt);
903 /* Like cgraph_set_call_stmt but walk the clone tree and update all
904 clones sharing the same function body.
905 When WHOLE_SPECULATIVE_EDGES is true, all three components of
906 speculative edge gets updated. Otherwise we update only direct
907 call. */
908 void set_call_stmt_including_clones (gimple *old_stmt, gcall *new_stmt,
909 bool update_speculative = true);
911 /* Walk the alias chain to return the function cgraph_node is alias of.
912 Walk through thunk, too.
913 When AVAILABILITY is non-NULL, get minimal availability in the chain.
914 When REF is non-NULL, assume that reference happens in symbol REF
915 when determining the availability. */
916 cgraph_node *function_symbol (enum availability *avail = NULL,
917 struct symtab_node *ref = NULL);
919 /* Walk the alias chain to return the function cgraph_node is alias of.
920 Walk through non virtual thunks, too. Thus we return either a function
921 or a virtual thunk node.
922 When AVAILABILITY is non-NULL, get minimal availability in the chain.
923 When REF is non-NULL, assume that reference happens in symbol REF
924 when determining the availability. */
925 cgraph_node *function_or_virtual_thunk_symbol
926 (enum availability *avail = NULL,
927 struct symtab_node *ref = NULL);
929 /* Create node representing clone of N executed COUNT times. Decrease
930 the execution counts from original node too.
931 The new clone will have decl set to DECL that may or may not be the same
932 as decl of N.
934 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
935 function's profile to reflect the fact that part of execution is handled
936 by node.
937 When CALL_DUPLICATION_HOOK is true, the ipa passes are acknowledged about
938 the new clone. Otherwise the caller is responsible for doing so later.
940 If the new node is being inlined into another one, NEW_INLINED_TO should be
941 the outline function the new one is (even indirectly) inlined to.
942 All hooks will see this in node's inlined_to, when invoked.
943 Can be NULL if the node is not inlined. SUFFIX is string that is appended
944 to the original name. */
945 cgraph_node *create_clone (tree decl, profile_count count,
946 bool update_original,
947 vec<cgraph_edge *> redirect_callers,
948 bool call_duplication_hook,
949 cgraph_node *new_inlined_to,
950 ipa_param_adjustments *param_adjustments,
951 const char *suffix = NULL);
953 /* Create callgraph node clone with new declaration. The actual body will be
954 copied later at compilation stage. The name of the new clone will be
955 constructed from the name of the original node, SUFFIX and NUM_SUFFIX. */
956 cgraph_node *create_virtual_clone (const vec<cgraph_edge *> &redirect_callers,
957 vec<ipa_replace_map *, va_gc> *tree_map,
958 ipa_param_adjustments *param_adjustments,
959 const char * suffix, unsigned num_suffix);
961 /* Remove the node from the tree of virtual and inline clones and make it a
962 standalone node - not a clone any more. */
963 void remove_from_clone_tree ();
965 /* cgraph node being removed from symbol table; see if its entry can be
966 replaced by other inline clone. */
967 cgraph_node *find_replacement (struct clone_info *);
969 /* Create a new cgraph node which is the new version of
970 callgraph node. REDIRECT_CALLERS holds the callers
971 edges which should be redirected to point to
972 NEW_VERSION. ALL the callees edges of the node
973 are cloned to the new version node. Return the new
974 version node.
976 If non-NULL BLOCK_TO_COPY determine what basic blocks
977 was copied to prevent duplications of calls that are dead
978 in the clone.
980 SUFFIX is string that is appended to the original name. */
982 cgraph_node *create_version_clone (tree new_decl,
983 vec<cgraph_edge *> redirect_callers,
984 bitmap bbs_to_copy,
985 const char *suffix = NULL);
987 /* Perform function versioning.
988 Function versioning includes copying of the tree and
989 a callgraph update (creating a new cgraph node and updating
990 its callees and callers).
992 REDIRECT_CALLERS varray includes the edges to be redirected
993 to the new version.
995 TREE_MAP is a mapping of tree nodes we want to replace with
996 new ones (according to results of prior analysis).
998 If non-NULL ARGS_TO_SKIP determine function parameters to remove
999 from new version.
1000 If SKIP_RETURN is true, the new version will return void.
1001 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
1002 If non_NULL NEW_ENTRY determine new entry BB of the clone.
1004 If TARGET_ATTRIBUTES is non-null, when creating a new declaration,
1005 add the attributes to DECL_ATTRIBUTES. And call valid_attribute_p
1006 that will promote value of the attribute DECL_FUNCTION_SPECIFIC_TARGET
1007 of the declaration.
1009 Return the new version's cgraph node. */
1010 cgraph_node *create_version_clone_with_body
1011 (vec<cgraph_edge *> redirect_callers,
1012 vec<ipa_replace_map *, va_gc> *tree_map,
1013 ipa_param_adjustments *param_adjustments,
1014 bitmap bbs_to_copy, basic_block new_entry_block, const char *clone_name,
1015 tree target_attributes = NULL_TREE);
1017 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
1018 corresponding to cgraph_node. */
1019 cgraph_function_version_info *insert_new_function_version (void);
1021 /* Get the cgraph_function_version_info node corresponding to node. */
1022 cgraph_function_version_info *function_version (void);
1024 /* Discover all functions and variables that are trivially needed, analyze
1025 them as well as all functions and variables referred by them */
1026 void analyze (void);
1028 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
1029 aliases DECL with an adjustments made into the first parameter.
1030 See comments in struct symtab-thunks.h for detail on the parameters. */
1031 cgraph_node * create_thunk (tree alias, tree, bool this_adjusting,
1032 HOST_WIDE_INT fixed_offset,
1033 HOST_WIDE_INT virtual_value,
1034 HOST_WIDE_INT indirect_offset,
1035 tree virtual_offset,
1036 tree real_alias);
1039 /* Return node that alias is aliasing. */
1040 inline cgraph_node *get_alias_target (void);
1042 /* Given function symbol, walk the alias chain to return the function node
1043 is alias of. Do not walk through thunks.
1044 When AVAILABILITY is non-NULL, get minimal availability in the chain.
1045 When REF is non-NULL, assume that reference happens in symbol REF
1046 when determining the availability. */
1048 cgraph_node *ultimate_alias_target (availability *availability = NULL,
1049 symtab_node *ref = NULL);
1051 /* Call expand_thunk on all callers that are thunks and analyze those
1052 nodes that were expanded. */
1053 void expand_all_artificial_thunks ();
1055 /* Assemble thunks and aliases associated to node. */
1056 void assemble_thunks_and_aliases (void);
1058 /* Expand function specified by node. */
1059 void expand (void);
1061 /* As an GCC extension we allow redefinition of the function. The
1062 semantics when both copies of bodies differ is not well defined.
1063 We replace the old body with new body so in unit at a time mode
1064 we always use new body, while in normal mode we may end up with
1065 old body inlined into some functions and new body expanded and
1066 inlined in others. */
1067 void reset (void);
1069 /* Creates a wrapper from cgraph_node to TARGET node. Thunk is used for this
1070 kind of wrapper method. */
1071 void create_wrapper (cgraph_node *target);
1073 /* Verify cgraph nodes of the cgraph node. */
1074 void DEBUG_FUNCTION verify_node (void);
1076 /* Remove function from symbol table. */
1077 void remove (void);
1079 /* Dump call graph node to file F. */
1080 void dump (FILE *f);
1082 /* Dump call graph node to file F. */
1083 void dump_graphviz (FILE *f);
1085 /* Dump call graph node to stderr. */
1086 void DEBUG_FUNCTION debug (void);
1088 /* When doing LTO, read cgraph_node's body from disk if it is not already
1089 present. */
1090 bool get_untransformed_body ();
1092 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
1093 if it is not already present. When some IPA transformations are scheduled,
1094 apply them. */
1095 bool get_body ();
1097 void materialize_clone (void);
1099 /* Release memory used to represent body of function.
1100 Use this only for functions that are released before being translated to
1101 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1102 are free'd in final.c via free_after_compilation(). */
1103 void release_body (bool keep_arguments = false);
1105 /* Return the DECL_STRUCT_FUNCTION of the function. */
1106 struct function *get_fun () const;
1108 /* Bring cgraph node local. */
1109 void make_local (void);
1111 /* Likewise indicate that a node is having address taken. */
1112 void mark_address_taken (void);
1114 /* Set finalization priority to PRIORITY. */
1115 void set_fini_priority (priority_type priority);
1117 /* Return the finalization priority. */
1118 priority_type get_fini_priority (void);
1120 /* Create edge from a given function to CALLEE in the cgraph. */
1121 cgraph_edge *create_edge (cgraph_node *callee,
1122 gcall *call_stmt, profile_count count,
1123 bool cloning_p = false);
1125 /* Create an indirect edge with a yet-undetermined callee where the call
1126 statement destination is a formal parameter of the caller with index
1127 PARAM_INDEX. */
1128 cgraph_edge *create_indirect_edge (gcall *call_stmt, int ecf_flags,
1129 profile_count count,
1130 bool cloning_p = false);
1132 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
1133 same function body. If clones already have edge for OLD_STMT; only
1134 update the edge same way as cgraph_set_call_stmt_including_clones does. */
1135 void create_edge_including_clones (cgraph_node *callee,
1136 gimple *old_stmt, gcall *stmt,
1137 profile_count count,
1138 cgraph_inline_failed_t reason);
1140 /* Return the callgraph edge representing the GIMPLE_CALL statement
1141 CALL_STMT. */
1142 cgraph_edge *get_edge (gimple *call_stmt);
1144 /* Collect all callers of cgraph_node and its aliases that are known to lead
1145 to NODE (i.e. are not overwritable) and that are not thunks. */
1146 auto_vec<cgraph_edge *> collect_callers (void);
1148 /* Remove all callers from the node. */
1149 void remove_callers (void);
1151 /* Remove all callees from the node. */
1152 void remove_callees (void);
1154 /* Return function availability. See cgraph.h for description of individual
1155 return values. */
1156 enum availability get_availability (symtab_node *ref = NULL);
1158 /* Set TREE_NOTHROW on cgraph_node's decl and on aliases of the node
1159 if any to NOTHROW. */
1160 bool set_nothrow_flag (bool nothrow);
1162 /* SET DECL_IS_MALLOC on cgraph_node's decl and on aliases of the node
1163 if any. */
1164 bool set_malloc_flag (bool malloc_p);
1166 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
1167 If SET_CONST if false, clear the flag.
1169 When setting the flag be careful about possible interposition and
1170 do not set the flag for functions that can be interposed and set pure
1171 flag for functions that can bind to other definition.
1173 Return true if any change was done. */
1175 bool set_const_flag (bool set_const, bool looping);
1177 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
1178 if any to PURE.
1180 When setting the flag, be careful about possible interposition.
1181 Return true if any change was done. */
1183 bool set_pure_flag (bool pure, bool looping);
1185 /* Call callback on function and aliases associated to the function.
1186 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1187 skipped. */
1189 bool call_for_symbol_and_aliases (bool (*callback) (cgraph_node *,
1190 void *),
1191 void *data, bool include_overwritable);
1193 /* Call callback on cgraph_node, thunks and aliases associated to NODE.
1194 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1195 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
1196 skipped. */
1197 bool call_for_symbol_thunks_and_aliases (bool (*callback) (cgraph_node *node,
1198 void *data),
1199 void *data,
1200 bool include_overwritable,
1201 bool exclude_virtual_thunks = false);
1203 /* Likewise indicate that a node is needed, i.e. reachable via some
1204 external means. */
1205 inline void mark_force_output (void);
1207 /* Return true when function can be marked local. */
1208 bool local_p (void);
1210 /* Return true if cgraph_node can be made local for API change.
1211 Extern inline functions and C++ COMDAT functions can be made local
1212 at the expense of possible code size growth if function is used in multiple
1213 compilation units. */
1214 bool can_be_local_p (void);
1216 /* Return true when cgraph_node cannot return or throw and thus
1217 it is safe to ignore its side effects for IPA analysis. */
1218 bool cannot_return_p (void);
1220 /* Return true when function cgraph_node and all its aliases are only called
1221 directly.
1222 i.e. it is not externally visible, address was not taken and
1223 it is not used in any other non-standard way. */
1224 bool only_called_directly_p (void);
1226 /* Return true when function is only called directly or it has alias.
1227 i.e. it is not externally visible, address was not taken and
1228 it is not used in any other non-standard way. */
1229 inline bool only_called_directly_or_aliased_p (void);
1231 /* Return true when function cgraph_node can be expected to be removed
1232 from program when direct calls in this compilation unit are removed.
1234 As a special case COMDAT functions are
1235 cgraph_can_remove_if_no_direct_calls_p while the are not
1236 cgraph_only_called_directly_p (it is possible they are called from other
1237 unit)
1239 This function behaves as cgraph_only_called_directly_p because eliminating
1240 all uses of COMDAT function does not make it necessarily disappear from
1241 the program unless we are compiling whole program or we do LTO. In this
1242 case we know we win since dynamic linking will not really discard the
1243 linkonce section.
1245 If WILL_INLINE is true, assume that function will be inlined into all the
1246 direct calls. */
1247 bool will_be_removed_from_program_if_no_direct_calls_p
1248 (bool will_inline = false);
1250 /* Return true when function can be removed from callgraph
1251 if all direct calls and references are eliminated. The function does
1252 not take into account comdat groups. */
1253 bool can_remove_if_no_direct_calls_and_refs_p (void);
1255 /* Return true when function cgraph_node and its aliases can be removed from
1256 callgraph if all direct calls are eliminated.
1257 If WILL_INLINE is true, assume that function will be inlined into all the
1258 direct calls. */
1259 bool can_remove_if_no_direct_calls_p (bool will_inline = false);
1261 /* Return true when callgraph node is a function with Gimple body defined
1262 in current unit. Functions can also be define externally or they
1263 can be thunks with no Gimple representation.
1265 Note that at WPA stage, the function body may not be present in memory. */
1266 inline bool has_gimple_body_p (void);
1268 /* Return true if this node represents a former, i.e. an expanded, thunk. */
1269 bool former_thunk_p (void);
1271 /* Check if function calls comdat local. This is used to recompute
1272 calls_comdat_local flag after function transformations. */
1273 bool check_calls_comdat_local_p ();
1275 /* Return true if function should be optimized for size. */
1276 enum optimize_size_level optimize_for_size_p (void);
1278 /* Dump the callgraph to file F. */
1279 static void dump_cgraph (FILE *f);
1281 /* Dump the call graph to stderr. */
1282 static inline
1283 void debug_cgraph (void)
1285 dump_cgraph (stderr);
1288 /* Get unique identifier of the node. */
1289 inline int get_uid ()
1291 return m_uid;
1294 /* Get summary id of the node. */
1295 inline int get_summary_id ()
1297 return m_summary_id;
1300 /* Record that DECL1 and DECL2 are semantically identical function
1301 versions. */
1302 static void record_function_versions (tree decl1, tree decl2);
1304 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
1305 DECL is a duplicate declaration. */
1306 static void delete_function_version_by_decl (tree decl);
1308 /* Add the function FNDECL to the call graph.
1309 Unlike finalize_function, this function is intended to be used
1310 by middle end and allows insertion of new function at arbitrary point
1311 of compilation. The function can be either in high, low or SSA form
1312 GIMPLE.
1314 The function is assumed to be reachable and have address taken (so no
1315 API breaking optimizations are performed on it).
1317 Main work done by this function is to enqueue the function for later
1318 processing to avoid need the passes to be re-entrant. */
1319 static void add_new_function (tree fndecl, bool lowered);
1321 /* Return callgraph node for given symbol and check it is a function. */
1322 static inline cgraph_node *get (const_tree decl)
1324 gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL);
1325 return dyn_cast <cgraph_node *> (symtab_node::get (decl));
1328 /* DECL has been parsed. Take it, queue it, compile it at the whim of the
1329 logic in effect. If NO_COLLECT is true, then our caller cannot stand to
1330 have the garbage collector run at the moment. We would need to either
1331 create a new GC context, or just not compile right now. */
1332 static void finalize_function (tree, bool);
1334 /* Return cgraph node assigned to DECL. Create new one when needed. */
1335 static cgraph_node * create (tree decl);
1337 /* Try to find a call graph node for declaration DECL and if it does not
1338 exist or if it corresponds to an inline clone, create a new one. */
1339 static cgraph_node * get_create (tree);
1341 /* Return local info for the compiled function. */
1342 static cgraph_node *local_info_node (tree decl);
1344 /* Return RTL info for the compiled function. */
1345 static struct cgraph_rtl_info *rtl_info (const_tree);
1347 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
1348 Return NULL if there's no such node. */
1349 static cgraph_node *get_for_asmname (tree asmname);
1351 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if
1352 successful and NULL otherwise.
1353 Same body aliases are output whenever the body of DECL is output,
1354 and cgraph_node::get (ALIAS) transparently
1355 returns cgraph_node::get (DECL). */
1356 static cgraph_node * create_same_body_alias (tree alias, tree decl);
1358 /* Verify whole cgraph structure. */
1359 static void DEBUG_FUNCTION verify_cgraph_nodes (void);
1361 /* Verify cgraph, if consistency checking is enabled. */
1362 static inline void checking_verify_cgraph_nodes (void);
1364 /* Worker to bring NODE local. */
1365 static bool make_local (cgraph_node *node, void *);
1367 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
1368 the function body is associated
1369 with (not necessarily cgraph_node (DECL). */
1370 static cgraph_node *create_alias (tree alias, tree target);
1372 /* Return true if NODE has thunk. */
1373 static bool has_thunk_p (cgraph_node *node, void *);
1375 cgraph_edge *callees;
1376 cgraph_edge *callers;
1377 /* List of edges representing indirect calls with a yet undetermined
1378 callee. */
1379 cgraph_edge *indirect_calls;
1380 cgraph_node *next_sibling_clone;
1381 cgraph_node *prev_sibling_clone;
1382 cgraph_node *clones;
1383 cgraph_node *clone_of;
1384 /* For functions with many calls sites it holds map from call expression
1385 to the edge to speed up cgraph_edge function. */
1386 hash_table<cgraph_edge_hasher> *GTY(()) call_site_hash;
1387 /* Declaration node used to be clone of. */
1388 tree former_clone_of;
1390 /* If this is a SIMD clone, this points to the SIMD specific
1391 information for it. */
1392 cgraph_simd_clone *simdclone;
1393 /* If this function has SIMD clones, this points to the first clone. */
1394 cgraph_node *simd_clones;
1396 /* Interprocedural passes scheduled to have their transform functions
1397 applied next time we execute local pass on them. We maintain it
1398 per-function in order to allow IPA passes to introduce new functions. */
1399 vec<ipa_opt_pass, va_heap, vl_ptr> GTY((skip)) ipa_transforms_to_apply;
1401 /* For inline clones this points to the function they will be
1402 inlined into. */
1403 cgraph_node *inlined_to;
1405 struct cgraph_rtl_info *rtl;
1407 /* Expected number of executions: calculated in profile.c. */
1408 profile_count count;
1409 /* How to scale counts at materialization time; used to merge
1410 LTO units with different number of profile runs. */
1411 int count_materialization_scale;
1412 /* ID assigned by the profiling. */
1413 unsigned int profile_id;
1414 /* ID of the translation unit. */
1415 int unit_id;
1416 /* Time profiler: first run of function. */
1417 int tp_first_run;
1419 /* True when symbol is a thunk. */
1420 unsigned thunk : 1;
1421 /* Set when decl is an abstract function pointed to by the
1422 ABSTRACT_DECL_ORIGIN of a reachable function. */
1423 unsigned used_as_abstract_origin : 1;
1424 /* Set once the function is lowered (i.e. its CFG is built). */
1425 unsigned lowered : 1;
1426 /* Set once the function has been instantiated and its callee
1427 lists created. */
1428 unsigned process : 1;
1429 /* How commonly executed the node is. Initialized during branch
1430 probabilities pass. */
1431 ENUM_BITFIELD (node_frequency) frequency : 2;
1432 /* True when function can only be called at startup (from static ctor). */
1433 unsigned only_called_at_startup : 1;
1434 /* True when function can only be called at startup (from static dtor). */
1435 unsigned only_called_at_exit : 1;
1436 /* True when function is the transactional clone of a function which
1437 is called only from inside transactions. */
1438 /* ?? We should be able to remove this. We have enough bits in
1439 cgraph to calculate it. */
1440 unsigned tm_clone : 1;
1441 /* True if this decl is a dispatcher for function versions. */
1442 unsigned dispatcher_function : 1;
1443 /* True if this decl calls a COMDAT-local function. This is set up in
1444 compute_fn_summary and inline_call. */
1445 unsigned calls_comdat_local : 1;
1446 /* True if node has been created by merge operation in IPA-ICF. */
1447 unsigned icf_merged: 1;
1448 /* True if call to node can't result in a call to free, munmap or
1449 other operation that could make previously non-trapping memory
1450 accesses trapping. */
1451 unsigned nonfreeing_fn : 1;
1452 /* True if there was multiple COMDAT bodies merged by lto-symtab. */
1453 unsigned merged_comdat : 1;
1454 /* True if this def was merged with extern inlines. */
1455 unsigned merged_extern_inline : 1;
1456 /* True if function was created to be executed in parallel. */
1457 unsigned parallelized_function : 1;
1458 /* True if function is part split out by ipa-split. */
1459 unsigned split_part : 1;
1460 /* True if the function appears as possible target of indirect call. */
1461 unsigned indirect_call_target : 1;
1462 /* Set when function is visible in current compilation unit only and
1463 its address is never taken. */
1464 unsigned local : 1;
1465 /* False when there is something makes versioning impossible. */
1466 unsigned versionable : 1;
1467 /* False when function calling convention and signature cannot be changed.
1468 This is the case when __builtin_apply_args is used. */
1469 unsigned can_change_signature : 1;
1470 /* True when the function has been originally extern inline, but it is
1471 redefined now. */
1472 unsigned redefined_extern_inline : 1;
1473 /* True if the function may enter serial irrevocable mode. */
1474 unsigned tm_may_enter_irr : 1;
1475 /* True if this was a clone created by ipa-cp. */
1476 unsigned ipcp_clone : 1;
1477 /* True if this is the deferred declare variant resolution artificial
1478 function. */
1479 unsigned declare_variant_alt : 1;
1480 /* True if the function calls declare_variant_alt functions. */
1481 unsigned calls_declare_variant_alt : 1;
1483 private:
1484 /* Unique id of the node. */
1485 int m_uid;
1487 /* Summary id that is recycled. */
1488 int m_summary_id;
1490 /* Worker for call_for_symbol_and_aliases. */
1491 bool call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
1492 void *),
1493 void *data, bool include_overwritable);
1496 /* A cgraph node set is a collection of cgraph nodes. A cgraph node
1497 can appear in multiple sets. */
1498 struct cgraph_node_set_def
1500 hash_map<cgraph_node *, size_t> *map;
1501 vec<cgraph_node *> nodes;
1504 typedef cgraph_node_set_def *cgraph_node_set;
1505 typedef struct varpool_node_set_def *varpool_node_set;
1507 struct varpool_node;
1509 /* A varpool node set is a collection of varpool nodes. A varpool node
1510 can appear in multiple sets. */
1511 struct varpool_node_set_def
1513 hash_map<varpool_node *, size_t> * map;
1514 vec<varpool_node *> nodes;
1517 /* Iterator structure for cgraph node sets. */
1518 struct cgraph_node_set_iterator
1520 cgraph_node_set set;
1521 unsigned index;
1524 /* Iterator structure for varpool node sets. */
1525 struct varpool_node_set_iterator
1527 varpool_node_set set;
1528 unsigned index;
1531 /* Context of polymorphic call. It represent information about the type of
1532 instance that may reach the call. This is used by ipa-devirt walkers of the
1533 type inheritance graph. */
1535 class GTY(()) ipa_polymorphic_call_context {
1536 public:
1537 /* The called object appears in an object of type OUTER_TYPE
1538 at offset OFFSET. When information is not 100% reliable, we
1539 use SPECULATIVE_OUTER_TYPE and SPECULATIVE_OFFSET. */
1540 HOST_WIDE_INT offset;
1541 HOST_WIDE_INT speculative_offset;
1542 tree outer_type;
1543 tree speculative_outer_type;
1544 /* True if outer object may be in construction or destruction. */
1545 unsigned maybe_in_construction : 1;
1546 /* True if outer object may be of derived type. */
1547 unsigned maybe_derived_type : 1;
1548 /* True if speculative outer object may be of derived type. We always
1549 speculate that construction does not happen. */
1550 unsigned speculative_maybe_derived_type : 1;
1551 /* True if the context is invalid and all calls should be redirected
1552 to BUILTIN_UNREACHABLE. */
1553 unsigned invalid : 1;
1554 /* True if the outer type is dynamic. */
1555 unsigned dynamic : 1;
1557 /* Build empty "I know nothing" context. */
1558 ipa_polymorphic_call_context ();
1559 /* Build polymorphic call context for indirect call E. */
1560 ipa_polymorphic_call_context (cgraph_edge *e);
1561 /* Build polymorphic call context for IP invariant CST.
1562 If specified, OTR_TYPE specify the type of polymorphic call
1563 that takes CST+OFFSET as a parameter. */
1564 ipa_polymorphic_call_context (tree cst, tree otr_type = NULL,
1565 HOST_WIDE_INT offset = 0);
1566 /* Build context for pointer REF contained in FNDECL at statement STMT.
1567 if INSTANCE is non-NULL, return pointer to the object described by
1568 the context. */
1569 ipa_polymorphic_call_context (tree fndecl, tree ref, gimple *stmt,
1570 tree *instance = NULL);
1572 /* Look for vtable stores or constructor calls to work out dynamic type
1573 of memory location. */
1574 bool get_dynamic_type (tree, tree, tree, gimple *, unsigned *);
1576 /* Make context non-speculative. */
1577 void clear_speculation ();
1579 /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
1580 NULL, the context is set to dummy "I know nothing" setting. */
1581 void clear_outer_type (tree otr_type = NULL);
1583 /* Walk container types and modify context to point to actual class
1584 containing OTR_TYPE (if non-NULL) as base class.
1585 Return true if resulting context is valid.
1587 When CONSIDER_PLACEMENT_NEW is false, reject contexts that may be made
1588 valid only via allocation of new polymorphic type inside by means
1589 of placement new.
1591 When CONSIDER_BASES is false, only look for actual fields, not base types
1592 of TYPE. */
1593 bool restrict_to_inner_class (tree otr_type,
1594 bool consider_placement_new = true,
1595 bool consider_bases = true);
1597 /* Adjust all offsets in contexts by given number of bits. */
1598 void offset_by (HOST_WIDE_INT);
1599 /* Use when we cannot track dynamic type change. This speculatively assume
1600 type change is not happening. */
1601 void possible_dynamic_type_change (bool, tree otr_type = NULL);
1602 /* Assume that both THIS and a given context is valid and strengthen THIS
1603 if possible. Return true if any strengthening was made.
1604 If actual type the context is being used in is known, OTR_TYPE should be
1605 set accordingly. This improves quality of combined result. */
1606 bool combine_with (ipa_polymorphic_call_context, tree otr_type = NULL);
1607 bool meet_with (ipa_polymorphic_call_context, tree otr_type = NULL);
1609 /* Return TRUE if context is fully useless. */
1610 bool useless_p () const;
1611 /* Return TRUE if this context conveys the same information as X. */
1612 bool equal_to (const ipa_polymorphic_call_context &x) const;
1614 /* Dump human readable context to F. If NEWLINE is true, it will be
1615 terminated by a newline. */
1616 void dump (FILE *f, bool newline = true) const;
1617 void DEBUG_FUNCTION debug () const;
1619 /* LTO streaming. */
1620 void stream_out (struct output_block *) const;
1621 void stream_in (class lto_input_block *, class data_in *data_in);
1623 private:
1624 bool combine_speculation_with (tree, HOST_WIDE_INT, bool, tree);
1625 bool meet_speculation_with (tree, HOST_WIDE_INT, bool, tree);
1626 void set_by_decl (tree, HOST_WIDE_INT);
1627 bool set_by_invariant (tree, tree, HOST_WIDE_INT);
1628 bool speculation_consistent_p (tree, HOST_WIDE_INT, bool, tree) const;
1629 void make_speculative (tree otr_type = NULL);
1632 /* Structure containing additional information about an indirect call. */
1634 class GTY(()) cgraph_indirect_call_info
1636 public:
1637 /* When agg_content is set, an offset where the call pointer is located
1638 within the aggregate. */
1639 HOST_WIDE_INT offset;
1640 /* Context of the polymorphic call; use only when POLYMORPHIC flag is set. */
1641 ipa_polymorphic_call_context context;
1642 /* OBJ_TYPE_REF_TOKEN of a polymorphic call (if polymorphic is set). */
1643 HOST_WIDE_INT otr_token;
1644 /* Type of the object from OBJ_TYPE_REF_OBJECT. */
1645 tree otr_type;
1646 /* Index of the parameter that is called. */
1647 int param_index;
1648 /* ECF flags determined from the caller. */
1649 int ecf_flags;
1651 /* Number of speculative call targets, it's less than GCOV_TOPN_VALUES. */
1652 unsigned num_speculative_call_targets : 16;
1654 /* Set when the call is a virtual call with the parameter being the
1655 associated object pointer rather than a simple direct call. */
1656 unsigned polymorphic : 1;
1657 /* Set when the call is a call of a pointer loaded from contents of an
1658 aggregate at offset. */
1659 unsigned agg_contents : 1;
1660 /* Set when this is a call through a member pointer. */
1661 unsigned member_ptr : 1;
1662 /* When the agg_contents bit is set, this one determines whether the
1663 destination is loaded from a parameter passed by reference. */
1664 unsigned by_ref : 1;
1665 /* When the agg_contents bit is set, this one determines whether we can
1666 deduce from the function body that the loaded value from the reference is
1667 never modified between the invocation of the function and the load
1668 point. */
1669 unsigned guaranteed_unmodified : 1;
1670 /* For polymorphic calls this specify whether the virtual table pointer
1671 may have changed in between function entry and the call. */
1672 unsigned vptr_changed : 1;
1675 class GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"),
1676 for_user)) cgraph_edge
1678 public:
1679 friend struct cgraph_node;
1680 friend class symbol_table;
1682 /* Remove EDGE from the cgraph. */
1683 static void remove (cgraph_edge *edge);
1685 /* Change field call_stmt of edge E to NEW_STMT. If UPDATE_SPECULATIVE and E
1686 is any component of speculative edge, then update all components.
1687 Speculations can be resolved in the process and EDGE can be removed and
1688 deallocated. Return the edge that now represents the call. */
1689 static cgraph_edge *set_call_stmt (cgraph_edge *e, gcall *new_stmt,
1690 bool update_speculative = true);
1692 /* Redirect callee of the edge to N. The function does not update underlying
1693 call expression. */
1694 void redirect_callee (cgraph_node *n);
1696 /* If the edge does not lead to a thunk, simply redirect it to N. Otherwise
1697 create one or more equivalent thunks for N and redirect E to the first in
1698 the chain. Note that it is then necessary to call
1699 n->expand_all_artificial_thunks once all callers are redirected. */
1700 void redirect_callee_duplicating_thunks (cgraph_node *n);
1702 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1703 CALLEE. Speculations can be resolved in the process and EDGE can be
1704 removed and deallocated. Return the edge that now represents the
1705 call. */
1706 static cgraph_edge *make_direct (cgraph_edge *edge, cgraph_node *callee);
1708 /* Turn edge into speculative call calling N2. Update
1709 the profile so the direct call is taken COUNT times
1710 with FREQUENCY. speculative_id is used to link direct calls with their
1711 corresponding IPA_REF_ADDR references when representing speculative calls.
1713 cgraph_edge *make_speculative (cgraph_node *n2, profile_count direct_count,
1714 unsigned int speculative_id = 0);
1716 /* Speculative call consists of an indirect edge and one or more
1717 direct edge+ref pairs. Speculative will expand to the following sequence:
1719 if (call_dest == target1) // reference to target1
1720 target1 (); // direct call to target1
1721 else if (call_dest == target2) // reference to targt2
1722 target2 (); // direct call to target2
1723 else
1724 call_dest (); // indirect call
1726 Before the expansion we will have indirect call and the direct call+ref
1727 pairs all linked to single statement.
1729 Note that ref may point to different symbol than the corresponding call
1730 becuase the speculated edge may have been optimized (redirected to
1731 a clone) or inlined.
1733 Given an edge which is part of speculative call, return the first
1734 direct call edge in the speculative call sequence.
1736 In the example above called on any cgraph edge in the sequence it will
1737 return direct call to target1. */
1738 cgraph_edge *first_speculative_call_target ();
1740 /* Return next speculative call target or NULL if there is none.
1741 All targets are required to form an interval in the callee list.
1743 In example above, if called on call to target1 it will return call to
1744 target2. */
1745 cgraph_edge *next_speculative_call_target ()
1747 cgraph_edge *e = this;
1748 gcc_checking_assert (speculative && callee);
1750 if (e->next_callee && e->next_callee->speculative
1751 && e->next_callee->call_stmt == e->call_stmt
1752 && e->next_callee->lto_stmt_uid == e->lto_stmt_uid)
1753 return e->next_callee;
1754 return NULL;
1757 /* When called on any edge in the speculative call return the (unique)
1758 indirect call edge in the speculative call sequence. */
1759 cgraph_edge *speculative_call_indirect_edge ()
1761 gcc_checking_assert (speculative);
1762 if (!callee)
1763 return this;
1764 for (cgraph_edge *e2 = caller->indirect_calls;
1765 true; e2 = e2->next_callee)
1766 if (e2->speculative
1767 && call_stmt == e2->call_stmt
1768 && lto_stmt_uid == e2->lto_stmt_uid)
1769 return e2;
1772 /* When called on any edge in speculative call and when given any target
1773 of ref which is speculated to it returns the corresponding direct call.
1775 In example above if called on function target2 it will return call to
1776 target2. */
1777 cgraph_edge *speculative_call_for_target (cgraph_node *);
1779 /* Return REF corresponding to direct call in the specualtive call
1780 sequence. */
1781 ipa_ref *speculative_call_target_ref ()
1783 ipa_ref *ref;
1785 gcc_checking_assert (speculative);
1786 for (unsigned int i = 0; caller->iterate_reference (i, ref); i++)
1787 if (ref->speculative && ref->speculative_id == speculative_id
1788 && ref->stmt == (gimple *)call_stmt
1789 && ref->lto_stmt_uid == lto_stmt_uid)
1790 return ref;
1791 gcc_unreachable ();
1794 /* Speculative call edge turned out to be direct call to CALLEE_DECL. Remove
1795 the speculative call sequence and return edge representing the call, the
1796 original EDGE can be removed and deallocated. It is up to caller to
1797 redirect the call as appropriate. Return the edge that now represents the
1798 call.
1800 For "speculative" indirect call that contains multiple "speculative"
1801 targets (i.e. edge->indirect_info->num_speculative_call_targets > 1),
1802 decrease the count and only remove current direct edge.
1804 If no speculative direct call left to the speculative indirect call, remove
1805 the speculative of both the indirect call and corresponding direct edge.
1807 It is up to caller to iteratively resolve each "speculative" direct call
1808 and redirect the call as appropriate. */
1809 static cgraph_edge *resolve_speculation (cgraph_edge *edge,
1810 tree callee_decl = NULL);
1812 /* If necessary, change the function declaration in the call statement
1813 associated with edge E so that it corresponds to the edge callee.
1814 Speculations can be resolved in the process and EDGE can be removed and
1815 deallocated.
1817 The edge could be one of speculative direct call generated from speculative
1818 indirect call. In this circumstance, decrease the speculative targets
1819 count (i.e. num_speculative_call_targets) and redirect call stmt to the
1820 corresponding i-th target. If no speculative direct call left to the
1821 speculative indirect call, remove "speculative" of the indirect call and
1822 also redirect stmt to it's final direct target.
1824 It is up to caller to iteratively transform each "speculative"
1825 direct call as appropriate. */
1826 static gimple *redirect_call_stmt_to_callee (cgraph_edge *e);
1828 /* Create clone of edge in the node N represented
1829 by CALL_EXPR the callgraph. */
1830 cgraph_edge * clone (cgraph_node *n, gcall *call_stmt, unsigned stmt_uid,
1831 profile_count num, profile_count den,
1832 bool update_original);
1834 /* Verify edge count and frequency. */
1835 bool verify_count ();
1837 /* Return true when call of edge cannot lead to return from caller
1838 and thus it is safe to ignore its side effects for IPA analysis
1839 when computing side effects of the caller. */
1840 bool cannot_lead_to_return_p (void);
1842 /* Return true when the edge represents a direct recursion. */
1843 bool recursive_p (void);
1845 /* Return true if the edge may be considered hot. */
1846 bool maybe_hot_p (void);
1848 /* Get unique identifier of the edge. */
1849 inline int get_uid ()
1851 return m_uid;
1854 /* Get summary id of the edge. */
1855 inline int get_summary_id ()
1857 return m_summary_id;
1860 /* Rebuild cgraph edges for current function node. This needs to be run after
1861 passes that don't update the cgraph. */
1862 static unsigned int rebuild_edges (void);
1864 /* Rebuild cgraph references for current function node. This needs to be run
1865 after passes that don't update the cgraph. */
1866 static void rebuild_references (void);
1868 /* During LTO stream in this can be used to check whether call can possibly
1869 be internal to the current translation unit. */
1870 bool possibly_call_in_translation_unit_p (void);
1872 /* Return num_speculative_targets of this edge. */
1873 int num_speculative_call_targets_p (void);
1875 /* Expected number of executions: calculated in profile.c. */
1876 profile_count count;
1877 cgraph_node *caller;
1878 cgraph_node *callee;
1879 cgraph_edge *prev_caller;
1880 cgraph_edge *next_caller;
1881 cgraph_edge *prev_callee;
1882 cgraph_edge *next_callee;
1883 gcall *call_stmt;
1884 /* Additional information about an indirect call. Not cleared when an edge
1885 becomes direct. */
1886 cgraph_indirect_call_info *indirect_info;
1887 PTR GTY ((skip (""))) aux;
1888 /* When equal to CIF_OK, inline this call. Otherwise, points to the
1889 explanation why function was not inlined. */
1890 enum cgraph_inline_failed_t inline_failed;
1891 /* The stmt_uid of call_stmt. This is used by LTO to recover the call_stmt
1892 when the function is serialized in. */
1893 unsigned int lto_stmt_uid;
1894 /* speculative id is used to link direct calls with their corresponding
1895 IPA_REF_ADDR references when representing speculative calls. */
1896 unsigned int speculative_id : 16;
1897 /* Whether this edge was made direct by indirect inlining. */
1898 unsigned int indirect_inlining_edge : 1;
1899 /* Whether this edge describes an indirect call with an undetermined
1900 callee. */
1901 unsigned int indirect_unknown_callee : 1;
1902 /* Whether this edge is still a dangling */
1903 /* True if the corresponding CALL stmt cannot be inlined. */
1904 unsigned int call_stmt_cannot_inline_p : 1;
1905 /* Can this call throw externally? */
1906 unsigned int can_throw_external : 1;
1907 /* Edges with SPECULATIVE flag represents indirect calls that was
1908 speculatively turned into direct (i.e. by profile feedback).
1909 The final code sequence will have form:
1911 if (call_target == expected_fn)
1912 expected_fn ();
1913 else
1914 call_target ();
1916 Every speculative call is represented by three components attached
1917 to a same call statement:
1918 1) a direct call (to expected_fn)
1919 2) an indirect call (to call_target)
1920 3) a IPA_REF_ADDR reference to expected_fn.
1922 Optimizers may later redirect direct call to clone, so 1) and 3)
1923 do not need to necessarily agree with destination. */
1924 unsigned int speculative : 1;
1925 /* Set to true when caller is a constructor or destructor of polymorphic
1926 type. */
1927 unsigned in_polymorphic_cdtor : 1;
1929 /* Return true if call must bind to current definition. */
1930 bool binds_to_current_def_p ();
1932 /* Expected frequency of executions within the function.
1933 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
1934 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
1935 int frequency ();
1937 /* Expected frequency of executions within the function. */
1938 sreal sreal_frequency ();
1939 private:
1940 /* Unique id of the edge. */
1941 int m_uid;
1943 /* Summary id that is recycled. */
1944 int m_summary_id;
1946 /* Remove the edge from the list of the callers of the callee. */
1947 void remove_caller (void);
1949 /* Remove the edge from the list of the callees of the caller. */
1950 void remove_callee (void);
1952 /* Set callee N of call graph edge and add it to the corresponding set of
1953 callers. */
1954 void set_callee (cgraph_node *n);
1956 /* Output flags of edge to a file F. */
1957 void dump_edge_flags (FILE *f);
1959 /* Dump edge to stderr. */
1960 void DEBUG_FUNCTION debug (void);
1962 /* Verify that call graph edge corresponds to DECL from the associated
1963 statement. Return true if the verification should fail. */
1964 bool verify_corresponds_to_fndecl (tree decl);
1967 #define CGRAPH_FREQ_BASE 1000
1968 #define CGRAPH_FREQ_MAX 100000
1970 /* The varpool data structure.
1971 Each static variable decl has assigned varpool_node. */
1973 struct GTY((tag ("SYMTAB_VARIABLE"))) varpool_node : public symtab_node
1975 /* Constructor. */
1976 explicit varpool_node ()
1977 : symtab_node (SYMTAB_VARIABLE), output (0), dynamically_initialized (0),
1978 tls_model (TLS_MODEL_NONE), used_by_single_function (0)
1981 /* Dump given varpool node to F. */
1982 void dump (FILE *f);
1984 /* Dump given varpool node to stderr. */
1985 void DEBUG_FUNCTION debug (void);
1987 /* Remove variable from symbol table. */
1988 void remove (void);
1990 /* Remove node initializer when it is no longer needed. */
1991 void remove_initializer (void);
1993 void analyze (void);
1995 /* Return variable availability. */
1996 availability get_availability (symtab_node *ref = NULL);
1998 /* When doing LTO, read variable's constructor from disk if
1999 it is not already present. */
2000 tree get_constructor (void);
2002 /* Return true if variable has constructor that can be used for folding. */
2003 bool ctor_useable_for_folding_p (void);
2005 /* For given variable pool node, walk the alias chain to return the function
2006 the variable is alias of. Do not walk through thunks.
2007 When AVAILABILITY is non-NULL, get minimal availability in the chain.
2008 When REF is non-NULL, assume that reference happens in symbol REF
2009 when determining the availability. */
2010 inline varpool_node *ultimate_alias_target
2011 (availability *availability = NULL, symtab_node *ref = NULL);
2013 /* Return node that alias is aliasing. */
2014 inline varpool_node *get_alias_target (void);
2016 /* Output one variable, if necessary. Return whether we output it. */
2017 bool assemble_decl (void);
2019 /* For variables in named sections make sure get_variable_section
2020 is called before we switch to those sections. Then section
2021 conflicts between read-only and read-only requiring relocations
2022 sections can be resolved. */
2023 void finalize_named_section_flags (void);
2025 /* Call callback on varpool symbol and aliases associated to varpool symbol.
2026 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2027 skipped. */
2028 bool call_for_symbol_and_aliases (bool (*callback) (varpool_node *, void *),
2029 void *data,
2030 bool include_overwritable);
2032 /* Return true when variable should be considered externally visible. */
2033 bool externally_visible_p (void);
2035 /* Return true when all references to variable must be visible
2036 in ipa_ref_list.
2037 i.e. if the variable is not externally visible or not used in some magic
2038 way (asm statement or such).
2039 The magic uses are all summarized in force_output flag. */
2040 inline bool all_refs_explicit_p ();
2042 /* Return true when variable can be removed from variable pool
2043 if all direct calls are eliminated. */
2044 inline bool can_remove_if_no_refs_p (void);
2046 /* Add the variable DECL to the varpool.
2047 Unlike finalize_decl function is intended to be used
2048 by middle end and allows insertion of new variable at arbitrary point
2049 of compilation. */
2050 static void add (tree decl);
2052 /* Return varpool node for given symbol and check it is a function. */
2053 static inline varpool_node *get (const_tree decl);
2055 /* Mark DECL as finalized. By finalizing the declaration, frontend instruct
2056 the middle end to output the variable to asm file, if needed or externally
2057 visible. */
2058 static void finalize_decl (tree decl);
2060 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2061 Extra name aliases are output whenever DECL is output. */
2062 static varpool_node * create_extra_name_alias (tree alias, tree decl);
2064 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2065 Extra name aliases are output whenever DECL is output. */
2066 static varpool_node * create_alias (tree, tree);
2068 /* Dump the variable pool to F. */
2069 static void dump_varpool (FILE *f);
2071 /* Dump the variable pool to stderr. */
2072 static void DEBUG_FUNCTION debug_varpool (void);
2074 /* Allocate new callgraph node and insert it into basic data structures. */
2075 static varpool_node *create_empty (void);
2077 /* Return varpool node assigned to DECL. Create new one when needed. */
2078 static varpool_node *get_create (tree decl);
2080 /* Given an assembler name, lookup node. */
2081 static varpool_node *get_for_asmname (tree asmname);
2083 /* Set when variable is scheduled to be assembled. */
2084 unsigned output : 1;
2086 /* Set if the variable is dynamically initialized, except for
2087 function local statics. */
2088 unsigned dynamically_initialized : 1;
2090 ENUM_BITFIELD(tls_model) tls_model : 3;
2092 /* Set if the variable is known to be used by single function only.
2093 This is computed by ipa_single_use pass and used by late optimizations
2094 in places where optimization would be valid for local static variable
2095 if we did not do any inter-procedural code movement. */
2096 unsigned used_by_single_function : 1;
2098 private:
2099 /* Assemble thunks and aliases associated to varpool node. */
2100 void assemble_aliases (void);
2102 /* Worker for call_for_node_and_aliases. */
2103 bool call_for_symbol_and_aliases_1 (bool (*callback) (varpool_node *, void *),
2104 void *data,
2105 bool include_overwritable);
2108 /* Every top level asm statement is put into a asm_node. */
2110 struct GTY(()) asm_node {
2111 /* Next asm node. */
2112 asm_node *next;
2113 /* String for this asm node. */
2114 tree asm_str;
2115 /* Ordering of all cgraph nodes. */
2116 int order;
2119 /* Report whether or not THIS symtab node is a function, aka cgraph_node. */
2121 template <>
2122 template <>
2123 inline bool
2124 is_a_helper <cgraph_node *>::test (symtab_node *p)
2126 return p && p->type == SYMTAB_FUNCTION;
2129 /* Report whether or not THIS symtab node is a variable, aka varpool_node. */
2131 template <>
2132 template <>
2133 inline bool
2134 is_a_helper <varpool_node *>::test (symtab_node *p)
2136 return p && p->type == SYMTAB_VARIABLE;
2139 typedef void (*cgraph_edge_hook)(cgraph_edge *, void *);
2140 typedef void (*cgraph_node_hook)(cgraph_node *, void *);
2141 typedef void (*varpool_node_hook)(varpool_node *, void *);
2142 typedef void (*cgraph_2edge_hook)(cgraph_edge *, cgraph_edge *, void *);
2143 typedef void (*cgraph_2node_hook)(cgraph_node *, cgraph_node *, void *);
2145 struct cgraph_edge_hook_list;
2146 struct cgraph_node_hook_list;
2147 struct varpool_node_hook_list;
2148 struct cgraph_2edge_hook_list;
2149 struct cgraph_2node_hook_list;
2151 /* Map from a symbol to initialization/finalization priorities. */
2152 struct GTY(()) symbol_priority_map {
2153 priority_type init;
2154 priority_type fini;
2157 enum symtab_state
2159 /* Frontend is parsing and finalizing functions. */
2160 PARSING,
2161 /* Callgraph is being constructed. It is safe to add new functions. */
2162 CONSTRUCTION,
2163 /* Callgraph is being streamed-in at LTO time. */
2164 LTO_STREAMING,
2165 /* Callgraph is built and early IPA passes are being run. */
2166 IPA,
2167 /* Callgraph is built and all functions are transformed to SSA form. */
2168 IPA_SSA,
2169 /* All inline decisions are done; it is now possible to remove extern inline
2170 functions and virtual call targets. */
2171 IPA_SSA_AFTER_INLINING,
2172 /* Functions are now ordered and being passed to RTL expanders. */
2173 EXPANSION,
2174 /* All cgraph expansion is done. */
2175 FINISHED
2178 struct asmname_hasher : ggc_ptr_hash <symtab_node>
2180 typedef const_tree compare_type;
2182 static hashval_t hash (symtab_node *n);
2183 static bool equal (symtab_node *n, const_tree t);
2186 /* Core summaries maintained about symbols. */
2188 struct thunk_info;
2189 template <class T> class function_summary;
2190 typedef function_summary <thunk_info *> thunk_summary;
2192 struct clone_info;
2193 template <class T> class function_summary;
2194 typedef function_summary <clone_info *> clone_summary;
2196 class GTY((tag ("SYMTAB"))) symbol_table
2198 public:
2199 friend struct symtab_node;
2200 friend struct cgraph_node;
2201 friend struct cgraph_edge;
2203 symbol_table ():
2204 cgraph_count (0), cgraph_max_uid (1), cgraph_max_summary_id (0),
2205 edges_count (0), edges_max_uid (1), edges_max_summary_id (0),
2206 cgraph_released_summary_ids (), edge_released_summary_ids (),
2207 nodes (NULL), asmnodes (NULL), asm_last_node (NULL),
2208 order (0), max_unit (0), global_info_ready (false), state (PARSING),
2209 function_flags_ready (false), cpp_implicit_aliases_done (false),
2210 section_hash (NULL), assembler_name_hash (NULL), init_priority_hash (NULL),
2211 dump_file (NULL), ipa_clones_dump_file (NULL), cloned_nodes (),
2212 m_thunks (NULL), m_clones (NULL),
2213 m_first_edge_removal_hook (NULL), m_first_cgraph_removal_hook (NULL),
2214 m_first_edge_duplicated_hook (NULL), m_first_cgraph_duplicated_hook (NULL),
2215 m_first_cgraph_insertion_hook (NULL), m_first_varpool_insertion_hook (NULL),
2216 m_first_varpool_removal_hook (NULL)
2220 /* Initialize callgraph dump file. */
2221 void initialize (void);
2223 /* Register a top-level asm statement ASM_STR. */
2224 inline asm_node *finalize_toplevel_asm (tree asm_str);
2226 /* Analyze the whole compilation unit once it is parsed completely. */
2227 void finalize_compilation_unit (void);
2229 /* C++ frontend produce same body aliases all over the place, even before PCH
2230 gets streamed out. It relies on us linking the aliases with their function
2231 in order to do the fixups, but ipa-ref is not PCH safe. Consequently we
2232 first produce aliases without links, but once C++ FE is sure it won't
2233 stream PCH we build the links via this function. */
2234 void process_same_body_aliases (void);
2236 /* Perform simple optimizations based on callgraph. */
2237 void compile (void);
2239 /* Process CGRAPH_NEW_FUNCTIONS and perform actions necessary to add these
2240 functions into callgraph in a way so they look like ordinary reachable
2241 functions inserted into callgraph already at construction time. */
2242 void process_new_functions (void);
2244 /* Register a symbol NODE. */
2245 inline void register_symbol (symtab_node *node);
2247 inline void
2248 clear_asm_symbols (void)
2250 asmnodes = NULL;
2251 asm_last_node = NULL;
2254 /* Perform reachability analysis and reclaim all unreachable nodes. */
2255 bool remove_unreachable_nodes (FILE *file);
2257 /* Optimization of function bodies might've rendered some variables as
2258 unnecessary so we want to avoid these from being compiled. Re-do
2259 reachability starting from variables that are either externally visible
2260 or was referred from the asm output routines. */
2261 void remove_unreferenced_decls (void);
2263 /* Unregister a symbol NODE. */
2264 inline void unregister (symtab_node *node);
2266 /* Allocate new callgraph node and insert it into basic data structures. */
2267 cgraph_node *create_empty (void);
2269 /* Release a callgraph NODE. */
2270 void release_symbol (cgraph_node *node);
2272 /* Output all variables enqueued to be assembled. */
2273 bool output_variables (void);
2275 /* Weakrefs may be associated to external decls and thus not output
2276 at expansion time. Emit all necessary aliases. */
2277 void output_weakrefs (void);
2279 /* Return first static symbol with definition. */
2280 inline symtab_node *first_symbol (void);
2282 /* Return first assembler symbol. */
2283 inline asm_node *
2284 first_asm_symbol (void)
2286 return asmnodes;
2289 /* Return first static symbol with definition. */
2290 inline symtab_node *first_defined_symbol (void);
2292 /* Return first variable. */
2293 inline varpool_node *first_variable (void);
2295 /* Return next variable after NODE. */
2296 inline varpool_node *next_variable (varpool_node *node);
2298 /* Return first static variable with initializer. */
2299 inline varpool_node *first_static_initializer (void);
2301 /* Return next static variable with initializer after NODE. */
2302 inline varpool_node *next_static_initializer (varpool_node *node);
2304 /* Return first static variable with definition. */
2305 inline varpool_node *first_defined_variable (void);
2307 /* Return next static variable with definition after NODE. */
2308 inline varpool_node *next_defined_variable (varpool_node *node);
2310 /* Return first function with body defined. */
2311 inline cgraph_node *first_defined_function (void);
2313 /* Return next function with body defined after NODE. */
2314 inline cgraph_node *next_defined_function (cgraph_node *node);
2316 /* Return first function. */
2317 inline cgraph_node *first_function (void);
2319 /* Return next function. */
2320 inline cgraph_node *next_function (cgraph_node *node);
2322 /* Return first function with body defined. */
2323 cgraph_node *first_function_with_gimple_body (void);
2325 /* Return next reachable static variable with initializer after NODE. */
2326 inline cgraph_node *next_function_with_gimple_body (cgraph_node *node);
2328 /* Register HOOK to be called with DATA on each removed edge. */
2329 cgraph_edge_hook_list *add_edge_removal_hook (cgraph_edge_hook hook,
2330 void *data);
2332 /* Remove ENTRY from the list of hooks called on removing edges. */
2333 void remove_edge_removal_hook (cgraph_edge_hook_list *entry);
2335 /* Register HOOK to be called with DATA on each removed node. */
2336 cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook hook,
2337 void *data);
2339 /* Remove ENTRY from the list of hooks called on removing nodes. */
2340 void remove_cgraph_removal_hook (cgraph_node_hook_list *entry);
2342 /* Register HOOK to be called with DATA on each removed node. */
2343 varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook hook,
2344 void *data);
2346 /* Remove ENTRY from the list of hooks called on removing nodes. */
2347 void remove_varpool_removal_hook (varpool_node_hook_list *entry);
2349 /* Register HOOK to be called with DATA on each inserted node. */
2350 cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook hook,
2351 void *data);
2353 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2354 void remove_cgraph_insertion_hook (cgraph_node_hook_list *entry);
2356 /* Register HOOK to be called with DATA on each inserted node. */
2357 varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook hook,
2358 void *data);
2360 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2361 void remove_varpool_insertion_hook (varpool_node_hook_list *entry);
2363 /* Register HOOK to be called with DATA on each duplicated edge. */
2364 cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook hook,
2365 void *data);
2366 /* Remove ENTRY from the list of hooks called on duplicating edges. */
2367 void remove_edge_duplication_hook (cgraph_2edge_hook_list *entry);
2369 /* Register HOOK to be called with DATA on each duplicated node. */
2370 cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook hook,
2371 void *data);
2373 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
2374 void remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry);
2376 /* Call all edge removal hooks. */
2377 void call_edge_removal_hooks (cgraph_edge *e);
2379 /* Call all node insertion hooks. */
2380 void call_cgraph_insertion_hooks (cgraph_node *node);
2382 /* Call all node removal hooks. */
2383 void call_cgraph_removal_hooks (cgraph_node *node);
2385 /* Call all node duplication hooks. */
2386 void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2);
2388 /* Call all edge duplication hooks. */
2389 void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2);
2391 /* Call all node removal hooks. */
2392 void call_varpool_removal_hooks (varpool_node *node);
2394 /* Call all node insertion hooks. */
2395 void call_varpool_insertion_hooks (varpool_node *node);
2397 /* Arrange node to be first in its entry of assembler_name_hash. */
2398 void symtab_prevail_in_asm_name_hash (symtab_node *node);
2400 /* Initialize asm name hash unless. */
2401 void symtab_initialize_asm_name_hash (void);
2403 /* Set the DECL_ASSEMBLER_NAME and update symtab hashtables. */
2404 void change_decl_assembler_name (tree decl, tree name);
2406 /* Dump symbol table to F. */
2407 void dump (FILE *f);
2409 /* Dump symbol table to F in graphviz format. */
2410 void dump_graphviz (FILE *f);
2412 /* Dump symbol table to stderr. */
2413 void DEBUG_FUNCTION debug (void);
2415 /* Assign a new summary ID for the callgraph NODE. */
2416 inline int assign_summary_id (cgraph_node *node)
2418 if (!cgraph_released_summary_ids.is_empty ())
2419 node->m_summary_id = cgraph_released_summary_ids.pop ();
2420 else
2421 node->m_summary_id = cgraph_max_summary_id++;
2423 return node->m_summary_id;
2426 /* Assign a new summary ID for the callgraph EDGE. */
2427 inline int assign_summary_id (cgraph_edge *edge)
2429 if (!edge_released_summary_ids.is_empty ())
2430 edge->m_summary_id = edge_released_summary_ids.pop ();
2431 else
2432 edge->m_summary_id = edges_max_summary_id++;
2434 return edge->m_summary_id;
2437 /* Return true if assembler names NAME1 and NAME2 leads to the same symbol
2438 name. */
2439 static bool assembler_names_equal_p (const char *name1, const char *name2);
2441 int cgraph_count;
2442 int cgraph_max_uid;
2443 int cgraph_max_summary_id;
2445 int edges_count;
2446 int edges_max_uid;
2447 int edges_max_summary_id;
2449 /* Vector of released summary IDS for cgraph nodes. */
2450 vec<int> GTY ((skip)) cgraph_released_summary_ids;
2452 /* Vector of released summary IDS for cgraph nodes. */
2453 vec<int> GTY ((skip)) edge_released_summary_ids;
2455 /* Return symbol used to separate symbol name from suffix. */
2456 static char symbol_suffix_separator ();
2458 symtab_node* GTY(()) nodes;
2459 asm_node* GTY(()) asmnodes;
2460 asm_node* GTY(()) asm_last_node;
2462 /* The order index of the next symtab node to be created. This is
2463 used so that we can sort the cgraph nodes in order by when we saw
2464 them, to support -fno-toplevel-reorder. */
2465 int order;
2467 /* Maximal unit ID used. */
2468 int max_unit;
2470 /* Set when whole unit has been analyzed so we can access global info. */
2471 bool global_info_ready;
2472 /* What state callgraph is in right now. */
2473 enum symtab_state state;
2474 /* Set when the cgraph is fully build and the basic flags are computed. */
2475 bool function_flags_ready;
2477 bool cpp_implicit_aliases_done;
2479 /* Hash table used to hold sections. */
2480 hash_table<section_name_hasher> *GTY(()) section_hash;
2482 /* Hash table used to convert assembler names into nodes. */
2483 hash_table<asmname_hasher> *assembler_name_hash;
2485 /* Hash table used to hold init priorities. */
2486 hash_map<symtab_node *, symbol_priority_map> *init_priority_hash;
2488 FILE* GTY ((skip)) dump_file;
2490 FILE* GTY ((skip)) ipa_clones_dump_file;
2492 hash_set <const cgraph_node *> GTY ((skip)) cloned_nodes;
2494 /* Thunk annotations. */
2495 thunk_summary *m_thunks;
2497 /* Virtual clone annotations. */
2498 clone_summary *m_clones;
2500 private:
2501 /* Allocate a cgraph_edge structure and fill it with data according to the
2502 parameters of which only CALLEE can be NULL (when creating an indirect
2503 call edge). CLONING_P should be set if properties that are copied from an
2504 original edge should not be calculated. */
2505 cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee,
2506 gcall *call_stmt, profile_count count,
2507 bool indir_unknown_callee, bool cloning_p);
2509 /* Put the edge onto the free list. */
2510 void free_edge (cgraph_edge *e);
2512 /* Insert NODE to assembler name hash. */
2513 void insert_to_assembler_name_hash (symtab_node *node, bool with_clones);
2515 /* Remove NODE from assembler name hash. */
2516 void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones);
2518 /* Hash asmnames ignoring the user specified marks. */
2519 static hashval_t decl_assembler_name_hash (const_tree asmname);
2521 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
2522 static bool decl_assembler_name_equal (tree decl, const_tree asmname);
2524 friend struct asmname_hasher;
2526 /* List of hooks triggered when an edge is removed. */
2527 cgraph_edge_hook_list * GTY((skip)) m_first_edge_removal_hook;
2528 /* List of hooks trigger_red when a cgraph node is removed. */
2529 cgraph_node_hook_list * GTY((skip)) m_first_cgraph_removal_hook;
2530 /* List of hooks triggered when an edge is duplicated. */
2531 cgraph_2edge_hook_list * GTY((skip)) m_first_edge_duplicated_hook;
2532 /* List of hooks triggered when a node is duplicated. */
2533 cgraph_2node_hook_list * GTY((skip)) m_first_cgraph_duplicated_hook;
2534 /* List of hooks triggered when an function is inserted. */
2535 cgraph_node_hook_list * GTY((skip)) m_first_cgraph_insertion_hook;
2536 /* List of hooks triggered when an variable is inserted. */
2537 varpool_node_hook_list * GTY((skip)) m_first_varpool_insertion_hook;
2538 /* List of hooks triggered when a node is removed. */
2539 varpool_node_hook_list * GTY((skip)) m_first_varpool_removal_hook;
2542 extern GTY(()) symbol_table *symtab;
2544 extern vec<cgraph_node *> cgraph_new_nodes;
2546 inline hashval_t
2547 asmname_hasher::hash (symtab_node *n)
2549 return symbol_table::decl_assembler_name_hash
2550 (DECL_ASSEMBLER_NAME (n->decl));
2553 inline bool
2554 asmname_hasher::equal (symtab_node *n, const_tree t)
2556 return symbol_table::decl_assembler_name_equal (n->decl, t);
2559 /* In cgraph.c */
2560 void cgraph_c_finalize (void);
2561 void release_function_body (tree);
2562 cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void);
2564 void cgraph_update_edges_for_call_stmt (gimple *, tree, gimple *);
2565 bool cgraph_function_possibly_inlined_p (tree);
2567 const char* cgraph_inline_failed_string (cgraph_inline_failed_t);
2568 cgraph_inline_failed_type_t cgraph_inline_failed_type (cgraph_inline_failed_t);
2570 /* In cgraphunit.c */
2571 void cgraphunit_c_finalize (void);
2572 int tp_first_run_node_cmp (const void *pa, const void *pb);
2574 /* In symtab-thunks.cc */
2575 void symtab_thunks_cc_finalize (void);
2577 /* Initialize datastructures so DECL is a function in lowered gimple form.
2578 IN_SSA is true if the gimple is in SSA. */
2579 basic_block init_lowered_empty_function (tree, bool, profile_count);
2581 tree thunk_adjust (gimple_stmt_iterator *, tree, bool, HOST_WIDE_INT, tree,
2582 HOST_WIDE_INT);
2583 /* In cgraphclones.c */
2585 tree clone_function_name_numbered (const char *name, const char *suffix);
2586 tree clone_function_name_numbered (tree decl, const char *suffix);
2587 tree clone_function_name (const char *name, const char *suffix,
2588 unsigned long number);
2589 tree clone_function_name (tree decl, const char *suffix,
2590 unsigned long number);
2591 tree clone_function_name (tree decl, const char *suffix);
2593 void tree_function_versioning (tree, tree, vec<ipa_replace_map *, va_gc> *,
2594 ipa_param_adjustments *,
2595 bool, bitmap, basic_block);
2597 void dump_callgraph_transformation (const cgraph_node *original,
2598 const cgraph_node *clone,
2599 const char *suffix);
2600 /* In cgraphbuild.c */
2601 int compute_call_stmt_bb_frequency (tree, basic_block bb);
2602 void record_references_in_initializer (tree, bool);
2604 /* In ipa.c */
2605 void cgraph_build_static_cdtor (char which, tree body, int priority);
2606 bool ipa_discover_variable_flags (void);
2608 /* In varpool.c */
2609 tree ctor_for_folding (tree);
2611 /* In ipa-inline-analysis.c */
2612 void initialize_inline_failed (struct cgraph_edge *);
2613 bool speculation_useful_p (struct cgraph_edge *e, bool anticipate_inlining);
2615 /* Return true when the symbol is real symbol, i.e. it is not inline clone
2616 or abstract function kept for debug info purposes only. */
2617 inline bool
2618 symtab_node::real_symbol_p (void)
2620 cgraph_node *cnode;
2622 if (DECL_ABSTRACT_P (decl))
2623 return false;
2624 if (transparent_alias && definition)
2625 return false;
2626 if (!is_a <cgraph_node *> (this))
2627 return true;
2628 cnode = dyn_cast <cgraph_node *> (this);
2629 if (cnode->inlined_to)
2630 return false;
2631 return true;
2634 /* Return true if DECL should have entry in symbol table if used.
2635 Those are functions and static & external variables. */
2637 static inline bool
2638 decl_in_symtab_p (const_tree decl)
2640 return (TREE_CODE (decl) == FUNCTION_DECL
2641 || (TREE_CODE (decl) == VAR_DECL
2642 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))));
2645 inline bool
2646 symtab_node::in_same_comdat_group_p (symtab_node *target)
2648 symtab_node *source = this;
2650 if (cgraph_node *cn = dyn_cast <cgraph_node *> (target))
2652 if (cn->inlined_to)
2653 source = cn->inlined_to;
2655 if (cgraph_node *cn = dyn_cast <cgraph_node *> (target))
2657 if (cn->inlined_to)
2658 target = cn->inlined_to;
2661 return source->get_comdat_group () == target->get_comdat_group ();
2664 /* Return node that alias is aliasing. */
2666 inline symtab_node *
2667 symtab_node::get_alias_target (void)
2669 ipa_ref *ref = NULL;
2670 iterate_reference (0, ref);
2671 gcc_checking_assert (ref->use == IPA_REF_ALIAS);
2672 return ref->referred;
2675 /* Return the DECL (or identifier) that alias is aliasing. Unlike the above,
2676 this works whether or not the alias has been analyzed already. */
2678 inline tree
2679 symtab_node::get_alias_target_tree ()
2681 if (alias_target)
2682 return alias_target;
2683 return get_alias_target ()->decl;
2686 /* Return next reachable static symbol with initializer after the node. */
2688 inline symtab_node *
2689 symtab_node::next_defined_symbol (void)
2691 symtab_node *node1 = next;
2693 for (; node1; node1 = node1->next)
2694 if (node1->definition)
2695 return node1;
2697 return NULL;
2700 /* Iterates I-th reference in the list, REF is also set. */
2702 inline ipa_ref *
2703 symtab_node::iterate_reference (unsigned i, ipa_ref *&ref)
2705 ref_list.references.iterate (i, &ref);
2707 return ref;
2710 /* Iterates I-th referring item in the list, REF is also set. */
2712 inline ipa_ref *
2713 symtab_node::iterate_referring (unsigned i, ipa_ref *&ref)
2715 ref_list.referring.iterate (i, &ref);
2717 return ref;
2720 /* Iterates I-th referring alias item in the list, REF is also set. */
2722 inline ipa_ref *
2723 symtab_node::iterate_direct_aliases (unsigned i, ipa_ref *&ref)
2725 ref_list.referring.iterate (i, &ref);
2727 if (ref && ref->use != IPA_REF_ALIAS)
2728 return NULL;
2730 return ref;
2733 /* Return true if list contains an alias. */
2735 inline bool
2736 symtab_node::has_aliases_p (void)
2738 ipa_ref *ref = NULL;
2740 return (iterate_direct_aliases (0, ref) != NULL);
2743 /* Return true when RESOLUTION indicate that linker will use
2744 the symbol from non-LTO object files. */
2746 inline bool
2747 resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution)
2749 return (resolution == LDPR_PREVAILING_DEF
2750 || resolution == LDPR_PREEMPTED_REG
2751 || resolution == LDPR_RESOLVED_EXEC
2752 || resolution == LDPR_RESOLVED_DYN);
2755 /* Return true when symtab_node is known to be used from other (non-LTO)
2756 object file. Known only when doing LTO via linker plugin. */
2758 inline bool
2759 symtab_node::used_from_object_file_p (void)
2761 if (!TREE_PUBLIC (decl) || DECL_EXTERNAL (decl))
2762 return false;
2763 if (resolution_used_from_other_file_p (resolution))
2764 return true;
2765 return false;
2768 /* Return varpool node for given symbol and check it is a function. */
2770 inline varpool_node *
2771 varpool_node::get (const_tree decl)
2773 gcc_checking_assert (TREE_CODE (decl) == VAR_DECL);
2774 return dyn_cast<varpool_node *> (symtab_node::get (decl));
2777 /* Register a symbol NODE. */
2779 inline void
2780 symbol_table::register_symbol (symtab_node *node)
2782 node->next = nodes;
2783 node->previous = NULL;
2785 if (nodes)
2786 nodes->previous = node;
2787 nodes = node;
2789 node->order = order++;
2792 /* Register a top-level asm statement ASM_STR. */
2794 asm_node *
2795 symbol_table::finalize_toplevel_asm (tree asm_str)
2797 asm_node *node;
2799 node = ggc_cleared_alloc<asm_node> ();
2800 node->asm_str = asm_str;
2801 node->order = order++;
2802 node->next = NULL;
2804 if (asmnodes == NULL)
2805 asmnodes = node;
2806 else
2807 asm_last_node->next = node;
2809 asm_last_node = node;
2810 return node;
2813 /* Unregister a symbol NODE. */
2814 inline void
2815 symbol_table::unregister (symtab_node *node)
2817 if (node->previous)
2818 node->previous->next = node->next;
2819 else
2820 nodes = node->next;
2822 if (node->next)
2823 node->next->previous = node->previous;
2825 node->next = NULL;
2826 node->previous = NULL;
2829 /* Release a callgraph NODE with UID and put in to the list of free nodes. */
2831 inline void
2832 symbol_table::release_symbol (cgraph_node *node)
2834 cgraph_count--;
2835 if (node->m_summary_id != -1)
2836 cgraph_released_summary_ids.safe_push (node->m_summary_id);
2837 ggc_free (node);
2840 /* Return first static symbol with definition. */
2841 inline symtab_node *
2842 symbol_table::first_symbol (void)
2844 return nodes;
2847 /* Walk all symbols. */
2848 #define FOR_EACH_SYMBOL(node) \
2849 for ((node) = symtab->first_symbol (); (node); (node) = (node)->next)
2851 /* Return first static symbol with definition. */
2852 inline symtab_node *
2853 symbol_table::first_defined_symbol (void)
2855 symtab_node *node;
2857 for (node = nodes; node; node = node->next)
2858 if (node->definition)
2859 return node;
2861 return NULL;
2864 /* Walk all symbols with definitions in current unit. */
2865 #define FOR_EACH_DEFINED_SYMBOL(node) \
2866 for ((node) = symtab->first_defined_symbol (); (node); \
2867 (node) = node->next_defined_symbol ())
2869 /* Return first variable. */
2870 inline varpool_node *
2871 symbol_table::first_variable (void)
2873 symtab_node *node;
2874 for (node = nodes; node; node = node->next)
2875 if (varpool_node *vnode = dyn_cast <varpool_node *> (node))
2876 return vnode;
2877 return NULL;
2880 /* Return next variable after NODE. */
2881 inline varpool_node *
2882 symbol_table::next_variable (varpool_node *node)
2884 symtab_node *node1 = node->next;
2885 for (; node1; node1 = node1->next)
2886 if (varpool_node *vnode1 = dyn_cast <varpool_node *> (node1))
2887 return vnode1;
2888 return NULL;
2890 /* Walk all variables. */
2891 #define FOR_EACH_VARIABLE(node) \
2892 for ((node) = symtab->first_variable (); \
2893 (node); \
2894 (node) = symtab->next_variable ((node)))
2896 /* Return first static variable with initializer. */
2897 inline varpool_node *
2898 symbol_table::first_static_initializer (void)
2900 symtab_node *node;
2901 for (node = nodes; node; node = node->next)
2903 varpool_node *vnode = dyn_cast <varpool_node *> (node);
2904 if (vnode && DECL_INITIAL (node->decl))
2905 return vnode;
2907 return NULL;
2910 /* Return next static variable with initializer after NODE. */
2911 inline varpool_node *
2912 symbol_table::next_static_initializer (varpool_node *node)
2914 symtab_node *node1 = node->next;
2915 for (; node1; node1 = node1->next)
2917 varpool_node *vnode1 = dyn_cast <varpool_node *> (node1);
2918 if (vnode1 && DECL_INITIAL (node1->decl))
2919 return vnode1;
2921 return NULL;
2924 /* Walk all static variables with initializer set. */
2925 #define FOR_EACH_STATIC_INITIALIZER(node) \
2926 for ((node) = symtab->first_static_initializer (); (node); \
2927 (node) = symtab->next_static_initializer (node))
2929 /* Return first static variable with definition. */
2930 inline varpool_node *
2931 symbol_table::first_defined_variable (void)
2933 symtab_node *node;
2934 for (node = nodes; node; node = node->next)
2936 varpool_node *vnode = dyn_cast <varpool_node *> (node);
2937 if (vnode && vnode->definition)
2938 return vnode;
2940 return NULL;
2943 /* Return next static variable with definition after NODE. */
2944 inline varpool_node *
2945 symbol_table::next_defined_variable (varpool_node *node)
2947 symtab_node *node1 = node->next;
2948 for (; node1; node1 = node1->next)
2950 varpool_node *vnode1 = dyn_cast <varpool_node *> (node1);
2951 if (vnode1 && vnode1->definition)
2952 return vnode1;
2954 return NULL;
2956 /* Walk all variables with definitions in current unit. */
2957 #define FOR_EACH_DEFINED_VARIABLE(node) \
2958 for ((node) = symtab->first_defined_variable (); (node); \
2959 (node) = symtab->next_defined_variable (node))
2961 /* Return first function with body defined. */
2962 inline cgraph_node *
2963 symbol_table::first_defined_function (void)
2965 symtab_node *node;
2966 for (node = nodes; node; node = node->next)
2968 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
2969 if (cn && cn->definition)
2970 return cn;
2972 return NULL;
2975 /* Return next function with body defined after NODE. */
2976 inline cgraph_node *
2977 symbol_table::next_defined_function (cgraph_node *node)
2979 symtab_node *node1 = node->next;
2980 for (; node1; node1 = node1->next)
2982 cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1);
2983 if (cn1 && cn1->definition)
2984 return cn1;
2986 return NULL;
2989 /* Walk all functions with body defined. */
2990 #define FOR_EACH_DEFINED_FUNCTION(node) \
2991 for ((node) = symtab->first_defined_function (); (node); \
2992 (node) = symtab->next_defined_function ((node)))
2994 /* Return first function. */
2995 inline cgraph_node *
2996 symbol_table::first_function (void)
2998 symtab_node *node;
2999 for (node = nodes; node; node = node->next)
3000 if (cgraph_node *cn = dyn_cast <cgraph_node *> (node))
3001 return cn;
3002 return NULL;
3005 /* Return next function. */
3006 inline cgraph_node *
3007 symbol_table::next_function (cgraph_node *node)
3009 symtab_node *node1 = node->next;
3010 for (; node1; node1 = node1->next)
3011 if (cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1))
3012 return cn1;
3013 return NULL;
3016 /* Return first function with body defined. */
3017 inline cgraph_node *
3018 symbol_table::first_function_with_gimple_body (void)
3020 symtab_node *node;
3021 for (node = nodes; node; node = node->next)
3023 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
3024 if (cn && cn->has_gimple_body_p ())
3025 return cn;
3027 return NULL;
3030 /* Return next reachable static variable with initializer after NODE. */
3031 inline cgraph_node *
3032 symbol_table::next_function_with_gimple_body (cgraph_node *node)
3034 symtab_node *node1 = node->next;
3035 for (; node1; node1 = node1->next)
3037 cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1);
3038 if (cn1 && cn1->has_gimple_body_p ())
3039 return cn1;
3041 return NULL;
3044 /* Walk all functions. */
3045 #define FOR_EACH_FUNCTION(node) \
3046 for ((node) = symtab->first_function (); (node); \
3047 (node) = symtab->next_function ((node)))
3049 /* Return true when callgraph node is a function with Gimple body defined
3050 in current unit. Functions can also be define externally or they
3051 can be thunks with no Gimple representation.
3053 Note that at WPA stage, the function body may not be present in memory. */
3055 inline bool
3056 cgraph_node::has_gimple_body_p (void)
3058 return definition && !thunk && !alias;
3061 /* Walk all functions with body defined. */
3062 #define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
3063 for ((node) = symtab->first_function_with_gimple_body (); (node); \
3064 (node) = symtab->next_function_with_gimple_body (node))
3066 /* Uniquize all constants that appear in memory.
3067 Each constant in memory thus far output is recorded
3068 in `const_desc_table'. */
3070 struct GTY((for_user)) constant_descriptor_tree {
3071 /* A MEM for the constant. */
3072 rtx rtl;
3074 /* The value of the constant. */
3075 tree value;
3077 /* Hash of value. Computing the hash from value each time
3078 hashfn is called can't work properly, as that means recursive
3079 use of the hash table during hash table expansion. */
3080 hashval_t hash;
3083 /* Return true when function is only called directly or it has alias.
3084 i.e. it is not externally visible, address was not taken and
3085 it is not used in any other non-standard way. */
3087 inline bool
3088 cgraph_node::only_called_directly_or_aliased_p (void)
3090 gcc_assert (!inlined_to);
3091 return (!force_output && !address_taken
3092 && !ifunc_resolver
3093 && !used_from_other_partition
3094 && !DECL_VIRTUAL_P (decl)
3095 && !DECL_STATIC_CONSTRUCTOR (decl)
3096 && !DECL_STATIC_DESTRUCTOR (decl)
3097 && !used_from_object_file_p ()
3098 && !externally_visible);
3101 /* Return true when function can be removed from callgraph
3102 if all direct calls are eliminated. */
3104 inline bool
3105 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
3107 gcc_checking_assert (!inlined_to);
3108 /* Extern inlines can always go, we will use the external definition. */
3109 if (DECL_EXTERNAL (decl))
3110 return true;
3111 /* When function is needed, we cannot remove it. */
3112 if (force_output || used_from_other_partition)
3113 return false;
3114 if (DECL_STATIC_CONSTRUCTOR (decl)
3115 || DECL_STATIC_DESTRUCTOR (decl))
3116 return false;
3117 /* Only COMDAT functions can be removed if externally visible. */
3118 if (externally_visible
3119 && ((!DECL_COMDAT (decl) || ifunc_resolver)
3120 || forced_by_abi
3121 || used_from_object_file_p ()))
3122 return false;
3123 return true;
3126 /* Verify cgraph, if consistency checking is enabled. */
3128 inline void
3129 cgraph_node::checking_verify_cgraph_nodes (void)
3131 if (flag_checking)
3132 cgraph_node::verify_cgraph_nodes ();
3135 /* Return true when variable can be removed from variable pool
3136 if all direct calls are eliminated. */
3138 inline bool
3139 varpool_node::can_remove_if_no_refs_p (void)
3141 if (DECL_EXTERNAL (decl))
3142 return true;
3143 return (!force_output && !used_from_other_partition
3144 && ((DECL_COMDAT (decl)
3145 && !forced_by_abi
3146 && !used_from_object_file_p ())
3147 || !externally_visible
3148 || DECL_HAS_VALUE_EXPR_P (decl)));
3151 /* Return true when all references to variable must be visible in ipa_ref_list.
3152 i.e. if the variable is not externally visible or not used in some magic
3153 way (asm statement or such).
3154 The magic uses are all summarized in force_output flag. */
3156 inline bool
3157 varpool_node::all_refs_explicit_p ()
3159 return (definition
3160 && !externally_visible
3161 && !used_from_other_partition
3162 && !force_output);
3165 struct tree_descriptor_hasher : ggc_ptr_hash<constant_descriptor_tree>
3167 static hashval_t hash (constant_descriptor_tree *);
3168 static bool equal (constant_descriptor_tree *, constant_descriptor_tree *);
3171 /* Constant pool accessor function. */
3172 hash_table<tree_descriptor_hasher> *constant_pool_htab (void);
3174 /* Return node that alias is aliasing. */
3176 inline cgraph_node *
3177 cgraph_node::get_alias_target (void)
3179 return dyn_cast <cgraph_node *> (symtab_node::get_alias_target ());
3182 /* Return node that alias is aliasing. */
3184 inline varpool_node *
3185 varpool_node::get_alias_target (void)
3187 return dyn_cast <varpool_node *> (symtab_node::get_alias_target ());
3190 /* Walk the alias chain to return the symbol NODE is alias of.
3191 If NODE is not an alias, return NODE.
3192 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3193 When REF is non-NULL, assume that reference happens in symbol REF
3194 when determining the availability. */
3196 inline symtab_node *
3197 symtab_node::ultimate_alias_target (enum availability *availability,
3198 symtab_node *ref)
3200 if (!alias)
3202 if (availability)
3203 *availability = get_availability (ref);
3204 return this;
3207 return ultimate_alias_target_1 (availability, ref);
3210 /* Given function symbol, walk the alias chain to return the function node
3211 is alias of. Do not walk through thunks.
3212 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3213 When REF is non-NULL, assume that reference happens in symbol REF
3214 when determining the availability. */
3216 inline cgraph_node *
3217 cgraph_node::ultimate_alias_target (enum availability *availability,
3218 symtab_node *ref)
3220 cgraph_node *n = dyn_cast <cgraph_node *>
3221 (symtab_node::ultimate_alias_target (availability, ref));
3222 if (!n && availability)
3223 *availability = AVAIL_NOT_AVAILABLE;
3224 return n;
3227 /* For given variable pool node, walk the alias chain to return the function
3228 the variable is alias of. Do not walk through thunks.
3229 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3230 When REF is non-NULL, assume that reference happens in symbol REF
3231 when determining the availability. */
3233 inline varpool_node *
3234 varpool_node::ultimate_alias_target (availability *availability,
3235 symtab_node *ref)
3237 varpool_node *n = dyn_cast <varpool_node *>
3238 (symtab_node::ultimate_alias_target (availability, ref));
3240 if (!n && availability)
3241 *availability = AVAIL_NOT_AVAILABLE;
3242 return n;
3245 /* Set callee N of call graph edge and add it to the corresponding set of
3246 callers. */
3248 inline void
3249 cgraph_edge::set_callee (cgraph_node *n)
3251 prev_caller = NULL;
3252 if (n->callers)
3253 n->callers->prev_caller = this;
3254 next_caller = n->callers;
3255 n->callers = this;
3256 callee = n;
3259 /* Return true when the edge represents a direct recursion. */
3261 inline bool
3262 cgraph_edge::recursive_p (void)
3264 cgraph_node *c = callee->ultimate_alias_target ();
3265 if (caller->inlined_to)
3266 return caller->inlined_to->decl == c->decl;
3267 else
3268 return caller->decl == c->decl;
3271 /* Remove the edge from the list of the callers of the callee. */
3273 inline void
3274 cgraph_edge::remove_callee (void)
3276 gcc_assert (!indirect_unknown_callee);
3277 if (prev_caller)
3278 prev_caller->next_caller = next_caller;
3279 if (next_caller)
3280 next_caller->prev_caller = prev_caller;
3281 if (!prev_caller)
3282 callee->callers = next_caller;
3285 /* Return true if call must bind to current definition. */
3287 inline bool
3288 cgraph_edge::binds_to_current_def_p ()
3290 if (callee)
3291 return callee->binds_to_current_def_p (caller);
3292 else
3293 return false;
3296 /* Expected frequency of executions within the function.
3297 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
3298 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
3300 inline int
3301 cgraph_edge::frequency ()
3303 return count.to_cgraph_frequency (caller->inlined_to
3304 ? caller->inlined_to->count
3305 : caller->count);
3309 /* Return true if the TM_CLONE bit is set for a given FNDECL. */
3310 static inline bool
3311 decl_is_tm_clone (const_tree fndecl)
3313 cgraph_node *n = cgraph_node::get (fndecl);
3314 if (n)
3315 return n->tm_clone;
3316 return false;
3319 /* Likewise indicate that a node is needed, i.e. reachable via some
3320 external means. */
3322 inline void
3323 cgraph_node::mark_force_output (void)
3325 force_output = 1;
3326 gcc_checking_assert (!inlined_to);
3329 /* Return true if function should be optimized for size. */
3331 inline enum optimize_size_level
3332 cgraph_node::optimize_for_size_p (void)
3334 if (opt_for_fn (decl, optimize_size))
3335 return OPTIMIZE_SIZE_MAX;
3336 if (count == profile_count::zero ())
3337 return OPTIMIZE_SIZE_MAX;
3338 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
3339 return OPTIMIZE_SIZE_BALANCED;
3340 else
3341 return OPTIMIZE_SIZE_NO;
3344 /* Return symtab_node for NODE or create one if it is not present
3345 in symtab. */
3347 inline symtab_node *
3348 symtab_node::get_create (tree node)
3350 if (TREE_CODE (node) == VAR_DECL)
3351 return varpool_node::get_create (node);
3352 else
3353 return cgraph_node::get_create (node);
3356 /* Return availability of NODE when referenced from REF. */
3358 inline enum availability
3359 symtab_node::get_availability (symtab_node *ref)
3361 if (is_a <cgraph_node *> (this))
3362 return dyn_cast <cgraph_node *> (this)->get_availability (ref);
3363 else
3364 return dyn_cast <varpool_node *> (this)->get_availability (ref);
3367 /* Call callback on symtab node and aliases associated to this node.
3368 When INCLUDE_OVERWRITABLE is false, overwritable symbols are skipped. */
3370 inline bool
3371 symtab_node::call_for_symbol_and_aliases (bool (*callback) (symtab_node *,
3372 void *),
3373 void *data,
3374 bool include_overwritable)
3376 if (include_overwritable
3377 || get_availability () > AVAIL_INTERPOSABLE)
3379 if (callback (this, data))
3380 return true;
3382 if (has_aliases_p ())
3383 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3384 return false;
3387 /* Call callback on function and aliases associated to the function.
3388 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3389 skipped. */
3391 inline bool
3392 cgraph_node::call_for_symbol_and_aliases (bool (*callback) (cgraph_node *,
3393 void *),
3394 void *data,
3395 bool include_overwritable)
3397 if (include_overwritable
3398 || get_availability () > AVAIL_INTERPOSABLE)
3400 if (callback (this, data))
3401 return true;
3403 if (has_aliases_p ())
3404 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3405 return false;
3408 /* Call callback on varpool symbol and aliases associated to varpool symbol.
3409 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3410 skipped. */
3412 inline bool
3413 varpool_node::call_for_symbol_and_aliases (bool (*callback) (varpool_node *,
3414 void *),
3415 void *data,
3416 bool include_overwritable)
3418 if (include_overwritable
3419 || get_availability () > AVAIL_INTERPOSABLE)
3421 if (callback (this, data))
3422 return true;
3424 if (has_aliases_p ())
3425 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3426 return false;
3429 /* Return true if reference may be used in address compare. */
3431 inline bool
3432 ipa_ref::address_matters_p ()
3434 if (use != IPA_REF_ADDR)
3435 return false;
3436 /* Addresses taken from virtual tables are never compared. */
3437 if (is_a <varpool_node *> (referring)
3438 && DECL_VIRTUAL_P (referring->decl))
3439 return false;
3440 return referred->address_can_be_compared_p ();
3443 /* Build polymorphic call context for indirect call E. */
3445 inline
3446 ipa_polymorphic_call_context::ipa_polymorphic_call_context (cgraph_edge *e)
3448 gcc_checking_assert (e->indirect_info->polymorphic);
3449 *this = e->indirect_info->context;
3452 /* Build empty "I know nothing" context. */
3454 inline
3455 ipa_polymorphic_call_context::ipa_polymorphic_call_context ()
3457 clear_speculation ();
3458 clear_outer_type ();
3459 invalid = false;
3462 /* Make context non-speculative. */
3464 inline void
3465 ipa_polymorphic_call_context::clear_speculation ()
3467 speculative_outer_type = NULL;
3468 speculative_offset = 0;
3469 speculative_maybe_derived_type = false;
3472 /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
3473 NULL, the context is set to dummy "I know nothing" setting. */
3475 inline void
3476 ipa_polymorphic_call_context::clear_outer_type (tree otr_type)
3478 outer_type = otr_type ? TYPE_MAIN_VARIANT (otr_type) : NULL;
3479 offset = 0;
3480 maybe_derived_type = true;
3481 maybe_in_construction = true;
3482 dynamic = true;
3485 /* Adjust all offsets in contexts by OFF bits. */
3487 inline void
3488 ipa_polymorphic_call_context::offset_by (HOST_WIDE_INT off)
3490 if (outer_type)
3491 offset += off;
3492 if (speculative_outer_type)
3493 speculative_offset += off;
3496 /* Return TRUE if context is fully useless. */
3498 inline bool
3499 ipa_polymorphic_call_context::useless_p () const
3501 return (!outer_type && !speculative_outer_type);
3504 /* When using fprintf (or similar), problems can arise with
3505 transient generated strings. Many string-generation APIs
3506 only support one result being alive at once (e.g. by
3507 returning a pointer to a statically-allocated buffer).
3509 If there is more than one generated string within one
3510 fprintf call: the first string gets evicted or overwritten
3511 by the second, before fprintf is fully evaluated.
3512 See e.g. PR/53136.
3514 This function provides a workaround for this, by providing
3515 a simple way to create copies of these transient strings,
3516 without the need to have explicit cleanup:
3518 fprintf (dumpfile, "string 1: %s string 2:%s\n",
3519 xstrdup_for_dump (EXPR_1),
3520 xstrdup_for_dump (EXPR_2));
3522 This is actually a simple wrapper around ggc_strdup, but
3523 the name documents the intent. We require that no GC can occur
3524 within the fprintf call. */
3526 static inline const char *
3527 xstrdup_for_dump (const char *transient_str)
3529 return ggc_strdup (transient_str);
3532 /* During LTO stream-in this predicate can be used to check whether node
3533 in question prevails in the linking to save some memory usage. */
3534 inline bool
3535 symtab_node::prevailing_p (void)
3537 return definition && ((!TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
3538 || previous_sharing_asm_name == NULL);
3541 extern GTY(()) symbol_table *saved_symtab;
3543 #if CHECKING_P
3545 namespace selftest {
3547 /* An RAII-style class for use in selftests for temporarily using a different
3548 symbol_table, so that such tests can be isolated from each other. */
3550 class symbol_table_test
3552 public:
3553 /* Constructor. Override "symtab". */
3554 symbol_table_test ();
3556 /* Destructor. Restore the saved_symtab. */
3557 ~symbol_table_test ();
3560 } // namespace selftest
3562 #endif /* CHECKING_P */
3564 #endif /* GCC_CGRAPH_H */