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