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