OSDN Git Service

* store-motion.c Do not include params.h
[pf3gnuchains/gcc-fork.git] / gcc / tree-inline.h
1 /* Tree inlining hooks and declarations.
2    Copyright 2001, 2003, 2004, 2005, 2007, 2008, 2009
3    Free Software Foundation, Inc.
4    Contributed by Alexandre Oliva  <aoliva@redhat.com>
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
12
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 #ifndef GCC_TREE_INLINE_H
23 #define GCC_TREE_INLINE_H
24
25 #include "pointer-set.h"
26
27
28 /* Indicate the desired behavior wrt call graph edges.  We can either
29    duplicate the edge (inlining, cloning), move the edge (versioning,
30    parallelization), or move the edges of the clones (saving).  */
31
32 enum copy_body_cge_which
33 {
34   CB_CGE_DUPLICATE,
35   CB_CGE_MOVE,
36   CB_CGE_MOVE_CLONES
37 };
38
39 /* Data required for function body duplication.  */
40
41 typedef struct copy_body_data
42 {
43   /* FUNCTION_DECL for function being inlined, or in general the
44      source function providing the original trees.  */
45   tree src_fn;
46
47   /* FUNCTION_DECL for function being inlined into, or in general
48      the destination function receiving the new trees.  */
49   tree dst_fn;
50
51   /* Callgraph node of the source function.  */
52   struct cgraph_node *src_node;
53
54   /* Callgraph node of the destination function.  */
55   struct cgraph_node *dst_node;
56
57   /* struct function for function being inlined.  Usually this is the same
58      as DECL_STRUCT_FUNCTION (src_fn), but can be different if saved_cfg
59      and saved_eh are in use.  */
60   struct function *src_cfun;
61
62   /* The VAR_DECL for the return value.  */
63   tree retvar;
64
65   /* The map from local declarations in the inlined function to
66      equivalents in the function into which it is being inlined.  */
67   struct pointer_map_t *decl_map;
68
69   /* Create a new decl to replace DECL in the destination function.  */
70   tree (*copy_decl) (tree, struct copy_body_data *);
71
72   /* Current BLOCK.  */
73   tree block;
74
75   /* GIMPLE_CALL if va arg parameter packs should be expanded or NULL
76      is not.  */
77   gimple gimple_call;
78
79   /* Exception region the inlined call lie in.  */
80   int eh_region;
81
82   /* Take region number in the function being copied, add this value and
83      get eh region number of the duplicate in the function we inline into.  */
84   int eh_region_offset;
85
86   /* We use the same mechanism do all sorts of different things.  Rather
87      than enumerating the different cases, we categorize the behavior
88      in the various situations.  */
89
90   /* What to do with call graph edges.  */
91   enum copy_body_cge_which transform_call_graph_edges;
92
93   /* True if a new CFG should be created.  False for inlining, true for
94      everything else.  */
95   bool transform_new_cfg;
96
97   /* True if RETURN_EXPRs should be transformed to just the contained
98      MODIFY_EXPR.  The branch semantics of the return will be handled
99      by manipulating the CFG rather than a statement.  */
100   bool transform_return_to_modify;
101
102   /* True if this statement will need to be regimplified.  */
103   bool regimplify;
104
105   /* > 0 if we are remapping a type currently.  */
106   int remapping_type_depth;
107
108   /* A function to be called when duplicating BLOCK nodes.  */
109   void (*transform_lang_insert_block) (tree);
110
111   /* Statements that might be possibly folded.  */
112   struct pointer_set_t *statements_to_fold;
113
114   /* Entry basic block to currently copied body.  */
115   struct basic_block_def *entry_bb;
116 } copy_body_data;
117
118 /* Weights of constructions for estimate_num_insns.  */
119
120 typedef struct eni_weights_d
121 {
122   /* Cost per call.  */
123   unsigned call_cost;
124
125   /* Cost per call to a target specific builtin */
126   unsigned target_builtin_call_cost;
127
128   /* Cost of "expensive" div and mod operations.  */
129   unsigned div_mod_cost;
130
131   /* Cost for omp construct.  */
132   unsigned omp_cost;
133
134   /* True when time of statemnt should be estimated.  Thus i.e
135      cost of switch statement is logarithmic rather than linear in number
136      of cases.  */
137   bool time_based;
138 } eni_weights;
139
140 /* Weights that estimate_num_insns uses for heuristics in inlining.  */
141
142 extern eni_weights eni_inlining_weights;
143
144 /* Weights that estimate_num_insns uses to estimate the size of the
145    produced code.  */
146
147 extern eni_weights eni_size_weights;
148
149 /* Weights that estimate_num_insns uses to estimate the time necessary
150    to execute the produced code.  */
151
152 extern eni_weights eni_time_weights;
153
154 /* Function prototypes.  */
155
156 extern tree copy_tree_body_r (tree *, int *, void *);
157 extern void insert_decl_map (copy_body_data *, tree, tree);
158
159 unsigned int optimize_inline_calls (tree);
160 bool tree_inlinable_function_p (tree);
161 tree copy_tree_r (tree *, int *, void *);
162 tree copy_decl_no_change (tree decl, copy_body_data *id);
163 void save_body (tree, tree *, tree *);
164 int estimate_move_cost (tree type);
165 int estimate_num_insns (gimple, eni_weights *);
166 int estimate_num_insns_fn (tree, eni_weights *);
167 int count_insns_seq (gimple_seq, eni_weights *);
168 bool tree_versionable_function_p (tree);
169 bool tree_can_inline_p (tree, tree);
170
171 extern gimple_seq remap_gimple_seq (gimple_seq, copy_body_data *);
172 extern tree remap_decl (tree decl, copy_body_data *id);
173 extern tree remap_type (tree type, copy_body_data *id);
174 extern gimple_seq copy_gimple_seq_and_replace_locals (gimple_seq seq);
175
176 extern HOST_WIDE_INT estimated_stack_frame_size (void);
177
178 #endif /* GCC_TREE_INLINE_H */