1 /* Callgraph handling code.
2 Copyright (C) 2003-2022 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
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
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 #if 0 // sdcpp ndef GCC_CGRAPH_H
24 #include "profile-count.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);
38 typedef ipa_opt_pass_d
*ipa_opt_pass
;
40 /* Symbol table consists of functions and variables.
41 TODO: add labels and CONST_DECLs. */
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
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
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 *);
70 /* Not yet set by cgraph_function_body_availability. */
72 /* Function body/variable initializer is unknown. */
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. */
80 /* Function body/variable initializer is known and will be used in final
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
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. */
96 /* Partitioned symbols are put into one of partitions. */
98 /* Duplicated symbols (such as comdat or constant pool references) are
99 copied into every node needing them via add_symbol_to_partition. */
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")))
110 friend class symbol_table
;
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 semantic_interposition (flag_semantic_interposition
),
121 used_from_other_partition (false), in_other_partition (false),
122 address_taken (false), in_init_priority_hash (false),
123 need_lto_streaming (false), offloadable (false), ifunc_resolver (false),
124 order (false), next_sharing_asm_name (NULL
),
125 previous_sharing_asm_name (NULL
), same_comdat_group (NULL
), ref_list (),
126 alias_target (NULL
), lto_file_data (NULL
), aux (NULL
),
127 x_comdat_group (NULL_TREE
), x_section (NULL
)
131 const char *name () const;
133 /* Return dump name. */
134 const char *dump_name () const;
136 /* Return asm name. */
137 const char *asm_name () const;
139 /* Return dump name with assembler name. */
140 const char *dump_asm_name () const;
142 /* Return visibility name. */
143 const char *get_visibility_string () const;
145 /* Return type_name name. */
146 const char *get_symtab_type_string () const;
148 /* Add node into symbol table. This function is not used directly, but via
149 cgraph/varpool node creation routines. */
150 void register_symbol (void);
152 /* Remove symbol from symbol table. */
155 /* Dump symtab node to F. */
158 /* Dump symtab callgraph in graphviz format. */
159 void dump_graphviz (FILE *f
);
161 /* Dump symtab node to stderr. */
162 void DEBUG_FUNCTION
debug (void);
164 /* Verify consistency of node. */
165 void DEBUG_FUNCTION
verify (void);
167 /* Return ipa reference from this symtab_node to
168 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
169 of the use and STMT the statement (if it exists). */
170 ipa_ref
*create_reference (symtab_node
*referred_node
,
171 enum ipa_ref_use use_type
);
173 /* Return ipa reference from this symtab_node to
174 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
175 of the use and STMT the statement (if it exists). */
176 ipa_ref
*create_reference (symtab_node
*referred_node
,
177 enum ipa_ref_use use_type
, gimple
*stmt
);
179 /* If VAL is a reference to a function or a variable, add a reference from
180 this symtab_node to the corresponding symbol table node. Return the new
181 reference or NULL if none was created. */
182 ipa_ref
*maybe_create_reference (tree val
, gimple
*stmt
);
184 /* Clone all references from symtab NODE to this symtab_node. */
185 void clone_references (symtab_node
*node
);
187 /* Remove all stmt references in non-speculative references.
188 Those are not maintained during inlining & clonning.
189 The exception are speculative references that are updated along
190 with callgraph edges associated with them. */
191 void clone_referring (symtab_node
*node
);
193 /* Clone reference REF to this symtab_node and set its stmt to STMT. */
194 ipa_ref
*clone_reference (ipa_ref
*ref
, gimple
*stmt
);
196 /* Find the structure describing a reference to REFERRED_NODE
197 and associated with statement STMT. */
198 ipa_ref
*find_reference (symtab_node
*referred_node
, gimple
*stmt
,
199 unsigned int lto_stmt_uid
);
201 /* Remove all references that are associated with statement STMT. */
202 void remove_stmt_references (gimple
*stmt
);
204 /* Remove all stmt references in non-speculative references.
205 Those are not maintained during inlining & clonning.
206 The exception are speculative references that are updated along
207 with callgraph edges associated with them. */
208 void clear_stmts_in_references (void);
210 /* Remove all references in ref list. */
211 void remove_all_references (void);
213 /* Remove all referring items in ref list. */
214 void remove_all_referring (void);
216 /* Dump references in ref list to FILE. */
217 void dump_references (FILE *file
);
219 /* Dump referring in list to FILE. */
220 void dump_referring (FILE *);
222 /* Get number of references for this node. */
223 inline unsigned num_references (void)
225 return ref_list
.references
.length ();
228 /* Iterates I-th reference in the list, REF is also set. */
229 ipa_ref
*iterate_reference (unsigned i
, ipa_ref
*&ref
);
231 /* Iterates I-th referring item in the list, REF is also set. */
232 ipa_ref
*iterate_referring (unsigned i
, ipa_ref
*&ref
);
234 /* Iterates I-th referring alias item in the list, REF is also set. */
235 ipa_ref
*iterate_direct_aliases (unsigned i
, ipa_ref
*&ref
);
237 /* Return true if symtab node and TARGET represents
238 semantically equivalent symbols. */
239 bool semantically_equivalent_p (symtab_node
*target
);
241 /* Classify symbol symtab node for partitioning. */
242 enum symbol_partitioning_class
get_partitioning_class (void);
244 /* Return comdat group. */
245 tree
get_comdat_group ()
247 return x_comdat_group
;
250 /* Return comdat group as identifier_node. */
251 tree
get_comdat_group_id ()
253 if (x_comdat_group
&& TREE_CODE (x_comdat_group
) != IDENTIFIER_NODE
)
254 x_comdat_group
= DECL_ASSEMBLER_NAME (x_comdat_group
);
255 return x_comdat_group
;
258 /* Set comdat group. */
259 void set_comdat_group (tree group
)
261 gcc_checking_assert (!group
|| TREE_CODE (group
) == IDENTIFIER_NODE
263 x_comdat_group
= group
;
266 /* Return section as string. */
267 const char * get_section () const
271 return x_section
->name
;
274 /* Remove node from same comdat group. */
275 void remove_from_same_comdat_group (void);
277 /* Add this symtab_node to the same comdat group that OLD is in. */
278 void add_to_same_comdat_group (symtab_node
*old_node
);
280 /* Dissolve the same_comdat_group list in which NODE resides. */
281 void dissolve_same_comdat_group_list (void);
283 /* Return true when symtab_node is known to be used from other (non-LTO)
284 object file. Known only when doing LTO via linker plugin. */
285 bool used_from_object_file_p (void);
287 /* Walk the alias chain to return the symbol NODE is alias of.
288 If NODE is not an alias, return NODE.
289 When AVAILABILITY is non-NULL, get minimal availability in the chain.
290 When REF is non-NULL, assume that reference happens in symbol REF
291 when determining the availability. */
292 symtab_node
*ultimate_alias_target (enum availability
*avail
= NULL
,
293 struct symtab_node
*ref
= NULL
);
295 /* Return next reachable static symbol with initializer after NODE. */
296 inline symtab_node
*next_defined_symbol (void);
298 /* Add reference recording that symtab node is alias of TARGET.
299 If TRANSPARENT is true make the alias to be transparent alias.
300 The function can fail in the case of aliasing cycles; in this case
302 bool resolve_alias (symtab_node
*target
, bool transparent
= false);
304 /* C++ FE sometimes change linkage flags after producing same
306 void fixup_same_cpp_alias_visibility (symtab_node
*target
);
308 /* Call callback on symtab node and aliases associated to this node.
309 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
311 bool call_for_symbol_and_aliases (bool (*callback
) (symtab_node
*, void *),
313 bool include_overwrite
);
315 /* If node cannot be interposable by static or dynamic linker to point to
316 different definition, return this symbol. Otherwise look for alias with
317 such property and if none exists, introduce new one. */
318 symtab_node
*noninterposable_alias (void);
320 /* Return node that alias is aliasing. */
321 inline symtab_node
*get_alias_target (void);
323 /* Return DECL that alias is aliasing. */
324 inline tree
get_alias_target_tree ();
326 /* Set section for symbol and its aliases. */
327 void set_section (const char *section
);
329 /* Like set_section, but copying the section name from another node. */
330 void set_section (const symtab_node
&other
);
332 /* Set section, do not recurse into aliases.
333 When one wants to change section of symbol and its aliases,
335 void set_section_for_node (const char *section
);
337 /* Like set_section_for_node, but copying the section name from another
339 void set_section_for_node (const symtab_node
&other
);
341 /* Set initialization priority to PRIORITY. */
342 void set_init_priority (priority_type priority
);
344 /* Return the initialization priority. */
345 priority_type
get_init_priority ();
347 /* Return availability of NODE when referenced from REF. */
348 enum availability
get_availability (symtab_node
*ref
= NULL
);
350 /* During LTO stream-in this predicate can be used to check whether node
351 in question prevails in the linking to save some memory usage. */
352 bool prevailing_p (void);
354 /* Return true if NODE binds to current definition in final executable
355 when referenced from REF. If REF is NULL return conservative value
356 for any reference. */
357 bool binds_to_current_def_p (symtab_node
*ref
= NULL
);
359 /* Make DECL local. */
360 void make_decl_local (void);
362 /* Copy visibility from N. */
363 void copy_visibility_from (symtab_node
*n
);
365 /* Return desired alignment of the definition. This is NOT alignment useful
366 to access THIS, because THIS may be interposable and DECL_ALIGN should
367 be used instead. It however must be guaranteed when output definition
369 unsigned int definition_alignment ();
371 /* Return true if alignment can be increased. */
372 bool can_increase_alignment_p ();
374 /* Increase alignment of symbol to ALIGN. */
375 void increase_alignment (unsigned int align
);
377 /* Return true if list contains an alias. */
378 bool has_aliases_p (void);
380 /* Return true when the symbol is real symbol, i.e. it is not inline clone
381 or abstract function kept for debug info purposes only. */
382 bool real_symbol_p (void);
384 /* Return true when the symbol needs to be output to the LTO symbol table. */
385 bool output_to_lto_symbol_table_p (void);
387 /* Determine if symbol declaration is needed. That is, visible to something
388 either outside this translation unit, something magic in the system
389 configury. This function is used just during symbol creation. */
390 bool needed_p (void);
392 /* Return true if this symbol is a function from the C frontend specified
393 directly in RTL form (with "__RTL"). */
394 bool native_rtl_p () const;
396 /* Return true when there are references to the node. */
397 bool referred_to_p (bool include_self
= true);
399 /* Return true if symbol can be discarded by linker from the binary.
400 Assume that symbol is used (so there is no need to take into account
401 garbage collecting linkers)
403 This can happen for comdats, commons and weaks when they are prevailed
404 by other definition at static linking time. */
406 can_be_discarded_p (void)
408 return ((DECL_EXTERNAL (decl
)
409 && !in_other_partition
)
410 || ((get_comdat_group ()
411 || DECL_COMMON (decl
)
412 || (DECL_SECTION_NAME (decl
) && DECL_WEAK (decl
)))
413 && ((resolution
!= LDPR_PREVAILING_DEF
414 && resolution
!= LDPR_PREVAILING_DEF_IRONLY_EXP
)
415 || flag_incremental_link
)
416 && resolution
!= LDPR_PREVAILING_DEF_IRONLY
));
419 /* Return true if NODE is local to a particular COMDAT group, and must not
420 be named from outside the COMDAT. This is used for C++ decloned
422 inline bool comdat_local_p (void)
424 return (same_comdat_group
&& !TREE_PUBLIC (decl
));
427 /* Return true if ONE and TWO are part of the same COMDAT group. */
428 inline bool in_same_comdat_group_p (symtab_node
*target
);
430 /* Return true if symbol is known to be nonzero. */
431 bool nonzero_address ();
433 /* Return 0 if symbol is known to have different address than S2,
434 Return 1 if symbol is known to have same address as S2,
437 If MEMORY_ACCESSED is true, assume that both memory pointer to THIS
438 and S2 is going to be accessed. This eliminates the situations when
439 either THIS or S2 is NULL and is useful for comparing bases when deciding
440 about memory aliasing. */
441 int equal_address_to (symtab_node
*s2
, bool memory_accessed
= false);
443 /* Return true if symbol's address may possibly be compared to other
445 bool address_matters_p ();
447 /* Return true if NODE's address can be compared. This use properties
448 of NODE only and does not look if the address is actually taken in
449 interesting way. For that use ADDRESS_MATTERS_P instead. */
450 bool address_can_be_compared_p (void);
452 /* Return symbol table node associated with DECL, if any,
453 and NULL otherwise. */
454 static inline symtab_node
*get (const_tree decl
)
456 /* Check that we are called for sane type of object - functions
457 and static or external variables. */
458 gcc_checking_assert (TREE_CODE (decl
) == FUNCTION_DECL
459 || (TREE_CODE (decl
) == VAR_DECL
460 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)
462 /* Check that the mapping is sane - perhaps this check can go away,
463 but at the moment frontends tends to corrupt the mapping by calling
464 memcpy/memset on the tree nodes. */
465 gcc_checking_assert (!decl
->decl_with_vis
.symtab_node
466 || decl
->decl_with_vis
.symtab_node
->decl
== decl
);
467 return decl
->decl_with_vis
.symtab_node
;
470 /* Try to find a symtab node for declaration DECL and if it does not
471 exist or if it corresponds to an inline clone, create a new one. */
472 static inline symtab_node
* get_create (tree node
);
474 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
475 Return NULL if there's no such node. */
476 static symtab_node
*get_for_asmname (const_tree asmname
);
478 /* Verify symbol table for internal consistency. */
479 static DEBUG_FUNCTION
void verify_symtab_nodes (void);
481 /* Perform internal consistency checks, if they are enabled. */
482 static inline void checking_verify_symtab_nodes (void);
484 /* Type of the symbol. */
485 ENUM_BITFIELD (symtab_type
) type
: 8;
487 /* The symbols resolution. */
488 ENUM_BITFIELD (ld_plugin_symbol_resolution
) resolution
: 8;
490 /*** Flags representing the symbol type. ***/
492 /* True when symbol corresponds to a definition in current unit.
493 set via finalize_function or finalize_decl */
494 unsigned definition
: 1;
495 /* True when symbol is an alias.
496 Set by assemble_alias. */
498 /* When true the alias is translated into its target symbol either by GCC
499 or assembler (it also may just be a duplicate declaration of the same
502 Currently transparent aliases come in three different flavors
503 - aliases having the same assembler name as their target (aka duplicated
504 declarations). In this case the assembler names compare via
505 assembler_names_equal_p and weakref is false
506 - aliases that are renamed at a time being output to final file
507 by varasm.cc. For those DECL_ASSEMBLER_NAME have
508 IDENTIFIER_TRANSPARENT_ALIAS set and thus also their assembler
510 Weakrefs belong to this category when we target assembler without
512 - weakrefs that are renamed by assembler via .weakref directive.
513 In this case the alias may or may not be definition (depending if
514 target declaration was seen by the compiler), weakref is set.
515 Unless we are before renaming statics, assembler names are different.
517 Given that we now support duplicate declarations, the second option is
518 redundant and will be removed. */
519 unsigned transparent_alias
: 1;
520 /* True when alias is a weakref. */
521 unsigned weakref
: 1;
522 /* C++ frontend produce same body aliases and extra name aliases for
523 virtual functions and vtables that are obviously equivalent.
524 Those aliases are bit special, especially because C++ frontend
525 visibility code is so ugly it cannot get them right at first time
526 and their visibility needs to be copied from their "masters" at
527 the end of parsing. */
528 unsigned cpp_implicit_alias
: 1;
529 /* The alias is a symbol version. */
531 /* Set once the definition was analyzed. The list of references and
532 other properties are built during analysis. */
533 unsigned analyzed
: 1;
534 /* Set for write-only variables. */
535 unsigned writeonly
: 1;
536 /* Visibility of symbol was used for further optimization; do not
537 permit further changes. */
538 unsigned refuse_visibility_changes
: 1;
540 /*** Visibility and linkage flags. ***/
542 /* Set when function is visible by other units. */
543 unsigned externally_visible
: 1;
544 /* Don't reorder to other symbols having this set. */
545 unsigned no_reorder
: 1;
546 /* The symbol will be assumed to be used in an invisible way (like
547 by an toplevel asm statement). */
548 unsigned force_output
: 1;
549 /* Like FORCE_OUTPUT, but in the case it is ABI requiring the symbol to be
550 exported. Unlike FORCE_OUTPUT this flag gets cleared to symbols promoted
551 to static and it does not inhibit optimization. */
552 unsigned forced_by_abi
: 1;
553 /* True when the name is known to be unique and thus it does not need mangling. */
554 unsigned unique_name
: 1;
555 /* Specify whether the section was set by user or by
556 compiler via -ffunction-sections. */
557 unsigned implicit_section
: 1;
558 /* True when body and other characteristics have been removed by
559 symtab_remove_unreachable_nodes. */
560 unsigned body_removed
: 1;
561 /* True when symbol should comply to -fsemantic-interposition flag. */
562 unsigned semantic_interposition
: 1;
564 /*** WHOPR Partitioning flags.
565 These flags are used at ltrans stage when only part of the callgraph is
568 /* Set when variable is used from other LTRANS partition. */
569 unsigned used_from_other_partition
: 1;
570 /* Set when function is available in the other LTRANS partition.
571 During WPA output it is used to mark nodes that are present in
572 multiple partitions. */
573 unsigned in_other_partition
: 1;
577 /*** other flags. ***/
579 /* Set when symbol has address taken. */
580 unsigned address_taken
: 1;
581 /* Set when init priority is set. */
582 unsigned in_init_priority_hash
: 1;
584 /* Set when symbol needs to be streamed into LTO bytecode for LTO, or in case
585 of offloading, for separate compilation for a different target. */
586 unsigned need_lto_streaming
: 1;
588 /* Set when symbol can be streamed into bytecode for offloading. */
589 unsigned offloadable
: 1;
591 /* Set when symbol is an IFUNC resolver. */
592 unsigned ifunc_resolver
: 1;
595 /* Ordering of all symtab entries. */
598 /* Declaration representing the symbol. */
601 /* Linked list of symbol table entries starting with symtab_nodes. */
603 symtab_node
*previous
;
605 /* Linked list of symbols with the same asm name. There may be multiple
606 entries for single symbol name during LTO, because symbols are renamed
607 only after partitioning.
609 Because inline clones are kept in the assembler name has, they also produce
612 There are also several long standing bugs where frontends and builtin
613 code produce duplicated decls. */
614 symtab_node
*next_sharing_asm_name
;
615 symtab_node
*previous_sharing_asm_name
;
617 /* Circular list of nodes in the same comdat group if non-NULL. */
618 symtab_node
*same_comdat_group
;
620 /* Vectors of referring and referenced entities. */
621 ipa_ref_list
GTY((skip
)) ref_list
;
623 /* Alias target. May be either DECL pointer or ASSEMBLER_NAME pointer
624 depending to what was known to frontend on the creation time.
625 Once alias is resolved, this pointer become NULL. */
628 /* File stream where this node is being written to. */
629 struct lto_file_decl_data
* lto_file_data
;
631 PTR
GTY ((skip
)) aux
;
633 /* Comdat group the symbol is in. Can be private if GGC allowed that. */
636 /* Section name. Again can be private, if allowed. */
637 section_hash_entry
*x_section
;
640 /* Dump base fields of symtab nodes to F. Not to be used directly. */
641 void dump_base (FILE *);
643 /* Verify common part of symtab node. */
644 bool DEBUG_FUNCTION
verify_base (void);
646 /* Remove node from symbol table. This function is not used directly, but via
647 cgraph/varpool node removal routines. */
648 void unregister (struct clone_info
*);
650 /* Return the initialization and finalization priority information for
651 DECL. If there is no previous priority information, a freshly
652 allocated structure is returned. */
653 struct symbol_priority_map
*priority_info (void);
655 /* Worker for call_for_symbol_and_aliases_1. */
656 bool call_for_symbol_and_aliases_1 (bool (*callback
) (symtab_node
*, void *),
658 bool include_overwrite
);
660 /* Workers for set_section. */
661 static bool set_section_from_string (symtab_node
*n
, void *s
);
662 static bool set_section_from_node (symtab_node
*n
, void *o
);
664 /* Worker for symtab_resolve_alias. */
665 static bool set_implicit_section (symtab_node
*n
, void *);
667 /* Worker searching noninterposable alias. */
668 static bool noninterposable_alias (symtab_node
*node
, void *data
);
670 /* Worker for ultimate_alias_target. */
671 symtab_node
*ultimate_alias_target_1 (enum availability
*avail
= NULL
,
672 symtab_node
*ref
= NULL
);
674 /* Get dump name with normal or assembly name. */
675 const char *get_dump_name (bool asm_name_p
) const;
679 symtab_node::checking_verify_symtab_nodes (void)
682 symtab_node::verify_symtab_nodes ();
685 /* Walk all aliases for NODE. */
686 #define FOR_EACH_ALIAS(NODE, ALIAS) \
687 for (unsigned ALIAS##_iter_ = 0; \
688 (NODE)->iterate_direct_aliases (ALIAS##_iter_, ALIAS); \
691 /* This is the information that is put into the cgraph local structure
692 to recover a function. */
693 struct lto_file_decl_data
;
695 extern const char * const cgraph_availability_names
[];
696 extern const char * const ld_plugin_symbol_resolution_names
[];
697 extern const char * const tls_model_names
[];
699 /* Represent which DECL tree (or reference to such tree)
700 will be replaced by another tree while versioning. */
701 struct GTY(()) ipa_replace_map
703 /* The new (replacing) tree. */
705 /* Parameter number to replace, when old_tree is NULL. */
707 /* Set if the newly added reference should not be an address one, but a load
708 one from the operand of the ADDR_EXPR in NEW_TREE. This is for cases when
709 the corresponding parameter p is used only as *p. */
710 unsigned force_load_ref
: 1;
713 enum cgraph_simd_clone_arg_type
715 SIMD_CLONE_ARG_TYPE_VECTOR
,
716 SIMD_CLONE_ARG_TYPE_UNIFORM
,
717 /* These are only for integer/pointer arguments passed by value. */
718 SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP
,
719 SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP
,
720 /* These 6 are only for reference type arguments or arguments passed
722 SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP
,
723 SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP
,
724 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
,
725 SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
,
726 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP
,
727 SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP
,
728 SIMD_CLONE_ARG_TYPE_MASK
731 /* Function arguments in the original function of a SIMD clone.
732 Supplementary data for `struct simd_clone'. */
734 struct GTY(()) cgraph_simd_clone_arg
{
735 /* Original function argument as it originally existed in
739 /* orig_arg's function (or for extern functions type from
743 /* If argument is a vector, this holds the vector version of
744 orig_arg that after adjusting the argument types will live in
745 DECL_ARGUMENTS. Otherwise, this is NULL.
747 This basically holds:
748 vector(simdlen) __typeof__(orig_arg) new_arg. */
751 /* vector_arg's type (or for extern functions new vector type. */
754 /* If argument is a vector, this holds the array where the simd
755 argument is held while executing the simd clone function. This
756 is a local variable in the cloned function. Its content is
757 copied from vector_arg upon entry to the clone.
759 This basically holds:
760 __typeof__(orig_arg) simd_array[simdlen]. */
763 /* A SIMD clone's argument can be either linear (constant or
764 variable), uniform, or vector. */
765 enum cgraph_simd_clone_arg_type arg_type
;
767 /* Variable alignment if available, otherwise 0. */
768 unsigned int alignment
;
770 /* For arg_type SIMD_CLONE_ARG_TYPE_LINEAR_*CONSTANT_STEP this is
771 the constant linear step, if arg_type is
772 SIMD_CLONE_ARG_TYPE_LINEAR_*VARIABLE_STEP, this is index of
773 the uniform argument holding the step, otherwise 0. */
774 HOST_WIDE_INT linear_step
;
777 /* Specific data for a SIMD function clone. */
780 struct GTY(()) cgraph_simd_clone
{
781 /* Number of words in the SIMD lane associated with this clone. */
784 /* Number of annotated function arguments in `args'. This is
785 usually the number of named arguments in FNDECL. */
788 /* Max hardware vector size in bits for integral vectors. */
789 poly_uint64 vecsize_int
;
791 /* Max hardware vector size in bits for floating point vectors. */
792 poly_uint64 vecsize_float
;
794 /* Machine mode of the mask argument(s), if they are to be passed
795 as bitmasks in integer argument(s). VOIDmode if masks are passed
796 as vectors of characteristic type. */
797 machine_mode mask_mode
;
799 /* The mangling character for a given vector size. This is used
800 to determine the ISA mangling bit as specified in the Intel
802 unsigned char vecsize_mangle
;
804 /* True if this is the masked, in-branch version of the clone,
806 unsigned int inbranch
: 1;
808 /* Doubly linked list of SIMD clones. */
809 cgraph_node
*prev_clone
, *next_clone
;
811 /* Original cgraph node the SIMD clones were created for. */
814 /* Annotated function arguments for the original function. */
815 cgraph_simd_clone_arg
GTY((length ("%h.nargs"))) args
[1];
818 struct GTY(()) cgraph_simd_clone
;
821 /* Function Multiversioning info. */
822 struct GTY((for_user
)) cgraph_function_version_info
{
823 /* The cgraph_node for which the function version info is stored. */
824 cgraph_node
*this_node
;
825 /* Chains all the semantically identical function versions. The
826 first function in this chain is the version_info node of the
828 cgraph_function_version_info
*prev
;
829 /* If this version node corresponds to a dispatcher for function
830 versions, this points to the version info node of the default
831 function, the first node in the chain. */
832 cgraph_function_version_info
*next
;
833 /* If this node corresponds to a function version, this points
834 to the dispatcher function decl, which is the function that must
835 be called to execute the right function version at run-time.
837 If this cgraph node is a dispatcher (if dispatcher_function is
838 true, in the cgraph_node struct) for function versions, this
839 points to resolver function, which holds the function body of the
840 dispatcher. The dispatcher decl is an alias to the resolver
842 tree dispatcher_resolver
;
845 #define DEFCIFCODE(code, type, string) CIF_ ## code,
846 /* Reasons for inlining failures. */
848 enum cgraph_inline_failed_t
{
849 #include "cif-code.def"
853 enum cgraph_inline_failed_type_t
855 CIF_FINAL_NORMAL
= 0,
861 struct cgraph_edge_hasher
: ggc_ptr_hash
<cgraph_edge
>
863 typedef gimple
*compare_type
;
865 static hashval_t
hash (cgraph_edge
*);
866 static hashval_t
hash (gimple
*);
867 static bool equal (cgraph_edge
*, gimple
*);
870 /* The cgraph data structure.
871 Each function decl has assigned cgraph_node listing callees and callers. */
873 struct GTY((tag ("SYMTAB_FUNCTION"))) cgraph_node
: public symtab_node
875 friend class symbol_table
;
878 explicit cgraph_node (int uid
)
879 : symtab_node (SYMTAB_FUNCTION
), callees (NULL
), callers (NULL
),
880 indirect_calls (NULL
),
881 next_sibling_clone (NULL
), prev_sibling_clone (NULL
), clones (NULL
),
882 clone_of (NULL
), call_site_hash (NULL
), former_clone_of (NULL
),
883 simdclone (NULL
), simd_clones (NULL
), ipa_transforms_to_apply (vNULL
),
884 inlined_to (NULL
), rtl (NULL
),
885 count (profile_count::uninitialized ()),
886 count_materialization_scale (REG_BR_PROB_BASE
), profile_id (0),
887 unit_id (0), tp_first_run (0), thunk (false),
888 used_as_abstract_origin (false),
889 lowered (false), process (false), frequency (NODE_FREQUENCY_NORMAL
),
890 only_called_at_startup (false), only_called_at_exit (false),
891 tm_clone (false), dispatcher_function (false), calls_comdat_local (false),
892 icf_merged (false), nonfreeing_fn (false), merged_comdat (false),
893 merged_extern_inline (false), parallelized_function (false),
894 split_part (false), indirect_call_target (false), local (false),
895 versionable (false), can_change_signature (false),
896 redefined_extern_inline (false), tm_may_enter_irr (false),
897 ipcp_clone (false), declare_variant_alt (false),
898 calls_declare_variant_alt (false), m_uid (uid
), m_summary_id (-1)
901 /* Remove the node from cgraph and all inline clones inlined into it.
902 Skip however removal of FORBIDDEN_NODE and return true if it needs to be
903 removed. This allows to call the function from outer loop walking clone
905 bool remove_symbol_and_inline_clones (cgraph_node
*forbidden_node
= NULL
);
907 /* Record all references from cgraph_node that are taken
908 in statement STMT. */
909 void record_stmt_references (gimple
*stmt
);
911 /* Like cgraph_set_call_stmt but walk the clone tree and update all
912 clones sharing the same function body.
913 When WHOLE_SPECULATIVE_EDGES is true, all three components of
914 speculative edge gets updated. Otherwise we update only direct
916 void set_call_stmt_including_clones (gimple
*old_stmt
, gcall
*new_stmt
,
917 bool update_speculative
= true);
919 /* Walk the alias chain to return the function cgraph_node is alias of.
920 Walk through thunk, too.
921 When AVAILABILITY is non-NULL, get minimal availability in the chain.
922 When REF is non-NULL, assume that reference happens in symbol REF
923 when determining the availability. */
924 cgraph_node
*function_symbol (enum availability
*avail
= NULL
,
925 struct symtab_node
*ref
= NULL
);
927 /* Walk the alias chain to return the function cgraph_node is alias of.
928 Walk through non virtual thunks, too. Thus we return either a function
929 or a virtual thunk node.
930 When AVAILABILITY is non-NULL, get minimal availability in the chain.
931 When REF is non-NULL, assume that reference happens in symbol REF
932 when determining the availability. */
933 cgraph_node
*function_or_virtual_thunk_symbol
934 (enum availability
*avail
= NULL
,
935 struct symtab_node
*ref
= NULL
);
937 /* Create node representing clone of N executed COUNT times. Decrease
938 the execution counts from original node too.
939 The new clone will have decl set to DECL that may or may not be the same
942 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
943 function's profile to reflect the fact that part of execution is handled
945 When CALL_DUPLICATION_HOOK is true, the ipa passes are acknowledged about
946 the new clone. Otherwise the caller is responsible for doing so later.
948 If the new node is being inlined into another one, NEW_INLINED_TO should be
949 the outline function the new one is (even indirectly) inlined to.
950 All hooks will see this in node's inlined_to, when invoked.
951 Can be NULL if the node is not inlined. SUFFIX is string that is appended
952 to the original name. */
953 cgraph_node
*create_clone (tree decl
, profile_count count
,
954 bool update_original
,
955 vec
<cgraph_edge
*> redirect_callers
,
956 bool call_duplication_hook
,
957 cgraph_node
*new_inlined_to
,
958 ipa_param_adjustments
*param_adjustments
,
959 const char *suffix
= NULL
);
961 /* Create callgraph node clone with new declaration. The actual body will be
962 copied later at compilation stage. The name of the new clone will be
963 constructed from the name of the original node, SUFFIX and NUM_SUFFIX. */
964 cgraph_node
*create_virtual_clone (const vec
<cgraph_edge
*> &redirect_callers
,
965 vec
<ipa_replace_map
*, va_gc
> *tree_map
,
966 ipa_param_adjustments
*param_adjustments
,
967 const char * suffix
, unsigned num_suffix
);
969 /* Remove the node from the tree of virtual and inline clones and make it a
970 standalone node - not a clone any more. */
971 void remove_from_clone_tree ();
973 /* cgraph node being removed from symbol table; see if its entry can be
974 replaced by other inline clone. */
975 cgraph_node
*find_replacement (struct clone_info
*);
977 /* Create a new cgraph node which is the new version of
978 callgraph node. REDIRECT_CALLERS holds the callers
979 edges which should be redirected to point to
980 NEW_VERSION. ALL the callees edges of the node
981 are cloned to the new version node. Return the new
984 If non-NULL BLOCK_TO_COPY determine what basic blocks
985 was copied to prevent duplications of calls that are dead
988 SUFFIX is string that is appended to the original name. */
990 cgraph_node
*create_version_clone (tree new_decl
,
991 vec
<cgraph_edge
*> redirect_callers
,
993 const char *suffix
= NULL
);
995 /* Perform function versioning.
996 Function versioning includes copying of the tree and
997 a callgraph update (creating a new cgraph node and updating
998 its callees and callers).
1000 REDIRECT_CALLERS varray includes the edges to be redirected
1003 TREE_MAP is a mapping of tree nodes we want to replace with
1004 new ones (according to results of prior analysis).
1006 If non-NULL ARGS_TO_SKIP determine function parameters to remove
1008 If SKIP_RETURN is true, the new version will return void.
1009 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
1010 If non_NULL NEW_ENTRY determine new entry BB of the clone.
1012 If TARGET_ATTRIBUTES is non-null, when creating a new declaration,
1013 add the attributes to DECL_ATTRIBUTES. And call valid_attribute_p
1014 that will promote value of the attribute DECL_FUNCTION_SPECIFIC_TARGET
1017 If VERSION_DECL is set true, use clone_function_name_numbered for the
1018 function clone. Otherwise, use clone_function_name.
1020 Return the new version's cgraph node. */
1021 cgraph_node
*create_version_clone_with_body
1022 (vec
<cgraph_edge
*> redirect_callers
,
1023 vec
<ipa_replace_map
*, va_gc
> *tree_map
,
1024 ipa_param_adjustments
*param_adjustments
,
1025 bitmap bbs_to_copy
, basic_block new_entry_block
, const char *clone_name
,
1026 tree target_attributes
= NULL_TREE
, bool version_decl
= true);
1028 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
1029 corresponding to cgraph_node. */
1030 cgraph_function_version_info
*insert_new_function_version (void);
1032 /* Get the cgraph_function_version_info node corresponding to node. */
1033 cgraph_function_version_info
*function_version (void);
1035 /* Discover all functions and variables that are trivially needed, analyze
1036 them as well as all functions and variables referred by them */
1037 void analyze (void);
1039 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
1040 aliases DECL with an adjustments made into the first parameter.
1041 See comments in struct symtab-thunks.h for detail on the parameters. */
1042 cgraph_node
* create_thunk (tree alias
, tree
, bool this_adjusting
,
1043 HOST_WIDE_INT fixed_offset
,
1044 HOST_WIDE_INT virtual_value
,
1045 HOST_WIDE_INT indirect_offset
,
1046 tree virtual_offset
,
1050 /* Return node that alias is aliasing. */
1051 inline cgraph_node
*get_alias_target (void);
1053 /* Given function symbol, walk the alias chain to return the function node
1054 is alias of. Do not walk through thunks.
1055 When AVAILABILITY is non-NULL, get minimal availability in the chain.
1056 When REF is non-NULL, assume that reference happens in symbol REF
1057 when determining the availability. */
1059 cgraph_node
*ultimate_alias_target (availability
*availability
= NULL
,
1060 symtab_node
*ref
= NULL
);
1062 /* Call expand_thunk on all callers that are thunks and analyze those
1063 nodes that were expanded. */
1064 void expand_all_artificial_thunks ();
1066 /* Assemble thunks and aliases associated to node. */
1067 void assemble_thunks_and_aliases (void);
1069 /* Expand function specified by node. */
1072 /* As an GCC extension we allow redefinition of the function. The
1073 semantics when both copies of bodies differ is not well defined.
1074 We replace the old body with new body so in unit at a time mode
1075 we always use new body, while in normal mode we may end up with
1076 old body inlined into some functions and new body expanded and
1077 inlined in others. */
1080 /* Creates a wrapper from cgraph_node to TARGET node. Thunk is used for this
1081 kind of wrapper method. */
1082 void create_wrapper (cgraph_node
*target
);
1084 /* Verify cgraph nodes of the cgraph node. */
1085 void DEBUG_FUNCTION
verify_node (void);
1087 /* Remove function from symbol table. */
1090 /* Dump call graph node to file F. */
1091 void dump (FILE *f
);
1093 /* Dump call graph node to file F. */
1094 void dump_graphviz (FILE *f
);
1096 /* Dump call graph node to stderr. */
1097 void DEBUG_FUNCTION
debug (void);
1099 /* When doing LTO, read cgraph_node's body from disk if it is not already
1101 bool get_untransformed_body ();
1103 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
1104 if it is not already present. When some IPA transformations are scheduled,
1108 void materialize_clone (void);
1110 /* Release memory used to represent body of function.
1111 Use this only for functions that are released before being translated to
1112 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1113 are free'd in final.cc via free_after_compilation(). */
1114 void release_body (bool keep_arguments
= false);
1116 /* Return the DECL_STRUCT_FUNCTION of the function. */
1117 struct function
*get_fun () const;
1119 /* Bring cgraph node local. */
1120 void make_local (void);
1122 /* Likewise indicate that a node is having address taken. */
1123 void mark_address_taken (void);
1125 /* Set finalization priority to PRIORITY. */
1126 void set_fini_priority (priority_type priority
);
1128 /* Return the finalization priority. */
1129 priority_type
get_fini_priority (void);
1131 /* Create edge from a given function to CALLEE in the cgraph. */
1132 cgraph_edge
*create_edge (cgraph_node
*callee
,
1133 gcall
*call_stmt
, profile_count count
,
1134 bool cloning_p
= false);
1136 /* Create an indirect edge with a yet-undetermined callee where the call
1137 statement destination is a formal parameter of the caller with index
1139 cgraph_edge
*create_indirect_edge (gcall
*call_stmt
, int ecf_flags
,
1140 profile_count count
,
1141 bool cloning_p
= false);
1143 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
1144 same function body. If clones already have edge for OLD_STMT; only
1145 update the edge same way as cgraph_set_call_stmt_including_clones does. */
1146 void create_edge_including_clones (cgraph_node
*callee
,
1147 gimple
*old_stmt
, gcall
*stmt
,
1148 profile_count count
,
1149 cgraph_inline_failed_t reason
);
1151 /* Return the callgraph edge representing the GIMPLE_CALL statement
1153 cgraph_edge
*get_edge (gimple
*call_stmt
);
1155 /* Collect all callers of cgraph_node and its aliases that are known to lead
1156 to NODE (i.e. are not overwritable) and that are not thunks. */
1157 auto_vec
<cgraph_edge
*> collect_callers (void);
1159 /* Remove all callers from the node. */
1160 void remove_callers (void);
1162 /* Remove all callees from the node. */
1163 void remove_callees (void);
1165 /* Return function availability. See cgraph.h for description of individual
1167 enum availability
get_availability (symtab_node
*ref
= NULL
);
1169 /* Set TREE_NOTHROW on cgraph_node's decl and on aliases of the node
1170 if any to NOTHROW. */
1171 bool set_nothrow_flag (bool nothrow
);
1173 /* SET DECL_IS_MALLOC on cgraph_node's decl and on aliases of the node
1175 bool set_malloc_flag (bool malloc_p
);
1177 /* SET TREE_THIS_VOLATILE on cgraph_node's decl and on aliases of the node
1179 bool set_noreturn_flag (bool noreturn_p
);
1181 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
1182 If SET_CONST if false, clear the flag.
1184 When setting the flag be careful about possible interposition and
1185 do not set the flag for functions that can be interposed and set pure
1186 flag for functions that can bind to other definition.
1188 Return true if any change was done. */
1190 bool set_const_flag (bool set_const
, bool looping
);
1192 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
1195 When setting the flag, be careful about possible interposition.
1196 Return true if any change was done. */
1198 bool set_pure_flag (bool pure
, bool looping
);
1200 /* Call callback on function and aliases associated to the function.
1201 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1204 bool call_for_symbol_and_aliases (bool (*callback
) (cgraph_node
*,
1206 void *data
, bool include_overwritable
);
1208 /* Call callback on cgraph_node, thunks and aliases associated to NODE.
1209 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1210 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
1212 bool call_for_symbol_thunks_and_aliases (bool (*callback
) (cgraph_node
*node
,
1215 bool include_overwritable
,
1216 bool exclude_virtual_thunks
= false);
1218 /* Likewise indicate that a node is needed, i.e. reachable via some
1220 inline void mark_force_output (void);
1222 /* Return true when function can be marked local. */
1223 bool local_p (void);
1225 /* Return true if cgraph_node can be made local for API change.
1226 Extern inline functions and C++ COMDAT functions can be made local
1227 at the expense of possible code size growth if function is used in multiple
1228 compilation units. */
1229 bool can_be_local_p (void);
1231 /* Return true when cgraph_node cannot return or throw and thus
1232 it is safe to ignore its side effects for IPA analysis. */
1233 bool cannot_return_p (void);
1235 /* Return true when function cgraph_node and all its aliases are only called
1237 i.e. it is not externally visible, address was not taken and
1238 it is not used in any other non-standard way. */
1239 bool only_called_directly_p (void);
1241 /* Return true when function is only called directly or it has alias.
1242 i.e. it is not externally visible, address was not taken and
1243 it is not used in any other non-standard way. */
1244 inline bool only_called_directly_or_aliased_p (void);
1246 /* Return true when function cgraph_node can be expected to be removed
1247 from program when direct calls in this compilation unit are removed.
1249 As a special case COMDAT functions are
1250 cgraph_can_remove_if_no_direct_calls_p while the are not
1251 cgraph_only_called_directly_p (it is possible they are called from other
1254 This function behaves as cgraph_only_called_directly_p because eliminating
1255 all uses of COMDAT function does not make it necessarily disappear from
1256 the program unless we are compiling whole program or we do LTO. In this
1257 case we know we win since dynamic linking will not really discard the
1260 If WILL_INLINE is true, assume that function will be inlined into all the
1262 bool will_be_removed_from_program_if_no_direct_calls_p
1263 (bool will_inline
= false);
1265 /* Return true when function can be removed from callgraph
1266 if all direct calls and references are eliminated. The function does
1267 not take into account comdat groups. */
1268 bool can_remove_if_no_direct_calls_and_refs_p (void);
1270 /* Return true when function cgraph_node and its aliases can be removed from
1271 callgraph if all direct calls are eliminated.
1272 If WILL_INLINE is true, assume that function will be inlined into all the
1274 bool can_remove_if_no_direct_calls_p (bool will_inline
= false);
1276 /* Return true when callgraph node is a function with Gimple body defined
1277 in current unit. Functions can also be define externally or they
1278 can be thunks with no Gimple representation.
1280 Note that at WPA stage, the function body may not be present in memory. */
1281 inline bool has_gimple_body_p (void);
1283 /* Return true if this node represents a former, i.e. an expanded, thunk. */
1284 bool former_thunk_p (void);
1286 /* Check if function calls comdat local. This is used to recompute
1287 calls_comdat_local flag after function transformations. */
1288 bool check_calls_comdat_local_p ();
1290 /* Return true if function should be optimized for size. */
1291 enum optimize_size_level
optimize_for_size_p (void);
1293 /* Dump the callgraph to file F. */
1294 static void dump_cgraph (FILE *f
);
1296 /* Dump the call graph to stderr. */
1298 void debug_cgraph (void)
1300 dump_cgraph (stderr
);
1303 /* Get unique identifier of the node. */
1304 inline int get_uid ()
1309 /* Get summary id of the node. */
1310 inline int get_summary_id ()
1312 return m_summary_id
;
1315 /* Record that DECL1 and DECL2 are semantically identical function
1317 static void record_function_versions (tree decl1
, tree decl2
);
1319 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
1320 DECL is a duplicate declaration. */
1321 static void delete_function_version_by_decl (tree decl
);
1323 /* Add the function FNDECL to the call graph.
1324 Unlike finalize_function, this function is intended to be used
1325 by middle end and allows insertion of new function at arbitrary point
1326 of compilation. The function can be either in high, low or SSA form
1329 The function is assumed to be reachable and have address taken (so no
1330 API breaking optimizations are performed on it).
1332 Main work done by this function is to enqueue the function for later
1333 processing to avoid need the passes to be re-entrant. */
1334 static void add_new_function (tree fndecl
, bool lowered
);
1336 /* Return callgraph node for given symbol and check it is a function. */
1337 static inline cgraph_node
*get (const_tree decl
)
1339 gcc_checking_assert (TREE_CODE (decl
) == FUNCTION_DECL
);
1340 return dyn_cast
<cgraph_node
*> (symtab_node::get (decl
));
1343 /* DECL has been parsed. Take it, queue it, compile it at the whim of the
1344 logic in effect. If NO_COLLECT is true, then our caller cannot stand to
1345 have the garbage collector run at the moment. We would need to either
1346 create a new GC context, or just not compile right now. */
1347 static void finalize_function (tree
, bool);
1349 /* Return cgraph node assigned to DECL. Create new one when needed. */
1350 static cgraph_node
* create (tree decl
);
1352 /* Try to find a call graph node for declaration DECL and if it does not
1353 exist or if it corresponds to an inline clone, create a new one. */
1354 static cgraph_node
* get_create (tree
);
1356 /* Return local info for the compiled function. */
1357 static cgraph_node
*local_info_node (tree decl
);
1359 /* Return RTL info for the compiled function. */
1360 static struct cgraph_rtl_info
*rtl_info (const_tree
);
1362 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
1363 Return NULL if there's no such node. */
1364 static cgraph_node
*get_for_asmname (tree asmname
);
1366 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if
1367 successful and NULL otherwise.
1368 Same body aliases are output whenever the body of DECL is output,
1369 and cgraph_node::get (ALIAS) transparently
1370 returns cgraph_node::get (DECL). */
1371 static cgraph_node
* create_same_body_alias (tree alias
, tree decl
);
1373 /* Verify whole cgraph structure. */
1374 static void DEBUG_FUNCTION
verify_cgraph_nodes (void);
1376 /* Verify cgraph, if consistency checking is enabled. */
1377 static inline void checking_verify_cgraph_nodes (void);
1379 /* Worker to bring NODE local. */
1380 static bool make_local (cgraph_node
*node
, void *);
1382 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
1383 the function body is associated
1384 with (not necessarily cgraph_node (DECL). */
1385 static cgraph_node
*create_alias (tree alias
, tree target
);
1387 /* Return true if NODE has thunk. */
1388 static bool has_thunk_p (cgraph_node
*node
, void *);
1390 cgraph_edge
*callees
;
1391 cgraph_edge
*callers
;
1392 /* List of edges representing indirect calls with a yet undetermined
1394 cgraph_edge
*indirect_calls
;
1395 cgraph_node
*next_sibling_clone
;
1396 cgraph_node
*prev_sibling_clone
;
1397 cgraph_node
*clones
;
1398 cgraph_node
*clone_of
;
1399 /* For functions with many calls sites it holds map from call expression
1400 to the edge to speed up cgraph_edge function. */
1401 hash_table
<cgraph_edge_hasher
> *GTY(()) call_site_hash
;
1402 /* Declaration node used to be clone of. */
1403 tree former_clone_of
;
1405 /* If this is a SIMD clone, this points to the SIMD specific
1406 information for it. */
1407 cgraph_simd_clone
*simdclone
;
1408 /* If this function has SIMD clones, this points to the first clone. */
1409 cgraph_node
*simd_clones
;
1411 /* Interprocedural passes scheduled to have their transform functions
1412 applied next time we execute local pass on them. We maintain it
1413 per-function in order to allow IPA passes to introduce new functions. */
1414 vec
<ipa_opt_pass
, va_heap
, vl_ptr
> GTY((skip
)) ipa_transforms_to_apply
;
1416 /* For inline clones this points to the function they will be
1418 cgraph_node
*inlined_to
;
1420 struct cgraph_rtl_info
*rtl
;
1422 /* Expected number of executions: calculated in profile.cc. */
1423 profile_count count
;
1424 /* How to scale counts at materialization time; used to merge
1425 LTO units with different number of profile runs. */
1426 int count_materialization_scale
;
1427 /* ID assigned by the profiling. */
1428 unsigned int profile_id
;
1429 /* ID of the translation unit. */
1431 /* Time profiler: first run of function. */
1434 /* True when symbol is a thunk. */
1436 /* Set when decl is an abstract function pointed to by the
1437 ABSTRACT_DECL_ORIGIN of a reachable function. */
1438 unsigned used_as_abstract_origin
: 1;
1439 /* Set once the function is lowered (i.e. its CFG is built). */
1440 unsigned lowered
: 1;
1441 /* Set once the function has been instantiated and its callee
1443 unsigned process
: 1;
1444 /* How commonly executed the node is. Initialized during branch
1445 probabilities pass. */
1446 ENUM_BITFIELD (node_frequency
) frequency
: 2;
1447 /* True when function can only be called at startup (from static ctor). */
1448 unsigned only_called_at_startup
: 1;
1449 /* True when function can only be called at startup (from static dtor). */
1450 unsigned only_called_at_exit
: 1;
1451 /* True when function is the transactional clone of a function which
1452 is called only from inside transactions. */
1453 /* ?? We should be able to remove this. We have enough bits in
1454 cgraph to calculate it. */
1455 unsigned tm_clone
: 1;
1456 /* True if this decl is a dispatcher for function versions. */
1457 unsigned dispatcher_function
: 1;
1458 /* True if this decl calls a COMDAT-local function. This is set up in
1459 compute_fn_summary and inline_call. */
1460 unsigned calls_comdat_local
: 1;
1461 /* True if node has been created by merge operation in IPA-ICF. */
1462 unsigned icf_merged
: 1;
1463 /* True if call to node can't result in a call to free, munmap or
1464 other operation that could make previously non-trapping memory
1465 accesses trapping. */
1466 unsigned nonfreeing_fn
: 1;
1467 /* True if there was multiple COMDAT bodies merged by lto-symtab. */
1468 unsigned merged_comdat
: 1;
1469 /* True if this def was merged with extern inlines. */
1470 unsigned merged_extern_inline
: 1;
1471 /* True if function was created to be executed in parallel. */
1472 unsigned parallelized_function
: 1;
1473 /* True if function is part split out by ipa-split. */
1474 unsigned split_part
: 1;
1475 /* True if the function appears as possible target of indirect call. */
1476 unsigned indirect_call_target
: 1;
1477 /* Set when function is visible in current compilation unit only and
1478 its address is never taken. */
1480 /* False when there is something makes versioning impossible. */
1481 unsigned versionable
: 1;
1482 /* False when function calling convention and signature cannot be changed.
1483 This is the case when __builtin_apply_args is used. */
1484 unsigned can_change_signature
: 1;
1485 /* True when the function has been originally extern inline, but it is
1487 unsigned redefined_extern_inline
: 1;
1488 /* True if the function may enter serial irrevocable mode. */
1489 unsigned tm_may_enter_irr
: 1;
1490 /* True if this was a clone created by ipa-cp. */
1491 unsigned ipcp_clone
: 1;
1492 /* True if this is the deferred declare variant resolution artificial
1494 unsigned declare_variant_alt
: 1;
1495 /* True if the function calls declare_variant_alt functions. */
1496 unsigned calls_declare_variant_alt
: 1;
1499 /* Unique id of the node. */
1502 /* Summary id that is recycled. */
1505 /* Worker for call_for_symbol_and_aliases. */
1506 bool call_for_symbol_and_aliases_1 (bool (*callback
) (cgraph_node
*,
1508 void *data
, bool include_overwritable
);
1511 /* A cgraph node set is a collection of cgraph nodes. A cgraph node
1512 can appear in multiple sets. */
1513 struct cgraph_node_set_def
1515 hash_map
<cgraph_node
*, size_t> *map
;
1516 vec
<cgraph_node
*> nodes
;
1519 typedef cgraph_node_set_def
*cgraph_node_set
;
1520 typedef struct varpool_node_set_def
*varpool_node_set
;
1522 struct varpool_node
;
1524 /* A varpool node set is a collection of varpool nodes. A varpool node
1525 can appear in multiple sets. */
1526 struct varpool_node_set_def
1528 hash_map
<varpool_node
*, size_t> * map
;
1529 vec
<varpool_node
*> nodes
;
1532 /* Iterator structure for cgraph node sets. */
1533 struct cgraph_node_set_iterator
1535 cgraph_node_set set
;
1539 /* Iterator structure for varpool node sets. */
1540 struct varpool_node_set_iterator
1542 varpool_node_set set
;
1546 /* Context of polymorphic call. It represent information about the type of
1547 instance that may reach the call. This is used by ipa-devirt walkers of the
1548 type inheritance graph. */
1550 class GTY(()) ipa_polymorphic_call_context
{
1552 /* The called object appears in an object of type OUTER_TYPE
1553 at offset OFFSET. When information is not 100% reliable, we
1554 use SPECULATIVE_OUTER_TYPE and SPECULATIVE_OFFSET. */
1555 HOST_WIDE_INT offset
;
1556 HOST_WIDE_INT speculative_offset
;
1558 tree speculative_outer_type
;
1559 /* True if outer object may be in construction or destruction. */
1560 unsigned maybe_in_construction
: 1;
1561 /* True if outer object may be of derived type. */
1562 unsigned maybe_derived_type
: 1;
1563 /* True if speculative outer object may be of derived type. We always
1564 speculate that construction does not happen. */
1565 unsigned speculative_maybe_derived_type
: 1;
1566 /* True if the context is invalid and all calls should be redirected
1567 to BUILTIN_UNREACHABLE. */
1568 unsigned invalid
: 1;
1569 /* True if the outer type is dynamic. */
1570 unsigned dynamic
: 1;
1572 /* Build empty "I know nothing" context. */
1573 ipa_polymorphic_call_context ();
1574 /* Build polymorphic call context for indirect call E. */
1575 ipa_polymorphic_call_context (cgraph_edge
*e
);
1576 /* Build polymorphic call context for IP invariant CST.
1577 If specified, OTR_TYPE specify the type of polymorphic call
1578 that takes CST+OFFSET as a parameter. */
1579 ipa_polymorphic_call_context (tree cst
, tree otr_type
= NULL
,
1580 HOST_WIDE_INT offset
= 0);
1581 /* Build context for pointer REF contained in FNDECL at statement STMT.
1582 if INSTANCE is non-NULL, return pointer to the object described by
1584 ipa_polymorphic_call_context (tree fndecl
, tree ref
, gimple
*stmt
,
1585 tree
*instance
= NULL
);
1587 /* Look for vtable stores or constructor calls to work out dynamic type
1588 of memory location. */
1589 bool get_dynamic_type (tree
, tree
, tree
, gimple
*, unsigned *);
1591 /* Make context non-speculative. */
1592 void clear_speculation ();
1594 /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
1595 NULL, the context is set to dummy "I know nothing" setting. */
1596 void clear_outer_type (tree otr_type
= NULL
);
1598 /* Walk container types and modify context to point to actual class
1599 containing OTR_TYPE (if non-NULL) as base class.
1600 Return true if resulting context is valid.
1602 When CONSIDER_PLACEMENT_NEW is false, reject contexts that may be made
1603 valid only via allocation of new polymorphic type inside by means
1606 When CONSIDER_BASES is false, only look for actual fields, not base types
1608 bool restrict_to_inner_class (tree otr_type
,
1609 bool consider_placement_new
= true,
1610 bool consider_bases
= true);
1612 /* Adjust all offsets in contexts by given number of bits. */
1613 void offset_by (HOST_WIDE_INT
);
1614 /* Use when we cannot track dynamic type change. This speculatively assume
1615 type change is not happening. */
1616 void possible_dynamic_type_change (bool, tree otr_type
= NULL
);
1617 /* Assume that both THIS and a given context is valid and strengthen THIS
1618 if possible. Return true if any strengthening was made.
1619 If actual type the context is being used in is known, OTR_TYPE should be
1620 set accordingly. This improves quality of combined result. */
1621 bool combine_with (ipa_polymorphic_call_context
, tree otr_type
= NULL
);
1622 bool meet_with (ipa_polymorphic_call_context
, tree otr_type
= NULL
);
1624 /* Return TRUE if context is fully useless. */
1625 bool useless_p () const;
1626 /* Return TRUE if this context conveys the same information as X. */
1627 bool equal_to (const ipa_polymorphic_call_context
&x
) const;
1629 /* Dump human readable context to F. If NEWLINE is true, it will be
1630 terminated by a newline. */
1631 void dump (FILE *f
, bool newline
= true) const;
1632 void DEBUG_FUNCTION
debug () const;
1634 /* LTO streaming. */
1635 void stream_out (struct output_block
*) const;
1636 void stream_in (class lto_input_block
*, class data_in
*data_in
);
1639 bool combine_speculation_with (tree
, HOST_WIDE_INT
, bool, tree
);
1640 bool meet_speculation_with (tree
, HOST_WIDE_INT
, bool, tree
);
1641 void set_by_decl (tree
, HOST_WIDE_INT
);
1642 bool set_by_invariant (tree
, tree
, HOST_WIDE_INT
);
1643 bool speculation_consistent_p (tree
, HOST_WIDE_INT
, bool, tree
) const;
1644 void make_speculative (tree otr_type
= NULL
);
1647 /* Structure containing additional information about an indirect call. */
1649 class GTY(()) cgraph_indirect_call_info
1652 /* When agg_content is set, an offset where the call pointer is located
1653 within the aggregate. */
1654 HOST_WIDE_INT offset
;
1655 /* Context of the polymorphic call; use only when POLYMORPHIC flag is set. */
1656 ipa_polymorphic_call_context context
;
1657 /* OBJ_TYPE_REF_TOKEN of a polymorphic call (if polymorphic is set). */
1658 HOST_WIDE_INT otr_token
;
1659 /* Type of the object from OBJ_TYPE_REF_OBJECT. */
1661 /* Index of the parameter that is called. */
1663 /* ECF flags determined from the caller. */
1666 /* Number of speculative call targets, it's less than GCOV_TOPN_VALUES. */
1667 unsigned num_speculative_call_targets
: 16;
1669 /* Set when the call is a virtual call with the parameter being the
1670 associated object pointer rather than a simple direct call. */
1671 unsigned polymorphic
: 1;
1672 /* Set when the call is a call of a pointer loaded from contents of an
1673 aggregate at offset. */
1674 unsigned agg_contents
: 1;
1675 /* Set when this is a call through a member pointer. */
1676 unsigned member_ptr
: 1;
1677 /* When the agg_contents bit is set, this one determines whether the
1678 destination is loaded from a parameter passed by reference. */
1679 unsigned by_ref
: 1;
1680 /* When the agg_contents bit is set, this one determines whether we can
1681 deduce from the function body that the loaded value from the reference is
1682 never modified between the invocation of the function and the load
1684 unsigned guaranteed_unmodified
: 1;
1685 /* For polymorphic calls this specify whether the virtual table pointer
1686 may have changed in between function entry and the call. */
1687 unsigned vptr_changed
: 1;
1690 class GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"),
1691 for_user
)) cgraph_edge
1694 friend struct cgraph_node
;
1695 friend class symbol_table
;
1697 /* Remove EDGE from the cgraph. */
1698 static void remove (cgraph_edge
*edge
);
1700 /* Change field call_stmt of edge E to NEW_STMT. If UPDATE_SPECULATIVE and E
1701 is any component of speculative edge, then update all components.
1702 Speculations can be resolved in the process and EDGE can be removed and
1703 deallocated. Return the edge that now represents the call. */
1704 static cgraph_edge
*set_call_stmt (cgraph_edge
*e
, gcall
*new_stmt
,
1705 bool update_speculative
= true);
1707 /* Redirect callee of the edge to N. The function does not update underlying
1709 void redirect_callee (cgraph_node
*n
);
1711 /* If the edge does not lead to a thunk, simply redirect it to N. Otherwise
1712 create one or more equivalent thunks for N and redirect E to the first in
1713 the chain. Note that it is then necessary to call
1714 n->expand_all_artificial_thunks once all callers are redirected. */
1715 void redirect_callee_duplicating_thunks (cgraph_node
*n
);
1717 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1718 CALLEE. Speculations can be resolved in the process and EDGE can be
1719 removed and deallocated. Return the edge that now represents the
1721 static cgraph_edge
*make_direct (cgraph_edge
*edge
, cgraph_node
*callee
);
1723 /* Turn edge into speculative call calling N2. Update
1724 the profile so the direct call is taken COUNT times
1725 with FREQUENCY. speculative_id is used to link direct calls with their
1726 corresponding IPA_REF_ADDR references when representing speculative calls.
1728 cgraph_edge
*make_speculative (cgraph_node
*n2
, profile_count direct_count
,
1729 unsigned int speculative_id
= 0);
1731 /* Speculative call consists of an indirect edge and one or more
1732 direct edge+ref pairs. Speculative will expand to the following sequence:
1734 if (call_dest == target1) // reference to target1
1735 target1 (); // direct call to target1
1736 else if (call_dest == target2) // reference to targt2
1737 target2 (); // direct call to target2
1739 call_dest (); // indirect call
1741 Before the expansion we will have indirect call and the direct call+ref
1742 pairs all linked to single statement.
1744 Note that ref may point to different symbol than the corresponding call
1745 becuase the speculated edge may have been optimized (redirected to
1746 a clone) or inlined.
1748 Given an edge which is part of speculative call, return the first
1749 direct call edge in the speculative call sequence.
1751 In the example above called on any cgraph edge in the sequence it will
1752 return direct call to target1. */
1753 cgraph_edge
*first_speculative_call_target ();
1755 /* Return next speculative call target or NULL if there is none.
1756 All targets are required to form an interval in the callee list.
1758 In example above, if called on call to target1 it will return call to
1760 cgraph_edge
*next_speculative_call_target ()
1762 cgraph_edge
*e
= this;
1763 gcc_checking_assert (speculative
&& callee
);
1765 if (e
->next_callee
&& e
->next_callee
->speculative
1766 && e
->next_callee
->call_stmt
== e
->call_stmt
1767 && e
->next_callee
->lto_stmt_uid
== e
->lto_stmt_uid
)
1768 return e
->next_callee
;
1772 /* When called on any edge in the speculative call return the (unique)
1773 indirect call edge in the speculative call sequence. */
1774 cgraph_edge
*speculative_call_indirect_edge ()
1776 gcc_checking_assert (speculative
);
1779 for (cgraph_edge
*e2
= caller
->indirect_calls
;
1780 true; e2
= e2
->next_callee
)
1782 && call_stmt
== e2
->call_stmt
1783 && lto_stmt_uid
== e2
->lto_stmt_uid
)
1787 /* When called on any edge in speculative call and when given any target
1788 of ref which is speculated to it returns the corresponding direct call.
1790 In example above if called on function target2 it will return call to
1792 cgraph_edge
*speculative_call_for_target (cgraph_node
*);
1794 /* Return REF corresponding to direct call in the specualtive call
1796 ipa_ref
*speculative_call_target_ref ()
1800 gcc_checking_assert (speculative
);
1801 for (unsigned int i
= 0; caller
->iterate_reference (i
, ref
); i
++)
1802 if (ref
->speculative
&& ref
->speculative_id
== speculative_id
1803 && ref
->stmt
== (gimple
*)call_stmt
1804 && ref
->lto_stmt_uid
== lto_stmt_uid
)
1809 /* Speculative call edge turned out to be direct call to CALLEE_DECL. Remove
1810 the speculative call sequence and return edge representing the call, the
1811 original EDGE can be removed and deallocated. It is up to caller to
1812 redirect the call as appropriate. Return the edge that now represents the
1815 For "speculative" indirect call that contains multiple "speculative"
1816 targets (i.e. edge->indirect_info->num_speculative_call_targets > 1),
1817 decrease the count and only remove current direct edge.
1819 If no speculative direct call left to the speculative indirect call, remove
1820 the speculative of both the indirect call and corresponding direct edge.
1822 It is up to caller to iteratively resolve each "speculative" direct call
1823 and redirect the call as appropriate. */
1824 static cgraph_edge
*resolve_speculation (cgraph_edge
*edge
,
1825 tree callee_decl
= NULL
);
1827 /* If necessary, change the function declaration in the call statement
1828 associated with edge E so that it corresponds to the edge callee.
1829 Speculations can be resolved in the process and EDGE can be removed and
1832 The edge could be one of speculative direct call generated from speculative
1833 indirect call. In this circumstance, decrease the speculative targets
1834 count (i.e. num_speculative_call_targets) and redirect call stmt to the
1835 corresponding i-th target. If no speculative direct call left to the
1836 speculative indirect call, remove "speculative" of the indirect call and
1837 also redirect stmt to it's final direct target.
1839 It is up to caller to iteratively transform each "speculative"
1840 direct call as appropriate. */
1841 static gimple
*redirect_call_stmt_to_callee (cgraph_edge
*e
);
1843 /* Create clone of edge in the node N represented
1844 by CALL_EXPR the callgraph. */
1845 cgraph_edge
* clone (cgraph_node
*n
, gcall
*call_stmt
, unsigned stmt_uid
,
1846 profile_count num
, profile_count den
,
1847 bool update_original
);
1849 /* Verify edge count and frequency. */
1850 bool verify_count ();
1852 /* Return true when call of edge cannot lead to return from caller
1853 and thus it is safe to ignore its side effects for IPA analysis
1854 when computing side effects of the caller. */
1855 bool cannot_lead_to_return_p (void);
1857 /* Return true when the edge represents a direct recursion. */
1858 bool recursive_p (void);
1860 /* Return true if the edge may be considered hot. */
1861 bool maybe_hot_p (void);
1863 /* Get unique identifier of the edge. */
1864 inline int get_uid ()
1869 /* Get summary id of the edge. */
1870 inline int get_summary_id ()
1872 return m_summary_id
;
1875 /* Rebuild cgraph edges for current function node. This needs to be run after
1876 passes that don't update the cgraph. */
1877 static unsigned int rebuild_edges (void);
1879 /* Rebuild cgraph references for current function node. This needs to be run
1880 after passes that don't update the cgraph. */
1881 static void rebuild_references (void);
1883 /* During LTO stream in this can be used to check whether call can possibly
1884 be internal to the current translation unit. */
1885 bool possibly_call_in_translation_unit_p (void);
1887 /* Return num_speculative_targets of this edge. */
1888 int num_speculative_call_targets_p (void);
1890 /* Expected number of executions: calculated in profile.cc. */
1891 profile_count count
;
1892 cgraph_node
*caller
;
1893 cgraph_node
*callee
;
1894 cgraph_edge
*prev_caller
;
1895 cgraph_edge
*next_caller
;
1896 cgraph_edge
*prev_callee
;
1897 cgraph_edge
*next_callee
;
1899 /* Additional information about an indirect call. Not cleared when an edge
1901 cgraph_indirect_call_info
*indirect_info
;
1902 PTR
GTY ((skip (""))) aux
;
1903 /* When equal to CIF_OK, inline this call. Otherwise, points to the
1904 explanation why function was not inlined. */
1905 enum cgraph_inline_failed_t inline_failed
;
1906 /* The stmt_uid of call_stmt. This is used by LTO to recover the call_stmt
1907 when the function is serialized in. */
1908 unsigned int lto_stmt_uid
;
1909 /* speculative id is used to link direct calls with their corresponding
1910 IPA_REF_ADDR references when representing speculative calls. */
1911 unsigned int speculative_id
: 16;
1912 /* Whether this edge was made direct by indirect inlining. */
1913 unsigned int indirect_inlining_edge
: 1;
1914 /* Whether this edge describes an indirect call with an undetermined
1916 unsigned int indirect_unknown_callee
: 1;
1917 /* Whether this edge is still a dangling */
1918 /* True if the corresponding CALL stmt cannot be inlined. */
1919 unsigned int call_stmt_cannot_inline_p
: 1;
1920 /* Can this call throw externally? */
1921 unsigned int can_throw_external
: 1;
1922 /* Edges with SPECULATIVE flag represents indirect calls that was
1923 speculatively turned into direct (i.e. by profile feedback).
1924 The final code sequence will have form:
1926 if (call_target == expected_fn)
1931 Every speculative call is represented by three components attached
1932 to a same call statement:
1933 1) a direct call (to expected_fn)
1934 2) an indirect call (to call_target)
1935 3) a IPA_REF_ADDR reference to expected_fn.
1937 Optimizers may later redirect direct call to clone, so 1) and 3)
1938 do not need to necessarily agree with destination. */
1939 unsigned int speculative
: 1;
1940 /* Set to true when caller is a constructor or destructor of polymorphic
1942 unsigned in_polymorphic_cdtor
: 1;
1944 /* Return true if call must bind to current definition. */
1945 bool binds_to_current_def_p ();
1947 /* Expected frequency of executions within the function.
1948 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
1949 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
1952 /* Expected frequency of executions within the function. */
1953 sreal
sreal_frequency ();
1955 /* Unique id of the edge. */
1958 /* Summary id that is recycled. */
1961 /* Remove the edge from the list of the callers of the callee. */
1962 void remove_caller (void);
1964 /* Remove the edge from the list of the callees of the caller. */
1965 void remove_callee (void);
1967 /* Set callee N of call graph edge and add it to the corresponding set of
1969 void set_callee (cgraph_node
*n
);
1971 /* Output flags of edge to a file F. */
1972 void dump_edge_flags (FILE *f
);
1974 /* Dump edge to stderr. */
1975 void DEBUG_FUNCTION
debug (void);
1977 /* Verify that call graph edge corresponds to DECL from the associated
1978 statement. Return true if the verification should fail. */
1979 bool verify_corresponds_to_fndecl (tree decl
);
1982 #define CGRAPH_FREQ_BASE 1000
1983 #define CGRAPH_FREQ_MAX 100000
1985 /* The varpool data structure.
1986 Each static variable decl has assigned varpool_node. */
1988 struct GTY((tag ("SYMTAB_VARIABLE"))) varpool_node
: public symtab_node
1991 explicit varpool_node ()
1992 : symtab_node (SYMTAB_VARIABLE
), output (0), dynamically_initialized (0),
1993 tls_model (TLS_MODEL_NONE
), used_by_single_function (0)
1996 /* Dump given varpool node to F. */
1997 void dump (FILE *f
);
1999 /* Dump given varpool node to stderr. */
2000 void DEBUG_FUNCTION
debug (void);
2002 /* Remove variable from symbol table. */
2005 /* Remove node initializer when it is no longer needed. */
2006 void remove_initializer (void);
2008 void analyze (void);
2010 /* Return variable availability. */
2011 availability
get_availability (symtab_node
*ref
= NULL
);
2013 /* When doing LTO, read variable's constructor from disk if
2014 it is not already present. */
2015 tree
get_constructor (void);
2017 /* Return true if variable has constructor that can be used for folding. */
2018 bool ctor_useable_for_folding_p (void);
2020 /* For given variable pool node, walk the alias chain to return the function
2021 the variable is alias of. Do not walk through thunks.
2022 When AVAILABILITY is non-NULL, get minimal availability in the chain.
2023 When REF is non-NULL, assume that reference happens in symbol REF
2024 when determining the availability. */
2025 inline varpool_node
*ultimate_alias_target
2026 (availability
*availability
= NULL
, symtab_node
*ref
= NULL
);
2028 /* Return node that alias is aliasing. */
2029 inline varpool_node
*get_alias_target (void);
2031 /* Output one variable, if necessary. Return whether we output it. */
2032 bool assemble_decl (void);
2034 /* For variables in named sections make sure get_variable_section
2035 is called before we switch to those sections. Then section
2036 conflicts between read-only and read-only requiring relocations
2037 sections can be resolved. */
2038 void finalize_named_section_flags (void);
2040 /* Call callback on varpool symbol and aliases associated to varpool symbol.
2041 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2043 bool call_for_symbol_and_aliases (bool (*callback
) (varpool_node
*, void *),
2045 bool include_overwritable
);
2047 /* Return true when variable should be considered externally visible. */
2048 bool externally_visible_p (void);
2050 /* Return true when all references to variable must be visible
2052 i.e. if the variable is not externally visible or not used in some magic
2053 way (asm statement or such).
2054 The magic uses are all summarized in force_output flag. */
2055 inline bool all_refs_explicit_p ();
2057 /* Return true when variable can be removed from variable pool
2058 if all direct calls are eliminated. */
2059 inline bool can_remove_if_no_refs_p (void);
2061 /* Add the variable DECL to the varpool.
2062 Unlike finalize_decl function is intended to be used
2063 by middle end and allows insertion of new variable at arbitrary point
2065 static void add (tree decl
);
2067 /* Return varpool node for given symbol and check it is a function. */
2068 static inline varpool_node
*get (const_tree decl
);
2070 /* Mark DECL as finalized. By finalizing the declaration, frontend instruct
2071 the middle end to output the variable to asm file, if needed or externally
2073 static void finalize_decl (tree decl
);
2075 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2076 Extra name aliases are output whenever DECL is output. */
2077 static varpool_node
* create_extra_name_alias (tree alias
, tree decl
);
2079 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2080 Extra name aliases are output whenever DECL is output. */
2081 static varpool_node
* create_alias (tree
, tree
);
2083 /* Dump the variable pool to F. */
2084 static void dump_varpool (FILE *f
);
2086 /* Dump the variable pool to stderr. */
2087 static void DEBUG_FUNCTION
debug_varpool (void);
2089 /* Allocate new callgraph node and insert it into basic data structures. */
2090 static varpool_node
*create_empty (void);
2092 /* Return varpool node assigned to DECL. Create new one when needed. */
2093 static varpool_node
*get_create (tree decl
);
2095 /* Given an assembler name, lookup node. */
2096 static varpool_node
*get_for_asmname (tree asmname
);
2098 /* Set when variable is scheduled to be assembled. */
2099 unsigned output
: 1;
2101 /* Set if the variable is dynamically initialized, except for
2102 function local statics. */
2103 unsigned dynamically_initialized
: 1;
2105 ENUM_BITFIELD(tls_model
) tls_model
: 3;
2107 /* Set if the variable is known to be used by single function only.
2108 This is computed by ipa_single_use pass and used by late optimizations
2109 in places where optimization would be valid for local static variable
2110 if we did not do any inter-procedural code movement. */
2111 unsigned used_by_single_function
: 1;
2114 /* Assemble thunks and aliases associated to varpool node. */
2115 void assemble_aliases (void);
2117 /* Worker for call_for_node_and_aliases. */
2118 bool call_for_symbol_and_aliases_1 (bool (*callback
) (varpool_node
*, void *),
2120 bool include_overwritable
);
2123 /* Every top level asm statement is put into a asm_node. */
2125 struct GTY(()) asm_node
{
2126 /* Next asm node. */
2128 /* String for this asm node. */
2130 /* Ordering of all cgraph nodes. */
2134 /* Report whether or not THIS symtab node is a function, aka cgraph_node. */
2139 is_a_helper
<cgraph_node
*>::test (symtab_node
*p
)
2141 return p
&& p
->type
== SYMTAB_FUNCTION
;
2144 /* Report whether or not THIS symtab node is a variable, aka varpool_node. */
2149 is_a_helper
<varpool_node
*>::test (symtab_node
*p
)
2151 return p
&& p
->type
== SYMTAB_VARIABLE
;
2154 typedef void (*cgraph_edge_hook
)(cgraph_edge
*, void *);
2155 typedef void (*cgraph_node_hook
)(cgraph_node
*, void *);
2156 typedef void (*varpool_node_hook
)(varpool_node
*, void *);
2157 typedef void (*cgraph_2edge_hook
)(cgraph_edge
*, cgraph_edge
*, void *);
2158 typedef void (*cgraph_2node_hook
)(cgraph_node
*, cgraph_node
*, void *);
2160 struct cgraph_edge_hook_list
;
2161 struct cgraph_node_hook_list
;
2162 struct varpool_node_hook_list
;
2163 struct cgraph_2edge_hook_list
;
2164 struct cgraph_2node_hook_list
;
2166 /* Map from a symbol to initialization/finalization priorities. */
2167 struct GTY(()) symbol_priority_map
{
2174 /* Frontend is parsing and finalizing functions. */
2176 /* Callgraph is being constructed. It is safe to add new functions. */
2178 /* Callgraph is being streamed-in at LTO time. */
2180 /* Callgraph is built and early IPA passes are being run. */
2182 /* Callgraph is built and all functions are transformed to SSA form. */
2184 /* All inline decisions are done; it is now possible to remove extern inline
2185 functions and virtual call targets. */
2186 IPA_SSA_AFTER_INLINING
,
2187 /* Functions are now ordered and being passed to RTL expanders. */
2189 /* All cgraph expansion is done. */
2193 struct asmname_hasher
: ggc_ptr_hash
<symtab_node
>
2195 typedef const_tree compare_type
;
2197 static hashval_t
hash (symtab_node
*n
);
2198 static bool equal (symtab_node
*n
, const_tree t
);
2201 /* Core summaries maintained about symbols. */
2204 template <class T
> class function_summary
;
2205 typedef function_summary
<thunk_info
*> thunk_summary
;
2208 template <class T
> class function_summary
;
2209 typedef function_summary
<clone_info
*> clone_summary
;
2211 class GTY((tag ("SYMTAB"))) symbol_table
2214 friend struct symtab_node
;
2215 friend struct cgraph_node
;
2216 friend struct cgraph_edge
;
2219 cgraph_count (0), cgraph_max_uid (1), cgraph_max_summary_id (0),
2220 edges_count (0), edges_max_uid (1), edges_max_summary_id (0),
2221 cgraph_released_summary_ids (), edge_released_summary_ids (),
2222 nodes (NULL
), asmnodes (NULL
), asm_last_node (NULL
),
2223 order (0), max_unit (0), global_info_ready (false), state (PARSING
),
2224 function_flags_ready (false), cpp_implicit_aliases_done (false),
2225 section_hash (NULL
), assembler_name_hash (NULL
), init_priority_hash (NULL
),
2226 dump_file (NULL
), ipa_clones_dump_file (NULL
), cloned_nodes (),
2227 m_thunks (NULL
), m_clones (NULL
),
2228 m_first_edge_removal_hook (NULL
), m_first_cgraph_removal_hook (NULL
),
2229 m_first_edge_duplicated_hook (NULL
), m_first_cgraph_duplicated_hook (NULL
),
2230 m_first_cgraph_insertion_hook (NULL
), m_first_varpool_insertion_hook (NULL
),
2231 m_first_varpool_removal_hook (NULL
)
2235 /* Initialize callgraph dump file. */
2236 void initialize (void);
2238 /* Register a top-level asm statement ASM_STR. */
2239 inline asm_node
*finalize_toplevel_asm (tree asm_str
);
2241 /* Analyze the whole compilation unit once it is parsed completely. */
2242 void finalize_compilation_unit (void);
2244 /* C++ frontend produce same body aliases all over the place, even before PCH
2245 gets streamed out. It relies on us linking the aliases with their function
2246 in order to do the fixups, but ipa-ref is not PCH safe. Consequently we
2247 first produce aliases without links, but once C++ FE is sure it won't
2248 stream PCH we build the links via this function. */
2249 void process_same_body_aliases (void);
2251 /* Perform simple optimizations based on callgraph. */
2252 void compile (void);
2254 /* Process CGRAPH_NEW_FUNCTIONS and perform actions necessary to add these
2255 functions into callgraph in a way so they look like ordinary reachable
2256 functions inserted into callgraph already at construction time. */
2257 void process_new_functions (void);
2259 /* Register a symbol NODE. */
2260 inline void register_symbol (symtab_node
*node
);
2263 clear_asm_symbols (void)
2266 asm_last_node
= NULL
;
2269 /* Perform reachability analysis and reclaim all unreachable nodes. */
2270 bool remove_unreachable_nodes (FILE *file
);
2272 /* Optimization of function bodies might've rendered some variables as
2273 unnecessary so we want to avoid these from being compiled. Re-do
2274 reachability starting from variables that are either externally visible
2275 or was referred from the asm output routines. */
2276 void remove_unreferenced_decls (void);
2278 /* Unregister a symbol NODE. */
2279 inline void unregister (symtab_node
*node
);
2281 /* Allocate new callgraph node and insert it into basic data structures. */
2282 cgraph_node
*create_empty (void);
2284 /* Release a callgraph NODE. */
2285 void release_symbol (cgraph_node
*node
);
2287 /* Output all variables enqueued to be assembled. */
2288 bool output_variables (void);
2290 /* Weakrefs may be associated to external decls and thus not output
2291 at expansion time. Emit all necessary aliases. */
2292 void output_weakrefs (void);
2294 /* Return first static symbol with definition. */
2295 inline symtab_node
*first_symbol (void);
2297 /* Return first assembler symbol. */
2299 first_asm_symbol (void)
2304 /* Return first static symbol with definition. */
2305 inline symtab_node
*first_defined_symbol (void);
2307 /* Return first variable. */
2308 inline varpool_node
*first_variable (void);
2310 /* Return next variable after NODE. */
2311 inline varpool_node
*next_variable (varpool_node
*node
);
2313 /* Return first static variable with initializer. */
2314 inline varpool_node
*first_static_initializer (void);
2316 /* Return next static variable with initializer after NODE. */
2317 inline varpool_node
*next_static_initializer (varpool_node
*node
);
2319 /* Return first static variable with definition. */
2320 inline varpool_node
*first_defined_variable (void);
2322 /* Return next static variable with definition after NODE. */
2323 inline varpool_node
*next_defined_variable (varpool_node
*node
);
2325 /* Return first function with body defined. */
2326 inline cgraph_node
*first_defined_function (void);
2328 /* Return next function with body defined after NODE. */
2329 inline cgraph_node
*next_defined_function (cgraph_node
*node
);
2331 /* Return first function. */
2332 inline cgraph_node
*first_function (void);
2334 /* Return next function. */
2335 inline cgraph_node
*next_function (cgraph_node
*node
);
2337 /* Return first function with body defined. */
2338 cgraph_node
*first_function_with_gimple_body (void);
2340 /* Return next reachable static variable with initializer after NODE. */
2341 inline cgraph_node
*next_function_with_gimple_body (cgraph_node
*node
);
2343 /* Register HOOK to be called with DATA on each removed edge. */
2344 cgraph_edge_hook_list
*add_edge_removal_hook (cgraph_edge_hook hook
,
2347 /* Remove ENTRY from the list of hooks called on removing edges. */
2348 void remove_edge_removal_hook (cgraph_edge_hook_list
*entry
);
2350 /* Register HOOK to be called with DATA on each removed node. */
2351 cgraph_node_hook_list
*add_cgraph_removal_hook (cgraph_node_hook hook
,
2354 /* Remove ENTRY from the list of hooks called on removing nodes. */
2355 void remove_cgraph_removal_hook (cgraph_node_hook_list
*entry
);
2357 /* Register HOOK to be called with DATA on each removed node. */
2358 varpool_node_hook_list
*add_varpool_removal_hook (varpool_node_hook hook
,
2361 /* Remove ENTRY from the list of hooks called on removing nodes. */
2362 void remove_varpool_removal_hook (varpool_node_hook_list
*entry
);
2364 /* Register HOOK to be called with DATA on each inserted node. */
2365 cgraph_node_hook_list
*add_cgraph_insertion_hook (cgraph_node_hook hook
,
2368 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2369 void remove_cgraph_insertion_hook (cgraph_node_hook_list
*entry
);
2371 /* Register HOOK to be called with DATA on each inserted node. */
2372 varpool_node_hook_list
*add_varpool_insertion_hook (varpool_node_hook hook
,
2375 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2376 void remove_varpool_insertion_hook (varpool_node_hook_list
*entry
);
2378 /* Register HOOK to be called with DATA on each duplicated edge. */
2379 cgraph_2edge_hook_list
*add_edge_duplication_hook (cgraph_2edge_hook hook
,
2381 /* Remove ENTRY from the list of hooks called on duplicating edges. */
2382 void remove_edge_duplication_hook (cgraph_2edge_hook_list
*entry
);
2384 /* Register HOOK to be called with DATA on each duplicated node. */
2385 cgraph_2node_hook_list
*add_cgraph_duplication_hook (cgraph_2node_hook hook
,
2388 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
2389 void remove_cgraph_duplication_hook (cgraph_2node_hook_list
*entry
);
2391 /* Call all edge removal hooks. */
2392 void call_edge_removal_hooks (cgraph_edge
*e
);
2394 /* Call all node insertion hooks. */
2395 void call_cgraph_insertion_hooks (cgraph_node
*node
);
2397 /* Call all node removal hooks. */
2398 void call_cgraph_removal_hooks (cgraph_node
*node
);
2400 /* Call all node duplication hooks. */
2401 void call_cgraph_duplication_hooks (cgraph_node
*node
, cgraph_node
*node2
);
2403 /* Call all edge duplication hooks. */
2404 void call_edge_duplication_hooks (cgraph_edge
*cs1
, cgraph_edge
*cs2
);
2406 /* Call all node removal hooks. */
2407 void call_varpool_removal_hooks (varpool_node
*node
);
2409 /* Call all node insertion hooks. */
2410 void call_varpool_insertion_hooks (varpool_node
*node
);
2412 /* Arrange node to be first in its entry of assembler_name_hash. */
2413 void symtab_prevail_in_asm_name_hash (symtab_node
*node
);
2415 /* Initialize asm name hash unless. */
2416 void symtab_initialize_asm_name_hash (void);
2418 /* Set the DECL_ASSEMBLER_NAME and update symtab hashtables. */
2419 void change_decl_assembler_name (tree decl
, tree name
);
2421 /* Dump symbol table to F. */
2422 void dump (FILE *f
);
2424 /* Dump symbol table to F in graphviz format. */
2425 void dump_graphviz (FILE *f
);
2427 /* Dump symbol table to stderr. */
2428 void DEBUG_FUNCTION
debug (void);
2430 /* Assign a new summary ID for the callgraph NODE. */
2431 inline int assign_summary_id (cgraph_node
*node
)
2433 if (!cgraph_released_summary_ids
.is_empty ())
2434 node
->m_summary_id
= cgraph_released_summary_ids
.pop ();
2436 node
->m_summary_id
= cgraph_max_summary_id
++;
2438 return node
->m_summary_id
;
2441 /* Assign a new summary ID for the callgraph EDGE. */
2442 inline int assign_summary_id (cgraph_edge
*edge
)
2444 if (!edge_released_summary_ids
.is_empty ())
2445 edge
->m_summary_id
= edge_released_summary_ids
.pop ();
2447 edge
->m_summary_id
= edges_max_summary_id
++;
2449 return edge
->m_summary_id
;
2452 /* Return true if assembler names NAME1 and NAME2 leads to the same symbol
2454 static bool assembler_names_equal_p (const char *name1
, const char *name2
);
2458 int cgraph_max_summary_id
;
2462 int edges_max_summary_id
;
2464 /* Vector of released summary IDS for cgraph nodes. */
2465 vec
<int> GTY ((skip
)) cgraph_released_summary_ids
;
2467 /* Vector of released summary IDS for cgraph nodes. */
2468 vec
<int> GTY ((skip
)) edge_released_summary_ids
;
2470 /* Return symbol used to separate symbol name from suffix. */
2471 static char symbol_suffix_separator ();
2473 symtab_node
* GTY(()) nodes
;
2474 asm_node
* GTY(()) asmnodes
;
2475 asm_node
* GTY(()) asm_last_node
;
2477 /* The order index of the next symtab node to be created. This is
2478 used so that we can sort the cgraph nodes in order by when we saw
2479 them, to support -fno-toplevel-reorder. */
2482 /* Maximal unit ID used. */
2485 /* Set when whole unit has been analyzed so we can access global info. */
2486 bool global_info_ready
;
2487 /* What state callgraph is in right now. */
2488 enum symtab_state state
;
2489 /* Set when the cgraph is fully build and the basic flags are computed. */
2490 bool function_flags_ready
;
2492 bool cpp_implicit_aliases_done
;
2494 /* Hash table used to hold sections. */
2495 hash_table
<section_name_hasher
> *GTY(()) section_hash
;
2497 /* Hash table used to convert assembler names into nodes. */
2498 hash_table
<asmname_hasher
> *assembler_name_hash
;
2500 /* Hash table used to hold init priorities. */
2501 hash_map
<symtab_node
*, symbol_priority_map
> *init_priority_hash
;
2503 FILE* GTY ((skip
)) dump_file
;
2505 FILE* GTY ((skip
)) ipa_clones_dump_file
;
2507 hash_set
<const cgraph_node
*> GTY ((skip
)) cloned_nodes
;
2509 /* Thunk annotations. */
2510 thunk_summary
*m_thunks
;
2512 /* Virtual clone annotations. */
2513 clone_summary
*m_clones
;
2516 /* Allocate a cgraph_edge structure and fill it with data according to the
2517 parameters of which only CALLEE can be NULL (when creating an indirect
2518 call edge). CLONING_P should be set if properties that are copied from an
2519 original edge should not be calculated. */
2520 cgraph_edge
*create_edge (cgraph_node
*caller
, cgraph_node
*callee
,
2521 gcall
*call_stmt
, profile_count count
,
2522 bool indir_unknown_callee
, bool cloning_p
);
2524 /* Put the edge onto the free list. */
2525 void free_edge (cgraph_edge
*e
);
2527 /* Insert NODE to assembler name hash. */
2528 void insert_to_assembler_name_hash (symtab_node
*node
, bool with_clones
);
2530 /* Remove NODE from assembler name hash. */
2531 void unlink_from_assembler_name_hash (symtab_node
*node
, bool with_clones
);
2533 /* Hash asmnames ignoring the user specified marks. */
2534 static hashval_t
decl_assembler_name_hash (const_tree asmname
);
2536 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
2537 static bool decl_assembler_name_equal (tree decl
, const_tree asmname
);
2539 friend struct asmname_hasher
;
2541 /* List of hooks triggered when an edge is removed. */
2542 cgraph_edge_hook_list
* GTY((skip
)) m_first_edge_removal_hook
;
2543 /* List of hooks trigger_red when a cgraph node is removed. */
2544 cgraph_node_hook_list
* GTY((skip
)) m_first_cgraph_removal_hook
;
2545 /* List of hooks triggered when an edge is duplicated. */
2546 cgraph_2edge_hook_list
* GTY((skip
)) m_first_edge_duplicated_hook
;
2547 /* List of hooks triggered when a node is duplicated. */
2548 cgraph_2node_hook_list
* GTY((skip
)) m_first_cgraph_duplicated_hook
;
2549 /* List of hooks triggered when an function is inserted. */
2550 cgraph_node_hook_list
* GTY((skip
)) m_first_cgraph_insertion_hook
;
2551 /* List of hooks triggered when an variable is inserted. */
2552 varpool_node_hook_list
* GTY((skip
)) m_first_varpool_insertion_hook
;
2553 /* List of hooks triggered when a node is removed. */
2554 varpool_node_hook_list
* GTY((skip
)) m_first_varpool_removal_hook
;
2557 extern GTY(()) symbol_table
*symtab
;
2559 extern vec
<cgraph_node
*> cgraph_new_nodes
;
2562 asmname_hasher::hash (symtab_node
*n
)
2564 return symbol_table::decl_assembler_name_hash
2565 (DECL_ASSEMBLER_NAME (n
->decl
));
2569 asmname_hasher::equal (symtab_node
*n
, const_tree t
)
2571 return symbol_table::decl_assembler_name_equal (n
->decl
, t
);
2575 void cgraph_cc_finalize (void);
2576 void release_function_body (tree
);
2577 cgraph_indirect_call_info
*cgraph_allocate_init_indirect_info (void);
2579 void cgraph_update_edges_for_call_stmt (gimple
*, tree
, gimple
*);
2580 bool cgraph_function_possibly_inlined_p (tree
);
2582 const char* cgraph_inline_failed_string (cgraph_inline_failed_t
);
2583 cgraph_inline_failed_type_t
cgraph_inline_failed_type (cgraph_inline_failed_t
);
2585 /* In cgraphunit.cc */
2586 void cgraphunit_cc_finalize (void);
2587 int tp_first_run_node_cmp (const void *pa
, const void *pb
);
2589 /* In symtab-thunks.cc */
2590 void symtab_thunks_cc_finalize (void);
2592 /* Initialize datastructures so DECL is a function in lowered gimple form.
2593 IN_SSA is true if the gimple is in SSA. */
2594 basic_block
init_lowered_empty_function (tree
, bool, profile_count
);
2596 tree
thunk_adjust (gimple_stmt_iterator
*, tree
, bool, HOST_WIDE_INT
, tree
,
2598 /* In cgraphclones.cc */
2600 tree
clone_function_name_numbered (const char *name
, const char *suffix
);
2601 tree
clone_function_name_numbered (tree decl
, const char *suffix
);
2602 tree
clone_function_name (const char *name
, const char *suffix
,
2603 unsigned long number
);
2604 tree
clone_function_name (tree decl
, const char *suffix
,
2605 unsigned long number
);
2606 tree
clone_function_name (tree decl
, const char *suffix
);
2608 void tree_function_versioning (tree
, tree
, vec
<ipa_replace_map
*, va_gc
> *,
2609 ipa_param_adjustments
*,
2610 bool, bitmap
, basic_block
);
2612 void dump_callgraph_transformation (const cgraph_node
*original
,
2613 const cgraph_node
*clone
,
2614 const char *suffix
);
2615 /* In cgraphbuild.cc */
2616 int compute_call_stmt_bb_frequency (tree
, basic_block bb
);
2617 void record_references_in_initializer (tree
, bool);
2620 void cgraph_build_static_cdtor (char which
, tree body
, int priority
);
2621 bool ipa_discover_variable_flags (void);
2624 tree
ctor_for_folding (tree
);
2626 /* In ipa-inline-analysis.cc */
2627 void initialize_inline_failed (struct cgraph_edge
*);
2628 bool speculation_useful_p (struct cgraph_edge
*e
, bool anticipate_inlining
);
2630 /* Return true when the symbol is real symbol, i.e. it is not inline clone
2631 or abstract function kept for debug info purposes only. */
2633 symtab_node::real_symbol_p (void)
2637 if (DECL_ABSTRACT_P (decl
))
2639 if (transparent_alias
&& definition
)
2641 if (!is_a
<cgraph_node
*> (this))
2643 cnode
= dyn_cast
<cgraph_node
*> (this);
2644 if (cnode
->inlined_to
)
2649 /* Return true if DECL should have entry in symbol table if used.
2650 Those are functions and static & external variables. */
2653 decl_in_symtab_p (const_tree decl
)
2655 return (TREE_CODE (decl
) == FUNCTION_DECL
2656 || (TREE_CODE (decl
) == VAR_DECL
2657 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
))));
2661 symtab_node::in_same_comdat_group_p (symtab_node
*target
)
2663 symtab_node
*source
= this;
2665 if (cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (target
))
2668 source
= cn
->inlined_to
;
2670 if (cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (target
))
2673 target
= cn
->inlined_to
;
2676 return source
->get_comdat_group () == target
->get_comdat_group ();
2679 /* Return node that alias is aliasing. */
2681 inline symtab_node
*
2682 symtab_node::get_alias_target (void)
2684 ipa_ref
*ref
= NULL
;
2685 iterate_reference (0, ref
);
2686 gcc_checking_assert (ref
->use
== IPA_REF_ALIAS
);
2687 return ref
->referred
;
2690 /* Return the DECL (or identifier) that alias is aliasing. Unlike the above,
2691 this works whether or not the alias has been analyzed already. */
2694 symtab_node::get_alias_target_tree ()
2697 return alias_target
;
2698 return get_alias_target ()->decl
;
2701 /* Return next reachable static symbol with initializer after the node. */
2703 inline symtab_node
*
2704 symtab_node::next_defined_symbol (void)
2706 symtab_node
*node1
= next
;
2708 for (; node1
; node1
= node1
->next
)
2709 if (node1
->definition
)
2715 /* Iterates I-th reference in the list, REF is also set. */
2718 symtab_node::iterate_reference (unsigned i
, ipa_ref
*&ref
)
2720 ref_list
.references
.iterate (i
, &ref
);
2725 /* Iterates I-th referring item in the list, REF is also set. */
2728 symtab_node::iterate_referring (unsigned i
, ipa_ref
*&ref
)
2730 ref_list
.referring
.iterate (i
, &ref
);
2735 /* Iterates I-th referring alias item in the list, REF is also set. */
2738 symtab_node::iterate_direct_aliases (unsigned i
, ipa_ref
*&ref
)
2740 ref_list
.referring
.iterate (i
, &ref
);
2742 if (ref
&& ref
->use
!= IPA_REF_ALIAS
)
2748 /* Return true if list contains an alias. */
2751 symtab_node::has_aliases_p (void)
2753 ipa_ref
*ref
= NULL
;
2755 return (iterate_direct_aliases (0, ref
) != NULL
);
2758 /* Return true when RESOLUTION indicate that linker will use
2759 the symbol from non-LTO object files. */
2762 resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution
)
2764 return (resolution
== LDPR_PREVAILING_DEF
2765 || resolution
== LDPR_PREEMPTED_REG
2766 || resolution
== LDPR_RESOLVED_EXEC
2767 || resolution
== LDPR_RESOLVED_DYN
);
2770 /* Return true when symtab_node is known to be used from other (non-LTO)
2771 object file. Known only when doing LTO via linker plugin. */
2774 symtab_node::used_from_object_file_p (void)
2776 if (!TREE_PUBLIC (decl
) || DECL_EXTERNAL (decl
))
2778 if (resolution_used_from_other_file_p (resolution
))
2783 /* Return varpool node for given symbol and check it is a function. */
2785 inline varpool_node
*
2786 varpool_node::get (const_tree decl
)
2788 gcc_checking_assert (TREE_CODE (decl
) == VAR_DECL
);
2789 return dyn_cast
<varpool_node
*> (symtab_node::get (decl
));
2792 /* Register a symbol NODE. */
2795 symbol_table::register_symbol (symtab_node
*node
)
2798 node
->previous
= NULL
;
2801 nodes
->previous
= node
;
2804 node
->order
= order
++;
2807 /* Register a top-level asm statement ASM_STR. */
2810 symbol_table::finalize_toplevel_asm (tree asm_str
)
2814 node
= ggc_cleared_alloc
<asm_node
> ();
2815 node
->asm_str
= asm_str
;
2816 node
->order
= order
++;
2819 if (asmnodes
== NULL
)
2822 asm_last_node
->next
= node
;
2824 asm_last_node
= node
;
2828 /* Unregister a symbol NODE. */
2830 symbol_table::unregister (symtab_node
*node
)
2833 node
->previous
->next
= node
->next
;
2838 node
->next
->previous
= node
->previous
;
2841 node
->previous
= NULL
;
2844 /* Release a callgraph NODE with UID and put in to the list of free nodes. */
2847 symbol_table::release_symbol (cgraph_node
*node
)
2850 if (node
->m_summary_id
!= -1)
2851 cgraph_released_summary_ids
.safe_push (node
->m_summary_id
);
2855 /* Return first static symbol with definition. */
2856 inline symtab_node
*
2857 symbol_table::first_symbol (void)
2862 /* Walk all symbols. */
2863 #define FOR_EACH_SYMBOL(node) \
2864 for ((node) = symtab->first_symbol (); (node); (node) = (node)->next)
2866 /* Return first static symbol with definition. */
2867 inline symtab_node
*
2868 symbol_table::first_defined_symbol (void)
2872 for (node
= nodes
; node
; node
= node
->next
)
2873 if (node
->definition
)
2879 /* Walk all symbols with definitions in current unit. */
2880 #define FOR_EACH_DEFINED_SYMBOL(node) \
2881 for ((node) = symtab->first_defined_symbol (); (node); \
2882 (node) = node->next_defined_symbol ())
2884 /* Return first variable. */
2885 inline varpool_node
*
2886 symbol_table::first_variable (void)
2889 for (node
= nodes
; node
; node
= node
->next
)
2890 if (varpool_node
*vnode
= dyn_cast
<varpool_node
*> (node
))
2895 /* Return next variable after NODE. */
2896 inline varpool_node
*
2897 symbol_table::next_variable (varpool_node
*node
)
2899 symtab_node
*node1
= node
->next
;
2900 for (; node1
; node1
= node1
->next
)
2901 if (varpool_node
*vnode1
= dyn_cast
<varpool_node
*> (node1
))
2905 /* Walk all variables. */
2906 #define FOR_EACH_VARIABLE(node) \
2907 for ((node) = symtab->first_variable (); \
2909 (node) = symtab->next_variable ((node)))
2911 /* Return first static variable with initializer. */
2912 inline varpool_node
*
2913 symbol_table::first_static_initializer (void)
2916 for (node
= nodes
; node
; node
= node
->next
)
2918 varpool_node
*vnode
= dyn_cast
<varpool_node
*> (node
);
2919 if (vnode
&& DECL_INITIAL (node
->decl
))
2925 /* Return next static variable with initializer after NODE. */
2926 inline varpool_node
*
2927 symbol_table::next_static_initializer (varpool_node
*node
)
2929 symtab_node
*node1
= node
->next
;
2930 for (; node1
; node1
= node1
->next
)
2932 varpool_node
*vnode1
= dyn_cast
<varpool_node
*> (node1
);
2933 if (vnode1
&& DECL_INITIAL (node1
->decl
))
2939 /* Walk all static variables with initializer set. */
2940 #define FOR_EACH_STATIC_INITIALIZER(node) \
2941 for ((node) = symtab->first_static_initializer (); (node); \
2942 (node) = symtab->next_static_initializer (node))
2944 /* Return first static variable with definition. */
2945 inline varpool_node
*
2946 symbol_table::first_defined_variable (void)
2949 for (node
= nodes
; node
; node
= node
->next
)
2951 varpool_node
*vnode
= dyn_cast
<varpool_node
*> (node
);
2952 if (vnode
&& vnode
->definition
)
2958 /* Return next static variable with definition after NODE. */
2959 inline varpool_node
*
2960 symbol_table::next_defined_variable (varpool_node
*node
)
2962 symtab_node
*node1
= node
->next
;
2963 for (; node1
; node1
= node1
->next
)
2965 varpool_node
*vnode1
= dyn_cast
<varpool_node
*> (node1
);
2966 if (vnode1
&& vnode1
->definition
)
2971 /* Walk all variables with definitions in current unit. */
2972 #define FOR_EACH_DEFINED_VARIABLE(node) \
2973 for ((node) = symtab->first_defined_variable (); (node); \
2974 (node) = symtab->next_defined_variable (node))
2976 /* Return first function with body defined. */
2977 inline cgraph_node
*
2978 symbol_table::first_defined_function (void)
2981 for (node
= nodes
; node
; node
= node
->next
)
2983 cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (node
);
2984 if (cn
&& cn
->definition
)
2990 /* Return next function with body defined after NODE. */
2991 inline cgraph_node
*
2992 symbol_table::next_defined_function (cgraph_node
*node
)
2994 symtab_node
*node1
= node
->next
;
2995 for (; node1
; node1
= node1
->next
)
2997 cgraph_node
*cn1
= dyn_cast
<cgraph_node
*> (node1
);
2998 if (cn1
&& cn1
->definition
)
3004 /* Walk all functions with body defined. */
3005 #define FOR_EACH_DEFINED_FUNCTION(node) \
3006 for ((node) = symtab->first_defined_function (); (node); \
3007 (node) = symtab->next_defined_function ((node)))
3009 /* Return first function. */
3010 inline cgraph_node
*
3011 symbol_table::first_function (void)
3014 for (node
= nodes
; node
; node
= node
->next
)
3015 if (cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (node
))
3020 /* Return next function. */
3021 inline cgraph_node
*
3022 symbol_table::next_function (cgraph_node
*node
)
3024 symtab_node
*node1
= node
->next
;
3025 for (; node1
; node1
= node1
->next
)
3026 if (cgraph_node
*cn1
= dyn_cast
<cgraph_node
*> (node1
))
3031 /* Return first function with body defined. */
3032 inline cgraph_node
*
3033 symbol_table::first_function_with_gimple_body (void)
3036 for (node
= nodes
; node
; node
= node
->next
)
3038 cgraph_node
*cn
= dyn_cast
<cgraph_node
*> (node
);
3039 if (cn
&& cn
->has_gimple_body_p ())
3045 /* Return next reachable static variable with initializer after NODE. */
3046 inline cgraph_node
*
3047 symbol_table::next_function_with_gimple_body (cgraph_node
*node
)
3049 symtab_node
*node1
= node
->next
;
3050 for (; node1
; node1
= node1
->next
)
3052 cgraph_node
*cn1
= dyn_cast
<cgraph_node
*> (node1
);
3053 if (cn1
&& cn1
->has_gimple_body_p ())
3059 /* Walk all functions. */
3060 #define FOR_EACH_FUNCTION(node) \
3061 for ((node) = symtab->first_function (); (node); \
3062 (node) = symtab->next_function ((node)))
3064 /* Return true when callgraph node is a function with Gimple body defined
3065 in current unit. Functions can also be define externally or they
3066 can be thunks with no Gimple representation.
3068 Note that at WPA stage, the function body may not be present in memory. */
3071 cgraph_node::has_gimple_body_p (void)
3073 return definition
&& !thunk
&& !alias
;
3076 /* Walk all functions with body defined. */
3077 #define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
3078 for ((node) = symtab->first_function_with_gimple_body (); (node); \
3079 (node) = symtab->next_function_with_gimple_body (node))
3081 /* Uniquize all constants that appear in memory.
3082 Each constant in memory thus far output is recorded
3083 in `const_desc_table'. */
3085 struct GTY((for_user
)) constant_descriptor_tree
{
3086 /* A MEM for the constant. */
3089 /* The value of the constant. */
3092 /* Hash of value. Computing the hash from value each time
3093 hashfn is called can't work properly, as that means recursive
3094 use of the hash table during hash table expansion. */
3098 /* Return true when function is only called directly or it has alias.
3099 i.e. it is not externally visible, address was not taken and
3100 it is not used in any other non-standard way. */
3103 cgraph_node::only_called_directly_or_aliased_p (void)
3105 gcc_assert (!inlined_to
);
3106 return (!force_output
&& !address_taken
3108 && !used_from_other_partition
3109 && !DECL_VIRTUAL_P (decl
)
3110 && !DECL_STATIC_CONSTRUCTOR (decl
)
3111 && !DECL_STATIC_DESTRUCTOR (decl
)
3112 && !used_from_object_file_p ()
3113 && !externally_visible
);
3116 /* Return true when function can be removed from callgraph
3117 if all direct calls are eliminated. */
3120 cgraph_node::can_remove_if_no_direct_calls_and_refs_p (void)
3122 gcc_checking_assert (!inlined_to
);
3123 /* Extern inlines can always go, we will use the external definition. */
3124 if (DECL_EXTERNAL (decl
))
3126 /* When function is needed, we cannot remove it. */
3127 if (force_output
|| used_from_other_partition
)
3129 if (DECL_STATIC_CONSTRUCTOR (decl
)
3130 || DECL_STATIC_DESTRUCTOR (decl
))
3132 /* Only COMDAT functions can be removed if externally visible. */
3133 if (externally_visible
3134 && ((!DECL_COMDAT (decl
) || ifunc_resolver
)
3136 || used_from_object_file_p ()))
3141 /* Verify cgraph, if consistency checking is enabled. */
3144 cgraph_node::checking_verify_cgraph_nodes (void)
3147 cgraph_node::verify_cgraph_nodes ();
3150 /* Return true when variable can be removed from variable pool
3151 if all direct calls are eliminated. */
3154 varpool_node::can_remove_if_no_refs_p (void)
3156 if (DECL_EXTERNAL (decl
))
3158 return (!force_output
&& !used_from_other_partition
3159 && ((DECL_COMDAT (decl
)
3161 && !used_from_object_file_p ())
3162 || !externally_visible
3163 || DECL_HAS_VALUE_EXPR_P (decl
)));
3166 /* Return true when all references to variable must be visible in ipa_ref_list.
3167 i.e. if the variable is not externally visible or not used in some magic
3168 way (asm statement or such).
3169 The magic uses are all summarized in force_output flag. */
3172 varpool_node::all_refs_explicit_p ()
3175 && !externally_visible
3176 && !used_from_other_partition
3180 struct tree_descriptor_hasher
: ggc_ptr_hash
<constant_descriptor_tree
>
3182 static hashval_t
hash (constant_descriptor_tree
*);
3183 static bool equal (constant_descriptor_tree
*, constant_descriptor_tree
*);
3186 /* Constant pool accessor function. */
3187 hash_table
<tree_descriptor_hasher
> *constant_pool_htab (void);
3189 /* Return node that alias is aliasing. */
3191 inline cgraph_node
*
3192 cgraph_node::get_alias_target (void)
3194 return dyn_cast
<cgraph_node
*> (symtab_node::get_alias_target ());
3197 /* Return node that alias is aliasing. */
3199 inline varpool_node
*
3200 varpool_node::get_alias_target (void)
3202 return dyn_cast
<varpool_node
*> (symtab_node::get_alias_target ());
3205 /* Walk the alias chain to return the symbol NODE is alias of.
3206 If NODE is not an alias, return NODE.
3207 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3208 When REF is non-NULL, assume that reference happens in symbol REF
3209 when determining the availability. */
3211 inline symtab_node
*
3212 symtab_node::ultimate_alias_target (enum availability
*availability
,
3218 *availability
= get_availability (ref
);
3222 return ultimate_alias_target_1 (availability
, ref
);
3225 /* Given function symbol, walk the alias chain to return the function node
3226 is alias of. Do not walk through thunks.
3227 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3228 When REF is non-NULL, assume that reference happens in symbol REF
3229 when determining the availability. */
3231 inline cgraph_node
*
3232 cgraph_node::ultimate_alias_target (enum availability
*availability
,
3235 cgraph_node
*n
= dyn_cast
<cgraph_node
*>
3236 (symtab_node::ultimate_alias_target (availability
, ref
));
3237 if (!n
&& availability
)
3238 *availability
= AVAIL_NOT_AVAILABLE
;
3242 /* For given variable pool node, walk the alias chain to return the function
3243 the variable is alias of. Do not walk through thunks.
3244 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3245 When REF is non-NULL, assume that reference happens in symbol REF
3246 when determining the availability. */
3248 inline varpool_node
*
3249 varpool_node::ultimate_alias_target (availability
*availability
,
3252 varpool_node
*n
= dyn_cast
<varpool_node
*>
3253 (symtab_node::ultimate_alias_target (availability
, ref
));
3255 if (!n
&& availability
)
3256 *availability
= AVAIL_NOT_AVAILABLE
;
3260 /* Set callee N of call graph edge and add it to the corresponding set of
3264 cgraph_edge::set_callee (cgraph_node
*n
)
3268 n
->callers
->prev_caller
= this;
3269 next_caller
= n
->callers
;
3274 /* Return true when the edge represents a direct recursion. */
3277 cgraph_edge::recursive_p (void)
3279 cgraph_node
*c
= callee
->ultimate_alias_target ();
3280 if (caller
->inlined_to
)
3281 return caller
->inlined_to
->decl
== c
->decl
;
3283 return caller
->decl
== c
->decl
;
3286 /* Remove the edge from the list of the callers of the callee. */
3289 cgraph_edge::remove_callee (void)
3291 gcc_assert (!indirect_unknown_callee
);
3293 prev_caller
->next_caller
= next_caller
;
3295 next_caller
->prev_caller
= prev_caller
;
3297 callee
->callers
= next_caller
;
3300 /* Return true if call must bind to current definition. */
3303 cgraph_edge::binds_to_current_def_p ()
3306 return callee
->binds_to_current_def_p (caller
);
3311 /* Expected frequency of executions within the function.
3312 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
3313 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
3316 cgraph_edge::frequency ()
3318 return count
.to_cgraph_frequency (caller
->inlined_to
3319 ? caller
->inlined_to
->count
3324 /* Return true if the TM_CLONE bit is set for a given FNDECL. */
3326 decl_is_tm_clone (const_tree fndecl
)
3328 cgraph_node
*n
= cgraph_node::get (fndecl
);
3334 /* Likewise indicate that a node is needed, i.e. reachable via some
3338 cgraph_node::mark_force_output (void)
3341 gcc_checking_assert (!inlined_to
);
3344 /* Return true if function should be optimized for size. */
3346 inline enum optimize_size_level
3347 cgraph_node::optimize_for_size_p (void)
3349 if (opt_for_fn (decl
, optimize_size
))
3350 return OPTIMIZE_SIZE_MAX
;
3351 if (count
== profile_count::zero ())
3352 return OPTIMIZE_SIZE_MAX
;
3353 if (frequency
== NODE_FREQUENCY_UNLIKELY_EXECUTED
)
3354 return OPTIMIZE_SIZE_BALANCED
;
3356 return OPTIMIZE_SIZE_NO
;
3359 /* Return symtab_node for NODE or create one if it is not present
3362 inline symtab_node
*
3363 symtab_node::get_create (tree node
)
3365 if (TREE_CODE (node
) == VAR_DECL
)
3366 return varpool_node::get_create (node
);
3368 return cgraph_node::get_create (node
);
3371 /* Return availability of NODE when referenced from REF. */
3373 inline enum availability
3374 symtab_node::get_availability (symtab_node
*ref
)
3376 if (is_a
<cgraph_node
*> (this))
3377 return dyn_cast
<cgraph_node
*> (this)->get_availability (ref
);
3379 return dyn_cast
<varpool_node
*> (this)->get_availability (ref
);
3382 /* Call callback on symtab node and aliases associated to this node.
3383 When INCLUDE_OVERWRITABLE is false, overwritable symbols are skipped. */
3386 symtab_node::call_for_symbol_and_aliases (bool (*callback
) (symtab_node
*,
3389 bool include_overwritable
)
3391 if (include_overwritable
3392 || get_availability () > AVAIL_INTERPOSABLE
)
3394 if (callback (this, data
))
3397 if (has_aliases_p ())
3398 return call_for_symbol_and_aliases_1 (callback
, data
, include_overwritable
);
3402 /* Call callback on function and aliases associated to the function.
3403 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3407 cgraph_node::call_for_symbol_and_aliases (bool (*callback
) (cgraph_node
*,
3410 bool include_overwritable
)
3412 if (include_overwritable
3413 || get_availability () > AVAIL_INTERPOSABLE
)
3415 if (callback (this, data
))
3418 if (has_aliases_p ())
3419 return call_for_symbol_and_aliases_1 (callback
, data
, include_overwritable
);
3423 /* Call callback on varpool symbol and aliases associated to varpool symbol.
3424 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3428 varpool_node::call_for_symbol_and_aliases (bool (*callback
) (varpool_node
*,
3431 bool include_overwritable
)
3433 if (include_overwritable
3434 || get_availability () > AVAIL_INTERPOSABLE
)
3436 if (callback (this, data
))
3439 if (has_aliases_p ())
3440 return call_for_symbol_and_aliases_1 (callback
, data
, include_overwritable
);
3444 /* Return true if reference may be used in address compare. */
3447 ipa_ref::address_matters_p ()
3449 if (use
!= IPA_REF_ADDR
)
3451 /* Addresses taken from virtual tables are never compared. */
3452 if (is_a
<varpool_node
*> (referring
)
3453 && DECL_VIRTUAL_P (referring
->decl
))
3455 return referred
->address_can_be_compared_p ();
3458 /* Build polymorphic call context for indirect call E. */
3461 ipa_polymorphic_call_context::ipa_polymorphic_call_context (cgraph_edge
*e
)
3463 gcc_checking_assert (e
->indirect_info
->polymorphic
);
3464 *this = e
->indirect_info
->context
;
3467 /* Build empty "I know nothing" context. */
3470 ipa_polymorphic_call_context::ipa_polymorphic_call_context ()
3472 clear_speculation ();
3473 clear_outer_type ();
3477 /* Make context non-speculative. */
3480 ipa_polymorphic_call_context::clear_speculation ()
3482 speculative_outer_type
= NULL
;
3483 speculative_offset
= 0;
3484 speculative_maybe_derived_type
= false;
3487 /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
3488 NULL, the context is set to dummy "I know nothing" setting. */
3491 ipa_polymorphic_call_context::clear_outer_type (tree otr_type
)
3493 outer_type
= otr_type
? TYPE_MAIN_VARIANT (otr_type
) : NULL
;
3495 maybe_derived_type
= true;
3496 maybe_in_construction
= true;
3500 /* Adjust all offsets in contexts by OFF bits. */
3503 ipa_polymorphic_call_context::offset_by (HOST_WIDE_INT off
)
3507 if (speculative_outer_type
)
3508 speculative_offset
+= off
;
3511 /* Return TRUE if context is fully useless. */
3514 ipa_polymorphic_call_context::useless_p () const
3516 return (!outer_type
&& !speculative_outer_type
);
3519 /* When using fprintf (or similar), problems can arise with
3520 transient generated strings. Many string-generation APIs
3521 only support one result being alive at once (e.g. by
3522 returning a pointer to a statically-allocated buffer).
3524 If there is more than one generated string within one
3525 fprintf call: the first string gets evicted or overwritten
3526 by the second, before fprintf is fully evaluated.
3529 This function provides a workaround for this, by providing
3530 a simple way to create copies of these transient strings,
3531 without the need to have explicit cleanup:
3533 fprintf (dumpfile, "string 1: %s string 2:%s\n",
3534 xstrdup_for_dump (EXPR_1),
3535 xstrdup_for_dump (EXPR_2));
3537 This is actually a simple wrapper around ggc_strdup, but
3538 the name documents the intent. We require that no GC can occur
3539 within the fprintf call. */
3541 static inline const char *
3542 xstrdup_for_dump (const char *transient_str
)
3544 return ggc_strdup (transient_str
);
3547 /* During LTO stream-in this predicate can be used to check whether node
3548 in question prevails in the linking to save some memory usage. */
3550 symtab_node::prevailing_p (void)
3552 return definition
&& ((!TREE_PUBLIC (decl
) && !DECL_EXTERNAL (decl
))
3553 || previous_sharing_asm_name
== NULL
);
3556 extern GTY(()) symbol_table
*saved_symtab
;
3560 namespace selftest
{
3562 /* An RAII-style class for use in selftests for temporarily using a different
3563 symbol_table, so that such tests can be isolated from each other. */
3565 class symbol_table_test
3568 /* Constructor. Override "symtab". */
3569 symbol_table_test ();
3571 /* Destructor. Restore the saved_symtab. */
3572 ~symbol_table_test ();
3575 } // namespace selftest
3577 #endif /* CHECKING_P */
3579 #endif /* GCC_CGRAPH_H */