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