]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ipa-inline.h
Update libbid according to the latest Intel Decimal Floating-Point Math Library.
[thirdparty/gcc.git] / gcc / ipa-inline.h
CommitLineData
03dfc36d 1/* Inlining decision heuristics.
a945c346 2 Copyright (C) 2003-2024 Free Software Foundation, Inc.
03dfc36d
JH
3 Contributed by Jan Hubicka
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
f1717f8d
KC
21#ifndef GCC_IPA_INLINE_H
22#define GCC_IPA_INLINE_H
23
4adaad64
JH
24/* Data we cache about callgraph edges during inlining to avoid expensive
25 re-computations during the greedy algorithm. */
6c1dae73 26class edge_growth_cache_entry
632b4f8e 27{
6c1dae73 28public:
4adaad64 29 sreal time, nonspec_time;
ab38481c 30 int size;
0bceb671 31 ipa_hints hints;
c8fb20d8
YG
32
33 edge_growth_cache_entry()
34 : size (0), hints (0) {}
35
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) {}
84562394 40};
632b4f8e 41
7237f93e 42extern fast_call_summary<edge_growth_cache_entry *, va_heap> *edge_growth_cache;
10a5dd5d 43
e53b6e56 44/* In ipa-inline-analysis.cc */
03dfc36d 45int estimate_size_after_inlining (struct cgraph_node *, struct cgraph_edge *);
0d92b555 46int estimate_growth (struct cgraph_node *);
49d9c9d2 47bool growth_positive_p (struct cgraph_node *, struct cgraph_edge *, int);
ed901e4c 48int do_estimate_edge_size (struct cgraph_edge *edge);
23ff8c05 49sreal do_estimate_edge_time (struct cgraph_edge *edge, sreal *nonspec_time = NULL);
0bceb671 50ipa_hints do_estimate_edge_hints (struct cgraph_edge *edge);
ac6f2e59
JH
51void reset_node_cache (struct cgraph_node *node);
52void initialize_growth_caches ();
632b4f8e 53void free_growth_caches (void);
27d020cf 54
e53b6e56 55/* In ipa-inline.cc */
be3c16c4 56unsigned int early_inliner (function *fun);
bb1e543c
JH
57bool inline_account_function_p (struct cgraph_node *node);
58
03dfc36d 59
e53b6e56 60/* In ipa-inline-transform.cc */
d52f5295 61bool inline_call (struct cgraph_edge *, bool, vec<cgraph_edge *> *, int *, bool,
1bbb87c4 62 bool *callee_removed = NULL);
fee8b6da 63unsigned int inline_transform (struct cgraph_node *);
1bad9c18 64void clone_inlined_nodes (struct cgraph_edge *e, bool, bool, int *);
fee8b6da
JH
65
66extern int ncalls_inlined;
67extern int nfunctions_inlined;
7123347c 68extern function_summary <tree *> *ipa_saved_clone_sources;
fee8b6da 69
ed901e4c 70/* Return estimated size of the inline sequence of EDGE. */
03dfc36d 71
cb3e0eac 72inline int
ed901e4c 73estimate_edge_size (struct cgraph_edge *edge)
03dfc36d 74{
9fb50ad8
ML
75 edge_growth_cache_entry *entry;
76 if (edge_growth_cache == NULL
77 || (entry = edge_growth_cache->get (edge)) == NULL
78 || entry->size == 0)
ed901e4c 79 return do_estimate_edge_size (edge);
9fb50ad8 80 return entry->size - (entry->size > 0);
632b4f8e
JH
81}
82
49e26500
JH
83/* Return lower bound on estimated callee growth after inlining EDGE. */
84
cb3e0eac 85inline int
49e26500
JH
86estimate_min_edge_growth (struct cgraph_edge *edge)
87{
88 ipa_call_summary *s = ipa_call_summaries->get (edge);
89 struct cgraph_node *callee = edge->callee->ultimate_alias_target ();
90 return (ipa_fn_summaries->get (callee)->min_size - s->call_stmt_size);
91}
92
ed901e4c
JH
93/* Return estimated callee growth after inlining EDGE. */
94
cb3e0eac 95inline int
ed901e4c
JH
96estimate_edge_growth (struct cgraph_edge *edge)
97{
6f86434f 98 ipa_call_summary *s = ipa_call_summaries->get (edge);
cf9b0b5f
ML
99 gcc_checking_assert (s->call_stmt_size || !edge->callee->analyzed);
100 return (estimate_edge_size (edge) - s->call_stmt_size);
ed901e4c 101}
632b4f8e 102
5764ee3c 103/* Return estimated callee runtime increase after inlining
632b4f8e
JH
104 EDGE. */
105
cb3e0eac 106inline sreal
4adaad64 107estimate_edge_time (struct cgraph_edge *edge, sreal *nonspec_time = NULL)
632b4f8e 108{
9fb50ad8
ML
109 edge_growth_cache_entry *entry;
110 if (edge_growth_cache == NULL
111 || (entry = edge_growth_cache->get (edge)) == NULL
112 || entry->time == 0)
23ff8c05 113 return do_estimate_edge_time (edge, nonspec_time);
4adaad64 114 if (nonspec_time)
9fb50ad8
ML
115 *nonspec_time = edge_growth_cache->get (edge)->nonspec_time;
116 return entry->time;
632b4f8e
JH
117}
118
119
5764ee3c 120/* Return estimated callee runtime increase after inlining
37678631
JH
121 EDGE. */
122
cb3e0eac 123inline ipa_hints
37678631
JH
124estimate_edge_hints (struct cgraph_edge *edge)
125{
9fb50ad8
ML
126 edge_growth_cache_entry *entry;
127 if (edge_growth_cache == NULL
128 || (entry = edge_growth_cache->get (edge)) == NULL
129 || entry->hints == 0)
de99ac70 130 return do_estimate_edge_hints (edge);
9fb50ad8 131 return entry->hints - 1;
03dfc36d 132}
f1717f8d
KC
133
134#endif /* GCC_IPA_INLINE_H */