GCC Middle and Back End API Reference
cgraph.h
Go to the documentation of this file.
1/* Callgraph handling code.
2 Copyright (C) 2003-2025 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_CGRAPH_H
22#define GCC_CGRAPH_H
23
24#include "profile-count.h"
25#include "ipa-ref.h"
26#include "plugin-api.h"
28
29extern void debuginfo_early_init (void);
30extern void debuginfo_init (void);
31extern void debuginfo_fini (void);
32extern void debuginfo_start (void);
33extern void debuginfo_stop (void);
34extern void debuginfo_early_start (void);
35extern void debuginfo_early_stop (void);
36
37class ipa_opt_pass_d;
39
40/* Symbol table consists of functions and variables.
41 TODO: add labels and CONST_DECLs. */
48
49/* Section names are stored as reference counted strings in GGC safe hashtable
50 (to make them survive through PCH). */
51
52struct GTY((for_user)) section_hash_entry
53{
55 char *name; /* As long as this datastructure stays in GGC, we cannot put
56 string at the tail of structure of GGC dies in horrible
57 way */
58};
59
60struct section_name_hasher : ggc_ptr_hash<section_hash_entry>
61{
62 typedef const char *compare_type;
63
64 static hashval_t hash (section_hash_entry *);
65 static bool equal (section_hash_entry *, const char *);
66};
67
69{
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
81 program. */
83 /* Function body/variable initializer is known and all it's uses are
84 explicitly visible within current unit (i.e. it's address is never taken
85 and it is not exported to other units). Currently used only for
86 functions. */
88};
89
90/* Classification of symbols WRT partitioning. */
92{
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. */
101};
102
103/* Base of all entries in the symbol table.
104 The symtab_node is inherited by cgraph and varpol nodes. */
105struct GTY((desc ("%h.type"), tag ("SYMTAB_SYMBOL"),
106 chain_next ("%h.next"), chain_prev ("%h.previous")))
109public:
110 friend class symbol_table;
128 {}
129
130 /* Return name. */
131 const char *name () const;
132
133 /* Return dump name. */
134 const char *dump_name () const;
135
136 /* Return asm name. */
137 const char *asm_name () const;
138
139 /* Return dump name with assembler name. */
140 const char *dump_asm_name () const;
141
142 /* Return visibility name. */
143 const char *get_visibility_string () const;
144
145 /* Return type_name name. */
146 const char *get_symtab_type_string () const;
147
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);
151
152 /* Remove symbol from symbol table. */
153 void remove (void);
154
155 /* Undo any definition or use of the symbol. */
156 void reset (bool preserve_comdat_group = false);
157
158 /* Dump symtab node to F. */
159 void dump (FILE *f);
160
161 /* Dump symtab callgraph in graphviz format. */
162 void dump_graphviz (FILE *f);
163
164 /* Dump symtab node to stderr. */
165 void DEBUG_FUNCTION debug (void);
166
167 /* Verify consistency of node. */
168 void DEBUG_FUNCTION verify (void);
169
170 /* Return ipa reference from this symtab_node to
171 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
172 of the use and STMT the statement (if it exists). */
173 ipa_ref *create_reference (symtab_node *referred_node,
174 enum ipa_ref_use use_type);
175
176 /* Return ipa reference from this symtab_node to
177 REFERRED_NODE or REFERRED_VARPOOL_NODE. USE_TYPE specify type
178 of the use and STMT the statement (if it exists). */
179 ipa_ref *create_reference (symtab_node *referred_node,
180 enum ipa_ref_use use_type, gimple *stmt);
181
182 /* If VAL is a reference to a function or a variable, add a reference from
183 this symtab_node to the corresponding symbol table node. Return the new
184 reference or NULL if none was created. */
185 ipa_ref *maybe_create_reference (tree val, gimple *stmt);
186
187 /* Clone all references from symtab NODE to this symtab_node. */
188 void clone_references (symtab_node *node);
189
190 /* Remove all stmt references in non-speculative references.
191 Those are not maintained during inlining & clonning.
192 The exception are speculative references that are updated along
193 with callgraph edges associated with them. */
194 void clone_referring (symtab_node *node);
195
196 /* Clone reference REF to this symtab_node and set its stmt to STMT. */
197 ipa_ref *clone_reference (ipa_ref *ref, gimple *stmt);
198
199 /* Find the structure describing a reference to REFERRED_NODE of USE_TYPE and
200 associated with statement STMT or LTO_STMT_UID. */
201 ipa_ref *find_reference (symtab_node *referred_node, gimple *stmt,
202 unsigned int lto_stmt_uid,
203 enum ipa_ref_use use_type);
204
205 /* Remove all references that are associated with statement STMT. */
206 void remove_stmt_references (gimple *stmt);
207
208 /* Remove all stmt references in non-speculative references.
209 Those are not maintained during inlining & clonning.
210 The exception are speculative references that are updated along
211 with callgraph edges associated with them. */
212 void clear_stmts_in_references (void);
213
214 /* Remove all references in ref list. */
215 void remove_all_references (void);
216
217 /* Remove all referring items in ref list. */
218 void remove_all_referring (void);
219
220 /* Dump references in ref list to FILE. */
221 void dump_references (FILE *file);
222
223 /* Dump referring in list to FILE. */
224 void dump_referring (FILE *);
226 /* Get number of references for this node. */
227 inline unsigned num_references (void)
228 {
229 return ref_list.references.length ();
230 }
231
232 /* Iterates I-th reference in the list, REF is also set. */
233 ipa_ref *iterate_reference (unsigned i, ipa_ref *&ref);
234
235 /* Iterates I-th referring item in the list, REF is also set. */
236 ipa_ref *iterate_referring (unsigned i, ipa_ref *&ref);
237
238 /* Iterates I-th referring alias item in the list, REF is also set. */
239 ipa_ref *iterate_direct_aliases (unsigned i, ipa_ref *&ref);
240
241 /* Return true if symtab node and TARGET represents
242 semantically equivalent symbols. */
243 bool semantically_equivalent_p (symtab_node *target);
244
245 /* Classify symbol symtab node for partitioning. */
246 enum symbol_partitioning_class get_partitioning_class (void);
248 /* Return comdat group. */
250 {
251 return x_comdat_group;
252 }
254 /* Return comdat group as identifier_node. */
256 {
257 if (x_comdat_group && TREE_CODE (x_comdat_group) != IDENTIFIER_NODE)
259 return x_comdat_group;
260 }
262 /* Set comdat group. */
263 void set_comdat_group (tree group)
264 {
265 gcc_checking_assert (!group || TREE_CODE (group) == IDENTIFIER_NODE
266 || DECL_P (group));
267 x_comdat_group = group;
268 }
270 /* Return section as string. */
271 const char * get_section () const
272 {
273 if (!x_section)
274 return NULL;
275 return x_section->name;
276 }
277
278 /* Remove node from same comdat group. */
279 void remove_from_same_comdat_group (void);
280
281 /* Add this symtab_node to the same comdat group that OLD is in. */
282 void add_to_same_comdat_group (symtab_node *old_node);
283
284 /* Dissolve the same_comdat_group list in which NODE resides. */
285 void dissolve_same_comdat_group_list (void);
286
287 /* Return true when symtab_node is known to be used from other (non-LTO)
288 object file. Known only when doing LTO via linker plugin. */
289 bool used_from_object_file_p (void);
290
291 /* Walk the alias chain to return the symbol NODE is alias of.
292 If NODE is not an alias, return NODE.
293 When AVAILABILITY is non-NULL, get minimal availability in the chain.
294 When REF is non-NULL, assume that reference happens in symbol REF
295 when determining the availability. */
296 symtab_node *ultimate_alias_target (enum availability *avail = NULL,
297 struct symtab_node *ref = NULL);
298
299 /* Return next reachable static symbol with initializer after NODE. */
300 inline symtab_node *next_defined_symbol (void);
301
302 /* Add reference recording that symtab node is alias of TARGET.
303 If TRANSPARENT is true make the alias to be transparent alias.
304 The function can fail in the case of aliasing cycles; in this case
305 it returns false. */
306 bool resolve_alias (symtab_node *target, bool transparent = false);
307
308 /* C++ FE sometimes change linkage flags after producing same
309 body aliases. */
310 void fixup_same_cpp_alias_visibility (symtab_node *target);
311
312 /* Call callback on symtab node and aliases associated to this node.
313 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
314 skipped. */
315 bool call_for_symbol_and_aliases (bool (*callback) (symtab_node *, void *),
316 void *data,
317 bool include_overwrite);
318
319 /* If node cannot be interposable by static or dynamic linker to point to
320 different definition, return this symbol. Otherwise look for alias with
321 such property and if none exists, introduce new one. */
322 symtab_node *noninterposable_alias (void);
323
324 /* Return node that alias is aliasing. */
325 inline symtab_node *get_alias_target (void);
326
327 /* Return DECL that alias is aliasing. */
328 inline tree get_alias_target_tree ();
329
330 /* Set section for symbol and its aliases. */
331 void set_section (const char *section);
332
333 /* Like set_section, but copying the section name from another node. */
334 void set_section (const symtab_node &other);
335
336 /* Set section, do not recurse into aliases.
337 When one wants to change section of symbol and its aliases,
338 use set_section. */
339 void set_section_for_node (const char *section);
340
341 /* Like set_section_for_node, but copying the section name from another
342 node. */
343 void set_section_for_node (const symtab_node &other);
344
345 /* Set initialization priority to PRIORITY. */
346 void set_init_priority (priority_type priority);
347
348 /* Return the initialization priority. */
349 priority_type get_init_priority ();
350
351 /* Return availability of NODE when referenced from REF. */
352 enum availability get_availability (symtab_node *ref = NULL);
353
354 /* During LTO stream-in this predicate can be used to check whether node
355 in question prevails in the linking to save some memory usage. */
356 bool prevailing_p (void);
357
358 /* Return true if NODE binds to current definition in final executable
359 when referenced from REF. If REF is NULL return conservative value
360 for any reference. */
361 bool binds_to_current_def_p (symtab_node *ref = NULL);
362
363 /* Make DECL local. */
364 void make_decl_local (void);
365
366 /* Copy visibility from N. */
367 void copy_visibility_from (symtab_node *n);
368
369 /* Return desired alignment of the definition. This is NOT alignment useful
370 to access THIS, because THIS may be interposable and DECL_ALIGN should
371 be used instead. It however must be guaranteed when output definition
372 of THIS. */
373 unsigned int definition_alignment ();
374
375 /* Return true if alignment can be increased. */
376 bool can_increase_alignment_p ();
377
378 /* Increase alignment of symbol to ALIGN. */
379 void increase_alignment (unsigned int align);
380
381 /* Return true if list contains an alias. */
382 bool has_aliases_p (void);
383
384 /* Return true when the symbol is real symbol, i.e. it is not inline clone
385 or abstract function kept for debug info purposes only. */
386 bool real_symbol_p (void);
387
388 /* Return true when the symbol needs to be output to the LTO symbol table. */
389 bool output_to_lto_symbol_table_p (void);
390
391 /* Determine if symbol declaration is needed. That is, visible to something
392 either outside this translation unit, something magic in the system
393 configury. This function is used just during symbol creation. */
394 bool needed_p (void);
395
396 /* Return true if this symbol is a function from the C frontend specified
397 directly in RTL form (with "__RTL"). */
398 bool native_rtl_p () const;
399
400 /* Return true when there are references to the node. */
401 bool referred_to_p (bool include_self = true);
402
403 /* Return true if symbol can be discarded by linker from the binary.
404 Assume that symbol is used (so there is no need to take into account
405 garbage collecting linkers)
406
407 This can happen for comdats, commons and weaks when they are prevailed
408 by other definition at static linking time. */
409 inline bool
410 can_be_discarded_p (void)
411 {
412 return ((DECL_EXTERNAL (decl)
414 || ((get_comdat_group ()
415 || DECL_COMMON (decl)
417 && ((resolution != LDPR_PREVAILING_DEF
418 && resolution != LDPR_PREVAILING_DEF_IRONLY_EXP)
419 || flag_incremental_link)
420 && resolution != LDPR_PREVAILING_DEF_IRONLY));
421 }
422
423 /* Return true if NODE is local to a particular COMDAT group, and must not
424 be named from outside the COMDAT. This is used for C++ decloned
425 constructors. */
426 inline bool comdat_local_p (void)
427 {
428 return (same_comdat_group && !TREE_PUBLIC (decl));
429 }
430
431 /* Return true if ONE and TWO are part of the same COMDAT group. */
432 inline bool in_same_comdat_group_p (symtab_node *target);
433
434 /* Return true if symbol is known to be nonzero, assume that
435 flag_delete_null_pointer_checks is equal to delete_null_pointer_checks. */
436 bool nonzero_address (bool delete_null_pointer_checks);
437
438 /* Return true if symbol is known to be nonzero. */
439 bool nonzero_address ();
440
441 /* Return 0 if symbol is known to have different address than S2,
442 Return 1 if symbol is known to have same address as S2,
443 return 2 otherwise.
444
445 If MEMORY_ACCESSED is true, assume that both memory pointer to THIS
446 and S2 is going to be accessed. This eliminates the situations when
447 either THIS or S2 is NULL and is useful for comparing bases when deciding
448 about memory aliasing. */
449 int equal_address_to (symtab_node *s2, bool memory_accessed = false);
450
451 /* Return true if symbol's address may possibly be compared to other
452 symbol's address. */
453 bool address_matters_p ();
454
455 /* Return true if NODE's address can be compared. This use properties
456 of NODE only and does not look if the address is actually taken in
457 interesting way. For that use ADDRESS_MATTERS_P instead. */
458 bool address_can_be_compared_p (void);
459
460 /* Return symbol table node associated with DECL, if any,
461 and NULL otherwise. */
462 static inline symtab_node *get (const_tree decl)
463 {
464 /* Check that we are called for sane type of object - functions
465 and static or external variables. */
466 gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL
467 || (TREE_CODE (decl) == VAR_DECL
469 || in_lto_p)));
470 /* Check that the mapping is sane - perhaps this check can go away,
471 but at the moment frontends tends to corrupt the mapping by calling
472 memcpy/memset on the tree nodes. */
473 gcc_checking_assert (!decl->decl_with_vis.symtab_node
474 || decl->decl_with_vis.symtab_node->decl == decl);
475 return decl->decl_with_vis.symtab_node;
476 }
477
478 /* Try to find a symtab node for declaration DECL and if it does not
479 exist or if it corresponds to an inline clone, create a new one. */
480 static inline symtab_node * get_create (tree node);
481
482 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
483 Return NULL if there's no such node. */
484 static symtab_node *get_for_asmname (const_tree asmname);
485
486 /* Check symbol table for callees of IFUNC resolvers. */
487 static void check_ifunc_callee_symtab_nodes (void);
488
489 /* Verify symbol table for internal consistency. */
490 static DEBUG_FUNCTION void verify_symtab_nodes (void);
491
492 /* Perform internal consistency checks, if they are enabled. */
493 static inline void checking_verify_symtab_nodes (void);
495 /* Get unique identifier of the node. */
496 inline int get_uid () const
497 {
498 return m_uid;
499 }
501 /* Type of the symbol. */
502 ENUM_BITFIELD (symtab_type) type : 8;
504 /* The symbols resolution. */
505 ENUM_BITFIELD (ld_plugin_symbol_resolution) resolution : 8;
506
507 /*** Flags representing the symbol type. ***/
508
509 /* True when symbol corresponds to a definition in current unit.
510 set via finalize_function or finalize_decl */
511 unsigned definition : 1;
512 /* True when symbol is an alias.
513 Set by assemble_alias. */
514 unsigned alias : 1;
515 /* When true the alias is translated into its target symbol either by GCC
516 or assembler (it also may just be a duplicate declaration of the same
517 linker name).
518
519 Currently transparent aliases come in three different flavors
520 - aliases having the same assembler name as their target (aka duplicated
521 declarations). In this case the assembler names compare via
522 assembler_names_equal_p and weakref is false
523 - aliases that are renamed at a time being output to final file
524 by varasm.cc. For those DECL_ASSEMBLER_NAME have
525 IDENTIFIER_TRANSPARENT_ALIAS set and thus also their assembler
526 name must be unique.
527 Weakrefs belong to this category when we target assembler without
528 .weakref directive.
529 - weakrefs that are renamed by assembler via .weakref directive.
530 In this case the alias may or may not be definition (depending if
531 target declaration was seen by the compiler), weakref is set.
532 Unless we are before renaming statics, assembler names are different.
533
534 Given that we now support duplicate declarations, the second option is
535 redundant and will be removed. */
536 unsigned transparent_alias : 1;
537 /* True when alias is a weakref. */
538 unsigned weakref : 1;
539 /* C++ frontend produce same body aliases and extra name aliases for
540 virtual functions and vtables that are obviously equivalent.
541 Those aliases are bit special, especially because C++ frontend
542 visibility code is so ugly it cannot get them right at first time
543 and their visibility needs to be copied from their "masters" at
544 the end of parsing. */
545 unsigned cpp_implicit_alias : 1;
546 /* The alias is a symbol version. */
547 unsigned symver : 1;
548 /* Set once the definition was analyzed. The list of references and
549 other properties are built during analysis. */
550 unsigned analyzed : 1;
551 /* Set for write-only variables. */
552 unsigned writeonly : 1;
553 /* Visibility of symbol was used for further optimization; do not
554 permit further changes. */
555 unsigned refuse_visibility_changes : 1;
556
557 /*** Visibility and linkage flags. ***/
559 /* Set when function is visible by other units. */
560 unsigned externally_visible : 1;
561 /* Don't reorder to other symbols having this set. */
562 unsigned no_reorder : 1;
563 /* The symbol will be assumed to be used in an invisible way (like
564 by an toplevel asm statement). */
565 unsigned force_output : 1;
566 /* Like FORCE_OUTPUT, but in the case it is ABI requiring the symbol to be
567 exported. Unlike FORCE_OUTPUT this flag gets cleared to symbols promoted
568 to static and it does not inhibit optimization. */
569 unsigned forced_by_abi : 1;
570 /* True when the name is known to be unique and thus it does not need mangling. */
571 unsigned unique_name : 1;
572 /* Specify whether the section was set by user or by
573 compiler via -ffunction-sections. */
574 unsigned implicit_section : 1;
575 /* True when body and other characteristics have been removed by
576 symtab_remove_unreachable_nodes. */
577 unsigned body_removed : 1;
578 /* True when symbol should comply to -fsemantic-interposition flag. */
579 unsigned semantic_interposition : 1;
580
581 /*** WHOPR Partitioning flags.
582 These flags are used at ltrans stage when only part of the callgraph is
583 available. ***/
585 /* Set when variable is used from other LTRANS partition. */
586 unsigned used_from_other_partition : 1;
587 /* Set when function is available in the other LTRANS partition.
588 During WPA output it is used to mark nodes that are present in
589 multiple partitions. */
590 unsigned in_other_partition : 1;
591
592
593
594 /*** other flags. ***/
596 /* Set when symbol has address taken. */
597 unsigned address_taken : 1;
598 /* Set when init priority is set. */
599 unsigned in_init_priority_hash : 1;
600
601 /* Set when symbol needs to be streamed into LTO bytecode for LTO, or in case
602 of offloading, for separate compilation for a different target. */
603 unsigned need_lto_streaming : 1;
605 /* Set when symbol can be streamed into bytecode for offloading. */
606 unsigned offloadable : 1;
608 /* Set when symbol is an IFUNC resolver. */
609 unsigned ifunc_resolver : 1;
610
612 /* Ordering of all symtab entries. */
613 int order;
615 /* Declaration representing the symbol. */
616 tree decl;
618 /* Linked list of symbol table entries starting with symtab_nodes. */
621
622 /* Linked list of symbols with the same asm name. There may be multiple
623 entries for single symbol name during LTO, because symbols are renamed
624 only after partitioning.
625
626 Because inline clones are kept in the assembler name has, they also produce
627 duplicate entries.
628
629 There are also several long standing bugs where frontends and builtin
630 code produce duplicated decls. */
634 /* Circular list of nodes in the same comdat group if non-NULL. */
637 /* Vectors of referring and referenced entities. */
638 ipa_ref_list GTY((skip)) ref_list;
639
640 /* Alias target. May be either DECL pointer or ASSEMBLER_NAME pointer
641 depending to what was known to frontend on the creation time.
642 Once alias is resolved, this pointer become NULL. */
645 /* File stream where this node is being written to. */
647
648 void *GTY ((skip)) aux;
650 /* Comdat group the symbol is in. Can be private if GGC allowed that. */
653 /* Section name. Again can be private, if allowed. */
655
656protected:
657 /* Dump base fields of symtab nodes to F. Not to be used directly. */
658 void dump_base (FILE *);
659
660 /* Verify common part of symtab node. */
661 bool DEBUG_FUNCTION verify_base (void);
662
663 /* Remove node from symbol table. This function is not used directly, but via
664 cgraph/varpool node removal routines. */
665 void unregister (struct clone_info *);
666
667 /* Return the initialization and finalization priority information for
668 DECL. If there is no previous priority information, a freshly
669 allocated structure is returned. */
670 struct symbol_priority_map *priority_info (void);
671
672 /* Worker for call_for_symbol_and_aliases_1. */
673 bool call_for_symbol_and_aliases_1 (bool (*callback) (symtab_node *, void *),
674 void *data,
675 bool include_overwrite);
676private:
677 /* Unique id of the node. */
678 int m_uid;
679
680 /* Workers for set_section. */
681 static bool set_section_from_string (symtab_node *n, void *s);
682 static bool set_section_from_node (symtab_node *n, void *o);
683
684 /* Worker for symtab_resolve_alias. */
685 static bool set_implicit_section (symtab_node *n, void *);
686
687 /* Worker searching noninterposable alias. */
688 static bool noninterposable_alias (symtab_node *node, void *data);
689
690 /* Worker for ultimate_alias_target. */
692 symtab_node *ref = NULL);
693
694 /* Get dump name with normal or assembly name. */
695 const char *get_dump_name (bool asm_name_p) const;
696};
698inline void
700{
701 if (flag_checking)
703}
705/* Walk all aliases for NODE. */
706#define FOR_EACH_ALIAS(NODE, ALIAS) \
707 for (unsigned ALIAS##_iter_ = 0; \
708 (NODE)->iterate_direct_aliases (ALIAS##_iter_, ALIAS); \
709 ALIAS##_iter_++)
710
711/* This is the information that is put into the cgraph local structure
712 to recover a function. */
713struct lto_file_decl_data;
714
715extern const char * const cgraph_availability_names[];
716extern const char * const ld_plugin_symbol_resolution_names[];
717extern const char * const tls_model_names[];
718
719/* Represent which DECL tree (or reference to such tree)
720 will be replaced by another tree while versioning. */
721struct GTY(()) ipa_replace_map
723 /* The new (replacing) tree. */
725 /* Parameter number to replace, when old_tree is NULL. */
726 int parm_num;
727 /* Set if the newly added reference should not be an address one, but a load
728 one from the operand of the ADDR_EXPR in NEW_TREE. This is for cases when
729 the corresponding parameter p is used only as *p. */
730 unsigned force_load_ref : 1;
749};
750
751/* Function arguments in the original function of a SIMD clone.
752 Supplementary data for `struct simd_clone'. */
753
754struct GTY(()) cgraph_simd_clone_arg {
755 /* Original function argument as it originally existed in
756 DECL_ARGUMENTS. */
758
759 /* orig_arg's function (or for extern functions type from
760 TYPE_ARG_TYPES). */
762
763 /* If argument is a vector, this holds the vector version of
764 orig_arg that after adjusting the argument types will live in
765 DECL_ARGUMENTS. Otherwise, this is NULL.
766
767 This basically holds:
768 vector(simdlen) __typeof__(orig_arg) new_arg. */
771 /* vector_arg's type (or for extern functions new vector type. */
773
774 /* If argument is a vector, this holds the array where the simd
775 argument is held while executing the simd clone function. This
776 is a local variable in the cloned function. Its content is
777 copied from vector_arg upon entry to the clone.
778
779 This basically holds:
780 __typeof__(orig_arg) simd_array[simdlen]. */
782
783 /* A SIMD clone's argument can be either linear (constant or
784 variable), uniform, or vector. */
787 /* Variable alignment if available, otherwise 0. */
788 unsigned int alignment;
789
790 /* For arg_type SIMD_CLONE_ARG_TYPE_LINEAR_*CONSTANT_STEP this is
791 the constant linear step, if arg_type is
792 SIMD_CLONE_ARG_TYPE_LINEAR_*VARIABLE_STEP, this is index of
793 the uniform argument holding the step, otherwise 0. */
794 HOST_WIDE_INT linear_step;
795};
796
797/* Specific data for a SIMD function clone. */
798
800 /* Number of words in the SIMD lane associated with this clone. */
802
803 /* Number of annotated function arguments in `args'. This is
804 usually the number of named arguments in FNDECL. */
805 unsigned int nargs;
807 /* Max hardware vector size in bits for integral vectors. */
810 /* Max hardware vector size in bits for floating point vectors. */
812
813 /* Machine mode of the mask argument(s), if they are to be passed
814 as bitmasks in integer argument(s). VOIDmode if masks are passed
815 as vectors of characteristic type. */
816 machine_mode mask_mode;
817
818 /* The mangling character for a given vector size. This is used
819 to determine the ISA mangling bit as specified in the Intel
820 Vector ABI. */
821 unsigned char vecsize_mangle;
822
823 /* True if this is the masked, in-branch version of the clone,
824 otherwise false. */
825 unsigned int inbranch : 1;
827 /* Doubly linked list of SIMD clones. */
830 /* Original cgraph node the SIMD clones were created for. */
833 /* Annotated function arguments for the original function. */
834 cgraph_simd_clone_arg GTY((length ("%h.nargs"))) args[1];
835};
837/* Function Multiversioning info. */
839 /* The cgraph_node for which the function version info is stored. */
841 /* Chains all the semantically identical function versions. The
842 first function in this chain is the version_info node of the
843 default function. */
845 /* If this version node corresponds to a dispatcher for function
846 versions, this points to the version info node of the default
847 function, the first node in the chain. */
849 /* If this node corresponds to a function version, this points
850 to the dispatcher function decl, which is the function that must
851 be called to execute the right function version at run-time.
852
853 If this cgraph node is a dispatcher (if dispatcher_function is
854 true, in the cgraph_node struct) for function versions, this
855 points to resolver function, which holds the function body of the
856 dispatcher. The dispatcher decl is an alias to the resolver
857 function decl. */
860 /* The assmbly name of the function set before version mangling. */
863
864#define DEFCIFCODE(code, type, string) CIF_ ## code,
865/* Reasons for inlining failures. */
866
868#include "cif-code.def"
869 CIF_N_REASONS
876};
877
879
880struct cgraph_edge_hasher : ggc_ptr_hash<cgraph_edge>
881{
882 typedef gimple *compare_type;
883
884 static hashval_t hash (cgraph_edge *);
885 static hashval_t hash (gimple *);
886 static bool equal (cgraph_edge *, gimple *);
887};
888
889/* The cgraph data structure.
890 Each function decl has assigned cgraph_node listing callees and callers. */
891
892struct GTY((tag ("SYMTAB_FUNCTION"))) cgraph_node : public symtab_node
893{
894 friend class symbol_table;
896 /* Constructor. */
897 explicit cgraph_node ()
903 inlined_to (NULL), rtl (NULL),
904 count (profile_count::uninitialized ()),
905 count_materialization_scale (REG_BR_PROB_BASE), profile_id (0),
906 unit_id (0), tp_first_run (0), thunk (false),
907 used_as_abstract_origin (false),
908 lowered (false), process (false), frequency (NODE_FREQUENCY_NORMAL),
909 only_called_at_startup (false), only_called_at_exit (false),
910 tm_clone (false), dispatcher_function (false),
911 dispatcher_resolver_function (false), is_target_clone (false),
912 calls_comdat_local (false),
913 icf_merged (false), nonfreeing_fn (false), merged_comdat (false),
914 merged_extern_inline (false), parallelized_function (false),
915 split_part (false), indirect_call_target (false), local (false),
916 versionable (false), can_change_signature (false),
917 redefined_extern_inline (false), tm_may_enter_irr (false),
918 ipcp_clone (false), gc_candidate (false),
919 called_by_ifunc_resolver (false), has_omp_variant_constructs (false),
920 m_summary_id (-1)
921 {}
922
923 /* Remove the node from cgraph and all inline clones inlined into it.
924 Skip however removal of FORBIDDEN_NODE and return true if it needs to be
925 removed. This allows to call the function from outer loop walking clone
926 tree. */
927 bool remove_symbol_and_inline_clones (cgraph_node *forbidden_node = NULL);
928
929 /* Record all references from cgraph_node that are taken
930 in statement STMT. */
931 void record_stmt_references (gimple *stmt);
932
933 /* Like cgraph_set_call_stmt but walk the clone tree and update all
934 clones sharing the same function body.
935 When WHOLE_SPECULATIVE_EDGES is true, all three components of
936 speculative edge gets updated. Otherwise we update only direct
937 call. */
938 void set_call_stmt_including_clones (gimple *old_stmt, gcall *new_stmt,
939 bool update_speculative = true);
940
941 /* Walk the alias chain to return the function cgraph_node is alias of.
942 Walk through thunk, too.
943 When AVAILABILITY is non-NULL, get minimal availability in the chain.
944 When REF is non-NULL, assume that reference happens in symbol REF
945 when determining the availability. */
946 cgraph_node *function_symbol (enum availability *avail = NULL,
947 struct symtab_node *ref = NULL);
948
949 /* Walk the alias chain to return the function cgraph_node is alias of.
950 Walk through non virtual thunks, too. Thus we return either a function
951 or a virtual thunk node.
952 When AVAILABILITY is non-NULL, get minimal availability in the chain.
953 When REF is non-NULL, assume that reference happens in symbol REF
954 when determining the availability. */
955 cgraph_node *function_or_virtual_thunk_symbol
956 (enum availability *avail = NULL,
957 struct symtab_node *ref = NULL);
958
959 /* Create node representing clone of N executed COUNT times. Decrease
960 the execution counts from original node too.
961 The new clone will have decl set to DECL that may or may not be the same
962 as decl of N.
963
964 When UPDATE_ORIGINAL is true, the counts are subtracted from the original
965 function's profile to reflect the fact that part of execution is handled
966 by node.
967 When CALL_DUPLICATION_HOOK is true, the ipa passes are acknowledged about
968 the new clone. Otherwise the caller is responsible for doing so later.
969
970 If the new node is being inlined into another one, NEW_INLINED_TO should be
971 the outline function the new one is (even indirectly) inlined to.
972 All hooks will see this in node's inlined_to, when invoked.
973 Should be NULL if the node is not inlined.
974
975 SUFFIX is string that is appended to the original name, it should only be
976 NULL if NEW_INLINED_TO is not NULL or if the clone being created is
977 temporary and a record about it should not be added into the ipa-clones
978 dump file. */
979 cgraph_node *create_clone (tree decl, profile_count count,
980 bool update_original,
981 vec<cgraph_edge *> redirect_callers,
982 bool call_duplication_hook,
983 cgraph_node *new_inlined_to,
984 ipa_param_adjustments *param_adjustments,
985 const char *suffix);
986
987 /* Create callgraph node clone with new declaration. The actual body will be
988 copied later at compilation stage. The name of the new clone will be
989 constructed from the name of the original node, SUFFIX and NUM_SUFFIX. */
990 cgraph_node *create_virtual_clone (const vec<cgraph_edge *> &redirect_callers,
991 vec<ipa_replace_map *, va_gc> *tree_map,
992 ipa_param_adjustments *param_adjustments,
993 const char * suffix, unsigned num_suffix);
994
995 /* Remove the node from the tree of virtual and inline clones and make it a
996 standalone node - not a clone any more. */
997 void remove_from_clone_tree ();
998
999 /* cgraph node being removed from symbol table; see if its entry can be
1000 replaced by other inline clone. */
1001 cgraph_node *find_replacement (struct clone_info *);
1002
1003 /* Create a new cgraph node which is the new version of
1004 callgraph node. REDIRECT_CALLERS holds the callers
1005 edges which should be redirected to point to
1006 NEW_VERSION. ALL the callees edges of the node
1007 are cloned to the new version node. Return the new
1008 version node.
1009
1010 If non-NULL BLOCK_TO_COPY determine what basic blocks
1011 was copied to prevent duplications of calls that are dead
1012 in the clone.
1013
1014 SUFFIX is string that is appended to the original name. */
1015
1016 cgraph_node *create_version_clone (tree new_decl,
1017 vec<cgraph_edge *> redirect_callers,
1018 bitmap bbs_to_copy,
1019 const char *suffix = NULL);
1020
1021 /* Perform function versioning.
1022 Function versioning includes copying of the tree and
1023 a callgraph update (creating a new cgraph node and updating
1024 its callees and callers).
1025
1026 REDIRECT_CALLERS varray includes the edges to be redirected
1027 to the new version.
1028
1029 TREE_MAP is a mapping of tree nodes we want to replace with
1030 new ones (according to results of prior analysis).
1031
1032 If non-NULL PARAM_ADJUSTMENTS determine how function formal parameters
1033 should be modified in the new version and if it should return void.
1034 If non-NULL BLOCK_TO_COPY determine what basic blocks to copy.
1035 If non_NULL NEW_ENTRY determine new entry BB of the clone.
1036 SUFFIX is a string that will be used to create a new name for the new
1037 function.
1038
1039 If TARGET_ATTRIBUTES is non-null, when creating a new declaration,
1040 add the attributes to DECL_ATTRIBUTES. And call valid_attribute_p
1041 that will promote value of the attribute DECL_FUNCTION_SPECIFIC_TARGET
1042 of the declaration.
1043
1044 If VERSION_DECL is set true, use clone_function_name_numbered for the
1045 function clone. Otherwise, use clone_function_name.
1046
1047 Return the new version's cgraph node. */
1048 cgraph_node *create_version_clone_with_body
1049 (vec<cgraph_edge *> redirect_callers,
1050 vec<ipa_replace_map *, va_gc> *tree_map,
1051 ipa_param_adjustments *param_adjustments,
1052 bitmap bbs_to_copy, basic_block new_entry_block, const char *suffix,
1053 tree target_attributes = NULL_TREE, bool version_decl = true);
1054
1055 /* Insert a new cgraph_function_version_info node into cgraph_fnver_htab
1056 corresponding to cgraph_node. */
1057 cgraph_function_version_info *insert_new_function_version (void);
1058
1059 /* Get the cgraph_function_version_info node corresponding to node. */
1060 cgraph_function_version_info *function_version (void);
1061
1062 /* Discover all functions and variables that are trivially needed, analyze
1063 them as well as all functions and variables referred by them */
1064 void analyze (void);
1065
1066 /* Add thunk alias into callgraph. The alias declaration is ALIAS and it
1067 aliases DECL with an adjustments made into the first parameter.
1068 See comments in struct symtab-thunks.h for detail on the parameters. */
1069 cgraph_node * create_thunk (tree alias, tree, bool this_adjusting,
1070 HOST_WIDE_INT fixed_offset,
1071 HOST_WIDE_INT virtual_value,
1072 HOST_WIDE_INT indirect_offset,
1073 tree virtual_offset,
1074 tree real_alias);
1075
1076
1077 /* Return node that alias is aliasing. */
1078 inline cgraph_node *get_alias_target (void);
1079
1080 /* Given function symbol, walk the alias chain to return the function node
1081 is alias of. Do not walk through thunks.
1082 When AVAILABILITY is non-NULL, get minimal availability in the chain.
1083 When REF is non-NULL, assume that reference happens in symbol REF
1084 when determining the availability. */
1085
1086 cgraph_node *ultimate_alias_target (availability *availability = NULL,
1087 symtab_node *ref = NULL);
1088
1089 /* Call expand_thunk on all callers that are thunks and analyze those
1090 nodes that were expanded. */
1091 void expand_all_artificial_thunks ();
1092
1093 /* Assemble thunks and aliases associated to node. */
1094 void assemble_thunks_and_aliases (void);
1095
1096 /* Expand function specified by node. */
1097 void expand (void);
1098
1099 /* Creates a wrapper from cgraph_node to TARGET node. Thunk is used for this
1100 kind of wrapper method. */
1101 void create_wrapper (cgraph_node *target);
1102
1103 /* Verify cgraph nodes of the cgraph node. */
1104 void DEBUG_FUNCTION verify_node (void);
1105
1106 /* Remove function from symbol table. */
1107 void remove (void);
1108
1109 /* Dump call graph node to file F. */
1110 void dump (FILE *f);
1111
1112 /* Dump call graph node to file F. */
1113 void dump_graphviz (FILE *f);
1114
1115 /* Dump call graph node to stderr. */
1116 void DEBUG_FUNCTION debug (void);
1117
1118 /* When doing LTO, read cgraph_node's body from disk if it is not already
1119 present. */
1120 bool get_untransformed_body ();
1121
1122 /* Prepare function body. When doing LTO, read cgraph_node's body from disk
1123 if it is not already present. When some IPA transformations are scheduled,
1124 apply them. */
1125 bool get_body ();
1126
1127 void materialize_clone (void);
1128
1129 /* Release memory used to represent body of function.
1130 Use this only for functions that are released before being translated to
1131 target code (i.e. RTL). Functions that are compiled to RTL and beyond
1132 are free'd in final.cc via free_after_compilation(). */
1133 void release_body (bool keep_arguments = false);
1134
1135 /* Return the DECL_STRUCT_FUNCTION of the function. */
1136 struct function *get_fun () const;
1137
1138 /* Bring cgraph node local. */
1139 void make_local (void);
1140
1141 /* Likewise indicate that a node is having address taken. */
1142 void mark_address_taken (void);
1143
1144 /* Set finalization priority to PRIORITY. */
1145 void set_fini_priority (priority_type priority);
1146
1147 /* Return the finalization priority. */
1148 priority_type get_fini_priority (void);
1149
1150 /* Create edge from a given function to CALLEE in the cgraph. */
1151 cgraph_edge *create_edge (cgraph_node *callee,
1152 gcall *call_stmt, profile_count count,
1153 bool cloning_p = false);
1154
1155 /* Create an indirect edge with a yet-undetermined callee where the call
1156 statement destination is a formal parameter of the caller with index
1157 PARAM_INDEX. */
1158 cgraph_edge *create_indirect_edge (gcall *call_stmt, int ecf_flags,
1159 profile_count count,
1160 bool cloning_p = false);
1161
1162 /* Like cgraph_create_edge walk the clone tree and update all clones sharing
1163 same function body. If clones already have edge for OLD_STMT; only
1164 update the edge same way as cgraph_set_call_stmt_including_clones does. */
1165 void create_edge_including_clones (cgraph_node *callee,
1166 gimple *old_stmt, gcall *stmt,
1167 profile_count count,
1168 cgraph_inline_failed_t reason);
1169
1170 /* Return the callgraph edge representing the GIMPLE_CALL statement
1171 CALL_STMT. */
1172 cgraph_edge *get_edge (gimple *call_stmt);
1173
1174 /* Collect all callers of cgraph_node and its aliases that are known to lead
1175 to NODE (i.e. are not overwritable) and that are not thunks. */
1176 auto_vec<cgraph_edge *> collect_callers (void);
1177
1178 /* Remove all callers from the node. */
1179 void remove_callers (void);
1180
1181 /* Remove all callees from the node. */
1182 void remove_callees (void);
1183
1184 /* Return function availability. See cgraph.h for description of individual
1185 return values. */
1186 enum availability get_availability (symtab_node *ref = NULL);
1187
1188 /* Set TREE_NOTHROW on cgraph_node's decl and on aliases of the node
1189 if any to NOTHROW. */
1190 bool set_nothrow_flag (bool nothrow);
1191
1192 /* SET DECL_IS_MALLOC on cgraph_node's decl and on aliases of the node
1193 if any. */
1194 bool set_malloc_flag (bool malloc_p);
1195
1196 /* SET TREE_THIS_VOLATILE on cgraph_node's decl and on aliases of the node
1197 if any. */
1198 bool set_noreturn_flag (bool noreturn_p);
1199
1200 /* If SET_CONST is true, mark function, aliases and thunks to be ECF_CONST.
1201 If SET_CONST if false, clear the flag.
1202
1203 When setting the flag be careful about possible interposition and
1204 do not set the flag for functions that can be interposed and set pure
1205 flag for functions that can bind to other definition.
1206
1207 Return true if any change was done. */
1208
1209 bool set_const_flag (bool set_const, bool looping);
1210
1211 /* Set DECL_PURE_P on cgraph_node's decl and on aliases of the node
1212 if any to PURE.
1213
1214 When setting the flag, be careful about possible interposition.
1215 Return true if any change was done. */
1216
1217 bool set_pure_flag (bool pure, bool looping);
1218
1219 /* Add attribute ATTR to cgraph_node's decl and on aliases of the node
1220 if any. */
1221 bool add_detected_attribute (const char *attr);
1222
1223 /* Call callback on function and aliases associated to the function.
1224 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1225 skipped. */
1226
1227 bool call_for_symbol_and_aliases (bool (*callback) (cgraph_node *,
1228 void *),
1229 void *data, bool include_overwritable);
1230
1231 /* Call callback on cgraph_node, thunks and aliases associated to NODE.
1232 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
1233 skipped. When EXCLUDE_VIRTUAL_THUNKS is true, virtual thunks are
1234 skipped. */
1235 bool call_for_symbol_thunks_and_aliases (bool (*callback) (cgraph_node *node,
1236 void *data),
1237 void *data,
1238 bool include_overwritable,
1239 bool exclude_virtual_thunks = false);
1240
1241 /* Likewise indicate that a node is needed, i.e. reachable via some
1242 external means. */
1243 inline void mark_force_output (void);
1244
1245 /* Return true when function can be marked local. */
1246 bool local_p (void);
1247
1248 /* Return true if cgraph_node can be made local for API change.
1249 Extern inline functions and C++ COMDAT functions can be made local
1250 at the expense of possible code size growth if function is used in multiple
1251 compilation units. */
1252 bool can_be_local_p (void);
1253
1254 /* Return true when cgraph_node cannot return or throw and thus
1255 it is safe to ignore its side effects for IPA analysis. */
1256 bool cannot_return_p (void);
1257
1258 /* Return true when function cgraph_node and all its aliases are only called
1259 directly.
1260 i.e. it is not externally visible, address was not taken and
1261 it is not used in any other non-standard way. */
1262 bool only_called_directly_p (void);
1263
1264 /* Turn profile to global0. Walk into inlined functions. */
1265 void make_profile_local ();
1266
1267 /* Turn profile to global0. Walk into inlined functions. */
1268 void make_profile_global0 (profile_quality quality);
1269
1270 /* Scale profile by NUM/DEN. Walk into inlined funtion. */
1271 void apply_scale (profile_count num, profile_count den);
1272
1273 /* Scale profile to given IPA_COUNT.
1274 IPA_COUNT should pass ipa_p () with a single exception.
1275 It can be also GUESSED_LOCAL in case we want to
1276 drop any IPA info about the profile. */
1277 void scale_profile_to (profile_count ipa_count);
1278
1279 /* Return true when function is only called directly or it has alias.
1280 i.e. it is not externally visible, address was not taken and
1281 it is not used in any other non-standard way. */
1282 inline bool only_called_directly_or_aliased_p (void);
1283
1284 /* Return true when function cgraph_node can be expected to be removed
1285 from program when direct calls in this compilation unit are removed.
1286
1287 As a special case COMDAT functions are
1288 cgraph_can_remove_if_no_direct_calls_p while the are not
1289 cgraph_only_called_directly_p (it is possible they are called from other
1290 unit)
1291
1292 This function behaves as cgraph_only_called_directly_p because eliminating
1293 all uses of COMDAT function does not make it necessarily disappear from
1294 the program unless we are compiling whole program or we do LTO. In this
1295 case we know we win since dynamic linking will not really discard the
1296 linkonce section.
1297
1298 If WILL_INLINE is true, assume that function will be inlined into all the
1299 direct calls. */
1300 bool will_be_removed_from_program_if_no_direct_calls_p
1301 (bool will_inline = false);
1302
1303 /* Return true when function can be removed from callgraph
1304 if all direct calls and references are eliminated. The function does
1305 not take into account comdat groups. */
1306 bool can_remove_if_no_direct_calls_and_refs_p (void);
1307
1308 /* Return true when function cgraph_node and its aliases can be removed from
1309 callgraph if all direct calls are eliminated.
1310 If WILL_INLINE is true, assume that function will be inlined into all the
1311 direct calls. */
1312 bool can_remove_if_no_direct_calls_p (bool will_inline = false);
1313
1314 /* Return true when callgraph node is a function with Gimple body defined
1315 in current unit. Functions can also be define externally or they
1316 can be thunks with no Gimple representation.
1317
1318 Note that at WPA stage, the function body may not be present in memory. */
1319 inline bool has_gimple_body_p (void);
1320
1321 /* Return true if this node represents a former, i.e. an expanded, thunk. */
1322 bool former_thunk_p (void);
1323
1324 /* Check if function calls comdat local. This is used to recompute
1325 calls_comdat_local flag after function transformations. */
1326 bool check_calls_comdat_local_p ();
1327
1328 /* Return true if function should be optimized for size. */
1329 enum optimize_size_level optimize_for_size_p (void);
1330
1331 /* Dump the callgraph to file F. */
1332 static void dump_cgraph (FILE *f);
1333
1334 /* Dump the call graph to stderr. */
1335 static inline
1336 void debug_cgraph (void)
1337 {
1338 dump_cgraph (stderr);
1339 }
1341 /* Get summary id of the node. */
1342 inline int get_summary_id ()
1343 {
1344 return m_summary_id;
1345 }
1346
1347 /* Adds DECL to the FN_V structure of semantically identical functions. */
1348 static void add_function_version (cgraph_function_version_info *fn_v,
1349 tree decl);
1350
1351 /* Remove the cgraph_function_version_info and cgraph_node for DECL. This
1352 DECL is a duplicate declaration. */
1353 static void delete_function_version_by_decl (tree decl);
1354
1355 static void delete_function_version (cgraph_function_version_info *);
1356
1357 /* Add the function FNDECL to the call graph.
1358 Unlike finalize_function, this function is intended to be used
1359 by middle end and allows insertion of new function at arbitrary point
1360 of compilation. The function can be either in high, low or SSA form
1361 GIMPLE.
1362
1363 The function is assumed to be reachable and have address taken (so no
1364 API breaking optimizations are performed on it).
1365
1366 Main work done by this function is to enqueue the function for later
1367 processing to avoid need the passes to be re-entrant. */
1368 static void add_new_function (tree fndecl, bool lowered);
1370 /* Return callgraph node for given symbol and check it is a function. */
1371 static inline cgraph_node *get (const_tree decl)
1372 {
1373 gcc_checking_assert (TREE_CODE (decl) == FUNCTION_DECL);
1375 }
1376
1377 /* DECL has been parsed. Take it, queue it, compile it at the whim of the
1378 logic in effect. If NO_COLLECT is true, then our caller cannot stand to
1379 have the garbage collector run at the moment. We would need to either
1380 create a new GC context, or just not compile right now. */
1381 static void finalize_function (tree, bool);
1382
1383 /* Return cgraph node assigned to DECL. Create new one when needed. */
1384 static cgraph_node * create (tree decl);
1385
1386 /* Try to find a call graph node for declaration DECL and if it does not
1387 exist or if it corresponds to an inline clone, create a new one. */
1388 static cgraph_node * get_create (tree);
1389
1390 /* Return local info for the compiled function. */
1391 static cgraph_node *local_info_node (tree decl);
1392
1393 /* Return RTL info for the compiled function. */
1394 static struct cgraph_rtl_info *rtl_info (const_tree);
1395
1396 /* Return the cgraph node that has ASMNAME for its DECL_ASSEMBLER_NAME.
1397 Return NULL if there's no such node. */
1398 static cgraph_node *get_for_asmname (tree asmname);
1399
1400 /* Attempt to mark ALIAS as an alias to DECL. Return alias node if
1401 successful and NULL otherwise.
1402 Same body aliases are output whenever the body of DECL is output,
1403 and cgraph_node::get (ALIAS) transparently
1404 returns cgraph_node::get (DECL). */
1405 static cgraph_node * create_same_body_alias (tree alias, tree decl);
1406
1407 /* Verify whole cgraph structure. */
1408 static void DEBUG_FUNCTION verify_cgraph_nodes (void);
1409
1410 /* Verify cgraph, if consistency checking is enabled. */
1411 static inline void checking_verify_cgraph_nodes (void);
1412
1413 /* Worker to bring NODE local. */
1414 static bool make_local (cgraph_node *node, void *);
1415
1416 /* Mark ALIAS as an alias to DECL. DECL_NODE is cgraph node representing
1417 the function body is associated
1418 with (not necessarily cgraph_node (DECL). */
1419 static cgraph_node *create_alias (tree alias, tree target);
1420
1421 /* Return true if NODE has thunk. */
1422 static bool has_thunk_p (cgraph_node *node, void *);
1426 /* List of edges representing indirect calls with a yet undetermined
1427 callee. */
1433 /* For functions with many calls sites it holds map from call expression
1434 to the edge to speed up cgraph_edge function. */
1436 /* Declaration node used to be clone of. */
1438
1439 /* If this is a SIMD clone, this points to the SIMD specific
1440 information for it. */
1442 /* If this function has SIMD clones, this points to the first clone. */
1444
1445 /* Interprocedural passes scheduled to have their transform functions
1446 applied next time we execute local pass on them. We maintain it
1447 per-function in order to allow IPA passes to introduce new functions. */
1449
1450 /* For inline clones this points to the function they will be
1451 inlined into. */
1453
1454 struct cgraph_rtl_info *rtl;
1456 /* Expected number of executions: calculated in profile.cc. */
1458 /* How to scale counts at materialization time; used to merge
1459 LTO units with different number of profile runs. */
1461 /* ID assigned by the profiling. */
1462 unsigned int profile_id;
1463 /* ID of the translation unit. */
1465 /* Time profiler: first run of function. */
1466 int tp_first_run;
1468 /* True when symbol is a thunk. */
1469 unsigned thunk : 1;
1470 /* Set when decl is an abstract function pointed to by the
1471 ABSTRACT_DECL_ORIGIN of a reachable function. */
1473 /* Set once the function is lowered (i.e. its CFG is built). */
1474 unsigned lowered : 1;
1475 /* Set once the function has been instantiated and its callee
1476 lists created. */
1477 unsigned process : 1;
1478 /* How commonly executed the node is. Initialized during branch
1479 probabilities pass. */
1480 ENUM_BITFIELD (node_frequency) frequency : 2;
1481 /* True when function can only be called at startup (from static ctor). */
1483 /* True when function can only be called at startup (from static dtor). */
1484 unsigned only_called_at_exit : 1;
1485 /* True when function is the transactional clone of a function which
1486 is called only from inside transactions. */
1487 /* ?? We should be able to remove this. We have enough bits in
1488 cgraph to calculate it. */
1489 unsigned tm_clone : 1;
1490 /* True if this decl is a dispatcher for function versions. */
1492 /* True if this decl is a resolver for function versions. */
1493 unsigned dispatcher_resolver_function : 1;
1494 /* True this is part of a multiversioned set and this version comes from a
1495 target_clone attribute. Or if this is a dispatched symbol or resolver
1496 and the default version comes from a target_clones. */
1497 unsigned is_target_clone : 1;
1498 /* True if this decl calls a COMDAT-local function. This is set up in
1499 compute_fn_summary and inline_call. */
1501 /* True if node has been created by merge operation in IPA-ICF. */
1502 unsigned icf_merged: 1;
1503 /* True if call to node can't result in a call to free, munmap or
1504 other operation that could make previously non-trapping memory
1505 accesses trapping. */
1506 unsigned nonfreeing_fn : 1;
1507 /* True if there was multiple COMDAT bodies merged by lto-symtab. */
1508 unsigned merged_comdat : 1;
1509 /* True if this def was merged with extern inlines. */
1511 /* True if function was created to be executed in parallel. */
1513 /* True if function is part split out by ipa-split. */
1514 unsigned split_part : 1;
1515 /* True if the function appears as possible target of indirect call. */
1516 unsigned indirect_call_target : 1;
1517 /* Set when function is visible in current compilation unit only and
1518 its address is never taken. */
1519 unsigned local : 1;
1520 /* False when there is something makes versioning impossible. */
1521 unsigned versionable : 1;
1522 /* False when function calling convention and signature cannot be changed.
1523 This is the case when __builtin_apply_args is used. */
1524 unsigned can_change_signature : 1;
1525 /* True when the function has been originally extern inline, but it is
1526 redefined now. */
1528 /* True if the function may enter serial irrevocable mode. */
1529 unsigned tm_may_enter_irr : 1;
1530 /* True if this was a clone created by ipa-cp. */
1531 unsigned ipcp_clone : 1;
1532 /* True if the function should only be emitted if it is used. This flag
1533 is set for local SIMD clones when they are created and cleared if the
1534 vectorizer uses them. */
1535 unsigned gc_candidate : 1;
1536 /* Set if the function is called by an IFUNC resolver. */
1538 /* True if the function contains unresolved OpenMP metadirectives. */
1539 unsigned has_omp_variant_constructs : 1;
1540
1541private:
1543 /* Summary id that is recycled. */
1544 int m_summary_id;
1545
1546 /* Worker for call_for_symbol_and_aliases. */
1547 bool call_for_symbol_and_aliases_1 (bool (*callback) (cgraph_node *,
1548 void *),
1549 void *data, bool include_overwritable);
1550};
1551
1552/* A cgraph node set is a collection of cgraph nodes. A cgraph node
1553 can appear in multiple sets. */
1562
1563struct varpool_node;
1564
1565/* A varpool node set is a collection of varpool nodes. A varpool node
1566 can appear in multiple sets. */
1571};
1573/* Iterator structure for cgraph node sets. */
1577 unsigned index;
1578};
1580/* Iterator structure for varpool node sets. */
1584 unsigned index;
1585};
1586
1587/* Context of polymorphic call. It represent information about the type of
1588 instance that may reach the call. This is used by ipa-devirt walkers of the
1589 type inheritance graph. */
1590
1592public:
1593 /* The called object appears in an object of type OUTER_TYPE
1594 at offset OFFSET. When information is not 100% reliable, we
1595 use SPECULATIVE_OUTER_TYPE and SPECULATIVE_OFFSET. */
1596 HOST_WIDE_INT offset;
1597 HOST_WIDE_INT speculative_offset;
1600 /* True if outer object may be in construction or destruction. */
1602 /* True if outer object may be of derived type. */
1603 unsigned maybe_derived_type : 1;
1604 /* True if speculative outer object may be of derived type. We always
1605 speculate that construction does not happen. */
1606 unsigned speculative_maybe_derived_type : 1;
1607 /* True if the context is invalid and all calls should be redirected
1608 to BUILTIN_UNREACHABLE. */
1609 unsigned invalid : 1;
1610 /* True if the outer type is dynamic. */
1611 unsigned dynamic : 1;
1612
1613 /* Build empty "I know nothing" context. */
1615 /* Build polymorphic call context for indirect call E. */
1617 /* Build polymorphic call context for IP invariant CST.
1618 If specified, OTR_TYPE specify the type of polymorphic call
1619 that takes CST+OFFSET as a parameter. */
1620 ipa_polymorphic_call_context (tree cst, tree otr_type = NULL,
1621 HOST_WIDE_INT offset = 0);
1622 /* Build context for pointer REF contained in FNDECL at statement STMT.
1623 if INSTANCE is non-NULL, return pointer to the object described by
1624 the context. */
1625 ipa_polymorphic_call_context (tree fndecl, tree ref, gimple *stmt,
1626 tree *instance = NULL);
1627
1628 /* Look for vtable stores or constructor calls to work out dynamic type
1629 of memory location. */
1630 bool get_dynamic_type (tree, tree, tree, gimple *, unsigned *);
1631
1632 /* Make context non-speculative. */
1633 void clear_speculation ();
1634
1635 /* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
1636 NULL, the context is set to dummy "I know nothing" setting. */
1637 void clear_outer_type (tree otr_type = NULL);
1638
1639 /* Walk container types and modify context to point to actual class
1640 containing OTR_TYPE (if non-NULL) as base class.
1641 Return true if resulting context is valid.
1642
1643 When CONSIDER_PLACEMENT_NEW is false, reject contexts that may be made
1644 valid only via allocation of new polymorphic type inside by means
1645 of placement new.
1646
1647 When CONSIDER_BASES is false, only look for actual fields, not base types
1648 of TYPE. */
1649 bool restrict_to_inner_class (tree otr_type,
1650 bool consider_placement_new = true,
1651 bool consider_bases = true);
1652
1653 /* Adjust all offsets in contexts by given number of bits. */
1654 void offset_by (HOST_WIDE_INT);
1655 /* Use when we cannot track dynamic type change. This speculatively assume
1656 type change is not happening. */
1657 void possible_dynamic_type_change (bool, tree otr_type = NULL);
1658 /* Assume that both THIS and a given context is valid and strengthen THIS
1659 if possible. Return true if any strengthening was made.
1660 If actual type the context is being used in is known, OTR_TYPE should be
1661 set accordingly. This improves quality of combined result. */
1664
1665 /* Return TRUE if context is fully useless. */
1666 bool useless_p () const;
1667 /* Return TRUE if this context conveys the same information as X. */
1668 bool equal_to (const ipa_polymorphic_call_context &x) const;
1669
1670 /* Dump human readable context to F. If NEWLINE is true, it will be
1671 terminated by a newline. */
1672 void dump (FILE *f, bool newline = true) const;
1673 void DEBUG_FUNCTION debug () const;
1674
1675 /* LTO streaming. */
1676 void stream_out (struct output_block *) const;
1677 void stream_in (class lto_input_block *, class data_in *data_in);
1678
1679private:
1680 bool combine_speculation_with (tree, HOST_WIDE_INT, bool, tree);
1681 bool meet_speculation_with (tree, HOST_WIDE_INT, bool, tree);
1682 void set_by_decl (tree, HOST_WIDE_INT);
1683 bool set_by_invariant (tree, tree, HOST_WIDE_INT);
1684 bool speculation_consistent_p (tree, HOST_WIDE_INT, bool, tree) const;
1685 void make_speculative (tree otr_type = NULL);
1686};
1687
1688/* Structure containing additional information about an indirect call. */
1689
1691{
1692public:
1693 /* When agg_content is set, an offset where the call pointer is located
1694 within the aggregate. */
1695 HOST_WIDE_INT offset;
1696 /* Context of the polymorphic call; use only when POLYMORPHIC flag is set. */
1698 /* OBJ_TYPE_REF_TOKEN of a polymorphic call (if polymorphic is set). */
1699 HOST_WIDE_INT otr_token;
1700 /* Type of the object from OBJ_TYPE_REF_OBJECT. */
1702 /* Index of the parameter that is called. */
1704 /* ECF flags determined from the caller. */
1705 int ecf_flags;
1707 /* Number of speculative call targets, it's less than GCOV_TOPN_VALUES. */
1708 unsigned num_speculative_call_targets : 16;
1709
1710 /* Set when the call is a virtual call with the parameter being the
1711 associated object pointer rather than a simple direct call. */
1712 unsigned polymorphic : 1;
1713 /* Set when the call is a call of a pointer loaded from contents of an
1714 aggregate at offset. */
1715 unsigned agg_contents : 1;
1716 /* Set when this is a call through a member pointer. */
1717 unsigned member_ptr : 1;
1718 /* When the agg_contents bit is set, this one determines whether the
1719 destination is loaded from a parameter passed by reference. */
1720 unsigned by_ref : 1;
1721 /* When the agg_contents bit is set, this one determines whether we can
1722 deduce from the function body that the loaded value from the reference is
1723 never modified between the invocation of the function and the load
1724 point. */
1725 unsigned guaranteed_unmodified : 1;
1726 /* For polymorphic calls this specify whether the virtual table pointer
1727 may have changed in between function entry and the call. */
1728 unsigned vptr_changed : 1;
1730
1731class GTY((chain_next ("%h.next_caller"), chain_prev ("%h.prev_caller"),
1732 for_user)) cgraph_edge
1734public:
1735 friend struct cgraph_node;
1736 friend class symbol_table;
1737
1738 /* Remove EDGE from the cgraph. */
1739 static void remove (cgraph_edge *edge);
1740
1741 /* Change field call_stmt of edge E to NEW_STMT. If UPDATE_SPECULATIVE and E
1742 is any component of speculative edge, then update all components.
1743 Speculations can be resolved in the process and EDGE can be removed and
1744 deallocated. Return the edge that now represents the call. */
1745 static cgraph_edge *set_call_stmt (cgraph_edge *e, gcall *new_stmt,
1746 bool update_speculative = true);
1747
1748 /* Redirect callee of the edge to N. The function does not update underlying
1749 call expression. */
1750 void redirect_callee (cgraph_node *n);
1751
1752 /* If the edge does not lead to a thunk, simply redirect it to N. Otherwise
1753 create one or more equivalent thunks for N and redirect E to the first in
1754 the chain. Note that it is then necessary to call
1755 n->expand_all_artificial_thunks once all callers are redirected. */
1757
1758 /* Make an indirect edge with an unknown callee an ordinary edge leading to
1759 CALLEE. Speculations can be resolved in the process and EDGE can be
1760 removed and deallocated. Return the edge that now represents the
1761 call. */
1763
1764 /* Turn edge into speculative call calling N2. Update
1765 the profile so the direct call is taken COUNT times
1766 with FREQUENCY. speculative_id is used to link direct calls with their
1767 corresponding IPA_REF_ADDR references when representing speculative calls.
1768 */
1770 unsigned int speculative_id = 0);
1771
1772 /* Speculative call consists of an indirect edge and one or more
1773 direct edge+ref pairs. Speculative will expand to the following sequence:
1774
1775 if (call_dest == target1) // reference to target1
1776 target1 (); // direct call to target1
1777 else if (call_dest == target2) // reference to targt2
1778 target2 (); // direct call to target2
1779 else
1780 call_dest (); // indirect call
1781
1782 Before the expansion we will have indirect call and the direct call+ref
1783 pairs all linked to single statement.
1784
1785 Note that ref may point to different symbol than the corresponding call
1786 becuase the speculated edge may have been optimized (redirected to
1787 a clone) or inlined.
1788
1789 Given an edge which is part of speculative call, return the first
1790 direct call edge in the speculative call sequence.
1791
1792 In the example above called on any cgraph edge in the sequence it will
1793 return direct call to target1. */
1795
1796 /* Return next speculative call target or NULL if there is none.
1797 All targets are required to form an interval in the callee list.
1799 In example above, if called on call to target1 it will return call to
1800 target2. */
1802 {
1803 cgraph_edge *e = this;
1805
1806 if (e->next_callee && e->next_callee->speculative
1807 && e->next_callee->call_stmt == e->call_stmt
1808 && e->next_callee->lto_stmt_uid == e->lto_stmt_uid)
1809 return e->next_callee;
1810 return NULL;
1811 }
1813 /* When called on any edge in the speculative call return the (unique)
1814 indirect call edge in the speculative call sequence. */
1816 {
1818 if (!callee)
1819 return this;
1820 for (cgraph_edge *e2 = caller->indirect_calls;
1821 true; e2 = e2->next_callee)
1822 if (e2->speculative
1823 && call_stmt == e2->call_stmt
1824 && lto_stmt_uid == e2->lto_stmt_uid)
1825 return e2;
1826 }
1827
1828 /* When called on any edge in speculative call and when given any target
1829 of ref which is speculated to it returns the corresponding direct call.
1830
1831 In example above if called on function target2 it will return call to
1832 target2. */
1833 cgraph_edge *speculative_call_for_target (cgraph_node *);
1835 /* Return REF corresponding to direct call in the specualtive call
1836 sequence. */
1838 {
1839 ipa_ref *ref;
1840
1842 for (unsigned int i = 0; caller->iterate_reference (i, ref); i++)
1843 if (ref->speculative && ref->speculative_id == speculative_id
1844 && ref->stmt == (gimple *)call_stmt
1845 && ref->lto_stmt_uid == lto_stmt_uid)
1846 return ref;
1847 gcc_unreachable ();
1848 }
1849
1850 /* Speculative call edge turned out to be direct call to CALLEE_DECL. Remove
1851 the speculative call sequence and return edge representing the call, the
1852 original EDGE can be removed and deallocated. It is up to caller to
1853 redirect the call as appropriate. Return the edge that now represents the
1854 call.
1855
1856 For "speculative" indirect call that contains multiple "speculative"
1857 targets (i.e. edge->indirect_info->num_speculative_call_targets > 1),
1858 decrease the count and only remove current direct edge.
1859
1860 If no speculative direct call left to the speculative indirect call, remove
1861 the speculative of both the indirect call and corresponding direct edge.
1862
1863 It is up to caller to iteratively resolve each "speculative" direct call
1864 and redirect the call as appropriate. */
1865 static cgraph_edge *resolve_speculation (cgraph_edge *edge,
1866 tree callee_decl = NULL);
1867
1868 /* If necessary, change the function declaration in the call statement
1869 associated with edge E so that it corresponds to the edge callee.
1870 Speculations can be resolved in the process and EDGE can be removed and
1871 deallocated.
1872
1873 The edge could be one of speculative direct call generated from speculative
1874 indirect call. In this circumstance, decrease the speculative targets
1875 count (i.e. num_speculative_call_targets) and redirect call stmt to the
1876 corresponding i-th target. If no speculative direct call left to the
1877 speculative indirect call, remove "speculative" of the indirect call and
1878 also redirect stmt to it's final direct target.
1879
1880 When called from within tree-inline, KILLED_SSAs has to contain the
1881 pointer to killed_new_ssa_names within the copy_body_data structure and
1882 SSAs discovered to be useless (if LHS is removed) will be added to it,
1883 otherwise it needs to be NULL.
1884
1885 It is up to caller to iteratively transform each "speculative"
1886 direct call as appropriate. */
1887 static gimple *redirect_call_stmt_to_callee (cgraph_edge *e,
1888 hash_set <tree>
1889 *killed_ssas = nullptr);
1890
1891 /* Create clone of edge in the node N represented
1892 by CALL_EXPR the callgraph. */
1893 cgraph_edge * clone (cgraph_node *n, gcall *call_stmt, unsigned stmt_uid,
1895 bool update_original);
1896
1897 /* Verify edge count and frequency. */
1898 bool verify_count ();
1899
1900 /* Return true when call of edge cannot lead to return from caller
1901 and thus it is safe to ignore its side effects for IPA analysis
1902 when computing side effects of the caller. */
1903 bool cannot_lead_to_return_p (void);
1904
1905 /* Return true when the edge represents a direct recursion. */
1906 bool recursive_p (void);
1907
1908 /* Return true if the edge may be considered hot after scalling its count. */
1909 bool maybe_hot_p ();
1910
1911 /* Return true if the edge may be considered hot after scalling its count
1912 (i.e. assume that optimization would reduce runtime for callee,
1913 possibly significantly). */
1914 bool maybe_hot_p (sreal scale);
1915
1916 /* Get unique identifier of the edge. */
1917 inline int get_uid ()
1918 {
1919 return m_uid;
1921
1922 /* Get summary id of the edge. */
1923 inline int get_summary_id ()
1924 {
1925 return m_summary_id;
1926 }
1927
1928 /* Rebuild cgraph edges for current function node. This needs to be run after
1929 passes that don't update the cgraph. */
1930 static unsigned int rebuild_edges (void);
1931
1932 /* Rebuild cgraph references for current function node. This needs to be run
1933 after passes that don't update the cgraph. */
1934 static void rebuild_references (void);
1935
1936 /* During LTO stream in this can be used to check whether call can possibly
1937 be internal to the current translation unit. */
1938 bool possibly_call_in_translation_unit_p (void);
1939
1940 /* Return num_speculative_targets of this edge. */
1943 /* Expected number of executions: calculated in profile.cc. */
1952 /* Additional information about an indirect call. Not cleared when an edge
1953 becomes direct. */
1955 void *GTY ((skip (""))) aux;
1956 /* When equal to CIF_OK, inline this call. Otherwise, points to the
1957 explanation why function was not inlined. */
1959 /* The stmt_uid of call_stmt. This is used by LTO to recover the call_stmt
1960 when the function is serialized in. */
1961 unsigned int lto_stmt_uid;
1962 /* speculative id is used to link direct calls with their corresponding
1963 IPA_REF_ADDR references when representing speculative calls. */
1964 unsigned int speculative_id : 16;
1965 /* Whether this edge was made direct by indirect inlining. */
1966 unsigned int indirect_inlining_edge : 1;
1967 /* Whether this edge describes an indirect call with an undetermined
1968 callee. */
1969 unsigned int indirect_unknown_callee : 1;
1970 /* Whether this edge is still a dangling */
1971 /* True if the corresponding CALL stmt cannot be inlined. */
1972 unsigned int call_stmt_cannot_inline_p : 1;
1973 /* Can this call throw externally? */
1974 unsigned int can_throw_external : 1;
1975 /* Edges with SPECULATIVE flag represents indirect calls that was
1976 speculatively turned into direct (i.e. by profile feedback).
1977 The final code sequence will have form:
1978
1979 if (call_target == expected_fn)
1980 expected_fn ();
1981 else
1982 call_target ();
1983
1984 Every speculative call is represented by three components attached
1985 to a same call statement:
1986 1) a direct call (to expected_fn)
1987 2) an indirect call (to call_target)
1988 3) a IPA_REF_ADDR reference to expected_fn.
1990 Optimizers may later redirect direct call to clone, so 1) and 3)
1991 do not need to necessarily agree with destination. */
1992 unsigned int speculative : 1;
1993 /* Set to true when caller is a constructor or destructor of polymorphic
1994 type. */
1995 unsigned in_polymorphic_cdtor : 1;
1996
1997 /* Return true if call must bind to current definition. */
1998 bool binds_to_current_def_p ();
1999
2000 /* Expected frequency of executions within the function.
2001 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
2002 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
2003 int frequency ();
2004
2005 /* Expected frequency of executions within the function. */
2007
2008 /* Expected frequency of executions within the function.
2009 If edge is speculative, sum all its indirect targets. */
2011private:
2012 /* Unique id of the edge. */
2014
2015 /* Summary id that is recycled. */
2016 int m_summary_id;
2017
2018 /* Remove the edge from the list of the callers of the callee. */
2019 void remove_caller (void);
2020
2021 /* Remove the edge from the list of the callees of the caller. */
2022 void remove_callee (void);
2023
2024 /* Set callee N of call graph edge and add it to the corresponding set of
2025 callers. */
2026 void set_callee (cgraph_node *n);
2027
2028 /* Output flags of edge to a file F. */
2029 void dump_edge_flags (FILE *f);
2030
2031 /* Dump edge to stderr. */
2032 void DEBUG_FUNCTION debug (void);
2033
2034 /* Verify that call graph edge corresponds to DECL from the associated
2035 statement. Return true if the verification should fail. */
2036 bool verify_corresponds_to_fndecl (tree decl);
2038
2039#define CGRAPH_FREQ_BASE 1000
2040#define CGRAPH_FREQ_MAX 100000
2041
2042/* The varpool data structure.
2043 Each static variable decl has assigned varpool_node. */
2044
2045struct GTY((tag ("SYMTAB_VARIABLE"))) varpool_node : public symtab_node
2046{
2047 /* Constructor. */
2048 explicit varpool_node ()
2051 {}
2052
2053 /* Dump given varpool node to F. */
2054 void dump (FILE *f);
2055
2056 /* Dump given varpool node to stderr. */
2057 void DEBUG_FUNCTION debug (void);
2058
2059 /* Remove variable from symbol table. */
2060 void remove (void);
2061
2062 /* Remove node initializer when it is no longer needed. */
2063 void remove_initializer (void);
2064
2065 void analyze (void);
2066
2067 /* Return variable availability. */
2069
2070 /* When doing LTO, read variable's constructor from disk if
2071 it is not already present. */
2072 tree get_constructor (void);
2073
2074 /* Return true if variable has constructor that can be used for folding. */
2075 bool ctor_useable_for_folding_p (void);
2076
2077 /* For given variable pool node, walk the alias chain to return the function
2078 the variable is alias of. Do not walk through thunks.
2079 When AVAILABILITY is non-NULL, get minimal availability in the chain.
2080 When REF is non-NULL, assume that reference happens in symbol REF
2081 when determining the availability. */
2084
2085 /* Return node that alias is aliasing. */
2086 inline varpool_node *get_alias_target (void);
2087
2088 /* Output one variable, if necessary. Return whether we output it. */
2089 bool assemble_decl (void);
2090
2091 /* For variables in named sections make sure get_variable_section
2092 is called before we switch to those sections. Then section
2093 conflicts between read-only and read-only requiring relocations
2094 sections can be resolved. */
2095 void finalize_named_section_flags (void);
2096
2097 /* Call callback on varpool symbol and aliases associated to varpool symbol.
2098 When INCLUDE_OVERWRITABLE is false, overwritable aliases and thunks are
2099 skipped. */
2100 bool call_for_symbol_and_aliases (bool (*callback) (varpool_node *, void *),
2101 void *data,
2102 bool include_overwritable);
2103
2104 /* Return true when variable should be considered externally visible. */
2105 bool externally_visible_p (void);
2106
2107 /* Return true when all references to variable must be visible
2108 in ipa_ref_list.
2109 i.e. if the variable is not externally visible or not used in some magic
2110 way (asm statement or such).
2111 The magic uses are all summarized in force_output flag. */
2112 inline bool all_refs_explicit_p ();
2113
2114 /* Return true when variable can be removed from variable pool
2115 if all direct calls are eliminated. */
2116 inline bool can_remove_if_no_refs_p (void);
2117
2118 /* Add the variable DECL to the varpool.
2119 Unlike finalize_decl function is intended to be used
2120 by middle end and allows insertion of new variable at arbitrary point
2121 of compilation. */
2122 static void add (tree decl);
2123
2124 /* Return varpool node for given symbol and check it is a function. */
2125 static inline varpool_node *get (const_tree decl);
2126
2127 /* Mark DECL as finalized. By finalizing the declaration, frontend instruct
2128 the middle end to output the variable to asm file, if needed or externally
2129 visible. */
2130 static void finalize_decl (tree decl);
2131
2132 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2133 Extra name aliases are output whenever DECL is output. */
2135
2136 /* Attempt to mark ALIAS as an alias to DECL. Return TRUE if successful.
2137 Extra name aliases are output whenever DECL is output. */
2138 static varpool_node * create_alias (tree, tree);
2139
2140 /* Dump the variable pool to F. */
2141 static void dump_varpool (FILE *f);
2142
2143 /* Dump the variable pool to stderr. */
2144 static void DEBUG_FUNCTION debug_varpool (void);
2145
2146 /* Allocate new callgraph node and insert it into basic data structures. */
2147 static varpool_node *create_empty (void);
2148
2149 /* Return varpool node assigned to DECL. Create new one when needed. */
2150 static varpool_node *get_create (tree decl);
2151
2152 /* Given an assembler name, lookup node. */
2154
2155 /* Set when variable is scheduled to be assembled. */
2156 unsigned output : 1;
2158 /* Set if the variable is dynamically initialized, except for
2159 function local statics. */
2160 unsigned dynamically_initialized : 1;
2161
2162 ENUM_BITFIELD(tls_model) tls_model : 3;
2163
2164 /* Set if the variable is known to be used by single function only.
2165 This is computed by ipa_single_use pass and used by late optimizations
2166 in places where optimization would be valid for local static variable
2167 if we did not do any inter-procedural code movement. */
2168 unsigned used_by_single_function : 1;
2169
2170private:
2171 /* Assemble thunks and aliases associated to varpool node. */
2172 void assemble_aliases (void);
2173
2174 /* Worker for call_for_node_and_aliases. */
2175 bool call_for_symbol_and_aliases_1 (bool (*callback) (varpool_node *, void *),
2176 void *data,
2177 bool include_overwritable);
2178};
2180/* Every top level asm statement is put into a asm_node. */
2182struct GTY(()) asm_node {
2183 /* Next asm node. */
2184 asm_node *next;
2185 /* String for this asm node. */
2186 tree asm_str;
2187 /* Ordering of all cgraph nodes. */
2188 int order;
2189};
2190
2191/* Report whether or not THIS symtab node is a function, aka cgraph_node. */
2192
2193template <>
2194template <>
2195inline bool
2197{
2198 return p && p->type == SYMTAB_FUNCTION;
2199}
2200
2201/* Report whether or not THIS symtab node is a variable, aka varpool_node. */
2202
2203template <>
2204template <>
2205inline bool
2207{
2208 return p && p->type == SYMTAB_VARIABLE;
2211typedef void (*cgraph_edge_hook)(cgraph_edge *, void *);
2212typedef void (*cgraph_node_hook)(cgraph_node *, void *);
2213typedef void (*varpool_node_hook)(varpool_node *, void *);
2214typedef void (*cgraph_2edge_hook)(cgraph_edge *, cgraph_edge *, void *);
2215typedef void (*cgraph_2node_hook)(cgraph_node *, cgraph_node *, void *);
2216
2223/* Map from a symbol to initialization/finalization priorities. */
2224struct GTY(()) symbol_priority_map {
2227};
2228
2230{
2231 /* Frontend is parsing and finalizing functions. */
2232 PARSING,
2233 /* Callgraph is being constructed. It is safe to add new functions. */
2235 /* Callgraph is being streamed-in at LTO time. */
2237 /* Callgraph is built and early IPA passes are being run. */
2238 IPA,
2239 /* Callgraph is built and all functions are transformed to SSA form. */
2241 /* All inline decisions are done; it is now possible to remove extern inline
2242 functions and virtual call targets. */
2244 /* Functions are now ordered and being passed to RTL expanders. */
2245 EXPANSION,
2246 /* All cgraph expansion is done. */
2248};
2250struct asmname_hasher : ggc_ptr_hash <symtab_node>
2251{
2252 typedef const_tree compare_type;
2253
2254 static hashval_t hash (symtab_node *n);
2255 static bool equal (symtab_node *n, const_tree t);
2256};
2257
2258/* Core summaries maintained about symbols. */
2260struct thunk_info;
2261template <class T> class function_summary;
2262typedef function_summary <thunk_info *> thunk_summary;
2264struct clone_info;
2265template <class T> class function_summary;
2266typedef function_summary <clone_info *> clone_summary;
2267
2268class GTY((tag ("SYMTAB"))) symbol_table
2270public:
2271 friend struct symtab_node;
2289 {
2290 }
2291
2292 /* Initialize callgraph dump file. */
2293 void initialize (void);
2294
2295 /* Register a top-level asm statement ASM_STR. */
2296 inline asm_node *finalize_toplevel_asm (tree asm_str);
2297
2298 /* Analyze the whole compilation unit once it is parsed completely. */
2299 void finalize_compilation_unit (void);
2300
2301 /* C++ frontend produce same body aliases all over the place, even before PCH
2302 gets streamed out. It relies on us linking the aliases with their function
2303 in order to do the fixups, but ipa-ref is not PCH safe. Consequently we
2304 first produce aliases without links, but once C++ FE is sure it won't
2305 stream PCH we build the links via this function. */
2306 void process_same_body_aliases (void);
2307
2308 /* Perform simple optimizations based on callgraph. */
2309 void compile (void);
2310
2311 /* Process CGRAPH_NEW_FUNCTIONS and perform actions necessary to add these
2312 functions into callgraph in a way so they look like ordinary reachable
2313 functions inserted into callgraph already at construction time. */
2314 void process_new_functions (void);
2315
2316 /* Register a symbol NODE. */
2317 inline void register_symbol (symtab_node *node);
2318
2319 inline void
2320 clear_asm_symbols (void)
2321 {
2322 asmnodes = NULL;
2324 }
2325
2326 /* Perform reachability analysis and reclaim all unreachable nodes. */
2327 bool remove_unreachable_nodes (FILE *file);
2328
2329 /* Optimization of function bodies might've rendered some variables as
2330 unnecessary so we want to avoid these from being compiled. Re-do
2331 reachability starting from variables that are either externally visible
2332 or was referred from the asm output routines. */
2333 void remove_unreferenced_decls (void);
2334
2335 /* Unregister a symbol NODE. */
2336 inline void unregister (symtab_node *node);
2337
2338 /* Allocate new callgraph node and insert it into basic data structures. */
2339 cgraph_node *create_empty (void);
2340
2341 /* Release a callgraph NODE. */
2342 void release_symbol (cgraph_node *node);
2343
2344 /* Output all variables enqueued to be assembled. */
2345 bool output_variables (void);
2346
2347 /* Weakrefs may be associated to external decls and thus not output
2348 at expansion time. Emit all necessary aliases. */
2349 void output_weakrefs (void);
2350
2351 /* Return first static symbol with definition. */
2352 inline symtab_node *first_symbol (void);
2354 /* Return first assembler symbol. */
2355 inline asm_node *
2356 first_asm_symbol (void)
2357 {
2358 return asmnodes;
2359 }
2360
2361 /* Return first static symbol with definition. */
2362 inline symtab_node *first_defined_symbol (void);
2363
2364 /* Return first variable. */
2365 inline varpool_node *first_variable (void);
2366
2367 /* Return next variable after NODE. */
2368 inline varpool_node *next_variable (varpool_node *node);
2369
2370 /* Return first static variable with initializer. */
2371 inline varpool_node *first_static_initializer (void);
2372
2373 /* Return next static variable with initializer after NODE. */
2374 inline varpool_node *next_static_initializer (varpool_node *node);
2375
2376 /* Return first static variable with definition. */
2377 inline varpool_node *first_defined_variable (void);
2378
2379 /* Return next static variable with definition after NODE. */
2380 inline varpool_node *next_defined_variable (varpool_node *node);
2381
2382 /* Return first function with body defined. */
2383 inline cgraph_node *first_defined_function (void);
2384
2385 /* Return next function with body defined after NODE. */
2386 inline cgraph_node *next_defined_function (cgraph_node *node);
2387
2388 /* Return first function. */
2389 inline cgraph_node *first_function (void);
2390
2391 /* Return next function. */
2392 inline cgraph_node *next_function (cgraph_node *node);
2393
2394 /* Return first function with body defined. */
2395 cgraph_node *first_function_with_gimple_body (void);
2396
2397 /* Return next reachable static variable with initializer after NODE. */
2398 inline cgraph_node *next_function_with_gimple_body (cgraph_node *node);
2399
2400 /* Register HOOK to be called with DATA on each removed edge. */
2401 cgraph_edge_hook_list *add_edge_removal_hook (cgraph_edge_hook hook,
2402 void *data);
2403
2404 /* Remove ENTRY from the list of hooks called on removing edges. */
2405 void remove_edge_removal_hook (cgraph_edge_hook_list *entry);
2406
2407 /* Register HOOK to be called with DATA on each removed node. */
2408 cgraph_node_hook_list *add_cgraph_removal_hook (cgraph_node_hook hook,
2409 void *data);
2410
2411 /* Remove ENTRY from the list of hooks called on removing nodes. */
2412 void remove_cgraph_removal_hook (cgraph_node_hook_list *entry);
2413
2414 /* Register HOOK to be called with DATA on each removed node. */
2415 varpool_node_hook_list *add_varpool_removal_hook (varpool_node_hook hook,
2416 void *data);
2417
2418 /* Remove ENTRY from the list of hooks called on removing nodes. */
2419 void remove_varpool_removal_hook (varpool_node_hook_list *entry);
2420
2421 /* Register HOOK to be called with DATA on each inserted node. */
2422 cgraph_node_hook_list *add_cgraph_insertion_hook (cgraph_node_hook hook,
2423 void *data);
2424
2425 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2426 void remove_cgraph_insertion_hook (cgraph_node_hook_list *entry);
2427
2428 /* Register HOOK to be called with DATA on each inserted node. */
2429 varpool_node_hook_list *add_varpool_insertion_hook (varpool_node_hook hook,
2430 void *data);
2431
2432 /* Remove ENTRY from the list of hooks called on inserted nodes. */
2433 void remove_varpool_insertion_hook (varpool_node_hook_list *entry);
2434
2435 /* Register HOOK to be called with DATA on each duplicated edge. */
2436 cgraph_2edge_hook_list *add_edge_duplication_hook (cgraph_2edge_hook hook,
2437 void *data);
2438 /* Remove ENTRY from the list of hooks called on duplicating edges. */
2439 void remove_edge_duplication_hook (cgraph_2edge_hook_list *entry);
2440
2441 /* Register HOOK to be called with DATA on each duplicated node. */
2442 cgraph_2node_hook_list *add_cgraph_duplication_hook (cgraph_2node_hook hook,
2443 void *data);
2444
2445 /* Remove ENTRY from the list of hooks called on duplicating nodes. */
2446 void remove_cgraph_duplication_hook (cgraph_2node_hook_list *entry);
2447
2448 /* Call all edge removal hooks. */
2449 void call_edge_removal_hooks (cgraph_edge *e);
2450
2451 /* Call all node insertion hooks. */
2452 void call_cgraph_insertion_hooks (cgraph_node *node);
2453
2454 /* Call all node removal hooks. */
2455 void call_cgraph_removal_hooks (cgraph_node *node);
2456
2457 /* Call all node duplication hooks. */
2458 void call_cgraph_duplication_hooks (cgraph_node *node, cgraph_node *node2);
2459
2460 /* Call all edge duplication hooks. */
2461 void call_edge_duplication_hooks (cgraph_edge *cs1, cgraph_edge *cs2);
2462
2463 /* Call all node removal hooks. */
2464 void call_varpool_removal_hooks (varpool_node *node);
2465
2466 /* Call all node insertion hooks. */
2467 void call_varpool_insertion_hooks (varpool_node *node);
2468
2469 /* Arrange node to be first in its entry of assembler_name_hash. */
2470 void symtab_prevail_in_asm_name_hash (symtab_node *node);
2471
2472 /* Initialize asm name hash unless. */
2473 void symtab_initialize_asm_name_hash (void);
2474
2475 /* Set the DECL_ASSEMBLER_NAME and update symtab hashtables. */
2477
2478 /* Dump symbol table to F. */
2479 void dump (FILE *f);
2480
2481 /* Dump symbol table to F in graphviz format. */
2482 void dump_graphviz (FILE *f);
2483
2484 /* Dump symbol table to stderr. */
2486
2487 /* Assign a new summary ID for the callgraph NODE. */
2488 inline int assign_summary_id (cgraph_node *node)
2489 {
2490 if (!cgraph_released_summary_ids.is_empty ())
2492 else
2494
2495 return node->m_summary_id;
2497
2498 /* Assign a new summary ID for the callgraph EDGE. */
2499 inline int assign_summary_id (cgraph_edge *edge)
2500 {
2501 if (!edge_released_summary_ids.is_empty ())
2502 edge->m_summary_id = edge_released_summary_ids.pop ();
2503 else
2504 edge->m_summary_id = edges_max_summary_id++;
2505
2506 return edge->m_summary_id;
2507 }
2508
2509 /* Return true if assembler names NAME1 and NAME2 leads to the same symbol
2510 name. */
2511 static bool assembler_names_equal_p (const char *name1, const char *name2);
2513 int cgraph_count;
2517 int edges_count;
2518 int edges_max_uid;
2520
2521 /* Vector of released summary IDS for cgraph nodes. */
2523
2524 /* Vector of released summary IDS for cgraph nodes. */
2526
2527 /* Return symbol used to separate symbol name from suffix. */
2530 symtab_node* GTY(()) nodes;
2531 asm_node* GTY(()) asmnodes;
2533
2534 /* The order index of the next symtab node to be created. This is
2535 used so that we can sort the cgraph nodes in order by when we saw
2536 them, to support -fno-toplevel-reorder. */
2538
2539 /* Maximal unit ID used. */
2541
2542 /* Set when whole unit has been analyzed so we can access global info. */
2543 bool global_info_ready;
2544 /* What state callgraph is in right now. */
2545 enum symtab_state state;
2546 /* Set when the cgraph is fully build and the basic flags are computed. */
2548
2550
2551 /* Hash table used to hold sections. */
2553
2554 /* Hash table used to convert assembler names into nodes. */
2556
2557 /* Hash table used to hold init priorities. */
2560 FILE* GTY ((skip)) dump_file;
2562 FILE* GTY ((skip)) ipa_clones_dump_file;
2563
2565
2566 /* Thunk annotations. */
2568
2569 /* Virtual clone annotations. */
2571
2572private:
2573 /* Allocate a cgraph_edge structure and fill it with data according to the
2574 parameters of which only CALLEE can be NULL (when creating an indirect
2575 call edge). CLONING_P should be set if properties that are copied from an
2576 original edge should not be calculated. */
2578 gcall *call_stmt, profile_count count,
2579 bool indir_unknown_callee, bool cloning_p);
2580
2581 /* Put the edge onto the free list. */
2582 void free_edge (cgraph_edge *e);
2583
2584 /* Insert NODE to assembler name hash. */
2585 void insert_to_assembler_name_hash (symtab_node *node, bool with_clones);
2586
2587 /* Remove NODE from assembler name hash. */
2588 void unlink_from_assembler_name_hash (symtab_node *node, bool with_clones);
2589
2590 /* Hash asmnames ignoring the user specified marks. */
2591 static hashval_t decl_assembler_name_hash (const_tree asmname);
2592
2593 /* Compare ASMNAME with the DECL_ASSEMBLER_NAME of DECL. */
2594 static bool decl_assembler_name_equal (tree decl, const_tree asmname);
2595
2596 friend struct asmname_hasher;
2597
2598 /* List of hooks triggered when an edge is removed. */
2600 /* List of hooks trigger_red when a cgraph node is removed. */
2602 /* List of hooks triggered when an edge is duplicated. */
2604 /* List of hooks triggered when a node is duplicated. */
2606 /* List of hooks triggered when an function is inserted. */
2608 /* List of hooks triggered when an variable is inserted. */
2610 /* List of hooks triggered when a node is removed. */
2612};
2613
2614extern GTY(()) symbol_table *symtab;
2615
2617
2618inline hashval_t
2620{
2622 (DECL_ASSEMBLER_NAME (n->decl));
2624
2625inline bool
2627{
2628 return symbol_table::decl_assembler_name_equal (n->decl, t);
2629}
2630
2631/* In cgraph.cc */
2632void cgraph_cc_finalize (void);
2634cgraph_indirect_call_info *cgraph_allocate_init_indirect_info (void);
2635
2636void cgraph_update_edges_for_call_stmt (gimple *, tree, gimple *);
2638
2641
2642/* In cgraphunit.cc */
2643void cgraphunit_cc_finalize (void);
2644int tp_first_run_node_cmp (const void *pa, const void *pb);
2645
2646/* In symtab-thunks.cc */
2647void symtab_thunks_cc_finalize (void);
2648
2649/* Initialize datastructures so DECL is a function in lowered gimple form.
2650 IN_SSA is true if the gimple is in SSA. */
2651basic_block init_lowered_empty_function (tree, bool, profile_count);
2652
2653tree thunk_adjust (gimple_stmt_iterator *, tree, bool, HOST_WIDE_INT, tree,
2654 HOST_WIDE_INT);
2655/* In cgraphclones.cc */
2656
2657tree clone_function_name_numbered (const char *name, const char *suffix);
2658tree clone_function_name_numbered (tree decl, const char *suffix);
2659tree clone_function_name (const char *name, const char *suffix,
2660 unsigned long number);
2661tree clone_function_name (tree decl, const char *suffix,
2662 unsigned long number);
2663tree clone_function_name (tree decl, const char *suffix);
2664tree clone_identifier (tree decl, const char *suffix,
2665 bool filter_suffix = false);
2666
2667void tree_function_versioning (tree, tree, vec<ipa_replace_map *, va_gc> *,
2668 ipa_param_adjustments *,
2669 bool, bitmap, basic_block);
2670
2671void dump_callgraph_transformation (const cgraph_node *original,
2672 const cgraph_node *clone,
2673 const char *suffix);
2674void set_new_clone_decl_and_node_flags (cgraph_node *new_node);
2675/* In cgraphbuild.cc */
2678
2679/* In ipa.cc */
2680void cgraph_build_static_cdtor (char which, tree body, int priority);
2681bool ipa_discover_variable_flags (void);
2682
2683/* In varpool.cc */
2685
2686/* In ipa-inline-analysis.cc */
2687void initialize_inline_failed (struct cgraph_edge *);
2688bool speculation_useful_p (struct cgraph_edge *e, bool anticipate_inlining);
2689
2690/* Return true when the symbol is real symbol, i.e. it is not inline clone
2691 or abstract function kept for debug info purposes only. */
2692inline bool
2694{
2695 cgraph_node *cnode;
2696
2697 if (DECL_ABSTRACT_P (decl))
2698 return false;
2700 return false;
2701 if (!is_a <cgraph_node *> (this))
2702 return true;
2703 cnode = dyn_cast <cgraph_node *> (this);
2704 if (cnode->inlined_to)
2705 return false;
2706 return true;
2707}
2708
2709/* Return true if DECL should have entry in symbol table if used.
2710 Those are functions and static & external variables. */
2711
2712inline bool
2714{
2715 return (TREE_CODE (decl) == FUNCTION_DECL
2716 || (VAR_P (decl)
2717 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))));
2719
2720inline bool
2722{
2723 symtab_node *source = this;
2724
2725 if (cgraph_node *cn = dyn_cast <cgraph_node *> (target))
2726 {
2727 if (cn->inlined_to)
2728 source = cn->inlined_to;
2729 }
2730 if (cgraph_node *cn = dyn_cast <cgraph_node *> (target))
2731 {
2732 if (cn->inlined_to)
2733 target = cn->inlined_to;
2734 }
2735
2736 return source->get_comdat_group () == target->get_comdat_group ();
2737}
2738
2739/* Return node that alias is aliasing. */
2740
2741inline symtab_node *
2743{
2744 ipa_ref *ref = NULL;
2745 iterate_reference (0, ref);
2747 return ref->referred;
2748}
2749
2750/* Return the DECL (or identifier) that alias is aliasing. Unlike the above,
2751 this works whether or not the alias has been analyzed already. */
2752
2753inline tree
2755{
2756 if (alias_target)
2757 return alias_target;
2758 return get_alias_target ()->decl;
2759}
2760
2761/* Return next reachable static symbol with initializer after the node. */
2762
2763inline symtab_node *
2765{
2766 symtab_node *node1 = next;
2767
2768 for (; node1; node1 = node1->next)
2769 if (node1->definition)
2770 return node1;
2771
2772 return NULL;
2773}
2774
2775/* Iterates I-th reference in the list, REF is also set. */
2776
2777inline ipa_ref *
2779{
2780 ref_list.references.iterate (i, &ref);
2781
2782 return ref;
2783}
2784
2785/* Iterates I-th referring item in the list, REF is also set. */
2786
2787inline ipa_ref *
2789{
2790 ref_list.referring.iterate (i, &ref);
2791
2792 return ref;
2793}
2794
2795/* Iterates I-th referring alias item in the list, REF is also set. */
2796
2797inline ipa_ref *
2799{
2800 ref_list.referring.iterate (i, &ref);
2801
2802 if (ref && ref->use != IPA_REF_ALIAS)
2803 return NULL;
2804
2805 return ref;
2806}
2807
2808/* Return true if list contains an alias. */
2809
2810inline bool
2812{
2813 ipa_ref *ref = NULL;
2814
2815 return (iterate_direct_aliases (0, ref) != NULL);
2816}
2817
2818/* Return true when RESOLUTION indicate that linker will use
2819 the symbol from non-LTO object files. */
2820
2821inline bool
2822resolution_used_from_other_file_p (enum ld_plugin_symbol_resolution resolution)
2823{
2824 return (resolution == LDPR_PREVAILING_DEF
2825 || resolution == LDPR_PREEMPTED_REG
2826 || resolution == LDPR_RESOLVED_EXEC
2827 || resolution == LDPR_RESOLVED_DYN);
2828}
2829
2830/* Return true when symtab_node is known to be used from other (non-LTO)
2831 object file. Known only when doing LTO via linker plugin. */
2832
2833inline bool
2835{
2836 if (!TREE_PUBLIC (decl) || DECL_EXTERNAL (decl))
2837 return false;
2839 return true;
2840 return false;
2841}
2842
2843/* Return varpool node for given symbol and check it is a function. */
2844
2845inline varpool_node *
2847{
2848 gcc_checking_assert (TREE_CODE (decl) == VAR_DECL);
2850}
2851
2852/* Register a symbol NODE. */
2853
2854inline void
2856{
2857 node->next = nodes;
2858 node->previous = NULL;
2859
2860 if (nodes)
2861 nodes->previous = node;
2862 nodes = node;
2863
2864 nodes->m_uid = cgraph_max_uid++;
2865
2866 if (node->order == -1)
2867 node->order = order++;
2868}
2869
2870/* Register a top-level asm statement ASM_STR. */
2871
2872asm_node *
2874{
2875 asm_node *node;
2876
2878 node->asm_str = asm_str;
2879 node->order = order++;
2880 node->next = NULL;
2881
2882 if (asmnodes == NULL)
2883 asmnodes = node;
2884 else
2885 asm_last_node->next = node;
2886
2887 asm_last_node = node;
2888 return node;
2889}
2891/* Unregister a symbol NODE. */
2892inline void
2894{
2895 if (node->previous)
2896 node->previous->next = node->next;
2897 else
2898 nodes = node->next;
2899
2900 if (node->next)
2901 node->next->previous = node->previous;
2902
2903 node->next = NULL;
2904 node->previous = NULL;
2905}
2906
2907/* Release a callgraph NODE with UID and put in to the list of free nodes. */
2908
2909inline void
2911{
2912 cgraph_count--;
2913 if (node->m_summary_id != -1)
2914 cgraph_released_summary_ids.safe_push (node->m_summary_id);
2915 ggc_free (node);
2916}
2918/* Return first static symbol with definition. */
2919inline symtab_node *
2921{
2922 return nodes;
2924
2925/* Walk all symbols. */
2926#define FOR_EACH_SYMBOL(node) \
2927 for ((node) = symtab->first_symbol (); (node); (node) = (node)->next)
2929/* Return first static symbol with definition. */
2930inline symtab_node *
2932{
2933 symtab_node *node;
2934
2935 for (node = nodes; node; node = node->next)
2936 if (node->definition)
2937 return node;
2938
2939 return NULL;
2941
2942/* Walk all symbols with definitions in current unit. */
2943#define FOR_EACH_DEFINED_SYMBOL(node) \
2944 for ((node) = symtab->first_defined_symbol (); (node); \
2945 (node) = node->next_defined_symbol ())
2947/* Return first variable. */
2948inline varpool_node *
2950{
2951 symtab_node *node;
2952 for (node = nodes; node; node = node->next)
2953 if (varpool_node *vnode = dyn_cast <varpool_node *> (node))
2954 return vnode;
2955 return NULL;
2956}
2958/* Return next variable after NODE. */
2959inline varpool_node *
2961{
2962 symtab_node *node1 = node->next;
2963 for (; node1; node1 = node1->next)
2964 if (varpool_node *vnode1 = dyn_cast <varpool_node *> (node1))
2965 return vnode1;
2966 return NULL;
2967}
2968/* Walk all variables. */
2969#define FOR_EACH_VARIABLE(node) \
2970 for ((node) = symtab->first_variable (); \
2971 (node); \
2972 (node) = symtab->next_variable ((node)))
2974/* Return first static variable with initializer. */
2975inline varpool_node *
2977{
2978 symtab_node *node;
2979 for (node = nodes; node; node = node->next)
2980 {
2982 if (vnode && DECL_INITIAL (node->decl))
2983 return vnode;
2984 }
2985 return NULL;
2986}
2988/* Return next static variable with initializer after NODE. */
2989inline varpool_node *
2991{
2992 symtab_node *node1 = node->next;
2993 for (; node1; node1 = node1->next)
2994 {
2995 varpool_node *vnode1 = dyn_cast <varpool_node *> (node1);
2996 if (vnode1 && DECL_INITIAL (node1->decl))
2997 return vnode1;
2998 }
2999 return NULL;
3001
3002/* Walk all static variables with initializer set. */
3003#define FOR_EACH_STATIC_INITIALIZER(node) \
3004 for ((node) = symtab->first_static_initializer (); (node); \
3005 (node) = symtab->next_static_initializer (node))
3007/* Return first static variable with definition. */
3008inline varpool_node *
3010{
3011 symtab_node *node;
3012 for (node = nodes; node; node = node->next)
3013 {
3015 if (vnode && vnode->definition)
3016 return vnode;
3017 }
3018 return NULL;
3019}
3021/* Return next static variable with definition after NODE. */
3022inline varpool_node *
3024{
3025 symtab_node *node1 = node->next;
3026 for (; node1; node1 = node1->next)
3027 {
3028 varpool_node *vnode1 = dyn_cast <varpool_node *> (node1);
3029 if (vnode1 && vnode1->definition)
3030 return vnode1;
3031 }
3032 return NULL;
3033}
3034/* Walk all variables with definitions in current unit. */
3035#define FOR_EACH_DEFINED_VARIABLE(node) \
3036 for ((node) = symtab->first_defined_variable (); (node); \
3037 (node) = symtab->next_defined_variable (node))
3039/* Return first function with body defined. */
3040inline cgraph_node *
3042{
3043 symtab_node *node;
3044 for (node = nodes; node; node = node->next)
3045 {
3047 if (cn && cn->definition)
3048 return cn;
3049 }
3050 return NULL;
3051}
3053/* Return next function with body defined after NODE. */
3054inline cgraph_node *
3056{
3057 symtab_node *node1 = node->next;
3058 for (; node1; node1 = node1->next)
3059 {
3061 if (cn1 && cn1->definition)
3062 return cn1;
3063 }
3064 return NULL;
3066
3067/* Walk all functions with body defined. */
3068#define FOR_EACH_DEFINED_FUNCTION(node) \
3069 for ((node) = symtab->first_defined_function (); (node); \
3070 (node) = symtab->next_defined_function ((node)))
3072/* Return first function. */
3073inline cgraph_node *
3075{
3076 symtab_node *node;
3077 for (node = nodes; node; node = node->next)
3078 if (cgraph_node *cn = dyn_cast <cgraph_node *> (node))
3079 return cn;
3080 return NULL;
3081}
3083/* Return next function. */
3084inline cgraph_node *
3086{
3087 symtab_node *node1 = node->next;
3088 for (; node1; node1 = node1->next)
3089 if (cgraph_node *cn1 = dyn_cast <cgraph_node *> (node1))
3090 return cn1;
3091 return NULL;
3092}
3094/* Return first function with body defined. */
3095inline cgraph_node *
3097{
3098 symtab_node *node;
3099 for (node = nodes; node; node = node->next)
3100 {
3102 if (cn && cn->has_gimple_body_p ())
3103 return cn;
3104 }
3105 return NULL;
3106}
3108/* Return next reachable static variable with initializer after NODE. */
3109inline cgraph_node *
3111{
3112 symtab_node *node1 = node->next;
3113 for (; node1; node1 = node1->next)
3114 {
3116 if (cn1 && cn1->has_gimple_body_p ())
3117 return cn1;
3118 }
3119 return NULL;
3121
3122/* Walk all functions. */
3123#define FOR_EACH_FUNCTION(node) \
3124 for ((node) = symtab->first_function (); (node); \
3125 (node) = symtab->next_function ((node)))
3126
3127/* Walk all functions but precompute so a node can be deleted if needed. */
3128#define FOR_EACH_FUNCTION_REMOVABLE(node) \
3129 cgraph_node *next; \
3130 for ((node) = symtab->first_function (), \
3131 next = (node) ? symtab->next_function ((node)) : NULL; (node); \
3132 (node) = next, next = (node) ? symtab->next_function ((node)) : NULL)
3133
3134/* Return true when callgraph node is a function with Gimple body defined
3135 in current unit. Functions can also be define externally or they
3136 can be thunks with no Gimple representation.
3137
3138 Note that at WPA stage, the function body may not be present in memory. */
3139
3140inline bool
3142{
3143 return definition && !thunk && !alias;
3145
3146/* Walk all functions with body defined. */
3147#define FOR_EACH_FUNCTION_WITH_GIMPLE_BODY(node) \
3148 for ((node) = symtab->first_function_with_gimple_body (); (node); \
3149 (node) = symtab->next_function_with_gimple_body (node))
3150
3151/* Uniquize all constants that appear in memory.
3152 Each constant in memory thus far output is recorded
3153 in `const_desc_table'. */
3155struct GTY((for_user)) constant_descriptor_tree {
3156 /* A MEM for the constant. */
3158
3159 /* The value of the constant. */
3160 tree value;
3161
3162 /* Hash of value. Computing the hash from value each time
3163 hashfn is called can't work properly, as that means recursive
3164 use of the hash table during hash table expansion. */
3165 hashval_t hash;
3166};
3167
3168/* Return true when function is only called directly or it has alias.
3169 i.e. it is not externally visible, address was not taken and
3170 it is not used in any other non-standard way. */
3171
3172inline bool
3174{
3176 return (!force_output && !address_taken
3177 && !ifunc_resolver
3179 && !DECL_VIRTUAL_P (decl)
3183 && !externally_visible);
3184}
3185
3186/* Return true when function can be removed from callgraph
3187 if all direct calls are eliminated. */
3188
3189inline bool
3191{
3193 /* Extern inlines can always go, we will use the external definition. */
3194 if (DECL_EXTERNAL (decl))
3195 return true;
3196 /* When function is needed, we cannot remove it. */
3198 return false;
3201 return false;
3202 /* Only COMDAT functions can be removed if externally visible. */
3204 && ((!DECL_COMDAT (decl) || ifunc_resolver)
3205 || forced_by_abi
3207 return false;
3208 return true;
3209}
3210
3211/* Verify cgraph, if consistency checking is enabled. */
3212
3213inline void
3215{
3216 if (flag_checking)
3218}
3219
3220/* Return true when variable can be removed from variable pool
3221 if all direct calls are eliminated. */
3222
3223inline bool
3225{
3226 if (DECL_EXTERNAL (decl))
3227 return true;
3229 && ((DECL_COMDAT (decl)
3230 && !forced_by_abi
3234}
3235
3236/* Return true when all references to variable must be visible in ipa_ref_list.
3237 i.e. if the variable is not externally visible or not used in some magic
3238 way (asm statement or such).
3239 The magic uses are all summarized in force_output flag. */
3240
3241inline bool
3243{
3244 return (definition
3247 && !force_output);
3248}
3249
3250struct tree_descriptor_hasher : ggc_ptr_hash<constant_descriptor_tree>
3251{
3252 static hashval_t hash (constant_descriptor_tree *);
3253 static bool equal (constant_descriptor_tree *, constant_descriptor_tree *);
3254};
3255
3256/* Constant pool accessor function. */
3257hash_table<tree_descriptor_hasher> *constant_pool_htab (void);
3258
3259/* Return node that alias is aliasing. */
3260
3261inline cgraph_node *
3263{
3265}
3266
3267/* Return node that alias is aliasing. */
3268
3269inline varpool_node *
3271{
3273}
3274
3275/* Walk the alias chain to return the symbol NODE is alias of.
3276 If NODE is not an alias, return NODE.
3277 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3278 When REF is non-NULL, assume that reference happens in symbol REF
3279 when determining the availability. */
3280
3281inline symtab_node *
3283 symtab_node *ref)
3284{
3285 if (!alias)
3286 {
3287 if (availability)
3289 return this;
3290 }
3291
3293}
3294
3295/* Given function symbol, walk the alias chain to return the function node
3296 is alias of. Do not walk through thunks.
3297 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3298 When REF is non-NULL, assume that reference happens in symbol REF
3299 when determining the availability. */
3300
3301inline cgraph_node *
3303 symtab_node *ref)
3304{
3307 if (!n && availability)
3309 return n;
3310}
3311
3312/* For given variable pool node, walk the alias chain to return the function
3313 the variable is alias of. Do not walk through thunks.
3314 When AVAILABILITY is non-NULL, get minimal availability in the chain.
3315 When REF is non-NULL, assume that reference happens in symbol REF
3316 when determining the availability. */
3317
3318inline varpool_node *
3320 symtab_node *ref)
3321{
3324
3325 if (!n && availability)
3327 return n;
3328}
3329
3330/* Set callee N of call graph edge and add it to the corresponding set of
3331 callers. */
3332
3333inline void
3335{
3336 prev_caller = NULL;
3337 if (n->callers)
3338 n->callers->prev_caller = this;
3339 next_caller = n->callers;
3340 n->callers = this;
3341 callee = n;
3342}
3343
3344/* Return true when the edge represents a direct recursion. */
3345
3346inline bool
3348{
3349 cgraph_node *c = callee->ultimate_alias_target ();
3350 if (caller->inlined_to)
3351 return caller->inlined_to->decl == c->decl;
3352 else
3353 return caller->decl == c->decl;
3354}
3355
3356/* Remove the edge from the list of the callers of the callee. */
3357
3358inline void
3360{
3362 if (prev_caller)
3363 prev_caller->next_caller = next_caller;
3364 if (next_caller)
3365 next_caller->prev_caller = prev_caller;
3366 if (!prev_caller)
3367 callee->callers = next_caller;
3368}
3369
3370/* Return true if call must bind to current definition. */
3371
3372inline bool
3374{
3375 if (callee)
3376 return callee->binds_to_current_def_p (caller);
3377 else
3378 return false;
3379}
3380
3381/* Expected frequency of executions within the function.
3382 When set to CGRAPH_FREQ_BASE, the edge is expected to be called once
3383 per function call. The range is 0 to CGRAPH_FREQ_MAX. */
3384
3385inline int
3387{
3388 return count.to_cgraph_frequency (caller->inlined_to
3389 ? caller->inlined_to->count
3390 : caller->count);
3391}
3392
3394/* Return true if the TM_CLONE bit is set for a given FNDECL. */
3395inline bool
3397{
3398 cgraph_node *n = cgraph_node::get (fndecl);
3399 if (n)
3400 return n->tm_clone;
3401 return false;
3402}
3403
3404/* Likewise indicate that a node is needed, i.e. reachable via some
3405 external means. */
3406
3407inline void
3409{
3410 force_output = 1;
3412}
3413
3414/* Return true if function should be optimized for size. */
3415
3416inline enum optimize_size_level
3418{
3419 if (opt_for_fn (decl, optimize_size))
3420 return OPTIMIZE_SIZE_MAX;
3421 if (count == profile_count::zero ())
3422 return OPTIMIZE_SIZE_MAX;
3425 else
3426 return OPTIMIZE_SIZE_NO;
3427}
3428
3429/* Return symtab_node for NODE or create one if it is not present
3430 in symtab. */
3431
3432inline symtab_node *
3434{
3435 if (VAR_P (node))
3436 return varpool_node::get_create (node);
3437 else
3438 return cgraph_node::get_create (node);
3439}
3440
3441/* Return availability of NODE when referenced from REF. */
3442
3443inline enum availability
3445{
3446 if (is_a <cgraph_node *> (this))
3447 return dyn_cast <cgraph_node *> (this)->get_availability (ref);
3448 else
3449 return dyn_cast <varpool_node *> (this)->get_availability (ref);
3450}
3451
3452/* Call callback on symtab node and aliases associated to this node.
3453 When INCLUDE_OVERWRITABLE is false, overwritable symbols are skipped. */
3454
3455inline bool
3457 void *),
3458 void *data,
3459 bool include_overwritable)
3460{
3461 if (include_overwritable
3463 {
3464 if (callback (this, data))
3465 return true;
3466 }
3467 if (has_aliases_p ())
3468 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3469 return false;
3470}
3471
3472/* Call callback on function and aliases associated to the function.
3473 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3474 skipped. */
3475
3476inline bool
3478 void *),
3479 void *data,
3480 bool include_overwritable)
3481{
3482 if (include_overwritable
3484 {
3485 if (callback (this, data))
3486 return true;
3487 }
3488 if (has_aliases_p ())
3489 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3490 return false;
3491}
3492
3493/* Call callback on varpool symbol and aliases associated to varpool symbol.
3494 When INCLUDE_OVERWRITABLE is false, overwritable symbols are
3495 skipped. */
3496
3497inline bool
3499 void *),
3500 void *data,
3501 bool include_overwritable)
3502{
3503 if (include_overwritable
3505 {
3506 if (callback (this, data))
3507 return true;
3508 }
3509 if (has_aliases_p ())
3510 return call_for_symbol_and_aliases_1 (callback, data, include_overwritable);
3511 return false;
3512}
3513
3514/* Return true if reference may be used in address compare. */
3515
3516inline bool
3518{
3519 if (use != IPA_REF_ADDR)
3520 return false;
3521 /* Addresses taken from virtual tables are never compared. */
3523 && DECL_VIRTUAL_P (referring->decl))
3524 return false;
3525 return referred->address_can_be_compared_p ();
3526}
3527
3528/* Build polymorphic call context for indirect call E. */
3529
3530inline
3532{
3533 gcc_checking_assert (e->indirect_info->polymorphic);
3534 *this = e->indirect_info->context;
3535}
3536
3537/* Build empty "I know nothing" context. */
3538
3539inline
3541{
3544 invalid = false;
3545}
3546
3547/* Make context non-speculative. */
3548
3549inline void
3551{
3555}
3556
3557/* Produce context specifying all derived types of OTR_TYPE. If OTR_TYPE is
3558 NULL, the context is set to dummy "I know nothing" setting. */
3559
3560inline void
3562{
3563 outer_type = otr_type ? TYPE_MAIN_VARIANT (otr_type) : NULL;
3564 offset = 0;
3565 maybe_derived_type = true;
3566 maybe_in_construction = true;
3567 dynamic = true;
3568}
3569
3570/* Adjust all offsets in contexts by OFF bits. */
3571
3572inline void
3574{
3575 if (outer_type)
3576 offset += off;
3578 speculative_offset += off;
3579}
3580
3581/* Return TRUE if context is fully useless. */
3582
3583inline bool
3585{
3586 return (!outer_type && !speculative_outer_type);
3587}
3588
3589/* When using fprintf (or similar), problems can arise with
3590 transient generated strings. Many string-generation APIs
3591 only support one result being alive at once (e.g. by
3592 returning a pointer to a statically-allocated buffer).
3593
3594 If there is more than one generated string within one
3595 fprintf call: the first string gets evicted or overwritten
3596 by the second, before fprintf is fully evaluated.
3597 See e.g. PR/53136.
3598
3599 This function provides a workaround for this, by providing
3600 a simple way to create copies of these transient strings,
3601 without the need to have explicit cleanup:
3602
3603 fprintf (dumpfile, "string 1: %s string 2:%s\n",
3604 xstrdup_for_dump (EXPR_1),
3605 xstrdup_for_dump (EXPR_2));
3606
3607 This is actually a simple wrapper around ggc_strdup, but
3608 the name documents the intent. We require that no GC can occur
3609 within the fprintf call. */
3610
3611inline const char *
3612xstrdup_for_dump (const char *transient_str)
3613{
3614 return ggc_strdup (transient_str);
3615}
3616
3617/* During LTO stream-in this predicate can be used to check whether node
3618 in question prevails in the linking to save some memory usage. */
3619inline bool
3621{
3622 return definition && ((!TREE_PUBLIC (decl) && !DECL_EXTERNAL (decl))
3624}
3625
3626extern GTY(()) symbol_table *saved_symtab;
3627
3628#if CHECKING_P
3629
3630namespace selftest {
3631
3632/* An RAII-style class for use in selftests for temporarily using a different
3633 symbol_table, so that such tests can be isolated from each other. */
3634
3635class symbol_table_test
3636{
3637 public:
3638 /* Constructor. Override "symtab". */
3639 symbol_table_test ();
3640
3641 /* Destructor. Restore the saved_symtab. */
3642 ~symbol_table_test ();
3643};
3644
3645} // namespace selftest
3646
3647#endif /* CHECKING_P */
3648
3649#endif /* GCC_CGRAPH_H */
gcov_type apply_scale(gcov_type freq, gcov_type scale)
Definition basic-block.h:573
void cgraph_update_edges_for_call_stmt(gimple *old_stmt, tree old_decl, gimple *new_stmt)
Definition cgraph.cc:1866
bool cgraph_function_possibly_inlined_p(tree decl)
Definition cgraph.cc:2527
symbol_table * symtab
Definition cgraph.cc:81
cgraph_inline_failed_type_t cgraph_inline_failed_type(cgraph_inline_failed_t reason)
Definition cgraph.cc:2230
cgraph_indirect_call_info * cgraph_allocate_init_indirect_info(void)
Definition cgraph.cc:1123
const char *const cgraph_availability_names[]
Definition cgraph.cc:2246
void release_function_body(tree decl)
Definition cgraph.cc:1959
symbol_table * saved_symtab
Definition cgraph.cc:4528
void cgraph_cc_finalize(void)
Definition cgraph.cc:4377
const char * cgraph_inline_failed_string(cgraph_inline_failed_t reason)
Definition cgraph.cc:2212
symtab_state
Definition cgraph.h:2227
@ LTO_STREAMING
Definition cgraph.h:2233
@ IPA
Definition cgraph.h:2235
@ PARSING
Definition cgraph.h:2229
@ EXPANSION
Definition cgraph.h:2242
@ IPA_SSA_AFTER_INLINING
Definition cgraph.h:2240
@ FINISHED
Definition cgraph.h:2244
@ IPA_SSA
Definition cgraph.h:2237
@ CONSTRUCTION
Definition cgraph.h:2231
const char * cgraph_inline_failed_string(cgraph_inline_failed_t)
Definition cgraph.cc:2212
void(* cgraph_edge_hook)(cgraph_edge *, void *)
Definition cgraph.h:2208
const char * xstrdup_for_dump(const char *transient_str)
Definition cgraph.h:3609
void debuginfo_early_stop(void)
Definition cgraphunit.cc:2547
void debuginfo_start(void)
Definition cgraphunit.cc:2523
void(* cgraph_node_hook)(cgraph_node *, void *)
Definition cgraph.h:2209
tree ctor_for_folding(tree)
Definition varpool.cc:397
struct varpool_node_set_def * varpool_node_set
Definition cgraph.h:1559
cgraph_inline_failed_type_t cgraph_inline_failed_type(cgraph_inline_failed_t)
Definition cgraph.cc:2230
bool ipa_discover_variable_flags(void)
Definition ipa.cc:785
void symtab_thunks_cc_finalize(void)
Definition symtab-thunks.cc:663
void release_function_body(tree)
Definition cgraph.cc:1959
void(* cgraph_2node_hook)(cgraph_node *, cgraph_node *, void *)
Definition cgraph.h:2212
int compute_call_stmt_bb_frequency(tree, basic_block bb)
Definition cgraphbuild.cc:203
void debuginfo_early_init(void)
Definition cgraphunit.cc:2483
cgraph_inline_failed_type_t
Definition cgraph.h:871
@ CIF_FINAL_NORMAL
Definition cgraph.h:872
@ CIF_FINAL_ERROR
Definition cgraph.h:873
void set_new_clone_decl_and_node_flags(cgraph_node *new_node)
Definition cgraphclones.cc:162
bool speculation_useful_p(struct cgraph_edge *e, bool anticipate_inlining)
Definition ipa-inline.cc:1959
bool cgraph_function_possibly_inlined_p(tree)
Definition cgraph.cc:2527
symbol_table * symtab
Definition cgraph.cc:81
void debuginfo_stop(void)
Definition cgraphunit.cc:2531
void record_references_in_initializer(tree, bool)
Definition cgraphbuild.cc:390
cgraph_node_set_def * cgraph_node_set
Definition cgraph.h:1558
basic_block init_lowered_empty_function(tree, bool, profile_count)
Definition cgraphunit.cc:1732
tree clone_function_name_numbered(const char *name, const char *suffix)
Definition cgraphclones.cc:505
void tree_function_versioning(tree, tree, vec< ipa_replace_map *, va_gc > *, ipa_param_adjustments *, bool, bitmap, basic_block)
Definition tree-inline.cc:6306
symtab_type
Definition cgraph.h:43
@ SYMTAB_FUNCTION
Definition cgraph.h:45
@ SYMTAB_SYMBOL
Definition cgraph.h:44
@ SYMTAB_VARIABLE
Definition cgraph.h:46
hash_table< tree_descriptor_hasher > * constant_pool_htab(void)
Definition varasm.cc:3359
void(* cgraph_2edge_hook)(cgraph_edge *, cgraph_edge *, void *)
Definition cgraph.h:2211
void dump_callgraph_transformation(const cgraph_node *original, const cgraph_node *clone, const char *suffix)
Definition cgraphclones.cc:319
bool decl_is_tm_clone(const_tree fndecl)
Definition cgraph.h:3393
void cgraphunit_cc_finalize(void)
Definition cgraphunit.cc:2626
tree clone_function_name(const char *name, const char *suffix, unsigned long number)
Definition cgraphclones.cc:536
cgraph_indirect_call_info * cgraph_allocate_init_indirect_info(void)
Definition cgraph.cc:1123
void cgraph_build_static_cdtor(char which, tree body, int priority)
Definition ipa.cc:938
availability
Definition cgraph.h:69
@ AVAIL_UNSET
Definition cgraph.h:71
@ AVAIL_LOCAL
Definition cgraph.h:87
@ AVAIL_NOT_AVAILABLE
Definition cgraph.h:73
@ AVAIL_INTERPOSABLE
Definition cgraph.h:79
@ AVAIL_AVAILABLE
Definition cgraph.h:82
void debuginfo_early_start(void)
Definition cgraphunit.cc:2539
int tp_first_run_node_cmp(const void *pa, const void *pb)
Definition cgraphunit.cc:1949
void debuginfo_fini(void)
Definition cgraphunit.cc:2512
symbol_partitioning_class
Definition cgraph.h:92
@ SYMBOL_EXTERNAL
Definition cgraph.h:95
@ SYMBOL_PARTITION
Definition cgraph.h:97
@ SYMBOL_DUPLICATE
Definition cgraph.h:100
tree thunk_adjust(gimple_stmt_iterator *, tree, bool, HOST_WIDE_INT, tree, HOST_WIDE_INT)
Definition symtab-thunks.cc:190
void initialize_inline_failed(struct cgraph_edge *)
Definition ipa-inline-analysis.cc:104
tree clone_identifier(tree decl, const char *suffix, bool filter_suffix=false)
Definition cgraphclones.cc:597
bool decl_in_symtab_p(const_tree decl)
Definition cgraph.h:2710
ipa_opt_pass_d * ipa_opt_pass
Definition cgraph.h:38
void cgraph_update_edges_for_call_stmt(gimple *, tree, gimple *)
Definition cgraph.cc:1866
function_summary< thunk_info * > thunk_summary
Definition cgraph.h:2259
const char *const ld_plugin_symbol_resolution_names[]
Definition symtab.cc:45
const char *const tls_model_names[]
Definition varpool.cc:40
cgraph_simd_clone_arg_type
Definition cgraph.h:732
@ SIMD_CLONE_ARG_TYPE_LINEAR_CONSTANT_STEP
Definition cgraph.h:736
@ SIMD_CLONE_ARG_TYPE_LINEAR_REF_VARIABLE_STEP
Definition cgraph.h:741
@ SIMD_CLONE_ARG_TYPE_LINEAR_VAL_VARIABLE_STEP
Definition cgraph.h:745
@ SIMD_CLONE_ARG_TYPE_VECTOR
Definition cgraph.h:733
@ SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_VARIABLE_STEP
Definition cgraph.h:743
@ SIMD_CLONE_ARG_TYPE_LINEAR_UVAL_CONSTANT_STEP
Definition cgraph.h:742
@ SIMD_CLONE_ARG_TYPE_LINEAR_VARIABLE_STEP
Definition cgraph.h:737
@ SIMD_CLONE_ARG_TYPE_MASK
Definition cgraph.h:746
@ SIMD_CLONE_ARG_TYPE_UNIFORM
Definition cgraph.h:734
@ SIMD_CLONE_ARG_TYPE_LINEAR_REF_CONSTANT_STEP
Definition cgraph.h:740
@ SIMD_CLONE_ARG_TYPE_LINEAR_VAL_CONSTANT_STEP
Definition cgraph.h:744
void(* varpool_node_hook)(varpool_node *, void *)
Definition cgraph.h:2210
function_summary< clone_info * > clone_summary
Definition cgraph.h:2263
vec< cgraph_node * > cgraph_new_nodes
Definition cgraphunit.cc:217
void cgraph_cc_finalize(void)
Definition cgraph.cc:4377
cgraph_inline_failed_t
Definition cgraph.h:865
void debuginfo_init(void)
Definition cgraphunit.cc:2499
bool resolution_used_from_other_file_p(enum ld_plugin_symbol_resolution resolution)
Definition cgraph.h:2819
Definition cgraph.h:1730
ipa_ref * speculative_call_target_ref()
Definition cgraph.h:1834
cgraph_edge * speculative_call_indirect_edge()
Definition cgraph.h:1812
unsigned int indirect_inlining_edge
Definition cgraph.h:1963
void remove_caller(void)
Definition cgraph.cc:1183
profile_count count
Definition cgraph.h:1941
cgraph_node * callee
Definition cgraph.h:1943
static cgraph_edge * set_call_stmt(cgraph_edge *e, gcall *new_stmt, bool update_speculative=true)
Definition cgraph.cc:941
void dump_edge_flags(FILE *f)
Definition cgraph.cc:2252
static cgraph_edge * make_direct(cgraph_edge *edge, cgraph_node *callee)
Definition cgraph.cc:1447
bool binds_to_current_def_p()
Definition cgraph.h:3370
cgraph_edge * prev_caller
Definition cgraph.h:1944
cgraph_edge * next_caller
Definition cgraph.h:1945
unsigned int can_throw_external
Definition cgraph.h:1971
static cgraph_edge * resolve_speculation(cgraph_edge *edge, tree callee_decl=NULL)
Definition cgraph.cc:1360
int m_summary_id
Definition cgraph.h:2013
int m_uid
Definition cgraph.h:2010
void redirect_callee(cgraph_node *n)
Definition cgraph.cc:1521
unsigned in_polymorphic_cdtor
Definition cgraph.h:1992
cgraph_edge * next_speculative_call_target()
Definition cgraph.h:1798
sreal sreal_frequency()
Definition cgraph.cc:4425
unsigned int speculative_id
Definition cgraph.h:1961
cgraph_indirect_call_info * indirect_info
Definition cgraph.h:1951
static unsigned int rebuild_edges(void)
Definition cgraphbuild.cc:406
cgraph_edge * make_speculative(cgraph_node *n2, profile_count direct_count, unsigned int speculative_id=0)
Definition cgraph.cc:1257
static void rebuild_references(void)
Definition cgraphbuild.cc:451
friend class symbol_table
Definition cgraph.h:1733
unsigned int call_stmt_cannot_inline_p
Definition cgraph.h:1969
int get_summary_id()
Definition cgraph.h:1920
int num_speculative_call_targets_p(void)
Definition cgraph.cc:4490
void set_callee(cgraph_node *n)
Definition cgraph.h:3331
bool maybe_hot_p()
Definition cgraph.cc:3219
unsigned int lto_stmt_uid
Definition cgraph.h:1958
void DEBUG_FUNCTION debug(void)
Definition cgraph.cc:2276
bool possibly_call_in_translation_unit_p(void)
Definition cgraph.cc:4456
cgraph_edge * speculative_call_for_target(cgraph_node *)
Definition cgraph.cc:1430
cgraph_node * caller
Definition cgraph.h:1942
enum cgraph_inline_failed_t inline_failed
Definition cgraph.h:1955
unsigned int speculative
Definition cgraph.h:1989
void remove_callee(void)
Definition cgraph.h:3356
static void remove(cgraph_edge *edge)
Definition cgraph.cc:1219
static gimple * redirect_call_stmt_to_callee(cgraph_edge *e, hash_set< tree > *killed_ssas=nullptr)
Definition cgraph.cc:1565
bool verify_count()
Definition cgraph.cc:3464
unsigned int indirect_unknown_callee
Definition cgraph.h:1966
int get_uid()
Definition cgraph.h:1914
bool cannot_lead_to_return_p(void)
Definition cgraph.cc:3132
cgraph_edge * clone(cgraph_node *n, gcall *call_stmt, unsigned stmt_uid, profile_count num, profile_count den, bool update_original)
Definition cgraphclones.cc:98
sreal combined_sreal_frequency()
Definition cgraph.cc:4436
bool recursive_p(void)
Definition cgraph.h:3344
int frequency()
Definition cgraph.h:3383
cgraph_edge * first_speculative_call_target()
Definition cgraph.cc:1296
cgraph_edge * next_callee
Definition cgraph.h:1947
void * aux
Definition cgraph.h:1952
gcall * call_stmt
Definition cgraph.h:1948
bool verify_corresponds_to_fndecl(tree decl)
Definition cgraph.cc:3498
friend struct cgraph_node
Definition cgraph.h:1732
cgraph_edge * prev_callee
Definition cgraph.h:1946
void redirect_callee_duplicating_thunks(cgraph_node *n)
Definition cgraphclones.cc:275
Definition cgraph.h:1689
HOST_WIDE_INT otr_token
Definition cgraph.h:1697
tree otr_type
Definition cgraph.h:1699
int ecf_flags
Definition cgraph.h:1703
unsigned agg_contents
Definition cgraph.h:1713
unsigned polymorphic
Definition cgraph.h:1710
unsigned member_ptr
Definition cgraph.h:1715
unsigned guaranteed_unmodified
Definition cgraph.h:1723
unsigned vptr_changed
Definition cgraph.h:1726
HOST_WIDE_INT offset
Definition cgraph.h:1693
int param_index
Definition cgraph.h:1701
unsigned by_ref
Definition cgraph.h:1718
ipa_polymorphic_call_context context
Definition cgraph.h:1695
unsigned num_speculative_call_targets
Definition cgraph.h:1706
Definition lto-streamer.h:756
Definition genoutput.cc:150
Definition symbol-summary.h:163
Definition hash-map.h:40
Definition hash-set.h:37
Definition hash-table.h:375
Definition tree-pass.h:142
Definition ipa-param-manipulation.h:211
Definition cgraph.h:1589
void dump(FILE *f, bool newline=true) const
Definition ipa-polymorphic-call.cc:616
bool combine_speculation_with(tree, HOST_WIDE_INT, bool, tree)
Definition ipa-polymorphic-call.cc:1914
void offset_by(HOST_WIDE_INT)
Definition cgraph.h:3570
bool speculation_consistent_p(tree, HOST_WIDE_INT, bool, tree) const
Definition ipa-polymorphic-call.cc:1856
tree outer_type
Definition cgraph.h:1596
unsigned invalid
Definition cgraph.h:1607
unsigned speculative_maybe_derived_type
Definition cgraph.h:1604
HOST_WIDE_INT speculative_offset
Definition cgraph.h:1595
void DEBUG_FUNCTION debug() const
Definition ipa-polymorphic-call.cc:655
unsigned dynamic
Definition cgraph.h:1609
void clear_speculation()
Definition cgraph.h:3547
void clear_outer_type(tree otr_type=NULL)
Definition cgraph.h:3558
unsigned maybe_in_construction
Definition cgraph.h:1599
bool useless_p() const
Definition cgraph.h:3581
ipa_polymorphic_call_context()
Definition cgraph.h:3537
bool meet_with(ipa_polymorphic_call_context, tree otr_type=NULL)
Definition ipa-polymorphic-call.cc:2427
bool set_by_invariant(tree, tree, HOST_WIDE_INT)
Definition ipa-polymorphic-call.cc:760
tree speculative_outer_type
Definition cgraph.h:1597
void make_speculative(tree otr_type=NULL)
Definition ipa-polymorphic-call.cc:2337
bool equal_to(const ipa_polymorphic_call_context &x) const
Definition ipa-polymorphic-call.cc:2375
HOST_WIDE_INT offset
Definition cgraph.h:1594
void possible_dynamic_type_change(bool, tree otr_type=NULL)
Definition ipa-polymorphic-call.cc:2362
bool get_dynamic_type(tree, tree, tree, gimple *, unsigned *)
Definition ipa-polymorphic-call.cc:1566
void set_by_decl(tree, HOST_WIDE_INT)
Definition ipa-polymorphic-call.cc:731
void stream_in(class lto_input_block *, class data_in *data_in)
Definition ipa-polymorphic-call.cc:693
void stream_out(struct output_block *) const
Definition ipa-polymorphic-call.cc:663
bool restrict_to_inner_class(tree otr_type, bool consider_placement_new=true, bool consider_bases=true)
Definition ipa-polymorphic-call.cc:129
bool meet_speculation_with(tree, HOST_WIDE_INT, bool, tree)
Definition ipa-polymorphic-call.cc:2011
unsigned maybe_derived_type
Definition cgraph.h:1601
bool combine_with(ipa_polymorphic_call_context, tree otr_type=NULL)
Definition ipa-polymorphic-call.cc:2107
Definition lto-streamer.h:338
Definition sreal.h:41
Definition cgraph.h:2266
varpool_node_hook_list * add_varpool_removal_hook(varpool_node_hook hook, void *data)
Definition varpool.cc:53
varpool_node * next_defined_variable(varpool_node *node)
Definition cgraph.h:3020
int order
Definition cgraph.h:2534
varpool_node * first_variable(void)
Definition cgraph.h:2946
cgraph_node * first_defined_function(void)
Definition cgraph.h:3038
void change_decl_assembler_name(tree decl, tree name)
Definition symtab.cc:274
varpool_node * next_static_initializer(varpool_node *node)
Definition cgraph.h:2987
hash_table< asmname_hasher > * assembler_name_hash
Definition cgraph.h:2552
void free_edge(cgraph_edge *e)
Definition cgraph.cc:1205
vec< int > edge_released_summary_ids
Definition cgraph.h:2522
int assign_summary_id(cgraph_edge *edge)
Definition cgraph.h:2496
cgraph_2edge_hook_list * add_edge_duplication_hook(cgraph_2edge_hook hook, void *data)
Definition cgraph.cc:573
static char symbol_suffix_separator()
Definition symtab.cc:2569
void remove_cgraph_duplication_hook(cgraph_2node_hook_list *entry)
Definition cgraph.cc:631
void DEBUG_FUNCTION debug(void)
Definition symtab.cc:1059
varpool_node_hook_list * m_first_varpool_insertion_hook
Definition cgraph.h:2606
static bool decl_assembler_name_equal(tree decl, const_tree asmname)
Definition symtab.cc:142
symbol_table()
Definition cgraph.h:2272
cgraph_edge * create_edge(cgraph_node *caller, cgraph_node *callee, gcall *call_stmt, profile_count count, bool indir_unknown_callee, bool cloning_p)
Definition cgraph.cc:1025
symtab_node * first_defined_symbol(void)
Definition cgraph.h:2928
bool global_info_ready
Definition cgraph.h:2540
void clear_asm_symbols(void)
Definition cgraph.h:2317
bool function_flags_ready
Definition cgraph.h:2544
thunk_summary * m_thunks
Definition cgraph.h:2564
friend struct cgraph_edge
Definition cgraph.h:2270
bool output_variables(void)
Definition varpool.cc:733
void remove_varpool_removal_hook(varpool_node_hook_list *entry)
Definition varpool.cc:70
cgraph_edge_hook_list * m_first_edge_removal_hook
Definition cgraph.h:2596
asm_node * asmnodes
Definition cgraph.h:2528
void call_cgraph_duplication_hooks(cgraph_node *node, cgraph_node *node2)
Definition cgraph.cc:643
friend struct symtab_node
Definition cgraph.h:2268
int edges_count
Definition cgraph.h:2514
void compile(void)
Definition cgraphunit.cc:2336
static bool assembler_names_equal_p(const char *name1, const char *name2)
Definition symtab.cc:104
FILE * ipa_clones_dump_file
Definition cgraph.h:2559
cgraph_node * next_defined_function(cgraph_node *node)
Definition cgraph.h:3052
void remove_varpool_insertion_hook(varpool_node_hook_list *entry)
Definition varpool.cc:111
void call_edge_removal_hooks(cgraph_edge *e)
Definition cgraph.cc:478
asm_node * first_asm_symbol(void)
Definition cgraph.h:2353
void release_symbol(cgraph_node *node)
Definition cgraph.h:2907
cgraph_2node_hook_list * m_first_cgraph_duplicated_hook
Definition cgraph.h:2602
cgraph_node_hook_list * add_cgraph_insertion_hook(cgraph_node_hook hook, void *data)
Definition cgraph.cc:544
cgraph_node * next_function(cgraph_node *node)
Definition cgraph.h:3082
hash_table< section_name_hasher > * section_hash
Definition cgraph.h:2549
void output_weakrefs(void)
Definition cgraphunit.cc:2306
bool remove_unreachable_nodes(FILE *file)
Definition ipa.cc:310
void remove_cgraph_insertion_hook(cgraph_node_hook_list *entry)
Definition cgraph.cc:561
void unregister(symtab_node *node)
Definition cgraph.h:2890
cgraph_2node_hook_list * add_cgraph_duplication_hook(cgraph_2node_hook hook, void *data)
Definition cgraph.cc:614
void process_same_body_aliases(void)
Definition cgraphunit.cc:719
varpool_node_hook_list * m_first_varpool_removal_hook
Definition cgraph.h:2608
cgraph_node_hook_list * add_cgraph_removal_hook(cgraph_node_hook hook, void *data)
Definition cgraph.cc:490
clone_summary * m_clones
Definition cgraph.h:2567
hash_set< const cgraph_node * > cloned_nodes
Definition cgraph.h:2561
void initialize(void)
Definition cgraph.cc:429
cgraph_node * next_function_with_gimple_body(cgraph_node *node)
Definition cgraph.h:3107
int cgraph_max_summary_id
Definition cgraph.h:2512
void call_cgraph_insertion_hooks(cgraph_node *node)
Definition cgraph.cc:531
FILE * dump_file
Definition cgraph.h:2557
static hashval_t decl_assembler_name_hash(const_tree asmname)
Definition symtab.cc:82
varpool_node_hook_list * add_varpool_insertion_hook(varpool_node_hook hook, void *data)
Definition varpool.cc:94
void finalize_compilation_unit(void)
Definition cgraphunit.cc:2555
void process_new_functions(void)
Definition cgraphunit.cc:300
void symtab_initialize_asm_name_hash(void)
Definition symtab.cc:260
friend struct asmname_hasher
Definition cgraph.h:2593
int cgraph_max_uid
Definition cgraph.h:2511
void dump_graphviz(FILE *f)
Definition symtab.cc:1049
bool cpp_implicit_aliases_done
Definition cgraph.h:2546
cgraph_node_hook_list * m_first_cgraph_removal_hook
Definition cgraph.h:2598
asm_node * finalize_toplevel_asm(tree asm_str)
Definition cgraph.h:2870
cgraph_node * create_empty(void)
Definition cgraph.cc:441
symtab_node * first_symbol(void)
Definition cgraph.h:2917
int cgraph_count
Definition cgraph.h:2510
cgraph_node * first_function(void)
Definition cgraph.h:3071
void call_cgraph_removal_hooks(cgraph_node *node)
Definition cgraph.cc:519
int max_unit
Definition cgraph.h:2537
vec< int > cgraph_released_summary_ids
Definition cgraph.h:2519
enum symtab_state state
Definition cgraph.h:2542
void remove_edge_removal_hook(cgraph_edge_hook_list *entry)
Definition cgraph.cc:466
cgraph_edge_hook_list * add_edge_removal_hook(cgraph_edge_hook hook, void *data)
Definition cgraph.cc:449
varpool_node * first_static_initializer(void)
Definition cgraph.h:2973
int assign_summary_id(cgraph_node *node)
Definition cgraph.h:2485
cgraph_node_hook_list * m_first_cgraph_insertion_hook
Definition cgraph.h:2604
symtab_node * nodes
Definition cgraph.h:2527
void dump(FILE *f)
Definition symtab.cc:1040
void register_symbol(symtab_node *node)
Definition cgraph.h:2852
void call_varpool_insertion_hooks(varpool_node *node)
Definition varpool.cc:123
varpool_node * first_defined_variable(void)
Definition cgraph.h:3006
int edges_max_uid
Definition cgraph.h:2515
void remove_cgraph_removal_hook(cgraph_node_hook_list *entry)
Definition cgraph.cc:507
void symtab_prevail_in_asm_name_hash(symtab_node *node)
Definition symtab.cc:251
cgraph_2edge_hook_list * m_first_edge_duplicated_hook
Definition cgraph.h:2600
cgraph_node * first_function_with_gimple_body(void)
Definition cgraph.h:3093
void insert_to_assembler_name_hash(symtab_node *node, bool with_clones)
Definition symtab.cc:162
void call_edge_duplication_hooks(cgraph_edge *cs1, cgraph_edge *cs2)
Definition cgraph.cc:602
void remove_edge_duplication_hook(cgraph_2edge_hook_list *entry)
Definition cgraph.cc:590
varpool_node * next_variable(varpool_node *node)
Definition cgraph.h:2957
void unlink_from_assembler_name_hash(symtab_node *node, bool with_clones)
Definition symtab.cc:203
friend struct cgraph_node
Definition cgraph.h:2269
void call_varpool_removal_hooks(varpool_node *node)
Definition varpool.cc:82
asm_node * asm_last_node
Definition cgraph.h:2529
hash_map< symtab_node *, symbol_priority_map > * init_priority_hash
Definition cgraph.h:2555
int edges_max_summary_id
Definition cgraph.h:2516
void remove_unreferenced_decls(void)
Definition varpool.cc:629
bool debug
Definition collect-utils.cc:34
struct basic_block_def * basic_block
Definition coretypes.h:357
struct rtx_def * rtx
Definition coretypes.h:57
optimize_size_level
Definition coretypes.h:462
@ OPTIMIZE_SIZE_BALANCED
Definition coretypes.h:466
@ OPTIMIZE_SIZE_NO
Definition coretypes.h:464
@ OPTIMIZE_SIZE_MAX
Definition coretypes.h:468
class edge_def * edge
Definition coretypes.h:354
tls_model
Definition coretypes.h:210
@ TLS_MODEL_NONE
Definition coretypes.h:211
node_frequency
Definition coretypes.h:269
@ NODE_FREQUENCY_NORMAL
Definition coretypes.h:277
@ NODE_FREQUENCY_UNLIKELY_EXECUTED
Definition coretypes.h:272
const union tree_node * const_tree
Definition coretypes.h:98
#define GTY(x)
Definition coretypes.h:41
class bitmap_head * bitmap
Definition coretypes.h:51
union tree_node * tree
Definition coretypes.h:97
static unsigned int count[debug_counter_number_of_counters]
Definition dbgcnt.cc:50
void change_decl_assembler_name(tree, tree)
void ggc_free(void *)
Definition genmatch.cc:52
T * ggc_cleared_alloc(ALONE_CXX_MEM_STAT_INFO)
Definition ggc.h:217
#define ggc_strdup(S)
Definition ggc.h:281
bool set_comdat_group(symtab_node *symbol, void *head_p)
Definition ipa-comdats.cc:208
ipa_ref_use
Definition ipa-ref.h:31
@ IPA_REF_ALIAS
Definition ipa-ref.h:35
@ IPA_REF_ADDR
Definition ipa-ref.h:34
static int frequency
Definition ira-costs.cc:107
bool is_a(U *p)
Definition is-a.h:230
T dyn_cast(U *p)
Definition is-a.h:280
@ function
Definition logical-locations.h:40
Definition dump-context.h:31
void dump(const T &obj)
Definition dump.h:70
section * get_section(const char *, unsigned int, tree, bool not_existing=false)
Definition varasm.cc:291
poly_int< NUM_POLY_INT_COEFFS, unsigned HOST_WIDE_INT > poly_uint64
Definition poly-int-types.h:25
i
Definition poly-int.h:776
profile_quality
Definition profile-count.h:30
#define REG_BR_PROB_BASE
Definition profile-count.h:75
rtx find_replacement(rtx *loc)
Definition reload.cc:6383
Definition cgraph.h:2179
tree asm_str
Definition cgraph.h:2183
int order
Definition cgraph.h:2185
asm_node * next
Definition cgraph.h:2181
Definition cgraph.h:2248
static bool equal(symtab_node *n, const_tree t)
Definition cgraph.h:2623
static hashval_t hash(symtab_node *n)
Definition cgraph.h:2616
const_tree compare_type
Definition cgraph.h:2249
Definition cgraph.cc:98
Definition cgraph.cc:105
Definition cgraph.h:879
static bool equal(cgraph_edge *, gimple *)
Definition cgraph.cc:850
static hashval_t hash(cgraph_edge *)
Definition cgraph.cc:830
gimple * compare_type
Definition cgraph.h:880
Definition cgraph.cc:84
Definition cgraph.h:836
tree assembler_name
Definition cgraph.h:859
cgraph_node * this_node
Definition cgraph.h:838
cgraph_function_version_info * next
Definition cgraph.h:846
cgraph_function_version_info * prev
Definition cgraph.h:842
tree dispatcher_resolver
Definition cgraph.h:856
Definition cgraph.cc:91
Definition cgraph.h:1553
hash_map< cgraph_node *, size_t > * map
Definition cgraph.h:1554
vec< cgraph_node * > nodes
Definition cgraph.h:1555
Definition cgraph.h:1573
cgraph_node_set set
Definition cgraph.h:1574
unsigned index
Definition cgraph.h:1575
Definition cgraph.h:891
static cgraph_node * get(const_tree decl)
Definition cgraph.h:1369
cgraph_edge * indirect_calls
Definition cgraph.h:1426
void scale_profile_to(profile_count ipa_count)
Definition cgraph.cc:286
unsigned only_called_at_startup
Definition cgraph.h:1480
cgraph_node()
Definition cgraph.h:895
void DEBUG_FUNCTION debug(void)
Definition cgraph.cc:2507
void create_wrapper(cgraph_node *target)
Definition cgraphunit.cc:2641
struct cgraph_rtl_info * rtl
Definition cgraph.h:1452
bool can_remove_if_no_direct_calls_p(bool will_inline=false)
Definition cgraph.cc:3236
static void dump_cgraph(FILE *f)
Definition cgraph.cc:2515
enum node_frequency frequency
Definition cgraph.h:1478
void make_local(void)
Definition cgraph.cc:2691
enum availability get_availability(symtab_node *ref=NULL)
Definition cgraph.cc:2537
unsigned split_part
Definition cgraph.h:1512
unsigned nonfreeing_fn
Definition cgraph.h:1504
bool former_thunk_p(void)
Definition cgraph.cc:4511
void DEBUG_FUNCTION verify_node(void)
Definition cgraph.cc:3688
cgraph_node * create_thunk(tree alias, tree, bool this_adjusting, HOST_WIDE_INT fixed_offset, HOST_WIDE_INT virtual_value, HOST_WIDE_INT indirect_offset, tree virtual_offset, tree real_alias)
Definition cgraph.cc:768
int count_materialization_scale
Definition cgraph.h:1458
unsigned int profile_id
Definition cgraph.h:1460
cgraph_edge * create_edge(cgraph_node *callee, gcall *call_stmt, profile_count count, bool cloning_p=false)
Definition cgraph.cc:1099
unsigned thunk
Definition cgraph.h:1467
void analyze(void)
Definition cgraphunit.cc:626
cgraph_function_version_info * insert_new_function_version(void)
Definition cgraph.cc:320
bool set_const_flag(bool set_const, bool looping)
Definition cgraph.cc:3019
unsigned tm_clone
Definition cgraph.h:1487
bool can_remove_if_no_direct_calls_and_refs_p(void)
Definition cgraph.h:3187
bool get_body()
Definition cgraph.cc:4317
unsigned lowered
Definition cgraph.h:1472
int unit_id
Definition cgraph.h:1462
cgraph_edge * callers
Definition cgraph.h:1423
void set_call_stmt_including_clones(gimple *old_stmt, gcall *new_stmt, bool update_speculative=true)
Definition cgraphclones.cc:829
void expand_all_artificial_thunks()
Definition cgraphclones.cc:288
void remove(void)
Definition cgraph.cc:2038
unsigned icf_merged
Definition cgraph.h:1500
cgraph_node * next_sibling_clone
Definition cgraph.h:1427
cgraph_node * find_replacement(struct clone_info *)
Definition cgraphclones.cc:734
void remove_callees(void)
Definition cgraph.cc:1900
static void checking_verify_cgraph_nodes(void)
Definition cgraph.h:3211
cgraph_node * clones
Definition cgraph.h:1429
unsigned can_change_signature
Definition cgraph.h:1522
unsigned is_target_clone
Definition cgraph.h:1495
static void DEBUG_FUNCTION verify_cgraph_nodes(void)
Definition cgraph.cc:4177
static void add_function_version(cgraph_function_version_info *fn_v, tree decl)
Definition cgraph.cc:374
cgraph_node * get_alias_target(void)
Definition cgraph.h:3259
bool check_calls_comdat_local_p()
Definition cgraph.cc:4498
static cgraph_node * create_same_body_alias(tree alias, tree decl)
Definition cgraph.cc:743
void record_stmt_references(gimple *stmt)
Definition cgraphbuild.cc:273
cgraph_node * function_or_virtual_thunk_symbol(enum availability *avail=NULL, struct symtab_node *ref=NULL)
Definition cgraph.cc:4226
bool has_gimple_body_p(void)
Definition cgraph.h:3138
static void add_new_function(tree fndecl, bool lowered)
Definition cgraphunit.cc:528
static bool has_thunk_p(cgraph_node *node, void *)
Definition cgraph.cc:4414
void remove_from_clone_tree()
Definition cgraphclones.cc:1179
unsigned calls_comdat_local
Definition cgraph.h:1498
cgraph_node * inlined_to
Definition cgraph.h:1450
cgraph_edge * create_indirect_edge(gcall *call_stmt, int ecf_flags, profile_count count, bool cloning_p=false)
Definition cgraph.cc:1139
friend class symbol_table
Definition cgraph.h:892
void make_profile_local()
Definition cgraph.cc:184
bool local_p(void)
Definition ipa-visibility.cc:113
cgraph_node * clone_of
Definition cgraph.h:1430
bool cannot_return_p(void)
Definition cgraph.cc:3116
static void delete_function_version_by_decl(tree decl)
Definition cgraph.cc:358
void dump(FILE *f)
Definition cgraph.cc:2290
priority_type get_fini_priority(void)
Definition symtab.cc:1848
bool set_malloc_flag(bool malloc_p)
Definition cgraph.cc:2786
bool call_for_symbol_and_aliases(bool(*callback)(cgraph_node *, void *), void *data, bool include_overwritable)
Definition cgraph.h:3474
unsigned gc_candidate
Definition cgraph.h:1533
void apply_scale(profile_count num, profile_count den)
Definition cgraph.cc:264
cgraph_node * function_symbol(enum availability *avail=NULL, struct symtab_node *ref=NULL)
Definition cgraph.cc:4199
struct function * get_fun() const
Definition cgraph.cc:4359
void mark_force_output(void)
Definition cgraph.h:3405
void create_edge_including_clones(cgraph_node *callee, gimple *old_stmt, gcall *stmt, profile_count count, cgraph_inline_failed_t reason)
Definition cgraphclones.cc:889
unsigned only_called_at_exit
Definition cgraph.h:1482
void dump_graphviz(FILE *f)
Definition cgraph.cc:2491
void release_body(bool keep_arguments=false)
Definition cgraph.cc:2001
profile_count count
Definition cgraph.h:1455
static cgraph_node * get_create(tree)
Definition cgraph.cc:686
bool set_nothrow_flag(bool nothrow)
Definition cgraph.cc:2738
cgraph_simd_clone * simdclone
Definition cgraph.h:1439
unsigned called_by_ifunc_resolver
Definition cgraph.h:1535
bool set_noreturn_flag(bool noreturn_p)
Definition cgraph.cc:2881
cgraph_node * create_version_clone_with_body(vec< cgraph_edge * > redirect_callers, vec< ipa_replace_map *, va_gc > *tree_map, ipa_param_adjustments *param_adjustments, bitmap bbs_to_copy, basic_block new_entry_block, const char *suffix, tree target_attributes=NULL_TREE, bool version_decl=true)
Definition cgraphclones.cc:1074
void expand(void)
Definition cgraphunit.cc:1821
vec< ipa_opt_pass, va_heap, vl_ptr > ipa_transforms_to_apply
Definition cgraph.h:1446
static cgraph_node * create_alias(tree alias, tree target)
Definition cgraph.cc:717
cgraph_edge * callees
Definition cgraph.h:1422
bool remove_symbol_and_inline_clones(cgraph_node *forbidden_node=NULL)
Definition cgraphclones.cc:942
hash_table< cgraph_edge_hasher > * call_site_hash
Definition cgraph.h:1433
unsigned indirect_call_target
Definition cgraph.h:1514
bool call_for_symbol_and_aliases_1(bool(*callback)(cgraph_node *, void *), void *data, bool include_overwritable)
Definition cgraph.cc:4393
bool only_called_directly_p(void)
Definition cgraph.cc:3367
void assemble_thunks_and_aliases(void)
Definition cgraphunit.cc:1778
unsigned ipcp_clone
Definition cgraph.h:1529
cgraph_function_version_info * function_version(void)
Definition cgraph.cc:171
static void finalize_function(tree, bool)
Definition cgraphunit.cc:450
bool can_be_local_p(void)
Definition cgraph.cc:2611
bool call_for_symbol_thunks_and_aliases(bool(*callback)(cgraph_node *node, void *data), void *data, bool include_overwritable, bool exclude_virtual_thunks=false)
Definition cgraph.cc:2623
unsigned merged_comdat
Definition cgraph.h:1506
unsigned dispatcher_resolver_function
Definition cgraph.h:1491
static cgraph_node * local_info_node(tree decl)
Definition cgraph.cc:2175
void materialize_clone(void)
Definition cgraphclones.cc:1195
unsigned parallelized_function
Definition cgraph.h:1510
static void debug_cgraph(void)
Definition cgraph.h:1334
unsigned versionable
Definition cgraph.h:1519
int m_summary_id
Definition cgraph.h:1542
unsigned has_omp_variant_constructs
Definition cgraph.h:1537
auto_vec< cgraph_edge * > collect_callers(void)
Definition cgraph.cc:3397
cgraph_node * prev_sibling_clone
Definition cgraph.h:1428
cgraph_edge * get_edge(gimple *call_stmt)
Definition cgraph.cc:893
unsigned local
Definition cgraph.h:1517
unsigned process
Definition cgraph.h:1475
static void delete_function_version(cgraph_function_version_info *)
Definition cgraph.cc:337
void make_profile_global0(profile_quality quality)
Definition cgraph.cc:206
void mark_address_taken(void)
Definition cgraph.cc:2151
unsigned redefined_extern_inline
Definition cgraph.h:1525
cgraph_node * create_virtual_clone(const vec< cgraph_edge * > &redirect_callers, vec< ipa_replace_map *, va_gc > *tree_map, ipa_param_adjustments *param_adjustments, const char *suffix, unsigned num_suffix)
Definition cgraphclones.cc:642
int tp_first_run
Definition cgraph.h:1464
static cgraph_node * create(tree decl)
Definition cgraph.cc:657
bool will_be_removed_from_program_if_no_direct_calls_p(bool will_inline=false)
Definition cgraph.cc:3308
tree former_clone_of
Definition cgraph.h:1435
bool get_untransformed_body()
Definition cgraph.cc:4248
bool only_called_directly_or_aliased_p(void)
Definition cgraph.h:3170
cgraph_node * create_version_clone(tree new_decl, vec< cgraph_edge * > redirect_callers, bitmap bbs_to_copy, const char *suffix=NULL)
Definition cgraphclones.cc:995
cgraph_node * ultimate_alias_target(availability *availability=NULL, symtab_node *ref=NULL)
Definition cgraph.h:3299
static cgraph_node * get_for_asmname(tree asmname)
Definition cgraph.cc:813
cgraph_node * simd_clones
Definition cgraph.h:1441
unsigned merged_extern_inline
Definition cgraph.h:1508
bool add_detected_attribute(const char *attr)
Definition cgraph.cc:2834
int get_summary_id()
Definition cgraph.h:1340
cgraph_node * create_clone(tree decl, profile_count count, bool update_original, vec< cgraph_edge * > redirect_callers, bool call_duplication_hook, cgraph_node *new_inlined_to, ipa_param_adjustments *param_adjustments, const char *suffix)
Definition cgraphclones.cc:382
void set_fini_priority(priority_type priority)
Definition symtab.cc:1901
unsigned dispatcher_function
Definition cgraph.h:1489
enum optimize_size_level optimize_for_size_p(void)
Definition cgraph.h:3414
bool set_pure_flag(bool pure, bool looping)
Definition cgraph.cc:3102
void remove_callers(void)
Definition cgraph.cc:1937
unsigned used_as_abstract_origin
Definition cgraph.h:1470
unsigned tm_may_enter_irr
Definition cgraph.h:1527
static struct cgraph_rtl_info * rtl_info(const_tree)
Definition cgraph.cc:2187
Definition rtl.h:4629
Definition cgraph.h:752
unsigned int alignment
Definition cgraph.h:786
tree orig_arg
Definition cgraph.h:755
HOST_WIDE_INT linear_step
Definition cgraph.h:792
enum cgraph_simd_clone_arg_type arg_type
Definition cgraph.h:783
tree orig_type
Definition cgraph.h:759
tree vector_arg
Definition cgraph.h:767
tree vector_type
Definition cgraph.h:770
tree simd_array
Definition cgraph.h:779
Definition cgraph.h:797
cgraph_node * next_clone
Definition cgraph.h:826
poly_uint64 vecsize_int
Definition cgraph.h:806
unsigned int inbranch
Definition cgraph.h:823
poly_uint64 vecsize_float
Definition cgraph.h:809
machine_mode mask_mode
Definition cgraph.h:814
cgraph_simd_clone_arg args[1]
Definition cgraph.h:832
cgraph_node * prev_clone
Definition cgraph.h:826
poly_uint64 simdlen
Definition cgraph.h:799
cgraph_node * origin
Definition cgraph.h:829
unsigned int nargs
Definition cgraph.h:803
unsigned char vecsize_mangle
Definition cgraph.h:819
Definition symtab-clones.h:25
Definition cgraph.h:3152
hashval_t hash
Definition cgraph.h:3162
rtx rtl
Definition cgraph.h:3154
tree value
Definition cgraph.h:3157
Definition genautomata.cc:499
Definition gimple.h:352
Definition hash-traits.h:321
Definition gimple-iterator.h:26
Definition gimple.h:221
Definition ipa-ref.h:75
Definition ipa-ref.h:40
unsigned int speculative
Definition ipa-ref.h:67
enum ipa_ref_use use
Definition ipa-ref.h:66
gimple * stmt
Definition ipa-ref.h:60
symtab_node * referred
Definition ipa-ref.h:59
unsigned int speculative_id
Definition ipa-ref.h:65
bool address_matters_p()
Definition cgraph.h:3514
unsigned int lto_stmt_uid
Definition ipa-ref.h:61
symtab_node * referring
Definition ipa-ref.h:58
Definition cgraph.h:720
unsigned force_load_ref
Definition cgraph.h:728
tree new_tree
Definition cgraph.h:722
int parm_num
Definition cgraph.h:724
static bool test(U *p)
Definition lto-streamer.h:567
Definition lto-streamer.h:709
Definition profile-count.h:765
static profile_count zero()
Definition profile-count.h:813
Definition cgraph.h:53
int ref_count
Definition cgraph.h:54
char * name
Definition cgraph.h:55
Definition cgraph.h:61
const char * compare_type
Definition cgraph.h:62
static hashval_t hash(section_hash_entry *)
Definition symtab.cc:365
static bool equal(section_hash_entry *, const char *)
Definition symtab.cc:373
Definition cgraph.h:2221
priority_type fini
Definition cgraph.h:2223
priority_type init
Definition cgraph.h:2222
Definition cgraph.h:106
static bool set_implicit_section(symtab_node *n, void *)
Definition symtab.cc:1919
unsigned in_init_priority_hash
Definition cgraph.h:597
void dump_graphviz(FILE *f)
Definition symtab.cc:1033
struct lto_file_decl_data * lto_file_data
Definition cgraph.h:644
symtab_node * get_alias_target(void)
Definition cgraph.h:2739
tree get_alias_target_tree()
Definition cgraph.h:2751
unsigned used_from_other_partition
Definition cgraph.h:584
const char * get_visibility_string() const
Definition symtab.cc:881
tree get_comdat_group_id()
Definition cgraph.h:253
tree x_comdat_group
Definition cgraph.h:649
void add_to_same_comdat_group(symtab_node *old_node)
Definition symtab.cc:495
tree alias_target
Definition cgraph.h:641
bool native_rtl_p() const
Definition cgraphunit.cc:227
ipa_ref * iterate_reference(unsigned i, ipa_ref *&ref)
Definition cgraph.h:2775
void dump(FILE *f)
Definition symtab.cc:1024
unsigned weakref
Definition cgraph.h:536
symtab_node * next
Definition cgraph.h:617
unsigned address_taken
Definition cgraph.h:595
bool address_matters_p()
Definition symtab.cc:2457
unsigned definition
Definition cgraph.h:509
static symtab_node * get(const_tree decl)
Definition cgraph.h:460
bool referred_to_p(bool include_self=true)
Definition cgraphunit.cc:424
priority_type get_init_priority()
Definition symtab.cc:1836
unsigned num_references(void)
Definition cgraph.h:225
ipa_ref * clone_reference(ipa_ref *ref, gimple *stmt)
Definition symtab.cc:743
void clone_references(symtab_node *node)
Definition symtab.cc:703
bool output_to_lto_symbol_table_p(void)
Definition symtab.cc:2641
const char * dump_asm_name() const
Definition symtab.cc:599
section_hash_entry * x_section
Definition cgraph.h:652
unsigned externally_visible
Definition cgraph.h:558
static DEBUG_FUNCTION void verify_symtab_nodes(void)
Definition symtab.cc:1473
void copy_visibility_from(symtab_node *n)
Definition symtab.cc:1590
bool has_aliases_p(void)
Definition cgraph.h:2808
struct symbol_priority_map * priority_info(void)
Definition symtab.cc:1861
const char * get_dump_name(bool asm_name_p) const
Definition symtab.cc:580
void unregister(struct clone_info *)
Definition symtab.cc:452
unsigned unique_name
Definition cgraph.h:569
void DEBUG_FUNCTION debug(void)
Definition symtab.cc:1089
void set_section(const char *section)
Definition symtab.cc:1819
const char * get_section() const
Definition cgraph.h:269
unsigned need_lto_streaming
Definition cgraph.h:601
symtab_node * next_defined_symbol(void)
Definition cgraph.h:2761
unsigned cpp_implicit_alias
Definition cgraph.h:543
void set_comdat_group(tree group)
Definition cgraph.h:261
void dump_base(FILE *)
Definition symtab.cc:898
void DEBUG_FUNCTION verify(void)
Definition symtab.cc:1361
bool call_for_symbol_and_aliases_1(bool(*callback)(symtab_node *, void *), void *data, bool include_overwrite)
Definition symtab.cc:2417
const char * name() const
Definition symtab.cc:567
void clear_stmts_in_references(void)
Definition symtab.cc:801
static void check_ifunc_callee_symtab_nodes(void)
Definition symtab.cc:1441
unsigned forced_by_abi
Definition cgraph.h:567
ipa_ref * find_reference(symtab_node *referred_node, gimple *stmt, unsigned int lto_stmt_uid, enum ipa_ref_use use_type)
Definition symtab.cc:761
enum availability get_availability(symtab_node *ref=NULL)
Definition cgraph.h:3441
void set_section_for_node(const char *section)
Definition symtab.cc:1743
symtab_node * ultimate_alias_target_1(enum availability *avail=NULL, symtab_node *ref=NULL)
Definition symtab.cc:1645
void remove_from_same_comdat_group(void)
Definition symtab.cc:429
friend class symbol_table
Definition cgraph.h:108
ipa_ref * maybe_create_reference(tree val, gimple *stmt)
Definition symtab.cc:672
int get_uid() const
Definition cgraph.h:494
symtab_node * same_comdat_group
Definition cgraph.h:633
void remove_all_references(void)
Definition symtab.cc:825
bool prevailing_p(void)
Definition cgraph.h:3617
unsigned no_reorder
Definition cgraph.h:560
void * aux
Definition cgraph.h:646
int equal_address_to(symtab_node *s2, bool memory_accessed=false)
Definition symtab.cc:2305
unsigned transparent_alias
Definition cgraph.h:534
unsigned implicit_section
Definition cgraph.h:572
bool address_can_be_compared_p(void)
Definition cgraph.cc:149
enum ld_plugin_symbol_resolution resolution
Definition cgraph.h:503
void clone_referring(symtab_node *node)
Definition symtab.cc:723
bool resolve_alias(symtab_node *target, bool transparent=false)
Definition symtab.cc:1931
symtab_node * previous_sharing_asm_name
Definition cgraph.h:630
bool can_be_discarded_p(void)
Definition cgraph.h:408
void remove_stmt_references(gimple *stmt)
Definition symtab.cc:782
unsigned semantic_interposition
Definition cgraph.h:577
static symtab_node * get_for_asmname(const_tree asmname)
Definition symtab.cc:1068
static symtab_node * get_create(tree node)
Definition cgraph.h:3430
unsigned refuse_visibility_changes
Definition cgraph.h:553
ipa_ref * create_reference(symtab_node *referred_node, enum ipa_ref_use use_type)
Definition symtab.cc:609
void dump_references(FILE *file)
Definition symtab.cc:845
enum symbol_partitioning_class get_partitioning_class(void)
Definition symtab.cc:2160
tree decl
Definition cgraph.h:614
void dissolve_same_comdat_group_list(void)
Definition symtab.cc:530
enum symtab_type type
Definition cgraph.h:500
unsigned symver
Definition cgraph.h:545
unsigned alias
Definition cgraph.h:512
symtab_node * previous
Definition cgraph.h:618
void make_decl_local(void)
Definition symtab.cc:1525
bool binds_to_current_def_p(symtab_node *ref=NULL)
Definition symtab.cc:2584
ipa_ref * iterate_direct_aliases(unsigned i, ipa_ref *&ref)
Definition cgraph.h:2795
bool semantically_equivalent_p(symtab_node *target)
Definition symtab.cc:2126
void remove_all_referring(void)
Definition symtab.cc:835
int order
Definition cgraph.h:611
void reset(bool preserve_comdat_group=false)
Definition cgraphunit.cc:391
unsigned offloadable
Definition cgraph.h:604
void fixup_same_cpp_alias_visibility(symtab_node *target)
Definition symtab.cc:1707
bool in_same_comdat_group_p(symtab_node *target)
Definition cgraph.h:2718
const char * dump_name() const
Definition symtab.cc:593
static bool set_section_from_node(symtab_node *n, void *o)
Definition symtab.cc:1809
unsigned writeonly
Definition cgraph.h:550
const char * asm_name() const
Definition symtab.cc:557
unsigned int definition_alignment()
Definition symtab.cc:2558
void dump_referring(FILE *)
Definition symtab.cc:862
unsigned body_removed
Definition cgraph.h:575
symtab_node * noninterposable_alias(void)
Definition symtab.cc:2049
static void checking_verify_symtab_nodes(void)
Definition cgraph.h:697
ipa_ref_list ref_list
Definition cgraph.h:636
bool DEBUG_FUNCTION verify_base(void)
Definition symtab.cc:1106
unsigned force_output
Definition cgraph.h:563
static bool set_section_from_string(symtab_node *n, void *s)
Definition symtab.cc:1799
void register_symbol(void)
Definition symtab.cc:412
tree get_comdat_group()
Definition cgraph.h:247
symtab_node * ultimate_alias_target(enum availability *avail=NULL, struct symtab_node *ref=NULL)
Definition cgraph.h:3279
const char * get_symtab_type_string() const
Definition symtab.cc:890
bool real_symbol_p(void)
Definition cgraph.h:2690
unsigned analyzed
Definition cgraph.h:548
bool nonzero_address()
Definition symtab.cc:2291
void remove(void)
Definition symtab.cc:484
bool call_for_symbol_and_aliases(bool(*callback)(symtab_node *, void *), void *data, bool include_overwrite)
Definition cgraph.h:3453
int m_uid
Definition cgraph.h:676
symtab_node(symtab_type t)
Definition cgraph.h:111
bool comdat_local_p(void)
Definition cgraph.h:424
bool needed_p(void)
Definition cgraphunit.cc:240
unsigned in_other_partition
Definition cgraph.h:588
ipa_ref * iterate_referring(unsigned i, ipa_ref *&ref)
Definition cgraph.h:2785
symtab_node * next_sharing_asm_name
Definition cgraph.h:629
void set_init_priority(priority_type priority)
Definition symtab.cc:1882
bool used_from_object_file_p(void)
Definition cgraph.h:2831
bool can_increase_alignment_p()
Definition symtab.cc:2466
unsigned ifunc_resolver
Definition cgraph.h:607
Definition symtab-thunks.h:36
Definition cgraph.h:3248
static bool equal(constant_descriptor_tree *, constant_descriptor_tree *)
Definition varasm.cc:3490
static hashval_t hash(constant_descriptor_tree *)
Definition varasm.cc:3367
Definition vec.h:283
Definition varpool.cc:45
Definition cgraph.h:1566
hash_map< varpool_node *, size_t > * map
Definition cgraph.h:1567
vec< varpool_node * > nodes
Definition cgraph.h:1568
Definition cgraph.h:1580
varpool_node_set set
Definition cgraph.h:1581
unsigned index
Definition cgraph.h:1582
Definition cgraph.h:2043
bool can_remove_if_no_refs_p(void)
Definition cgraph.h:3221
static void dump_varpool(FILE *f)
Definition varpool.cc:248
void remove_initializer(void)
Definition varpool.cc:196
static varpool_node * create_extra_name_alias(tree alias, tree decl)
Definition varpool.cc:796
void dump(FILE *f)
Definition varpool.cc:214
bool call_for_symbol_and_aliases_1(bool(*callback)(varpool_node *, void *), void *data, bool include_overwritable)
Definition varpool.cc:819
bool externally_visible_p(void)
Definition ipa-visibility.cc:263
void analyze(void)
Definition varpool.cc:522
static varpool_node * create_empty(void)
Definition varpool.cc:136
void DEBUG_FUNCTION debug(void)
Definition varpool.cc:241
static varpool_node * get_create(tree decl)
Definition varpool.cc:143
static varpool_node * get_for_asmname(tree asmname)
Definition varpool.cc:267
bool call_for_symbol_and_aliases(bool(*callback)(varpool_node *, void *), void *data, bool include_overwritable)
Definition cgraph.h:3495
unsigned output
Definition cgraph.h:2153
varpool_node()
Definition cgraph.h:2045
varpool_node * ultimate_alias_target(availability *availability=NULL, symtab_node *ref=NULL)
Definition cgraph.h:3316
static varpool_node * create_alias(tree, tree)
Definition varpool.cc:776
static void add(tree decl)
Definition varpool.cc:474
tree get_constructor(void)
Definition varpool.cc:279
varpool_node * get_alias_target(void)
Definition cgraph.h:3267
static varpool_node * get(const_tree decl)
Definition cgraph.h:2843
bool assemble_decl(void)
Definition varpool.cc:564
bool all_refs_explicit_p()
Definition cgraph.h:3239
void assemble_aliases(void)
Definition varpool.cc:544
static void finalize_decl(tree decl)
Definition cgraphunit.cc:966
availability get_availability(symtab_node *ref=NULL)
Definition varpool.cc:489
enum tls_model tls_model
Definition cgraph.h:2159
bool ctor_useable_for_folding_p(void)
Definition varpool.cc:323
void remove(void)
Definition varpool.cc:172
unsigned dynamically_initialized
Definition cgraph.h:2157
unsigned used_by_single_function
Definition cgraph.h:2165
static void DEBUG_FUNCTION debug_varpool(void)
Definition varpool.cc:260
void finalize_named_section_flags(void)
Definition varpool.cc:719
Definition vec.h:450
Definition vec.h:271
#define NULL
Definition system.h:50
#define gcc_assert(EXPR)
Definition system.h:814
#define gcc_unreachable()
Definition system.h:841
#define false
Definition system.h:888
#define DEBUG_FUNCTION
Definition system.h:1236
#define gcc_checking_assert(EXPR)
Definition system.h:821
unsigned short priority_type
Definition tree-core.h:1086
use_type
Definition tree-ssa-loop-ivopts.cc:195
static void mark_address_taken(tree ref)
Definition tree-ssa-operands.cc:619
static unsigned int increase_alignment(void)
Definition tree-vectorizer.cc:1706
#define DECL_ASSEMBLER_NAME(NODE)
Definition tree.h:3307
#define DECL_HAS_VALUE_EXPR_P(NODE)
Definition tree.h:3070
#define DECL_SECTION_NAME(NODE)
Definition tree.h:3344
#define DECL_STATIC_CONSTRUCTOR(NODE)
Definition tree.h:3547
#define TYPE_MAIN_VARIANT(NODE)
Definition tree.h:2365
#define DECL_WEAK(NODE)
Definition tree.h:3274
#define DECL_STATIC_DESTRUCTOR(NODE)
Definition tree.h:3550
#define TREE_CODE(NODE)
Definition tree.h:325
#define DECL_ABSTRACT_P(NODE)
Definition tree.h:2973
#define DECL_COMDAT(NODE)
Definition tree.h:3289
#define opt_for_fn(fndecl, opt)
Definition tree.h:6331
#define DECL_INITIAL(NODE)
Definition tree.h:2893
#define TREE_STATIC(NODE)
Definition tree.h:773
#define DECL_COMMON(NODE)
Definition tree.h:3265
#define DECL_EXTERNAL(NODE)
Definition tree.h:2987
#define TREE_PUBLIC(NODE)
Definition tree.h:858
#define DECL_VIRTUAL_P(NODE)
Definition tree.h:3002
#define VAR_P(NODE)
Definition tree.h:236
#define NULL_TREE
Definition tree.h:318
#define DECL_P(NODE)
Definition tree.h:232
Definition output.h:517
static bool set_implicit_section(struct symtab_node *n, void *data)
Definition varasm.cc:476
constexpr vnull vNULL
Definition vec.h:569