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