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