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