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