typeck.c (cp_truthvalue_conversion): Add tsubst_flags_t parameter and use it in calls...
[official-gcc.git] / gcc / ipa-inline.h
blobf650b0e83fae086d93333e56a673d8965fbba015
1 /* Inlining decision heuristics.
2 Copyright (C) 2003-2019 Free Software Foundation, Inc.
3 Contributed by Jan Hubicka
5 This file is part of GCC.
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.
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.
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/>. */
21 #ifndef GCC_IPA_INLINE_H
22 #define GCC_IPA_INLINE_H
24 /* Data we cache about callgraph edges during inlining to avoid expensive
25 re-computations during the greedy algorithm. */
26 class edge_growth_cache_entry
28 public:
29 sreal time, nonspec_time;
30 int size;
31 ipa_hints hints;
33 edge_growth_cache_entry()
34 : size (0), hints (0) {}
36 edge_growth_cache_entry(int64_t time, int64_t nonspec_time,
37 int size, ipa_hints hints)
38 : time (time), nonspec_time (nonspec_time), size (size),
39 hints (hints) {}
42 extern fast_call_summary<edge_growth_cache_entry *, va_heap> *edge_growth_cache;
44 /* In ipa-inline-analysis.c */
45 int estimate_size_after_inlining (struct cgraph_node *, struct cgraph_edge *);
46 int estimate_growth (struct cgraph_node *);
47 bool growth_positive_p (struct cgraph_node *, struct cgraph_edge *, int);
48 int do_estimate_edge_size (struct cgraph_edge *edge);
49 sreal do_estimate_edge_time (struct cgraph_edge *edge);
50 ipa_hints do_estimate_edge_hints (struct cgraph_edge *edge);
51 void reset_node_cache (struct cgraph_node *node);
52 void initialize_growth_caches ();
53 void free_growth_caches (void);
55 /* In ipa-inline.c */
56 unsigned int early_inliner (function *fun);
57 bool inline_account_function_p (struct cgraph_node *node);
60 /* In ipa-inline-transform.c */
61 bool inline_call (struct cgraph_edge *, bool, vec<cgraph_edge *> *, int *, bool,
62 bool *callee_removed = NULL);
63 unsigned int inline_transform (struct cgraph_node *);
64 void clone_inlined_nodes (struct cgraph_edge *e, bool, bool, int *);
66 extern int ncalls_inlined;
67 extern int nfunctions_inlined;
69 /* Return estimated size of the inline sequence of EDGE. */
71 static inline int
72 estimate_edge_size (struct cgraph_edge *edge)
74 edge_growth_cache_entry *entry;
75 if (edge_growth_cache == NULL
76 || (entry = edge_growth_cache->get (edge)) == NULL
77 || entry->size == 0)
78 return do_estimate_edge_size (edge);
79 return entry->size - (entry->size > 0);
82 /* Return estimated callee growth after inlining EDGE. */
84 static inline int
85 estimate_edge_growth (struct cgraph_edge *edge)
87 ipa_call_summary *s = ipa_call_summaries->get (edge);
88 gcc_checking_assert (s->call_stmt_size || !edge->callee->analyzed);
89 return (estimate_edge_size (edge) - s->call_stmt_size);
92 /* Return estimated callee runtime increase after inlining
93 EDGE. */
95 static inline sreal
96 estimate_edge_time (struct cgraph_edge *edge, sreal *nonspec_time = NULL)
98 edge_growth_cache_entry *entry;
99 if (edge_growth_cache == NULL
100 || (entry = edge_growth_cache->get (edge)) == NULL
101 || entry->time == 0)
102 return do_estimate_edge_time (edge);
103 if (nonspec_time)
104 *nonspec_time = edge_growth_cache->get (edge)->nonspec_time;
105 return entry->time;
109 /* Return estimated callee runtime increase after inlining
110 EDGE. */
112 static inline ipa_hints
113 estimate_edge_hints (struct cgraph_edge *edge)
115 edge_growth_cache_entry *entry;
116 if (edge_growth_cache == NULL
117 || (entry = edge_growth_cache->get (edge)) == NULL
118 || entry->hints == 0)
119 return do_estimate_edge_hints (edge);
120 return entry->hints - 1;
123 #endif /* GCC_IPA_INLINE_H */