[RS6000] dg-do !compile and scan-assembler
[official-gcc.git] / gcc / cgraph.h
blobfb3ad95e064590cadad4c7fc6fb5f4b1bf709c08
1 /* Callgraph handling code.
2 Copyright (C) 2003-2020 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 ? ref_list.references->length () : 0;
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 ()
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 /* Set section for symbol and its aliases. */
323 void set_section (const char *section);
325 /* Set section, do not recurse into aliases.
326 When one wants to change section of symbol and its aliases,
327 use set_section. */
328 void set_section_for_node (const char *section);
330 /* Set initialization priority to PRIORITY. */
331 void set_init_priority (priority_type priority);
333 /* Return the initialization priority. */
334 priority_type get_init_priority ();
336 /* Return availability of NODE when referenced from REF. */
337 enum availability get_availability (symtab_node *ref = NULL);
339 /* During LTO stream-in this predicate can be used to check whether node
340 in question prevails in the linking to save some memory usage. */
341 bool prevailing_p (void);
343 /* Return true if NODE binds to current definition in final executable
344 when referenced from REF. If REF is NULL return conservative value
345 for any reference. */
346 bool binds_to_current_def_p (symtab_node *ref = NULL);
348 /* Make DECL local. */
349 void make_decl_local (void);
351 /* Copy visibility from N. */
352 void copy_visibility_from (symtab_node *n);
354 /* Return desired alignment of the definition. This is NOT alignment useful
355 to access THIS, because THIS may be interposable and DECL_ALIGN should
356 be used instead. It however must be guaranteed when output definition
357 of THIS. */
358 unsigned int definition_alignment ();
360 /* Return true if alignment can be increased. */
361 bool can_increase_alignment_p ();
363 /* Increase alignment of symbol to ALIGN. */
364 void increase_alignment (unsigned int align);
366 /* Return true if list contains an alias. */
367 bool has_aliases_p (void);
369 /* Return true when the symbol is real symbol, i.e. it is not inline clone
370 or abstract function kept for debug info purposes only. */
371 bool real_symbol_p (void);
373 /* Return true when the symbol needs to be output to the LTO symbol table. */
374 bool output_to_lto_symbol_table_p (void);
376 /* Determine if symbol declaration is needed. That is, visible to something
377 either outside this translation unit, something magic in the system
378 configury. This function is used just during symbol creation. */
379 bool needed_p (void);
381 /* Return true if this symbol is a function from the C frontend specified
382 directly in RTL form (with "__RTL"). */
383 bool native_rtl_p () const;
385 /* Return true when there are references to the node. */
386 bool referred_to_p (bool include_self = true);
388 /* Return true if symbol can be discarded by linker from the binary.
389 Assume that symbol is used (so there is no need to take into account
390 garbage collecting linkers)
392 This can happen for comdats, commons and weaks when they are prevailed
393 by other definition at static linking time. */
394 inline bool
395 can_be_discarded_p (void)
397 return (DECL_EXTERNAL (decl)
398 || ((get_comdat_group ()
399 || DECL_COMMON (decl)
400 || (DECL_SECTION_NAME (decl) && DECL_WEAK (decl)))
401 && ((resolution != LDPR_PREVAILING_DEF
402 && resolution != LDPR_PREVAILING_DEF_IRONLY_EXP)
403 || flag_incremental_link)
404 && resolution != LDPR_PREVAILING_DEF_IRONLY));
407 /* Return true if NODE is local to a particular COMDAT group, and must not
408 be named from outside the COMDAT. This is used for C++ decloned
409 constructors. */
410 inline bool comdat_local_p (void)
412 return (same_comdat_group && !TREE_PUBLIC (decl));
415 /* Return true if ONE and TWO are part of the same COMDAT group. */
416 inline bool in_same_comdat_group_p (symtab_node *target);
418 /* Return true if symbol is known to be nonzero. */
419 bool nonzero_address ();
421 /* Return 0 if symbol is known to have different address than S2,
422 Return 1 if symbol is known to have same address as S2,
423 return 2 otherwise.
425 If MEMORY_ACCESSED is true, assume that both memory pointer to THIS
426 and S2 is going to be accessed. This eliminates the situations when
427 either THIS or S2 is NULL and is useful for comparing bases when deciding
428 about memory aliasing. */
429 int equal_address_to (symtab_node *s2, bool memory_accessed = false);
431 /* Return true if symbol's address may possibly be compared to other
432 symbol's address. */
433 bool address_matters_p ();
435 /* Return true if NODE's address can be compared. This use properties
436 of NODE only and does not look if the address is actually taken in
437 interesting way. For that use ADDRESS_MATTERS_P instead. */
438 bool address_can_be_compared_p (void);
440 /* Return symbol table node associated with DECL, if any,
441 and NULL otherwise. */
442 static inline symtab_node *get (const_tree decl)
444 /* Check that we are called for sane type of object - functions
445 and static or external variables. */
446 gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL
447 || (TREE_CODE (decl) == VAR_DECL
448 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)
449 || in_lto_p)));
450 /* Check that the mapping is sane - perhaps this check can go away,
451 but at the moment frontends tends to corrupt the mapping by calling
452 memcpy/memset on the tree nodes. */
453 gcc_checking_assert (!decl->decl_with_vis.symtab_node
454 || decl->decl_with_vis.symtab_node->decl == decl);
455 return decl->decl_with_vis.symtab_node;
458 /* Try to find a symtab node for declaration DECL and if it does not
459 exist or if it corresponds to an inline clone, create a new one. */
460 static inline symtab_node * get_create (tree node);
462 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
463 Return NULL if there's no such node. */
464 static symtab_node *get_for_asmname (const_tree asmname);
466 /* Verify symbol table for internal consistency. */
467 static DEBUG_FUNCTION void verify_symtab_nodes (void);
469 /* Perform internal consistency checks, if they are enabled. */
470 static inline void checking_verify_symtab_nodes (void);
472 /* Type of the symbol. */
473 ENUM_BITFIELD (symtab_type) type : 8;
475 /* The symbols resolution. */
476 ENUM_BITFIELD (ld_plugin_symbol_resolution) resolution : 8;
478 /*** Flags representing the symbol type. ***/
480 /* True when symbol corresponds to a definition in current unit.
481 set via finalize_function or finalize_decl */
482 unsigned definition : 1;
483 /* True when symbol is an alias.
484 Set by assemble_alias. */
485 unsigned alias : 1;
486 /* When true the alias is translated into its target symbol either by GCC
487 or assembler (it also may just be a duplicate declaration of the same
488 linker name).
490 Currently transparent aliases come in three different flavors
491 - aliases having the same assembler name as their target (aka duplicated
492 declarations). In this case the assembler names compare via
493 assembler_names_equal_p and weakref is false
494 - aliases that are renamed at a time being output to final file
495 by varasm.c. For those DECL_ASSEMBLER_NAME have
496 IDENTIFIER_TRANSPARENT_ALIAS set and thus also their assembler
497 name must be unique.
498 Weakrefs belong to this category when we target assembler without
499 .weakref directive.
500 - weakrefs that are renamed by assembler via .weakref directive.
501 In this case the alias may or may not be definition (depending if
502 target declaration was seen by the compiler), weakref is set.
503 Unless we are before renaming statics, assembler names are different.
505 Given that we now support duplicate declarations, the second option is
506 redundant and will be removed. */
507 unsigned transparent_alias : 1;
508 /* True when alias is a weakref. */
509 unsigned weakref : 1;
510 /* C++ frontend produce same body aliases and extra name aliases for
511 virtual functions and vtables that are obviously equivalent.
512 Those aliases are bit special, especially because C++ frontend
513 visibility code is so ugly it cannot get them right at first time
514 and their visibility needs to be copied from their "masters" at
515 the end of parsing. */
516 unsigned cpp_implicit_alias : 1;
517 /* The alias is a symbol version. */
518 unsigned symver : 1;
519 /* Set once the definition was analyzed. The list of references and
520 other properties are built during analysis. */
521 unsigned analyzed : 1;
522 /* Set for write-only variables. */
523 unsigned writeonly : 1;
524 /* Visibility of symbol was used for further optimization; do not
525 permit further changes. */
526 unsigned refuse_visibility_changes : 1;
528 /*** Visibility and linkage flags. ***/
530 /* Set when function is visible by other units. */
531 unsigned externally_visible : 1;
532 /* Don't reorder to other symbols having this set. */
533 unsigned no_reorder : 1;
534 /* The symbol will be assumed to be used in an invisible way (like
535 by an toplevel asm statement). */
536 unsigned force_output : 1;
537 /* Like FORCE_OUTPUT, but in the case it is ABI requiring the symbol to be
538 exported. Unlike FORCE_OUTPUT this flag gets cleared to symbols promoted
539 to static and it does not inhibit optimization. */
540 unsigned forced_by_abi : 1;
541 /* True when the name is known to be unique and thus it does not need mangling. */
542 unsigned unique_name : 1;
543 /* Specify whether the section was set by user or by
544 compiler via -ffunction-sections. */
545 unsigned implicit_section : 1;
546 /* True when body and other characteristics have been removed by
547 symtab_remove_unreachable_nodes. */
548 unsigned body_removed : 1;
550 /*** WHOPR Partitioning flags.
551 These flags are used at ltrans stage when only part of the callgraph is
552 available. ***/
554 /* Set when variable is used from other LTRANS partition. */
555 unsigned used_from_other_partition : 1;
556 /* Set when function is available in the other LTRANS partition.
557 During WPA output it is used to mark nodes that are present in
558 multiple partitions. */
559 unsigned in_other_partition : 1;
563 /*** other flags. ***/
565 /* Set when symbol has address taken. */
566 unsigned address_taken : 1;
567 /* Set when init priority is set. */
568 unsigned in_init_priority_hash : 1;
570 /* Set when symbol needs to be streamed into LTO bytecode for LTO, or in case
571 of offloading, for separate compilation for a different target. */
572 unsigned need_lto_streaming : 1;
574 /* Set when symbol can be streamed into bytecode for offloading. */
575 unsigned offloadable : 1;
577 /* Set when symbol is an IFUNC resolver. */
578 unsigned ifunc_resolver : 1;
581 /* Ordering of all symtab entries. */
582 int order;
584 /* Declaration representing the symbol. */
585 tree decl;
587 /* Linked list of symbol table entries starting with symtab_nodes. */
588 symtab_node *next;
589 symtab_node *previous;
591 /* Linked list of symbols with the same asm name. There may be multiple
592 entries for single symbol name during LTO, because symbols are renamed
593 only after partitioning.
595 Because inline clones are kept in the assembler name has, they also produce
596 duplicate entries.
598 There are also several long standing bugs where frontends and builtin
599 code produce duplicated decls. */
600 symtab_node *next_sharing_asm_name;
601 symtab_node *previous_sharing_asm_name;
603 /* Circular list of nodes in the same comdat group if non-NULL. */
604 symtab_node *same_comdat_group;
606 /* Vectors of referring and referenced entities. */
607 ipa_ref_list ref_list;
609 /* Alias target. May be either DECL pointer or ASSEMBLER_NAME pointer
610 depending to what was known to frontend on the creation time.
611 Once alias is resolved, this pointer become NULL. */
612 tree alias_target;
614 /* File stream where this node is being written to. */
615 struct lto_file_decl_data * lto_file_data;
617 PTR GTY ((skip)) aux;
619 /* Comdat group the symbol is in. Can be private if GGC allowed that. */
620 tree x_comdat_group;
622 /* Section name. Again can be private, if allowed. */
623 section_hash_entry *x_section;
625 protected:
626 /* Dump base fields of symtab nodes to F. Not to be used directly. */
627 void dump_base (FILE *);
629 /* Verify common part of symtab node. */
630 bool DEBUG_FUNCTION verify_base (void);
632 /* Remove node from symbol table. This function is not used directly, but via
633 cgraph/varpool node removal routines. */
634 void unregister (void);
636 /* Return the initialization and finalization priority information for
637 DECL. If there is no previous priority information, a freshly
638 allocated structure is returned. */
639 struct symbol_priority_map *priority_info (void);
641 /* Worker for call_for_symbol_and_aliases_1. */
642 bool call_for_symbol_and_aliases_1 (bool (*callback) (symtab_node *, void *),
643 void *data,
644 bool include_overwrite);
645 private:
646 /* Worker for set_section. */
647 static bool set_section (symtab_node *n, void *s);
649 /* Worker for symtab_resolve_alias. */
650 static bool set_implicit_section (symtab_node *n, void *);
652 /* Worker searching noninterposable alias. */
653 static bool noninterposable_alias (symtab_node *node, void *data);
655 /* Worker for ultimate_alias_target. */
656 symtab_node *ultimate_alias_target_1 (enum availability *avail = NULL,
657 symtab_node *ref = NULL);
659 /* Get dump name with normal or assembly name. */
660 const char *get_dump_name (bool asm_name_p) const;
663 inline void
664 symtab_node::checking_verify_symtab_nodes (void)
666 if (flag_checking)
667 symtab_node::verify_symtab_nodes ();
670 /* Walk all aliases for NODE. */
671 #define FOR_EACH_ALIAS(NODE, ALIAS) \
672 for (unsigned ALIAS##_iter_ = 0; \
673 (NODE)->iterate_direct_aliases (ALIAS##_iter_, ALIAS); \
674 ALIAS##_iter_++)
676 /* This is the information that is put into the cgraph local structure
677 to recover a function. */
678 struct lto_file_decl_data;
680 extern const char * const cgraph_availability_names[];
681 extern const char * const ld_plugin_symbol_resolution_names[];
682 extern const char * const tls_model_names[];
684 /* Represent which DECL tree (or reference to such tree)
685 will be replaced by another tree while versioning. */
686 struct GTY(()) ipa_replace_map
688 /* The new (replacing) tree. */
689 tree new_tree;
690 /* Parameter number to replace, when old_tree is NULL. */
691 int parm_num;
694 struct GTY(()) cgraph_clone_info
696 /* Constants discovered by IPA-CP, i.e. which parameter should be replaced
697 with what. */
698 vec<ipa_replace_map *, va_gc> *tree_map;
699 /* Parameter modification that IPA-SRA decided to perform. */
700 ipa_param_adjustments *param_adjustments;
701 /* Lists of dummy-decl and offset pairs representing split formal parameters
702 in the caller. Offsets of all new replacements are enumerated, those
703 coming from the same original parameter have the same dummy decl stored
704 along with them.
706 Dummy decls sit in call statement arguments followed by new parameter
707 decls (or their SSA names) in between (caller) clone materialization and
708 call redirection. Redirection then recognizes the dummy variable and
709 together with the stored offsets can reconstruct what exactly the new
710 parameter decls represent and can leave in place only those that the
711 callee expects. */
712 vec<ipa_param_performed_split, va_gc> *performed_splits;
715 enum cgraph_simd_clone_arg_type
717 SIMD_CLONE_ARG_TYPE_VECTOR,
718 SIMD_CLONE_ARG_TYPE_UNIFORM,
719 /* These are only for integer/pointer arguments passed by value. */
720 SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP,
721 SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP,
722 /* These 6 are only for reference type arguments or arguments passed
723 by reference. */
724 SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP,
725 SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP,
726 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP,
727 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP,
728 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP,
729 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP,
730 SIMD_CLONE_ARG_TYPE_MASK
733 /* Function arguments in the original function of a SIMD clone.
734 Supplementary data for `struct simd_clone'. */
736 struct GTY(()) cgraph_simd_clone_arg {
737 /* Original function argument as it originally existed in
738 DECL_ARGUMENTS. */
739 tree orig_arg;
741 /* orig_arg's function (or for extern functions type from
742 TYPE_ARG_TYPES). */
743 tree orig_type;
745 /* If argument is a vector, this holds the vector version of
746 orig_arg that after adjusting the argument types will live in
747 DECL_ARGUMENTS. Otherwise, this is NULL.
749 This basically holds:
750 vector(simdlen) __typeof__(orig_arg) new_arg. */
751 tree vector_arg;
753 /* vector_arg's type (or for extern functions new vector type. */
754 tree vector_type;
756 /* If argument is a vector, this holds the array where the simd
757 argument is held while executing the simd clone function. This
758 is a local variable in the cloned function. Its content is
759 copied from vector_arg upon entry to the clone.
761 This basically holds:
762 __typeof__(orig_arg) simd_array[simdlen]. */
763 tree simd_array;
765 /* A SIMD clone's argument can be either linear (constant or
766 variable), uniform, or vector. */
767 enum cgraph_simd_clone_arg_type arg_type;
769 /* For arg_type SIMD_CLONE_ARG_TYPE_LINEAR_*CONSTANT_STEP this is
770 the constant linear step, if arg_type is
771 SIMD_CLONE_ARG_TYPE_LINEAR_*VARIABLE_STEP, this is index of
772 the uniform argument holding the step, otherwise 0. */
773 HOST_WIDE_INT linear_step;
775 /* Variable alignment if available, otherwise 0. */
776 unsigned int alignment;
779 /* Specific data for a SIMD function clone. */
781 struct GTY(()) cgraph_simd_clone {
782 /* Number of words in the SIMD lane associated with this clone. */
783 unsigned int simdlen;
785 /* Number of annotated function arguments in `args'. This is
786 usually the number of named arguments in FNDECL. */
787 unsigned int nargs;
789 /* Max hardware vector size in bits for integral vectors. */
790 unsigned int vecsize_int;
792 /* Max hardware vector size in bits for floating point vectors. */
793 unsigned int vecsize_float;
795 /* Machine mode of the mask argument(s), if they are to be passed
796 as bitmasks in integer argument(s). VOIDmode if masks are passed
797 as vectors of characteristic type. */
798 machine_mode mask_mode;
800 /* The mangling character for a given vector size. This is used
801 to determine the ISA mangling bit as specified in the Intel
802 Vector ABI. */
803 unsigned char vecsize_mangle;
805 /* True if this is the masked, in-branch version of the clone,
806 otherwise false. */
807 unsigned int inbranch : 1;
809 /* Doubly linked list of SIMD clones. */
810 cgraph_node *prev_clone, *next_clone;
812 /* Original cgraph node the SIMD clones were created for. */
813 cgraph_node *origin;
815 /* Annotated function arguments for the original function. */
816 cgraph_simd_clone_arg GTY((length ("%h.nargs"))) args[1];
819 /* Function Multiversioning info. */
820 struct GTY((for_user)) cgraph_function_version_info {
821 /* The cgraph_node for which the function version info is stored. */
822 cgraph_node *this_node;
823 /* Chains all the semantically identical function versions. The
824 first function in this chain is the version_info node of the
825 default function. */
826 cgraph_function_version_info *prev;
827 /* If this version node corresponds to a dispatcher for function
828 versions, this points to the version info node of the default
829 function, the first node in the chain. */
830 cgraph_function_version_info *next;
831 /* If this node corresponds to a function version, this points
832 to the dispatcher function decl, which is the function that must
833 be called to execute the right function version at run-time.
835 If this cgraph node is a dispatcher (if dispatcher_function is
836 true, in the cgraph_node struct) for function versions, this
837 points to resolver function, which holds the function body of the
838 dispatcher. The dispatcher decl is an alias to the resolver
839 function decl. */
840 tree dispatcher_resolver;
843 #define DEFCIFCODE(code, type, string) CIF_ ## code,
844 /* Reasons for inlining failures. */
846 enum cgraph_inline_failed_t {
847 #include "cif-code.def"
848 CIF_N_REASONS
851 enum cgraph_inline_failed_type_t
853 CIF_FINAL_NORMAL = 0,
854 CIF_FINAL_ERROR
857 struct cgraph_edge;
859 struct cgraph_edge_hasher : ggc_ptr_hash<cgraph_edge>
861 typedef gimple *compare_type;
863 static hashval_t hash (cgraph_edge *);
864 static hashval_t hash (gimple *);
865 static bool equal (cgraph_edge *, gimple *);
868 /* The cgraph data structure.
869 Each function decl has assigned cgraph_node listing callees and callers. */
871 struct GTY((tag ("SYMTAB_FUNCTION"))) cgraph_node : public symtab_node
873 friend class symbol_table;
875 /* Constructor. */
876 explicit cgraph_node (int uid)
877 : symtab_node (SYMTAB_FUNCTION), callees (NULL), callers (NULL),
878 indirect_calls (NULL),
879 next_sibling_clone (NULL), prev_sibling_clone (NULL), clones (NULL),
880 clone_of (NULL), call_site_hash (NULL), former_clone_of (NULL),
881 simdclone (NULL), simd_clones (NULL), ipa_transforms_to_apply (vNULL),
882 inlined_to (NULL), rtl (NULL), clone (),
883 count (profile_count::uninitialized ()),
884 count_materialization_scale (REG_BR_PROB_BASE), profile_id (0),
885 unit_id (0), tp_first_run (0), thunk (false),
886 used_as_abstract_origin (false),
887 lowered (false), process (false), frequency (NODE_FREQUENCY_NORMAL),
888 only_called_at_startup (false), only_called_at_exit (false),
889 tm_clone (false), dispatcher_function (false), calls_comdat_local (false),
890 icf_merged (false), nonfreeing_fn (false), merged_comdat (false),
891 merged_extern_inline (false), parallelized_function (false),
892 split_part (false), indirect_call_target (false), local (false),
893 versionable (false), can_change_signature (false),
894 redefined_extern_inline (false), tm_may_enter_irr (false),
895 ipcp_clone (false), declare_variant_alt (false),
896 calls_declare_variant_alt (false), m_uid (uid), m_summary_id (-1)
899 /* Remove the node from cgraph and all inline clones inlined into it.
900 Skip however removal of FORBIDDEN_NODE and return true if it needs to be
901 removed. This allows to call the function from outer loop walking clone
902 tree. */
903 bool remove_symbol_and_inline_clones (cgraph_node *forbidden_node = NULL);
905 /* Record all references from cgraph_node that are taken
906 in statement STMT. */
907 void record_stmt_references (gimple *stmt);
909 /* Like cgraph_set_call_stmt but walk the clone tree and update all
910 clones sharing the same function body.
911 When WHOLE_SPECULATIVE_EDGES is true, all three components of
912 speculative edge gets updated. Otherwise we update only direct
913 call. */
914 void set_call_stmt_including_clones (gimple *old_stmt, gcall *new_stmt,
915 bool update_speculative = true);
917 /* Walk the alias chain to return the function cgraph_node is alias of.
918 Walk through thunk, too.
919 When AVAILABILITY is non-NULL, get minimal availability in the chain.
920 When REF is non-NULL, assume that reference happens in symbol REF
921 when determining the availability. */
922 cgraph_node *function_symbol (enum availability *avail = NULL,
923 struct symtab_node *ref = NULL);
925 /* Walk the alias chain to return the function cgraph_node is alias of.
926 Walk through non virtual thunks, too. Thus we return either a function
927 or a virtual thunk node.
928 When AVAILABILITY is non-NULL, get minimal availability in the chain.
929 When REF is non-NULL, assume that reference happens in symbol REF
930 when determining the availability. */
931 cgraph_node *function_or_virtual_thunk_symbol
932 (enum availability *avail = NULL,
933 struct symtab_node *ref = NULL);
935 /* Create node representing clone of N executed COUNT times. Decrease
936 the execution counts from original node too.
937 The new clone will have decl set to DECL that may or may not be the same
938 as decl of N.
940 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
941 function's profile to reflect the fact that part of execution is handled
942 by node.
943 When CALL_DUPLICATION_HOOK is true, the ipa passes are acknowledged about
944 the new clone. Otherwise the caller is responsible for doing so later.
946 If the new node is being inlined into another one, NEW_INLINED_TO should be
947 the outline function the new one is (even indirectly) inlined to.
948 All hooks will see this in node's inlined_to, when invoked.
949 Can be NULL if the node is not inlined. SUFFIX is string that is appended
950 to the original name. */
951 cgraph_node *create_clone (tree decl, profile_count count,
952 bool update_original,
953 vec<cgraph_edge *> redirect_callers,
954 bool call_duplication_hook,
955 cgraph_node *new_inlined_to,
956 ipa_param_adjustments *param_adjustments,
957 const char *suffix = NULL);
959 /* Create callgraph node clone with new declaration. The actual body will be
960 copied later at compilation stage. The name of the new clone will be
961 constructed from the name of the original node, SUFFIX and NUM_SUFFIX. */
962 cgraph_node *create_virtual_clone (vec<cgraph_edge *> redirect_callers,
963 vec<ipa_replace_map *, va_gc> *tree_map,
964 ipa_param_adjustments *param_adjustments,
965 const char * suffix, unsigned num_suffix);
967 /* Remove the node from the tree of virtual and inline clones and make it a
968 standalone node - not a clone any more. */
969 void remove_from_clone_tree ();
971 /* cgraph node being removed from symbol table; see if its entry can be
972 replaced by other inline clone. */
973 cgraph_node *find_replacement (void);
975 /* Create a new cgraph node which is the new version of
976 callgraph node. REDIRECT_CALLERS holds the callers
977 edges which should be redirected to point to
978 NEW_VERSION. ALL the callees edges of the node
979 are cloned to the new version node. Return the new
980 version node.
982 If non-NULL BLOCK_TO_COPY determine what basic blocks
983 was copied to prevent duplications of calls that are dead
984 in the clone.
986 SUFFIX is string that is appended to the original name. */
988 cgraph_node *create_version_clone (tree new_decl,
989 vec<cgraph_edge *> redirect_callers,
990 bitmap bbs_to_copy,
991 const char *suffix = NULL);
993 /* Perform function versioning.
994 Function versioning includes copying of the tree and
995 a callgraph update (creating a new cgraph node and updating
996 its callees and callers).
998 REDIRECT_CALLERS varray includes the edges to be redirected
999 to the new version.
1001 TREE_MAP is a mapping of tree nodes we want to replace with
1002 new ones (according to results of prior analysis).
1004 If non-NULL ARGS_TO_SKIP determine function parameters to remove
1005 from new version.
1006 If SKIP_RETURN is true, the new version will return void.
1007 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
1008 If non_NULL NEW_ENTRY determine new entry BB of the clone.
1010 If TARGET_ATTRIBUTES is non-null, when creating a new declaration,
1011 add the attributes to DECL_ATTRIBUTES. And call valid_attribute_p
1012 that will promote value of the attribute DECL_FUNCTION_SPECIFIC_TARGET
1013 of the declaration.
1015 Return the new version's cgraph node. */
1016 cgraph_node *create_version_clone_with_body
1017 (vec<cgraph_edge *> redirect_callers,
1018 vec<ipa_replace_map *, va_gc> *tree_map,
1019 ipa_param_adjustments *param_adjustments,
1020 bitmap bbs_to_copy, basic_block new_entry_block, const char *clone_name,
1021 tree target_attributes = NULL_TREE);
1023 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
1024 corresponding to cgraph_node. */
1025 cgraph_function_version_info *insert_new_function_version (void);
1027 /* Get the cgraph_function_version_info node corresponding to node. */
1028 cgraph_function_version_info *function_version (void);
1030 /* Discover all functions and variables that are trivially needed, analyze
1031 them as well as all functions and variables referred by them */
1032 void analyze (void);
1034 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
1035 aliases DECL with an adjustments made into the first parameter.
1036 See comments in struct symtab-thunks.h for detail on the parameters. */
1037 cgraph_node * create_thunk (tree alias, tree, bool this_adjusting,
1038 HOST_WIDE_INT fixed_offset,
1039 HOST_WIDE_INT virtual_value,
1040 HOST_WIDE_INT indirect_offset,
1041 tree virtual_offset,
1042 tree real_alias);
1045 /* Return node that alias is aliasing. */
1046 inline cgraph_node *get_alias_target (void);
1048 /* Given function symbol, walk the alias chain to return the function node
1049 is alias of. Do not walk through thunks.
1050 When AVAILABILITY is non-NULL, get minimal availability in the chain.
1051 When REF is non-NULL, assume that reference happens in symbol REF
1052 when determining the availability. */
1054 cgraph_node *ultimate_alias_target (availability *availability = NULL,
1055 symtab_node *ref = NULL);
1057 /* Call expand_thunk on all callers that are thunks and analyze those
1058 nodes that were expanded. */
1059 void expand_all_artificial_thunks ();
1061 /* Assemble thunks and aliases associated to node. */
1062 void assemble_thunks_and_aliases (void);
1064 /* Expand function specified by node. */
1065 void expand (void);
1067 /* As an GCC extension we allow redefinition of the function. The
1068 semantics when both copies of bodies differ is not well defined.
1069 We replace the old body with new body so in unit at a time mode
1070 we always use new body, while in normal mode we may end up with
1071 old body inlined into some functions and new body expanded and
1072 inlined in others. */
1073 void reset (void);
1075 /* Creates a wrapper from cgraph_node to TARGET node. Thunk is used for this
1076 kind of wrapper method. */
1077 void create_wrapper (cgraph_node *target);
1079 /* Verify cgraph nodes of the cgraph node. */
1080 void DEBUG_FUNCTION verify_node (void);
1082 /* Remove function from symbol table. */
1083 void remove (void);
1085 /* Dump call graph node to file F. */
1086 void dump (FILE *f);
1088 /* Dump call graph node to file F. */
1089 void dump_graphviz (FILE *f);
1091 /* Dump call graph node to stderr. */
1092 void DEBUG_FUNCTION debug (void);
1094 /* When doing LTO, read cgraph_node's body from disk if it is not already
1095 present. */
1096 bool get_untransformed_body ();
1098 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
1099 if it is not already present. When some IPA transformations are scheduled,
1100 apply them. */
1101 bool get_body ();
1103 void materialize_clone (void);
1105 /* Release memory used to represent body of function.
1106 Use this only for functions that are released before being translated to
1107 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1108 are free'd in final.c via free_after_compilation(). */
1109 void release_body (bool keep_arguments = false);
1111 /* Return the DECL_STRUCT_FUNCTION of the function. */
1112 struct function *get_fun () const;
1114 /* Bring cgraph node local. */
1115 void make_local (void);
1117 /* Likewise indicate that a node is having address taken. */
1118 void mark_address_taken (void);
1120 /* Set finalization priority to PRIORITY. */
1121 void set_fini_priority (priority_type priority);
1123 /* Return the finalization priority. */
1124 priority_type get_fini_priority (void);
1126 /* Create edge from a given function to CALLEE in the cgraph. */
1127 cgraph_edge *create_edge (cgraph_node *callee,
1128 gcall *call_stmt, profile_count count,
1129 bool cloning_p = false);
1131 /* Create an indirect edge with a yet-undetermined callee where the call
1132 statement destination is a formal parameter of the caller with index
1133 PARAM_INDEX. */
1134 cgraph_edge *create_indirect_edge (gcall *call_stmt, int ecf_flags,
1135 profile_count count,
1136 bool cloning_p = false);
1138 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
1139 same function body. If clones already have edge for OLD_STMT; only
1140 update the edge same way as cgraph_set_call_stmt_including_clones does. */
1141 void create_edge_including_clones (cgraph_node *callee,
1142 gimple *old_stmt, gcall *stmt,
1143 profile_count count,
1144 cgraph_inline_failed_t reason);
1146 /* Return the callgraph edge representing the GIMPLE_CALL statement
1147 CALL_STMT. */
1148 cgraph_edge *get_edge (gimple *call_stmt);
1150 /* Collect all callers of cgraph_node and its aliases that are known to lead
1151 to NODE (i.e. are not overwritable) and that are not thunks. */
1152 vec<cgraph_edge *> collect_callers (void);
1154 /* Remove all callers from the node. */
1155 void remove_callers (void);
1157 /* Remove all callees from the node. */
1158 void remove_callees (void);
1160 /* Return function availability. See cgraph.h for description of individual
1161 return values. */
1162 enum availability get_availability (symtab_node *ref = NULL);
1164 /* Set TREE_NOTHROW on cgraph_node's decl and on aliases of the node
1165 if any to NOTHROW. */
1166 bool set_nothrow_flag (bool nothrow);
1168 /* SET DECL_IS_MALLOC on cgraph_node's decl and on aliases of the node
1169 if any. */
1170 bool set_malloc_flag (bool malloc_p);
1172 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
1173 If SET_CONST if false, clear the flag.
1175 When setting the flag be careful about possible interposition and
1176 do not set the flag for functions that can be interposed and set pure
1177 flag for functions that can bind to other definition.
1179 Return true if any change was done. */
1181 bool set_const_flag (bool set_const, bool looping);
1183 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
1184 if any to PURE.
1186 When setting the flag, be careful about possible interposition.
1187 Return true if any change was done. */
1189 bool set_pure_flag (bool pure, bool looping);
1191 /* Call callback on function and aliases associated to the function.
1192 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1193 skipped. */
1195 bool call_for_symbol_and_aliases (bool (*callback) (cgraph_node *,
1196 void *),
1197 void *data, bool include_overwritable);
1199 /* Call callback on cgraph_node, thunks and aliases associated to NODE.
1200 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1201 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
1202 skipped. */
1203 bool call_for_symbol_thunks_and_aliases (bool (*callback) (cgraph_node *node,
1204 void *data),
1205 void *data,
1206 bool include_overwritable,
1207 bool exclude_virtual_thunks = false);
1209 /* Likewise indicate that a node is needed, i.e. reachable via some
1210 external means. */
1211 inline void mark_force_output (void);
1213 /* Return true when function can be marked local. */
1214 bool local_p (void);
1216 /* Return true if cgraph_node can be made local for API change.
1217 Extern inline functions and C++ COMDAT functions can be made local
1218 at the expense of possible code size growth if function is used in multiple
1219 compilation units. */
1220 bool can_be_local_p (void);
1222 /* Return true when cgraph_node cannot return or throw and thus
1223 it is safe to ignore its side effects for IPA analysis. */
1224 bool cannot_return_p (void);
1226 /* Return true when function cgraph_node and all its aliases are only called
1227 directly.
1228 i.e. it is not externally visible, address was not taken and
1229 it is not used in any other non-standard way. */
1230 bool only_called_directly_p (void);
1232 /* Return true when function is only called directly or it has alias.
1233 i.e. it is not externally visible, address was not taken and
1234 it is not used in any other non-standard way. */
1235 inline bool only_called_directly_or_aliased_p (void);
1237 /* Return true when function cgraph_node can be expected to be removed
1238 from program when direct calls in this compilation unit are removed.
1240 As a special case COMDAT functions are
1241 cgraph_can_remove_if_no_direct_calls_p while the are not
1242 cgraph_only_called_directly_p (it is possible they are called from other
1243 unit)
1245 This function behaves as cgraph_only_called_directly_p because eliminating
1246 all uses of COMDAT function does not make it necessarily disappear from
1247 the program unless we are compiling whole program or we do LTO. In this
1248 case we know we win since dynamic linking will not really discard the
1249 linkonce section.
1251 If WILL_INLINE is true, assume that function will be inlined into all the
1252 direct calls. */
1253 bool will_be_removed_from_program_if_no_direct_calls_p
1254 (bool will_inline = false);
1256 /* Return true when function can be removed from callgraph
1257 if all direct calls and references are eliminated. The function does
1258 not take into account comdat groups. */
1259 bool can_remove_if_no_direct_calls_and_refs_p (void);
1261 /* Return true when function cgraph_node and its aliases can be removed from
1262 callgraph if all direct calls are eliminated.
1263 If WILL_INLINE is true, assume that function will be inlined into all the
1264 direct calls. */
1265 bool can_remove_if_no_direct_calls_p (bool will_inline = false);
1267 /* Return true when callgraph node is a function with Gimple body defined
1268 in current unit. Functions can also be define externally or they
1269 can be thunks with no Gimple representation.
1271 Note that at WPA stage, the function body may not be present in memory. */
1272 inline bool has_gimple_body_p (void);
1274 /* Return true if this node represents a former, i.e. an expanded, thunk. */
1275 bool former_thunk_p (void);
1277 /* Check if function calls comdat local. This is used to recompute
1278 calls_comdat_local flag after function transformations. */
1279 bool check_calls_comdat_local_p ();
1281 /* Return true if function should be optimized for size. */
1282 enum optimize_size_level optimize_for_size_p (void);
1284 /* Dump the callgraph to file F. */
1285 static void dump_cgraph (FILE *f);
1287 /* Dump the call graph to stderr. */
1288 static inline
1289 void debug_cgraph (void)
1291 dump_cgraph (stderr);
1294 /* Get unique identifier of the node. */
1295 inline int get_uid ()
1297 return m_uid;
1300 /* Get summary id of the node. */
1301 inline int get_summary_id ()
1303 return m_summary_id;
1306 /* Record that DECL1 and DECL2 are semantically identical function
1307 versions. */
1308 static void record_function_versions (tree decl1, tree decl2);
1310 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
1311 DECL is a duplicate declaration. */
1312 static void delete_function_version_by_decl (tree decl);
1314 /* Add the function FNDECL to the call graph.
1315 Unlike finalize_function, this function is intended to be used
1316 by middle end and allows insertion of new function at arbitrary point
1317 of compilation. The function can be either in high, low or SSA form
1318 GIMPLE.
1320 The function is assumed to be reachable and have address taken (so no
1321 API breaking optimizations are performed on it).
1323 Main work done by this function is to enqueue the function for later
1324 processing to avoid need the passes to be re-entrant. */
1325 static void add_new_function (tree fndecl, bool lowered);
1327 /* Return callgraph node for given symbol and check it is a function. */
1328 static inline cgraph_node *get (const_tree decl)
1330 gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL);
1331 return dyn_cast <cgraph_node *> (symtab_node::get (decl));
1334 /* DECL has been parsed. Take it, queue it, compile it at the whim of the
1335 logic in effect. If NO_COLLECT is true, then our caller cannot stand to
1336 have the garbage collector run at the moment. We would need to either
1337 create a new GC context, or just not compile right now. */
1338 static void finalize_function (tree, bool);
1340 /* Return cgraph node assigned to DECL. Create new one when needed. */
1341 static cgraph_node * create (tree decl);
1343 /* Try to find a call graph node for declaration DECL and if it does not
1344 exist or if it corresponds to an inline clone, create a new one. */
1345 static cgraph_node * get_create (tree);
1347 /* Return local info for the compiled function. */
1348 static cgraph_node *local_info_node (tree decl);
1350 /* Return RTL info for the compiled function. */
1351 static struct cgraph_rtl_info *rtl_info (const_tree);
1353 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
1354 Return NULL if there's no such node. */
1355 static cgraph_node *get_for_asmname (tree asmname);
1357 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if
1358 successful and NULL otherwise.
1359 Same body aliases are output whenever the body of DECL is output,
1360 and cgraph_node::get (ALIAS) transparently
1361 returns cgraph_node::get (DECL). */
1362 static cgraph_node * create_same_body_alias (tree alias, tree decl);
1364 /* Verify whole cgraph structure. */
1365 static void DEBUG_FUNCTION verify_cgraph_nodes (void);
1367 /* Verify cgraph, if consistency checking is enabled. */
1368 static inline void checking_verify_cgraph_nodes (void);
1370 /* Worker to bring NODE local. */
1371 static bool make_local (cgraph_node *node, void *);
1373 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
1374 the function body is associated
1375 with (not necessarily cgraph_node (DECL). */
1376 static cgraph_node *create_alias (tree alias, tree target);
1378 /* Return true if NODE has thunk. */
1379 static bool has_thunk_p (cgraph_node *node, void *);
1381 cgraph_edge *callees;
1382 cgraph_edge *callers;
1383 /* List of edges representing indirect calls with a yet undetermined
1384 callee. */
1385 cgraph_edge *indirect_calls;
1386 cgraph_node *next_sibling_clone;
1387 cgraph_node *prev_sibling_clone;
1388 cgraph_node *clones;
1389 cgraph_node *clone_of;
1390 /* For functions with many calls sites it holds map from call expression
1391 to the edge to speed up cgraph_edge function. */
1392 hash_table<cgraph_edge_hasher> *GTY(()) call_site_hash;
1393 /* Declaration node used to be clone of. */
1394 tree former_clone_of;
1396 /* If this is a SIMD clone, this points to the SIMD specific
1397 information for it. */
1398 cgraph_simd_clone *simdclone;
1399 /* If this function has SIMD clones, this points to the first clone. */
1400 cgraph_node *simd_clones;
1402 /* Interprocedural passes scheduled to have their transform functions
1403 applied next time we execute local pass on them. We maintain it
1404 per-function in order to allow IPA passes to introduce new functions. */
1405 vec<ipa_opt_pass, va_heap, vl_ptr> GTY((skip)) ipa_transforms_to_apply;
1407 /* For inline clones this points to the function they will be
1408 inlined into. */
1409 cgraph_node *inlined_to;
1411 struct cgraph_rtl_info *rtl;
1412 cgraph_clone_info clone;
1414 /* Expected number of executions: calculated in profile.c. */
1415 profile_count count;
1416 /* How to scale counts at materialization time; used to merge
1417 LTO units with different number of profile runs. */
1418 int count_materialization_scale;
1419 /* ID assigned by the profiling. */
1420 unsigned int profile_id;
1421 /* ID of the translation unit. */
1422 int unit_id;
1423 /* Time profiler: first run of function. */
1424 int tp_first_run;
1426 /* True when symbol is a thunk. */
1427 unsigned thunk : 1;
1428 /* Set when decl is an abstract function pointed to by the
1429 ABSTRACT_DECL_ORIGIN of a reachable function. */
1430 unsigned used_as_abstract_origin : 1;
1431 /* Set once the function is lowered (i.e. its CFG is built). */
1432 unsigned lowered : 1;
1433 /* Set once the function has been instantiated and its callee
1434 lists created. */
1435 unsigned process : 1;
1436 /* How commonly executed the node is. Initialized during branch
1437 probabilities pass. */
1438 ENUM_BITFIELD (node_frequency) frequency : 2;
1439 /* True when function can only be called at startup (from static ctor). */
1440 unsigned only_called_at_startup : 1;
1441 /* True when function can only be called at startup (from static dtor). */
1442 unsigned only_called_at_exit : 1;
1443 /* True when function is the transactional clone of a function which
1444 is called only from inside transactions. */
1445 /* ?? We should be able to remove this. We have enough bits in
1446 cgraph to calculate it. */
1447 unsigned tm_clone : 1;
1448 /* True if this decl is a dispatcher for function versions. */
1449 unsigned dispatcher_function : 1;
1450 /* True if this decl calls a COMDAT-local function. This is set up in
1451 compute_fn_summary and inline_call. */
1452 unsigned calls_comdat_local : 1;
1453 /* True if node has been created by merge operation in IPA-ICF. */
1454 unsigned icf_merged: 1;
1455 /* True if call to node can't result in a call to free, munmap or
1456 other operation that could make previously non-trapping memory
1457 accesses trapping. */
1458 unsigned nonfreeing_fn : 1;
1459 /* True if there was multiple COMDAT bodies merged by lto-symtab. */
1460 unsigned merged_comdat : 1;
1461 /* True if this def was merged with extern inlines. */
1462 unsigned merged_extern_inline : 1;
1463 /* True if function was created to be executed in parallel. */
1464 unsigned parallelized_function : 1;
1465 /* True if function is part split out by ipa-split. */
1466 unsigned split_part : 1;
1467 /* True if the function appears as possible target of indirect call. */
1468 unsigned indirect_call_target : 1;
1469 /* Set when function is visible in current compilation unit only and
1470 its address is never taken. */
1471 unsigned local : 1;
1472 /* False when there is something makes versioning impossible. */
1473 unsigned versionable : 1;
1474 /* False when function calling convention and signature cannot be changed.
1475 This is the case when __builtin_apply_args is used. */
1476 unsigned can_change_signature : 1;
1477 /* True when the function has been originally extern inline, but it is
1478 redefined now. */
1479 unsigned redefined_extern_inline : 1;
1480 /* True if the function may enter serial irrevocable mode. */
1481 unsigned tm_may_enter_irr : 1;
1482 /* True if this was a clone created by ipa-cp. */
1483 unsigned ipcp_clone : 1;
1484 /* True if this is the deferred declare variant resolution artificial
1485 function. */
1486 unsigned declare_variant_alt : 1;
1487 /* True if the function calls declare_variant_alt functions. */
1488 unsigned calls_declare_variant_alt : 1;
1490 private:
1491 /* Unique id of the node. */
1492 int m_uid;
1494 /* Summary id that is recycled. */
1495 int m_summary_id;
1497 /* Worker for call_for_symbol_and_aliases. */
1498 bool call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
1499 void *),
1500 void *data, bool include_overwritable);
1503 /* A cgraph node set is a collection of cgraph nodes. A cgraph node
1504 can appear in multiple sets. */
1505 struct cgraph_node_set_def
1507 hash_map<cgraph_node *, size_t> *map;
1508 vec<cgraph_node *> nodes;
1511 typedef cgraph_node_set_def *cgraph_node_set;
1512 typedef struct varpool_node_set_def *varpool_node_set;
1514 struct varpool_node;
1516 /* A varpool node set is a collection of varpool nodes. A varpool node
1517 can appear in multiple sets. */
1518 struct varpool_node_set_def
1520 hash_map<varpool_node *, size_t> * map;
1521 vec<varpool_node *> nodes;
1524 /* Iterator structure for cgraph node sets. */
1525 struct cgraph_node_set_iterator
1527 cgraph_node_set set;
1528 unsigned index;
1531 /* Iterator structure for varpool node sets. */
1532 struct varpool_node_set_iterator
1534 varpool_node_set set;
1535 unsigned index;
1538 /* Context of polymorphic call. It represent information about the type of
1539 instance that may reach the call. This is used by ipa-devirt walkers of the
1540 type inheritance graph. */
1542 class GTY(()) ipa_polymorphic_call_context {
1543 public:
1544 /* The called object appears in an object of type OUTER_TYPE
1545 at offset OFFSET. When information is not 100% reliable, we
1546 use SPECULATIVE_OUTER_TYPE and SPECULATIVE_OFFSET. */
1547 HOST_WIDE_INT offset;
1548 HOST_WIDE_INT speculative_offset;
1549 tree outer_type;
1550 tree speculative_outer_type;
1551 /* True if outer object may be in construction or destruction. */
1552 unsigned maybe_in_construction : 1;
1553 /* True if outer object may be of derived type. */
1554 unsigned maybe_derived_type : 1;
1555 /* True if speculative outer object may be of derived type. We always
1556 speculate that construction does not happen. */
1557 unsigned speculative_maybe_derived_type : 1;
1558 /* True if the context is invalid and all calls should be redirected
1559 to BUILTIN_UNREACHABLE. */
1560 unsigned invalid : 1;
1561 /* True if the outer type is dynamic. */
1562 unsigned dynamic : 1;
1564 /* Build empty "I know nothing" context. */
1565 ipa_polymorphic_call_context ();
1566 /* Build polymorphic call context for indirect call E. */
1567 ipa_polymorphic_call_context (cgraph_edge *e);
1568 /* Build polymorphic call context for IP invariant CST.
1569 If specified, OTR_TYPE specify the type of polymorphic call
1570 that takes CST+OFFSET as a parameter. */
1571 ipa_polymorphic_call_context (tree cst, tree otr_type = NULL,
1572 HOST_WIDE_INT offset = 0);
1573 /* Build context for pointer REF contained in FNDECL at statement STMT.
1574 if INSTANCE is non-NULL, return pointer to the object described by
1575 the context. */
1576 ipa_polymorphic_call_context (tree fndecl, tree ref, gimple *stmt,
1577 tree *instance = NULL);
1579 /* Look for vtable stores or constructor calls to work out dynamic type
1580 of memory location. */
1581 bool get_dynamic_type (tree, tree, tree, gimple *, unsigned *);
1583 /* Make context non-speculative. */
1584 void clear_speculation ();
1586 /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
1587 NULL, the context is set to dummy "I know nothing" setting. */
1588 void clear_outer_type (tree otr_type = NULL);
1590 /* Walk container types and modify context to point to actual class
1591 containing OTR_TYPE (if non-NULL) as base class.
1592 Return true if resulting context is valid.
1594 When CONSIDER_PLACEMENT_NEW is false, reject contexts that may be made
1595 valid only via allocation of new polymorphic type inside by means
1596 of placement new.
1598 When CONSIDER_BASES is false, only look for actual fields, not base types
1599 of TYPE. */
1600 bool restrict_to_inner_class (tree otr_type,
1601 bool consider_placement_new = true,
1602 bool consider_bases = true);
1604 /* Adjust all offsets in contexts by given number of bits. */
1605 void offset_by (HOST_WIDE_INT);
1606 /* Use when we cannot track dynamic type change. This speculatively assume
1607 type change is not happening. */
1608 void possible_dynamic_type_change (bool, tree otr_type = NULL);
1609 /* Assume that both THIS and a given context is valid and strengthen THIS
1610 if possible. Return true if any strengthening was made.
1611 If actual type the context is being used in is known, OTR_TYPE should be
1612 set accordingly. This improves quality of combined result. */
1613 bool combine_with (ipa_polymorphic_call_context, tree otr_type = NULL);
1614 bool meet_with (ipa_polymorphic_call_context, tree otr_type = NULL);
1616 /* Return TRUE if context is fully useless. */
1617 bool useless_p () const;
1618 /* Return TRUE if this context conveys the same information as X. */
1619 bool equal_to (const ipa_polymorphic_call_context &x) const;
1621 /* Dump human readable context to F. If NEWLINE is true, it will be
1622 terminated by a newline. */
1623 void dump (FILE *f, bool newline = true) const;
1624 void DEBUG_FUNCTION debug () const;
1626 /* LTO streaming. */
1627 void stream_out (struct output_block *) const;
1628 void stream_in (class lto_input_block *, class data_in *data_in);
1630 private:
1631 bool combine_speculation_with (tree, HOST_WIDE_INT, bool, tree);
1632 bool meet_speculation_with (tree, HOST_WIDE_INT, bool, tree);
1633 void set_by_decl (tree, HOST_WIDE_INT);
1634 bool set_by_invariant (tree, tree, HOST_WIDE_INT);
1635 bool speculation_consistent_p (tree, HOST_WIDE_INT, bool, tree) const;
1636 void make_speculative (tree otr_type = NULL);
1639 /* Structure containing additional information about an indirect call. */
1641 class GTY(()) cgraph_indirect_call_info
1643 public:
1644 /* When agg_content is set, an offset where the call pointer is located
1645 within the aggregate. */
1646 HOST_WIDE_INT offset;
1647 /* Context of the polymorphic call; use only when POLYMORPHIC flag is set. */
1648 ipa_polymorphic_call_context context;
1649 /* OBJ_TYPE_REF_TOKEN of a polymorphic call (if polymorphic is set). */
1650 HOST_WIDE_INT otr_token;
1651 /* Type of the object from OBJ_TYPE_REF_OBJECT. */
1652 tree otr_type;
1653 /* Index of the parameter that is called. */
1654 int param_index;
1655 /* ECF flags determined from the caller. */
1656 int ecf_flags;
1658 /* Number of speculative call targets, it's less than GCOV_TOPN_VALUES. */
1659 unsigned num_speculative_call_targets : 16;
1661 /* Set when the call is a virtual call with the parameter being the
1662 associated object pointer rather than a simple direct call. */
1663 unsigned polymorphic : 1;
1664 /* Set when the call is a call of a pointer loaded from contents of an
1665 aggregate at offset. */
1666 unsigned agg_contents : 1;
1667 /* Set when this is a call through a member pointer. */
1668 unsigned member_ptr : 1;
1669 /* When the agg_contents bit is set, this one determines whether the
1670 destination is loaded from a parameter passed by reference. */
1671 unsigned by_ref : 1;
1672 /* When the agg_contents bit is set, this one determines whether we can
1673 deduce from the function body that the loaded value from the reference is
1674 never modified between the invocation of the function and the load
1675 point. */
1676 unsigned guaranteed_unmodified : 1;
1677 /* For polymorphic calls this specify whether the virtual table pointer
1678 may have changed in between function entry and the call. */
1679 unsigned vptr_changed : 1;
1682 class GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"),
1683 for_user)) cgraph_edge
1685 public:
1686 friend struct cgraph_node;
1687 friend class symbol_table;
1689 /* Remove EDGE from the cgraph. */
1690 static void remove (cgraph_edge *edge);
1692 /* Change field call_stmt of edge E to NEW_STMT. If UPDATE_SPECULATIVE and E
1693 is any component of speculative edge, then update all components.
1694 Speculations can be resolved in the process and EDGE can be removed and
1695 deallocated. Return the edge that now represents the call. */
1696 static cgraph_edge *set_call_stmt (cgraph_edge *e, gcall *new_stmt,
1697 bool update_speculative = true);
1699 /* Redirect callee of the edge to N. The function does not update underlying
1700 call expression. */
1701 void redirect_callee (cgraph_node *n);
1703 /* If the edge does not lead to a thunk, simply redirect it to N. Otherwise
1704 create one or more equivalent thunks for N and redirect E to the first in
1705 the chain. Note that it is then necessary to call
1706 n->expand_all_artificial_thunks once all callers are redirected. */
1707 void redirect_callee_duplicating_thunks (cgraph_node *n);
1709 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1710 CALLEE. Speculations can be resolved in the process and EDGE can be
1711 removed and deallocated. Return the edge that now represents the
1712 call. */
1713 static cgraph_edge *make_direct (cgraph_edge *edge, cgraph_node *callee);
1715 /* Turn edge into speculative call calling N2. Update
1716 the profile so the direct call is taken COUNT times
1717 with FREQUENCY. speculative_id is used to link direct calls with their
1718 corresponding IPA_REF_ADDR references when representing speculative calls.
1720 cgraph_edge *make_speculative (cgraph_node *n2, profile_count direct_count,
1721 unsigned int speculative_id = 0);
1723 /* Speculative call consists of an indirect edge and one or more
1724 direct edge+ref pairs. Speculative will expand to the following sequence:
1726 if (call_dest == target1) // reference to target1
1727 target1 (); // direct call to target1
1728 else if (call_dest == target2) // reference to targt2
1729 target2 (); // direct call to target2
1730 else
1731 call_dest (); // indirect call
1733 Before the expansion we will have indirect call and the direct call+ref
1734 pairs all linked to single statement.
1736 Note that ref may point to different symbol than the corresponding call
1737 becuase the speculated edge may have been optimized (redirected to
1738 a clone) or inlined.
1740 Given an edge which is part of speculative call, return the first
1741 direct call edge in the speculative call sequence.
1743 In the example above called on any cgraph edge in the sequence it will
1744 return direct call to target1. */
1745 cgraph_edge *first_speculative_call_target ();
1747 /* Return next speculative call target or NULL if there is none.
1748 All targets are required to form an interval in the callee list.
1750 In example above, if called on call to target1 it will return call to
1751 target2. */
1752 cgraph_edge *next_speculative_call_target ()
1754 cgraph_edge *e = this;
1755 gcc_checking_assert (speculative && callee);
1757 if (e->next_callee && e->next_callee->speculative
1758 && e->next_callee->call_stmt == e->call_stmt
1759 && e->next_callee->lto_stmt_uid == e->lto_stmt_uid)
1760 return e->next_callee;
1761 return NULL;
1764 /* When called on any edge in the speculative call return the (unique)
1765 indirect call edge in the speculative call sequence. */
1766 cgraph_edge *speculative_call_indirect_edge ()
1768 gcc_checking_assert (speculative);
1769 if (!callee)
1770 return this;
1771 for (cgraph_edge *e2 = caller->indirect_calls;
1772 true; e2 = e2->next_callee)
1773 if (e2->speculative
1774 && call_stmt == e2->call_stmt
1775 && lto_stmt_uid == e2->lto_stmt_uid)
1776 return e2;
1779 /* When called on any edge in speculative call and when given any target
1780 of ref which is speculated to it returns the corresponding direct call.
1782 In example above if called on function target2 it will return call to
1783 target2. */
1784 cgraph_edge *speculative_call_for_target (cgraph_node *);
1786 /* Return REF corresponding to direct call in the specualtive call
1787 sequence. */
1788 ipa_ref *speculative_call_target_ref ()
1790 ipa_ref *ref;
1792 gcc_checking_assert (speculative);
1793 for (unsigned int i = 0; caller->iterate_reference (i, ref); i++)
1794 if (ref->speculative && ref->speculative_id == speculative_id
1795 && ref->stmt == (gimple *)call_stmt
1796 && ref->lto_stmt_uid == lto_stmt_uid)
1797 return ref;
1798 gcc_unreachable ();
1801 /* Speculative call edge turned out to be direct call to CALLEE_DECL. Remove
1802 the speculative call sequence and return edge representing the call, the
1803 original EDGE can be removed and deallocated. It is up to caller to
1804 redirect the call as appropriate. Return the edge that now represents the
1805 call.
1807 For "speculative" indirect call that contains multiple "speculative"
1808 targets (i.e. edge->indirect_info->num_speculative_call_targets > 1),
1809 decrease the count and only remove current direct edge.
1811 If no speculative direct call left to the speculative indirect call, remove
1812 the speculative of both the indirect call and corresponding direct edge.
1814 It is up to caller to iteratively resolve each "speculative" direct call
1815 and redirect the call as appropriate. */
1816 static cgraph_edge *resolve_speculation (cgraph_edge *edge,
1817 tree callee_decl = NULL);
1819 /* If necessary, change the function declaration in the call statement
1820 associated with edge E so that it corresponds to the edge callee.
1821 Speculations can be resolved in the process and EDGE can be removed and
1822 deallocated.
1824 The edge could be one of speculative direct call generated from speculative
1825 indirect call. In this circumstance, decrease the speculative targets
1826 count (i.e. num_speculative_call_targets) and redirect call stmt to the
1827 corresponding i-th target. If no speculative direct call left to the
1828 speculative indirect call, remove "speculative" of the indirect call and
1829 also redirect stmt to it's final direct target.
1831 It is up to caller to iteratively transform each "speculative"
1832 direct call as appropriate. */
1833 static gimple *redirect_call_stmt_to_callee (cgraph_edge *e);
1835 /* Create clone of edge in the node N represented
1836 by CALL_EXPR the callgraph. */
1837 cgraph_edge * clone (cgraph_node *n, gcall *call_stmt, unsigned stmt_uid,
1838 profile_count num, profile_count den,
1839 bool update_original);
1841 /* Verify edge count and frequency. */
1842 bool verify_count ();
1844 /* Return true when call of edge cannot lead to return from caller
1845 and thus it is safe to ignore its side effects for IPA analysis
1846 when computing side effects of the caller. */
1847 bool cannot_lead_to_return_p (void);
1849 /* Return true when the edge represents a direct recursion. */
1850 bool recursive_p (void);
1852 /* Return true if the edge may be considered hot. */
1853 bool maybe_hot_p (void);
1855 /* Get unique identifier of the edge. */
1856 inline int get_uid ()
1858 return m_uid;
1861 /* Get summary id of the edge. */
1862 inline int get_summary_id ()
1864 return m_summary_id;
1867 /* Rebuild cgraph edges for current function node. This needs to be run after
1868 passes that don't update the cgraph. */
1869 static unsigned int rebuild_edges (void);
1871 /* Rebuild cgraph references for current function node. This needs to be run
1872 after passes that don't update the cgraph. */
1873 static void rebuild_references (void);
1875 /* During LTO stream in this can be used to check whether call can possibly
1876 be internal to the current translation unit. */
1877 bool possibly_call_in_translation_unit_p (void);
1879 /* Return num_speculative_targets of this edge. */
1880 int num_speculative_call_targets_p (void);
1882 /* Expected number of executions: calculated in profile.c. */
1883 profile_count count;
1884 cgraph_node *caller;
1885 cgraph_node *callee;
1886 cgraph_edge *prev_caller;
1887 cgraph_edge *next_caller;
1888 cgraph_edge *prev_callee;
1889 cgraph_edge *next_callee;
1890 gcall *call_stmt;
1891 /* Additional information about an indirect call. Not cleared when an edge
1892 becomes direct. */
1893 cgraph_indirect_call_info *indirect_info;
1894 PTR GTY ((skip (""))) aux;
1895 /* When equal to CIF_OK, inline this call. Otherwise, points to the
1896 explanation why function was not inlined. */
1897 enum cgraph_inline_failed_t inline_failed;
1898 /* The stmt_uid of call_stmt. This is used by LTO to recover the call_stmt
1899 when the function is serialized in. */
1900 unsigned int lto_stmt_uid;
1901 /* speculative id is used to link direct calls with their corresponding
1902 IPA_REF_ADDR references when representing speculative calls. */
1903 unsigned int speculative_id : 16;
1904 /* Whether this edge was made direct by indirect inlining. */
1905 unsigned int indirect_inlining_edge : 1;
1906 /* Whether this edge describes an indirect call with an undetermined
1907 callee. */
1908 unsigned int indirect_unknown_callee : 1;
1909 /* Whether this edge is still a dangling */
1910 /* True if the corresponding CALL stmt cannot be inlined. */
1911 unsigned int call_stmt_cannot_inline_p : 1;
1912 /* Can this call throw externally? */
1913 unsigned int can_throw_external : 1;
1914 /* Edges with SPECULATIVE flag represents indirect calls that was
1915 speculatively turned into direct (i.e. by profile feedback).
1916 The final code sequence will have form:
1918 if (call_target == expected_fn)
1919 expected_fn ();
1920 else
1921 call_target ();
1923 Every speculative call is represented by three components attached
1924 to a same call statement:
1925 1) a direct call (to expected_fn)
1926 2) an indirect call (to call_target)
1927 3) a IPA_REF_ADDR reference to expected_fn.
1929 Optimizers may later redirect direct call to clone, so 1) and 3)
1930 do not need to necessarily agree with destination. */
1931 unsigned int speculative : 1;
1932 /* Set to true when caller is a constructor or destructor of polymorphic
1933 type. */
1934 unsigned in_polymorphic_cdtor : 1;
1936 /* Return true if call must bind to current definition. */
1937 bool binds_to_current_def_p ();
1939 /* Expected frequency of executions within the function.
1940 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
1941 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
1942 int frequency ();
1944 /* Expected frequency of executions within the function. */
1945 sreal sreal_frequency ();
1946 private:
1947 /* Unique id of the edge. */
1948 int m_uid;
1950 /* Summary id that is recycled. */
1951 int m_summary_id;
1953 /* Remove the edge from the list of the callers of the callee. */
1954 void remove_caller (void);
1956 /* Remove the edge from the list of the callees of the caller. */
1957 void remove_callee (void);
1959 /* Set callee N of call graph edge and add it to the corresponding set of
1960 callers. */
1961 void set_callee (cgraph_node *n);
1963 /* Output flags of edge to a file F. */
1964 void dump_edge_flags (FILE *f);
1966 /* Dump edge to stderr. */
1967 void DEBUG_FUNCTION debug (void);
1969 /* Verify that call graph edge corresponds to DECL from the associated
1970 statement. Return true if the verification should fail. */
1971 bool verify_corresponds_to_fndecl (tree decl);
1974 #define CGRAPH_FREQ_BASE 1000
1975 #define CGRAPH_FREQ_MAX 100000
1977 /* The varpool data structure.
1978 Each static variable decl has assigned varpool_node. */
1980 struct GTY((tag ("SYMTAB_VARIABLE"))) varpool_node : public symtab_node
1982 /* Constructor. */
1983 explicit varpool_node ()
1984 : symtab_node (SYMTAB_VARIABLE), output (0), dynamically_initialized (0),
1985 tls_model (TLS_MODEL_NONE), used_by_single_function (0)
1988 /* Dump given varpool node to F. */
1989 void dump (FILE *f);
1991 /* Dump given varpool node to stderr. */
1992 void DEBUG_FUNCTION debug (void);
1994 /* Remove variable from symbol table. */
1995 void remove (void);
1997 /* Remove node initializer when it is no longer needed. */
1998 void remove_initializer (void);
2000 void analyze (void);
2002 /* Return variable availability. */
2003 availability get_availability (symtab_node *ref = NULL);
2005 /* When doing LTO, read variable's constructor from disk if
2006 it is not already present. */
2007 tree get_constructor (void);
2009 /* Return true if variable has constructor that can be used for folding. */
2010 bool ctor_useable_for_folding_p (void);
2012 /* For given variable pool node, walk the alias chain to return the function
2013 the variable is alias of. Do not walk through thunks.
2014 When AVAILABILITY is non-NULL, get minimal availability in the chain.
2015 When REF is non-NULL, assume that reference happens in symbol REF
2016 when determining the availability. */
2017 inline varpool_node *ultimate_alias_target
2018 (availability *availability = NULL, symtab_node *ref = NULL);
2020 /* Return node that alias is aliasing. */
2021 inline varpool_node *get_alias_target (void);
2023 /* Output one variable, if necessary. Return whether we output it. */
2024 bool assemble_decl (void);
2026 /* For variables in named sections make sure get_variable_section
2027 is called before we switch to those sections. Then section
2028 conflicts between read-only and read-only requiring relocations
2029 sections can be resolved. */
2030 void finalize_named_section_flags (void);
2032 /* Call callback on varpool symbol and aliases associated to varpool symbol.
2033 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2034 skipped. */
2035 bool call_for_symbol_and_aliases (bool (*callback) (varpool_node *, void *),
2036 void *data,
2037 bool include_overwritable);
2039 /* Return true when variable should be considered externally visible. */
2040 bool externally_visible_p (void);
2042 /* Return true when all references to variable must be visible
2043 in ipa_ref_list.
2044 i.e. if the variable is not externally visible or not used in some magic
2045 way (asm statement or such).
2046 The magic uses are all summarized in force_output flag. */
2047 inline bool all_refs_explicit_p ();
2049 /* Return true when variable can be removed from variable pool
2050 if all direct calls are eliminated. */
2051 inline bool can_remove_if_no_refs_p (void);
2053 /* Add the variable DECL to the varpool.
2054 Unlike finalize_decl function is intended to be used
2055 by middle end and allows insertion of new variable at arbitrary point
2056 of compilation. */
2057 static void add (tree decl);
2059 /* Return varpool node for given symbol and check it is a function. */
2060 static inline varpool_node *get (const_tree decl);
2062 /* Mark DECL as finalized. By finalizing the declaration, frontend instruct
2063 the middle end to output the variable to asm file, if needed or externally
2064 visible. */
2065 static void finalize_decl (tree decl);
2067 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2068 Extra name aliases are output whenever DECL is output. */
2069 static varpool_node * create_extra_name_alias (tree alias, tree decl);
2071 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2072 Extra name aliases are output whenever DECL is output. */
2073 static varpool_node * create_alias (tree, tree);
2075 /* Dump the variable pool to F. */
2076 static void dump_varpool (FILE *f);
2078 /* Dump the variable pool to stderr. */
2079 static void DEBUG_FUNCTION debug_varpool (void);
2081 /* Allocate new callgraph node and insert it into basic data structures. */
2082 static varpool_node *create_empty (void);
2084 /* Return varpool node assigned to DECL. Create new one when needed. */
2085 static varpool_node *get_create (tree decl);
2087 /* Given an assembler name, lookup node. */
2088 static varpool_node *get_for_asmname (tree asmname);
2090 /* Set when variable is scheduled to be assembled. */
2091 unsigned output : 1;
2093 /* Set if the variable is dynamically initialized, except for
2094 function local statics. */
2095 unsigned dynamically_initialized : 1;
2097 ENUM_BITFIELD(tls_model) tls_model : 3;
2099 /* Set if the variable is known to be used by single function only.
2100 This is computed by ipa_single_use pass and used by late optimizations
2101 in places where optimization would be valid for local static variable
2102 if we did not do any inter-procedural code movement. */
2103 unsigned used_by_single_function : 1;
2105 private:
2106 /* Assemble thunks and aliases associated to varpool node. */
2107 void assemble_aliases (void);
2109 /* Worker for call_for_node_and_aliases. */
2110 bool call_for_symbol_and_aliases_1 (bool (*callback) (varpool_node *, void *),
2111 void *data,
2112 bool include_overwritable);
2115 /* Every top level asm statement is put into a asm_node. */
2117 struct GTY(()) asm_node {
2118 /* Next asm node. */
2119 asm_node *next;
2120 /* String for this asm node. */
2121 tree asm_str;
2122 /* Ordering of all cgraph nodes. */
2123 int order;
2126 /* Report whether or not THIS symtab node is a function, aka cgraph_node. */
2128 template <>
2129 template <>
2130 inline bool
2131 is_a_helper <cgraph_node *>::test (symtab_node *p)
2133 return p && p->type == SYMTAB_FUNCTION;
2136 /* Report whether or not THIS symtab node is a variable, aka varpool_node. */
2138 template <>
2139 template <>
2140 inline bool
2141 is_a_helper <varpool_node *>::test (symtab_node *p)
2143 return p && p->type == SYMTAB_VARIABLE;
2146 typedef void (*cgraph_edge_hook)(cgraph_edge *, void *);
2147 typedef void (*cgraph_node_hook)(cgraph_node *, void *);
2148 typedef void (*varpool_node_hook)(varpool_node *, void *);
2149 typedef void (*cgraph_2edge_hook)(cgraph_edge *, cgraph_edge *, void *);
2150 typedef void (*cgraph_2node_hook)(cgraph_node *, cgraph_node *, void *);
2152 struct cgraph_edge_hook_list;
2153 struct cgraph_node_hook_list;
2154 struct varpool_node_hook_list;
2155 struct cgraph_2edge_hook_list;
2156 struct cgraph_2node_hook_list;
2158 /* Map from a symbol to initialization/finalization priorities. */
2159 struct GTY(()) symbol_priority_map {
2160 priority_type init;
2161 priority_type fini;
2164 enum symtab_state
2166 /* Frontend is parsing and finalizing functions. */
2167 PARSING,
2168 /* Callgraph is being constructed. It is safe to add new functions. */
2169 CONSTRUCTION,
2170 /* Callgraph is being streamed-in at LTO time. */
2171 LTO_STREAMING,
2172 /* Callgraph is built and early IPA passes are being run. */
2173 IPA,
2174 /* Callgraph is built and all functions are transformed to SSA form. */
2175 IPA_SSA,
2176 /* All inline decisions are done; it is now possible to remove extern inline
2177 functions and virtual call targets. */
2178 IPA_SSA_AFTER_INLINING,
2179 /* Functions are now ordered and being passed to RTL expanders. */
2180 EXPANSION,
2181 /* All cgraph expansion is done. */
2182 FINISHED
2185 struct asmname_hasher : ggc_ptr_hash <symtab_node>
2187 typedef const_tree compare_type;
2189 static hashval_t hash (symtab_node *n);
2190 static bool equal (symtab_node *n, const_tree t);
2193 struct thunk_info;
2194 template <class T> class function_summary;
2195 typedef function_summary <thunk_info *> thunk_summary;
2197 class GTY((tag ("SYMTAB"))) symbol_table
2199 public:
2200 friend struct symtab_node;
2201 friend struct cgraph_node;
2202 friend struct cgraph_edge;
2204 symbol_table ():
2205 cgraph_count (0), cgraph_max_uid (1), cgraph_max_summary_id (0),
2206 edges_count (0), edges_max_uid (1), edges_max_summary_id (0),
2207 cgraph_released_summary_ids (), edge_released_summary_ids (),
2208 nodes (NULL), asmnodes (NULL), asm_last_node (NULL),
2209 order (0), max_unit (0), global_info_ready (false), state (PARSING),
2210 function_flags_ready (false), cpp_implicit_aliases_done (false),
2211 section_hash (NULL), assembler_name_hash (NULL), init_priority_hash (NULL),
2212 dump_file (NULL), ipa_clones_dump_file (NULL), cloned_nodes (),
2213 m_thunks (NULL),
2214 m_first_edge_removal_hook (NULL), m_first_cgraph_removal_hook (NULL),
2215 m_first_edge_duplicated_hook (NULL), m_first_cgraph_duplicated_hook (NULL),
2216 m_first_cgraph_insertion_hook (NULL), m_first_varpool_insertion_hook (NULL),
2217 m_first_varpool_removal_hook (NULL)
2221 /* Initialize callgraph dump file. */
2222 void initialize (void);
2224 /* Register a top-level asm statement ASM_STR. */
2225 inline asm_node *finalize_toplevel_asm (tree asm_str);
2227 /* Analyze the whole compilation unit once it is parsed completely. */
2228 void finalize_compilation_unit (void);
2230 /* C++ frontend produce same body aliases all over the place, even before PCH
2231 gets streamed out. It relies on us linking the aliases with their function
2232 in order to do the fixups, but ipa-ref is not PCH safe. Consequently we
2233 first produce aliases without links, but once C++ FE is sure it won't
2234 stream PCH we build the links via this function. */
2235 void process_same_body_aliases (void);
2237 /* Perform simple optimizations based on callgraph. */
2238 void compile (void);
2240 /* Process CGRAPH_NEW_FUNCTIONS and perform actions necessary to add these
2241 functions into callgraph in a way so they look like ordinary reachable
2242 functions inserted into callgraph already at construction time. */
2243 void process_new_functions (void);
2245 /* Register a symbol NODE. */
2246 inline void register_symbol (symtab_node *node);
2248 inline void
2249 clear_asm_symbols (void)
2251 asmnodes = NULL;
2252 asm_last_node = NULL;
2255 /* Perform reachability analysis and reclaim all unreachable nodes. */
2256 bool remove_unreachable_nodes (FILE *file);
2258 /* Optimization of function bodies might've rendered some variables as
2259 unnecessary so we want to avoid these from being compiled. Re-do
2260 reachability starting from variables that are either externally visible
2261 or was referred from the asm output routines. */
2262 void remove_unreferenced_decls (void);
2264 /* Unregister a symbol NODE. */
2265 inline void unregister (symtab_node *node);
2267 /* Allocate new callgraph node and insert it into basic data structures. */
2268 cgraph_node *create_empty (void);
2270 /* Release a callgraph NODE. */
2271 void release_symbol (cgraph_node *node);
2273 /* Output all variables enqueued to be assembled. */
2274 bool output_variables (void);
2276 /* Weakrefs may be associated to external decls and thus not output
2277 at expansion time. Emit all necessary aliases. */
2278 void output_weakrefs (void);
2280 /* Return first static symbol with definition. */
2281 inline symtab_node *first_symbol (void);
2283 /* Return first assembler symbol. */
2284 inline asm_node *
2285 first_asm_symbol (void)
2287 return asmnodes;
2290 /* Return first static symbol with definition. */
2291 inline symtab_node *first_defined_symbol (void);
2293 /* Return first variable. */
2294 inline varpool_node *first_variable (void);
2296 /* Return next variable after NODE. */
2297 inline varpool_node *next_variable (varpool_node *node);
2299 /* Return first static variable with initializer. */
2300 inline varpool_node *first_static_initializer (void);
2302 /* Return next static variable with initializer after NODE. */
2303 inline varpool_node *next_static_initializer (varpool_node *node);
2305 /* Return first static variable with definition. */
2306 inline varpool_node *first_defined_variable (void);
2308 /* Return next static variable with definition after NODE. */
2309 inline varpool_node *next_defined_variable (varpool_node *node);
2311 /* Return first function with body defined. */
2312 inline cgraph_node *first_defined_function (void);
2314 /* Return next function with body defined after NODE. */
2315 inline cgraph_node *next_defined_function (cgraph_node *node);
2317 /* Return first function. */
2318 inline cgraph_node *first_function (void);
2320 /* Return next function. */
2321 inline cgraph_node *next_function (cgraph_node *node);
2323 /* Return first function with body defined. */
2324 cgraph_node *first_function_with_gimple_body (void);
2326 /* Return next reachable static variable with initializer after NODE. */
2327 inline cgraph_node *next_function_with_gimple_body (cgraph_node *node);
2329 /* Register HOOK to be called with DATA on each removed edge. */
2330 cgraph_edge_hook_list *add_edge_removal_hook (cgraph_edge_hook hook,
2331 void *data);
2333 /* Remove ENTRY from the list of hooks called on removing edges. */
2334 void remove_edge_removal_hook (cgraph_edge_hook_list *entry);
2336 /* Register HOOK to be called with DATA on each removed node. */
2337 cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook hook,
2338 void *data);
2340 /* Remove ENTRY from the list of hooks called on removing nodes. */
2341 void remove_cgraph_removal_hook (cgraph_node_hook_list *entry);
2343 /* Register HOOK to be called with DATA on each removed node. */
2344 varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook hook,
2345 void *data);
2347 /* Remove ENTRY from the list of hooks called on removing nodes. */
2348 void remove_varpool_removal_hook (varpool_node_hook_list *entry);
2350 /* Register HOOK to be called with DATA on each inserted node. */
2351 cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook hook,
2352 void *data);
2354 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2355 void remove_cgraph_insertion_hook (cgraph_node_hook_list *entry);
2357 /* Register HOOK to be called with DATA on each inserted node. */
2358 varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook hook,
2359 void *data);
2361 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2362 void remove_varpool_insertion_hook (varpool_node_hook_list *entry);
2364 /* Register HOOK to be called with DATA on each duplicated edge. */
2365 cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook hook,
2366 void *data);
2367 /* Remove ENTRY from the list of hooks called on duplicating edges. */
2368 void remove_edge_duplication_hook (cgraph_2edge_hook_list *entry);
2370 /* Register HOOK to be called with DATA on each duplicated node. */
2371 cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook hook,
2372 void *data);
2374 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
2375 void remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry);
2377 /* Call all edge removal hooks. */
2378 void call_edge_removal_hooks (cgraph_edge *e);
2380 /* Call all node insertion hooks. */
2381 void call_cgraph_insertion_hooks (cgraph_node *node);
2383 /* Call all node removal hooks. */
2384 void call_cgraph_removal_hooks (cgraph_node *node);
2386 /* Call all node duplication hooks. */
2387 void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2);
2389 /* Call all edge duplication hooks. */
2390 void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2);
2392 /* Call all node removal hooks. */
2393 void call_varpool_removal_hooks (varpool_node *node);
2395 /* Call all node insertion hooks. */
2396 void call_varpool_insertion_hooks (varpool_node *node);
2398 /* Arrange node to be first in its entry of assembler_name_hash. */
2399 void symtab_prevail_in_asm_name_hash (symtab_node *node);
2401 /* Initialize asm name hash unless. */
2402 void symtab_initialize_asm_name_hash (void);
2404 /* Set the DECL_ASSEMBLER_NAME and update symtab hashtables. */
2405 void change_decl_assembler_name (tree decl, tree name);
2407 /* Dump symbol table to F. */
2408 void dump (FILE *f);
2410 /* Dump symbol table to F in graphviz format. */
2411 void dump_graphviz (FILE *f);
2413 /* Dump symbol table to stderr. */
2414 void DEBUG_FUNCTION debug (void);
2416 /* Assign a new summary ID for the callgraph NODE. */
2417 inline int assign_summary_id (cgraph_node *node)
2419 if (!cgraph_released_summary_ids.is_empty ())
2420 node->m_summary_id = cgraph_released_summary_ids.pop ();
2421 else
2422 node->m_summary_id = cgraph_max_summary_id++;
2424 return node->m_summary_id;
2427 /* Assign a new summary ID for the callgraph EDGE. */
2428 inline int assign_summary_id (cgraph_edge *edge)
2430 if (!edge_released_summary_ids.is_empty ())
2431 edge->m_summary_id = edge_released_summary_ids.pop ();
2432 else
2433 edge->m_summary_id = edges_max_summary_id++;
2435 return edge->m_summary_id;
2438 /* Return true if assembler names NAME1 and NAME2 leads to the same symbol
2439 name. */
2440 static bool assembler_names_equal_p (const char *name1, const char *name2);
2442 int cgraph_count;
2443 int cgraph_max_uid;
2444 int cgraph_max_summary_id;
2446 int edges_count;
2447 int edges_max_uid;
2448 int edges_max_summary_id;
2450 /* Vector of released summary IDS for cgraph nodes. */
2451 vec<int> GTY ((skip)) cgraph_released_summary_ids;
2453 /* Vector of released summary IDS for cgraph nodes. */
2454 vec<int> GTY ((skip)) edge_released_summary_ids;
2456 /* Return symbol used to separate symbol name from suffix. */
2457 static char symbol_suffix_separator ();
2459 symtab_node* GTY(()) nodes;
2460 asm_node* GTY(()) asmnodes;
2461 asm_node* GTY(()) asm_last_node;
2463 /* The order index of the next symtab node to be created. This is
2464 used so that we can sort the cgraph nodes in order by when we saw
2465 them, to support -fno-toplevel-reorder. */
2466 int order;
2468 /* Maximal unit ID used. */
2469 int max_unit;
2471 /* Set when whole unit has been analyzed so we can access global info. */
2472 bool global_info_ready;
2473 /* What state callgraph is in right now. */
2474 enum symtab_state state;
2475 /* Set when the cgraph is fully build and the basic flags are computed. */
2476 bool function_flags_ready;
2478 bool cpp_implicit_aliases_done;
2480 /* Hash table used to hold sections. */
2481 hash_table<section_name_hasher> *GTY(()) section_hash;
2483 /* Hash table used to convert assembler names into nodes. */
2484 hash_table<asmname_hasher> *assembler_name_hash;
2486 /* Hash table used to hold init priorities. */
2487 hash_map<symtab_node *, symbol_priority_map> *init_priority_hash;
2489 FILE* GTY ((skip)) dump_file;
2491 FILE* GTY ((skip)) ipa_clones_dump_file;
2493 hash_set <const cgraph_node *> GTY ((skip)) cloned_nodes;
2495 /* Thunk annotations. */
2496 thunk_summary *m_thunks;
2498 private:
2499 /* Allocate a cgraph_edge structure and fill it with data according to the
2500 parameters of which only CALLEE can be NULL (when creating an indirect
2501 call edge). CLONING_P should be set if properties that are copied from an
2502 original edge should not be calculated. */
2503 cgraph_edge *create_edge (cgraph_node *caller, cgraph_node *callee,
2504 gcall *call_stmt, profile_count count,
2505 bool indir_unknown_callee, bool cloning_p);
2507 /* Put the edge onto the free list. */
2508 void free_edge (cgraph_edge *e);
2510 /* Insert NODE to assembler name hash. */
2511 void insert_to_assembler_name_hash (symtab_node *node, bool with_clones);
2513 /* Remove NODE from assembler name hash. */
2514 void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones);
2516 /* Hash asmnames ignoring the user specified marks. */
2517 static hashval_t decl_assembler_name_hash (const_tree asmname);
2519 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
2520 static bool decl_assembler_name_equal (tree decl, const_tree asmname);
2522 friend struct asmname_hasher;
2524 /* List of hooks triggered when an edge is removed. */
2525 cgraph_edge_hook_list * GTY((skip)) m_first_edge_removal_hook;
2526 /* List of hooks trigger_red when a cgraph node is removed. */
2527 cgraph_node_hook_list * GTY((skip)) m_first_cgraph_removal_hook;
2528 /* List of hooks triggered when an edge is duplicated. */
2529 cgraph_2edge_hook_list * GTY((skip)) m_first_edge_duplicated_hook;
2530 /* List of hooks triggered when a node is duplicated. */
2531 cgraph_2node_hook_list * GTY((skip)) m_first_cgraph_duplicated_hook;
2532 /* List of hooks triggered when an function is inserted. */
2533 cgraph_node_hook_list * GTY((skip)) m_first_cgraph_insertion_hook;
2534 /* List of hooks triggered when an variable is inserted. */
2535 varpool_node_hook_list * GTY((skip)) m_first_varpool_insertion_hook;
2536 /* List of hooks triggered when a node is removed. */
2537 varpool_node_hook_list * GTY((skip)) m_first_varpool_removal_hook;
2540 extern GTY(()) symbol_table *symtab;
2542 extern vec<cgraph_node *> cgraph_new_nodes;
2544 inline hashval_t
2545 asmname_hasher::hash (symtab_node *n)
2547 return symbol_table::decl_assembler_name_hash
2548 (DECL_ASSEMBLER_NAME (n->decl));
2551 inline bool
2552 asmname_hasher::equal (symtab_node *n, const_tree t)
2554 return symbol_table::decl_assembler_name_equal (n->decl, t);
2557 /* In cgraph.c */
2558 void cgraph_c_finalize (void);
2559 void release_function_body (tree);
2560 cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void);
2562 void cgraph_update_edges_for_call_stmt (gimple *, tree, gimple *);
2563 bool cgraph_function_possibly_inlined_p (tree);
2565 const char* cgraph_inline_failed_string (cgraph_inline_failed_t);
2566 cgraph_inline_failed_type_t cgraph_inline_failed_type (cgraph_inline_failed_t);
2568 /* In cgraphunit.c */
2569 void cgraphunit_c_finalize (void);
2570 int tp_first_run_node_cmp (const void *pa, const void *pb);
2572 /* In symtab-thunks.cc */
2573 void symtab_thunks_cc_finalize (void);
2575 /* Initialize datastructures so DECL is a function in lowered gimple form.
2576 IN_SSA is true if the gimple is in SSA. */
2577 basic_block init_lowered_empty_function (tree, bool, profile_count);
2579 tree thunk_adjust (gimple_stmt_iterator *, tree, bool, HOST_WIDE_INT, tree,
2580 HOST_WIDE_INT);
2581 /* In cgraphclones.c */
2583 tree clone_function_name_numbered (const char *name, const char *suffix);
2584 tree clone_function_name_numbered (tree decl, const char *suffix);
2585 tree clone_function_name (const char *name, const char *suffix,
2586 unsigned long number);
2587 tree clone_function_name (tree decl, const char *suffix,
2588 unsigned long number);
2589 tree clone_function_name (tree decl, const char *suffix);
2591 void tree_function_versioning (tree, tree, vec<ipa_replace_map *, va_gc> *,
2592 ipa_param_adjustments *,
2593 bool, bitmap, basic_block);
2595 void dump_callgraph_transformation (const cgraph_node *original,
2596 const cgraph_node *clone,
2597 const char *suffix);
2598 /* In cgraphbuild.c */
2599 int compute_call_stmt_bb_frequency (tree, basic_block bb);
2600 void record_references_in_initializer (tree, bool);
2602 /* In ipa.c */
2603 void cgraph_build_static_cdtor (char which, tree body, int priority);
2604 bool ipa_discover_variable_flags (void);
2606 /* In varpool.c */
2607 tree ctor_for_folding (tree);
2609 /* In ipa-inline-analysis.c */
2610 void initialize_inline_failed (struct cgraph_edge *);
2611 bool speculation_useful_p (struct cgraph_edge *e, bool anticipate_inlining);
2613 /* Return true when the symbol is real symbol, i.e. it is not inline clone
2614 or abstract function kept for debug info purposes only. */
2615 inline bool
2616 symtab_node::real_symbol_p (void)
2618 cgraph_node *cnode;
2620 if (DECL_ABSTRACT_P (decl))
2621 return false;
2622 if (transparent_alias && definition)
2623 return false;
2624 if (!is_a <cgraph_node *> (this))
2625 return true;
2626 cnode = dyn_cast <cgraph_node *> (this);
2627 if (cnode->inlined_to)
2628 return false;
2629 return true;
2632 /* Return true if DECL should have entry in symbol table if used.
2633 Those are functions and static & external variables. */
2635 static inline bool
2636 decl_in_symtab_p (const_tree decl)
2638 return (TREE_CODE (decl) == FUNCTION_DECL
2639 || (TREE_CODE (decl) == VAR_DECL
2640 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))));
2643 inline bool
2644 symtab_node::in_same_comdat_group_p (symtab_node *target)
2646 symtab_node *source = this;
2648 if (cgraph_node *cn = dyn_cast <cgraph_node *> (target))
2650 if (cn->inlined_to)
2651 source = cn->inlined_to;
2653 if (cgraph_node *cn = dyn_cast <cgraph_node *> (target))
2655 if (cn->inlined_to)
2656 target = cn->inlined_to;
2659 return source->get_comdat_group () == target->get_comdat_group ();
2662 /* Return node that alias is aliasing. */
2664 inline symtab_node *
2665 symtab_node::get_alias_target (void)
2667 ipa_ref *ref = NULL;
2668 iterate_reference (0, ref);
2669 gcc_checking_assert (ref->use == IPA_REF_ALIAS);
2670 return ref->referred;
2673 /* Return next reachable static symbol with initializer after the node. */
2675 inline symtab_node *
2676 symtab_node::next_defined_symbol (void)
2678 symtab_node *node1 = next;
2680 for (; node1; node1 = node1->next)
2681 if (node1->definition)
2682 return node1;
2684 return NULL;
2687 /* Iterates I-th reference in the list, REF is also set. */
2689 inline ipa_ref *
2690 symtab_node::iterate_reference (unsigned i, ipa_ref *&ref)
2692 vec_safe_iterate (ref_list.references, i, &ref);
2694 return ref;
2697 /* Iterates I-th referring item in the list, REF is also set. */
2699 inline ipa_ref *
2700 symtab_node::iterate_referring (unsigned i, ipa_ref *&ref)
2702 ref_list.referring.iterate (i, &ref);
2704 return ref;
2707 /* Iterates I-th referring alias item in the list, REF is also set. */
2709 inline ipa_ref *
2710 symtab_node::iterate_direct_aliases (unsigned i, ipa_ref *&ref)
2712 ref_list.referring.iterate (i, &ref);
2714 if (ref && ref->use != IPA_REF_ALIAS)
2715 return NULL;
2717 return ref;
2720 /* Return true if list contains an alias. */
2722 inline bool
2723 symtab_node::has_aliases_p (void)
2725 ipa_ref *ref = NULL;
2727 return (iterate_direct_aliases (0, ref) != NULL);
2730 /* Return true when RESOLUTION indicate that linker will use
2731 the symbol from non-LTO object files. */
2733 inline bool
2734 resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution)
2736 return (resolution == LDPR_PREVAILING_DEF
2737 || resolution == LDPR_PREEMPTED_REG
2738 || resolution == LDPR_RESOLVED_EXEC
2739 || resolution == LDPR_RESOLVED_DYN);
2742 /* Return true when symtab_node is known to be used from other (non-LTO)
2743 object file. Known only when doing LTO via linker plugin. */
2745 inline bool
2746 symtab_node::used_from_object_file_p (void)
2748 if (!TREE_PUBLIC (decl) || DECL_EXTERNAL (decl))
2749 return false;
2750 if (resolution_used_from_other_file_p (resolution))
2751 return true;
2752 return false;
2755 /* Return varpool node for given symbol and check it is a function. */
2757 inline varpool_node *
2758 varpool_node::get (const_tree decl)
2760 gcc_checking_assert (TREE_CODE (decl) == VAR_DECL);
2761 return dyn_cast<varpool_node *> (symtab_node::get (decl));
2764 /* Register a symbol NODE. */
2766 inline void
2767 symbol_table::register_symbol (symtab_node *node)
2769 node->next = nodes;
2770 node->previous = NULL;
2772 if (nodes)
2773 nodes->previous = node;
2774 nodes = node;
2776 node->order = order++;
2779 /* Register a top-level asm statement ASM_STR. */
2781 asm_node *
2782 symbol_table::finalize_toplevel_asm (tree asm_str)
2784 asm_node *node;
2786 node = ggc_cleared_alloc<asm_node> ();
2787 node->asm_str = asm_str;
2788 node->order = order++;
2789 node->next = NULL;
2791 if (asmnodes == NULL)
2792 asmnodes = node;
2793 else
2794 asm_last_node->next = node;
2796 asm_last_node = node;
2797 return node;
2800 /* Unregister a symbol NODE. */
2801 inline void
2802 symbol_table::unregister (symtab_node *node)
2804 if (node->previous)
2805 node->previous->next = node->next;
2806 else
2807 nodes = node->next;
2809 if (node->next)
2810 node->next->previous = node->previous;
2812 node->next = NULL;
2813 node->previous = NULL;
2816 /* Release a callgraph NODE with UID and put in to the list of free nodes. */
2818 inline void
2819 symbol_table::release_symbol (cgraph_node *node)
2821 cgraph_count--;
2822 if (node->m_summary_id != -1)
2823 cgraph_released_summary_ids.safe_push (node->m_summary_id);
2824 ggc_free (node);
2827 /* Return first static symbol with definition. */
2828 inline symtab_node *
2829 symbol_table::first_symbol (void)
2831 return nodes;
2834 /* Walk all symbols. */
2835 #define FOR_EACH_SYMBOL(node) \
2836 for ((node) = symtab->first_symbol (); (node); (node) = (node)->next)
2838 /* Return first static symbol with definition. */
2839 inline symtab_node *
2840 symbol_table::first_defined_symbol (void)
2842 symtab_node *node;
2844 for (node = nodes; node; node = node->next)
2845 if (node->definition)
2846 return node;
2848 return NULL;
2851 /* Walk all symbols with definitions in current unit. */
2852 #define FOR_EACH_DEFINED_SYMBOL(node) \
2853 for ((node) = symtab->first_defined_symbol (); (node); \
2854 (node) = node->next_defined_symbol ())
2856 /* Return first variable. */
2857 inline varpool_node *
2858 symbol_table::first_variable (void)
2860 symtab_node *node;
2861 for (node = nodes; node; node = node->next)
2862 if (varpool_node *vnode = dyn_cast <varpool_node *> (node))
2863 return vnode;
2864 return NULL;
2867 /* Return next variable after NODE. */
2868 inline varpool_node *
2869 symbol_table::next_variable (varpool_node *node)
2871 symtab_node *node1 = node->next;
2872 for (; node1; node1 = node1->next)
2873 if (varpool_node *vnode1 = dyn_cast <varpool_node *> (node1))
2874 return vnode1;
2875 return NULL;
2877 /* Walk all variables. */
2878 #define FOR_EACH_VARIABLE(node) \
2879 for ((node) = symtab->first_variable (); \
2880 (node); \
2881 (node) = symtab->next_variable ((node)))
2883 /* Return first static variable with initializer. */
2884 inline varpool_node *
2885 symbol_table::first_static_initializer (void)
2887 symtab_node *node;
2888 for (node = nodes; node; node = node->next)
2890 varpool_node *vnode = dyn_cast <varpool_node *> (node);
2891 if (vnode && DECL_INITIAL (node->decl))
2892 return vnode;
2894 return NULL;
2897 /* Return next static variable with initializer after NODE. */
2898 inline varpool_node *
2899 symbol_table::next_static_initializer (varpool_node *node)
2901 symtab_node *node1 = node->next;
2902 for (; node1; node1 = node1->next)
2904 varpool_node *vnode1 = dyn_cast <varpool_node *> (node1);
2905 if (vnode1 && DECL_INITIAL (node1->decl))
2906 return vnode1;
2908 return NULL;
2911 /* Walk all static variables with initializer set. */
2912 #define FOR_EACH_STATIC_INITIALIZER(node) \
2913 for ((node) = symtab->first_static_initializer (); (node); \
2914 (node) = symtab->next_static_initializer (node))
2916 /* Return first static variable with definition. */
2917 inline varpool_node *
2918 symbol_table::first_defined_variable (void)
2920 symtab_node *node;
2921 for (node = nodes; node; node = node->next)
2923 varpool_node *vnode = dyn_cast <varpool_node *> (node);
2924 if (vnode && vnode->definition)
2925 return vnode;
2927 return NULL;
2930 /* Return next static variable with definition after NODE. */
2931 inline varpool_node *
2932 symbol_table::next_defined_variable (varpool_node *node)
2934 symtab_node *node1 = node->next;
2935 for (; node1; node1 = node1->next)
2937 varpool_node *vnode1 = dyn_cast <varpool_node *> (node1);
2938 if (vnode1 && vnode1->definition)
2939 return vnode1;
2941 return NULL;
2943 /* Walk all variables with definitions in current unit. */
2944 #define FOR_EACH_DEFINED_VARIABLE(node) \
2945 for ((node) = symtab->first_defined_variable (); (node); \
2946 (node) = symtab->next_defined_variable (node))
2948 /* Return first function with body defined. */
2949 inline cgraph_node *
2950 symbol_table::first_defined_function (void)
2952 symtab_node *node;
2953 for (node = nodes; node; node = node->next)
2955 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
2956 if (cn && cn->definition)
2957 return cn;
2959 return NULL;
2962 /* Return next function with body defined after NODE. */
2963 inline cgraph_node *
2964 symbol_table::next_defined_function (cgraph_node *node)
2966 symtab_node *node1 = node->next;
2967 for (; node1; node1 = node1->next)
2969 cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1);
2970 if (cn1 && cn1->definition)
2971 return cn1;
2973 return NULL;
2976 /* Walk all functions with body defined. */
2977 #define FOR_EACH_DEFINED_FUNCTION(node) \
2978 for ((node) = symtab->first_defined_function (); (node); \
2979 (node) = symtab->next_defined_function ((node)))
2981 /* Return first function. */
2982 inline cgraph_node *
2983 symbol_table::first_function (void)
2985 symtab_node *node;
2986 for (node = nodes; node; node = node->next)
2987 if (cgraph_node *cn = dyn_cast <cgraph_node *> (node))
2988 return cn;
2989 return NULL;
2992 /* Return next function. */
2993 inline cgraph_node *
2994 symbol_table::next_function (cgraph_node *node)
2996 symtab_node *node1 = node->next;
2997 for (; node1; node1 = node1->next)
2998 if (cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1))
2999 return cn1;
3000 return NULL;
3003 /* Return first function with body defined. */
3004 inline cgraph_node *
3005 symbol_table::first_function_with_gimple_body (void)
3007 symtab_node *node;
3008 for (node = nodes; node; node = node->next)
3010 cgraph_node *cn = dyn_cast <cgraph_node *> (node);
3011 if (cn && cn->has_gimple_body_p ())
3012 return cn;
3014 return NULL;
3017 /* Return next reachable static variable with initializer after NODE. */
3018 inline cgraph_node *
3019 symbol_table::next_function_with_gimple_body (cgraph_node *node)
3021 symtab_node *node1 = node->next;
3022 for (; node1; node1 = node1->next)
3024 cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1);
3025 if (cn1 && cn1->has_gimple_body_p ())
3026 return cn1;
3028 return NULL;
3031 /* Walk all functions. */
3032 #define FOR_EACH_FUNCTION(node) \
3033 for ((node) = symtab->first_function (); (node); \
3034 (node) = symtab->next_function ((node)))
3036 /* Return true when callgraph node is a function with Gimple body defined
3037 in current unit. Functions can also be define externally or they
3038 can be thunks with no Gimple representation.
3040 Note that at WPA stage, the function body may not be present in memory. */
3042 inline bool
3043 cgraph_node::has_gimple_body_p (void)
3045 return definition && !thunk && !alias;
3048 /* Walk all functions with body defined. */
3049 #define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
3050 for ((node) = symtab->first_function_with_gimple_body (); (node); \
3051 (node) = symtab->next_function_with_gimple_body (node))
3053 /* Uniquize all constants that appear in memory.
3054 Each constant in memory thus far output is recorded
3055 in `const_desc_table'. */
3057 struct GTY((for_user)) constant_descriptor_tree {
3058 /* A MEM for the constant. */
3059 rtx rtl;
3061 /* The value of the constant. */
3062 tree value;
3064 /* Hash of value. Computing the hash from value each time
3065 hashfn is called can't work properly, as that means recursive
3066 use of the hash table during hash table expansion. */
3067 hashval_t hash;
3070 /* Return true when function is only called directly or it has alias.
3071 i.e. it is not externally visible, address was not taken and
3072 it is not used in any other non-standard way. */
3074 inline bool
3075 cgraph_node::only_called_directly_or_aliased_p (void)
3077 gcc_assert (!inlined_to);
3078 return (!force_output && !address_taken
3079 && !ifunc_resolver
3080 && !used_from_other_partition
3081 && !DECL_VIRTUAL_P (decl)
3082 && !DECL_STATIC_CONSTRUCTOR (decl)
3083 && !DECL_STATIC_DESTRUCTOR (decl)
3084 && !used_from_object_file_p ()
3085 && !externally_visible);
3088 /* Return true when function can be removed from callgraph
3089 if all direct calls are eliminated. */
3091 inline bool
3092 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
3094 gcc_checking_assert (!inlined_to);
3095 /* Extern inlines can always go, we will use the external definition. */
3096 if (DECL_EXTERNAL (decl))
3097 return true;
3098 /* When function is needed, we cannot remove it. */
3099 if (force_output || used_from_other_partition)
3100 return false;
3101 if (DECL_STATIC_CONSTRUCTOR (decl)
3102 || DECL_STATIC_DESTRUCTOR (decl))
3103 return false;
3104 /* Only COMDAT functions can be removed if externally visible. */
3105 if (externally_visible
3106 && ((!DECL_COMDAT (decl) || ifunc_resolver)
3107 || forced_by_abi
3108 || used_from_object_file_p ()))
3109 return false;
3110 return true;
3113 /* Verify cgraph, if consistency checking is enabled. */
3115 inline void
3116 cgraph_node::checking_verify_cgraph_nodes (void)
3118 if (flag_checking)
3119 cgraph_node::verify_cgraph_nodes ();
3122 /* Return true when variable can be removed from variable pool
3123 if all direct calls are eliminated. */
3125 inline bool
3126 varpool_node::can_remove_if_no_refs_p (void)
3128 if (DECL_EXTERNAL (decl))
3129 return true;
3130 return (!force_output && !used_from_other_partition
3131 && ((DECL_COMDAT (decl)
3132 && !forced_by_abi
3133 && !used_from_object_file_p ())
3134 || !externally_visible
3135 || DECL_HAS_VALUE_EXPR_P (decl)));
3138 /* Return true when all references to variable must be visible in ipa_ref_list.
3139 i.e. if the variable is not externally visible or not used in some magic
3140 way (asm statement or such).
3141 The magic uses are all summarized in force_output flag. */
3143 inline bool
3144 varpool_node::all_refs_explicit_p ()
3146 return (definition
3147 && !externally_visible
3148 && !used_from_other_partition
3149 && !force_output);
3152 struct tree_descriptor_hasher : ggc_ptr_hash<constant_descriptor_tree>
3154 static hashval_t hash (constant_descriptor_tree *);
3155 static bool equal (constant_descriptor_tree *, constant_descriptor_tree *);
3158 /* Constant pool accessor function. */
3159 hash_table<tree_descriptor_hasher> *constant_pool_htab (void);
3161 /* Return node that alias is aliasing. */
3163 inline cgraph_node *
3164 cgraph_node::get_alias_target (void)
3166 return dyn_cast <cgraph_node *> (symtab_node::get_alias_target ());
3169 /* Return node that alias is aliasing. */
3171 inline varpool_node *
3172 varpool_node::get_alias_target (void)
3174 return dyn_cast <varpool_node *> (symtab_node::get_alias_target ());
3177 /* Walk the alias chain to return the symbol NODE is alias of.
3178 If NODE is not an alias, return NODE.
3179 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3180 When REF is non-NULL, assume that reference happens in symbol REF
3181 when determining the availability. */
3183 inline symtab_node *
3184 symtab_node::ultimate_alias_target (enum availability *availability,
3185 symtab_node *ref)
3187 if (!alias)
3189 if (availability)
3190 *availability = get_availability (ref);
3191 return this;
3194 return ultimate_alias_target_1 (availability, ref);
3197 /* Given function symbol, walk the alias chain to return the function node
3198 is alias of. Do not walk through thunks.
3199 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3200 When REF is non-NULL, assume that reference happens in symbol REF
3201 when determining the availability. */
3203 inline cgraph_node *
3204 cgraph_node::ultimate_alias_target (enum availability *availability,
3205 symtab_node *ref)
3207 cgraph_node *n = dyn_cast <cgraph_node *>
3208 (symtab_node::ultimate_alias_target (availability, ref));
3209 if (!n && availability)
3210 *availability = AVAIL_NOT_AVAILABLE;
3211 return n;
3214 /* For given variable pool node, walk the alias chain to return the function
3215 the variable is alias of. Do not walk through thunks.
3216 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3217 When REF is non-NULL, assume that reference happens in symbol REF
3218 when determining the availability. */
3220 inline varpool_node *
3221 varpool_node::ultimate_alias_target (availability *availability,
3222 symtab_node *ref)
3224 varpool_node *n = dyn_cast <varpool_node *>
3225 (symtab_node::ultimate_alias_target (availability, ref));
3227 if (!n && availability)
3228 *availability = AVAIL_NOT_AVAILABLE;
3229 return n;
3232 /* Set callee N of call graph edge and add it to the corresponding set of
3233 callers. */
3235 inline void
3236 cgraph_edge::set_callee (cgraph_node *n)
3238 prev_caller = NULL;
3239 if (n->callers)
3240 n->callers->prev_caller = this;
3241 next_caller = n->callers;
3242 n->callers = this;
3243 callee = n;
3246 /* Return true when the edge represents a direct recursion. */
3248 inline bool
3249 cgraph_edge::recursive_p (void)
3251 cgraph_node *c = callee->ultimate_alias_target ();
3252 if (caller->inlined_to)
3253 return caller->inlined_to->decl == c->decl;
3254 else
3255 return caller->decl == c->decl;
3258 /* Remove the edge from the list of the callers of the callee. */
3260 inline void
3261 cgraph_edge::remove_callee (void)
3263 gcc_assert (!indirect_unknown_callee);
3264 if (prev_caller)
3265 prev_caller->next_caller = next_caller;
3266 if (next_caller)
3267 next_caller->prev_caller = prev_caller;
3268 if (!prev_caller)
3269 callee->callers = next_caller;
3272 /* Return true if call must bind to current definition. */
3274 inline bool
3275 cgraph_edge::binds_to_current_def_p ()
3277 if (callee)
3278 return callee->binds_to_current_def_p (caller);
3279 else
3280 return false;
3283 /* Expected frequency of executions within the function.
3284 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
3285 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
3287 inline int
3288 cgraph_edge::frequency ()
3290 return count.to_cgraph_frequency (caller->inlined_to
3291 ? caller->inlined_to->count
3292 : caller->count);
3296 /* Return true if the TM_CLONE bit is set for a given FNDECL. */
3297 static inline bool
3298 decl_is_tm_clone (const_tree fndecl)
3300 cgraph_node *n = cgraph_node::get (fndecl);
3301 if (n)
3302 return n->tm_clone;
3303 return false;
3306 /* Likewise indicate that a node is needed, i.e. reachable via some
3307 external means. */
3309 inline void
3310 cgraph_node::mark_force_output (void)
3312 force_output = 1;
3313 gcc_checking_assert (!inlined_to);
3316 /* Return true if function should be optimized for size. */
3318 inline enum optimize_size_level
3319 cgraph_node::optimize_for_size_p (void)
3321 if (opt_for_fn (decl, optimize_size))
3322 return OPTIMIZE_SIZE_MAX;
3323 if (count == profile_count::zero ())
3324 return OPTIMIZE_SIZE_MAX;
3325 if (frequency == NODE_FREQUENCY_UNLIKELY_EXECUTED)
3326 return OPTIMIZE_SIZE_BALANCED;
3327 else
3328 return OPTIMIZE_SIZE_NO;
3331 /* Return symtab_node for NODE or create one if it is not present
3332 in symtab. */
3334 inline symtab_node *
3335 symtab_node::get_create (tree node)
3337 if (TREE_CODE (node) == VAR_DECL)
3338 return varpool_node::get_create (node);
3339 else
3340 return cgraph_node::get_create (node);
3343 /* Return availability of NODE when referenced from REF. */
3345 inline enum availability
3346 symtab_node::get_availability (symtab_node *ref)
3348 if (is_a <cgraph_node *> (this))
3349 return dyn_cast <cgraph_node *> (this)->get_availability (ref);
3350 else
3351 return dyn_cast <varpool_node *> (this)->get_availability (ref);
3354 /* Call callback on symtab node and aliases associated to this node.
3355 When INCLUDE_OVERWRITABLE is false, overwritable symbols are skipped. */
3357 inline bool
3358 symtab_node::call_for_symbol_and_aliases (bool (*callback) (symtab_node *,
3359 void *),
3360 void *data,
3361 bool include_overwritable)
3363 if (include_overwritable
3364 || get_availability () > AVAIL_INTERPOSABLE)
3366 if (callback (this, data))
3367 return true;
3369 if (has_aliases_p ())
3370 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3371 return false;
3374 /* Call callback on function and aliases associated to the function.
3375 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3376 skipped. */
3378 inline bool
3379 cgraph_node::call_for_symbol_and_aliases (bool (*callback) (cgraph_node *,
3380 void *),
3381 void *data,
3382 bool include_overwritable)
3384 if (include_overwritable
3385 || get_availability () > AVAIL_INTERPOSABLE)
3387 if (callback (this, data))
3388 return true;
3390 if (has_aliases_p ())
3391 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3392 return false;
3395 /* Call callback on varpool symbol and aliases associated to varpool symbol.
3396 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3397 skipped. */
3399 inline bool
3400 varpool_node::call_for_symbol_and_aliases (bool (*callback) (varpool_node *,
3401 void *),
3402 void *data,
3403 bool include_overwritable)
3405 if (include_overwritable
3406 || get_availability () > AVAIL_INTERPOSABLE)
3408 if (callback (this, data))
3409 return true;
3411 if (has_aliases_p ())
3412 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3413 return false;
3416 /* Return true if reference may be used in address compare. */
3418 inline bool
3419 ipa_ref::address_matters_p ()
3421 if (use != IPA_REF_ADDR)
3422 return false;
3423 /* Addresses taken from virtual tables are never compared. */
3424 if (is_a <varpool_node *> (referring)
3425 && DECL_VIRTUAL_P (referring->decl))
3426 return false;
3427 return referred->address_can_be_compared_p ();
3430 /* Build polymorphic call context for indirect call E. */
3432 inline
3433 ipa_polymorphic_call_context::ipa_polymorphic_call_context (cgraph_edge *e)
3435 gcc_checking_assert (e->indirect_info->polymorphic);
3436 *this = e->indirect_info->context;
3439 /* Build empty "I know nothing" context. */
3441 inline
3442 ipa_polymorphic_call_context::ipa_polymorphic_call_context ()
3444 clear_speculation ();
3445 clear_outer_type ();
3446 invalid = false;
3449 /* Make context non-speculative. */
3451 inline void
3452 ipa_polymorphic_call_context::clear_speculation ()
3454 speculative_outer_type = NULL;
3455 speculative_offset = 0;
3456 speculative_maybe_derived_type = false;
3459 /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
3460 NULL, the context is set to dummy "I know nothing" setting. */
3462 inline void
3463 ipa_polymorphic_call_context::clear_outer_type (tree otr_type)
3465 outer_type = otr_type ? TYPE_MAIN_VARIANT (otr_type) : NULL;
3466 offset = 0;
3467 maybe_derived_type = true;
3468 maybe_in_construction = true;
3469 dynamic = true;
3472 /* Adjust all offsets in contexts by OFF bits. */
3474 inline void
3475 ipa_polymorphic_call_context::offset_by (HOST_WIDE_INT off)
3477 if (outer_type)
3478 offset += off;
3479 if (speculative_outer_type)
3480 speculative_offset += off;
3483 /* Return TRUE if context is fully useless. */
3485 inline bool
3486 ipa_polymorphic_call_context::useless_p () const
3488 return (!outer_type && !speculative_outer_type);
3491 /* When using fprintf (or similar), problems can arise with
3492 transient generated strings. Many string-generation APIs
3493 only support one result being alive at once (e.g. by
3494 returning a pointer to a statically-allocated buffer).
3496 If there is more than one generated string within one
3497 fprintf call: the first string gets evicted or overwritten
3498 by the second, before fprintf is fully evaluated.
3499 See e.g. PR/53136.
3501 This function provides a workaround for this, by providing
3502 a simple way to create copies of these transient strings,
3503 without the need to have explicit cleanup:
3505 fprintf (dumpfile, "string 1: %s string 2:%s\n",
3506 xstrdup_for_dump (EXPR_1),
3507 xstrdup_for_dump (EXPR_2));
3509 This is actually a simple wrapper around ggc_strdup, but
3510 the name documents the intent. We require that no GC can occur
3511 within the fprintf call. */
3513 static inline const char *
3514 xstrdup_for_dump (const char *transient_str)
3516 return ggc_strdup (transient_str);
3519 /* During LTO stream-in this predicate can be used to check whether node
3520 in question prevails in the linking to save some memory usage. */
3521 inline bool
3522 symtab_node::prevailing_p (void)
3524 return definition && ((!TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
3525 || previous_sharing_asm_name == NULL);
3528 extern GTY(()) symbol_table *saved_symtab;
3530 #if CHECKING_P
3532 namespace selftest {
3534 /* An RAII-style class for use in selftests for temporarily using a different
3535 symbol_table, so that such tests can be isolated from each other. */
3537 class symbol_table_test
3539 public:
3540 /* Constructor. Override "symtab". */
3541 symbol_table_test ();
3543 /* Destructor. Restore the saved_symtab. */
3544 ~symbol_table_test ();
3547 } // namespace selftest
3549 #endif /* CHECKING_P */
3551 #endif /* GCC_CGRAPH_H */