7d2f37ee3b88934b63ed7be061d65f01ed3eb37a
[libfirm] / ir / be / benode_t.h
1 /**
2  * @file   benode_t.h
3  * @date   17.05.2005
4  * @author Sebastian Hack
5  *
6  * Backend node support.
7  *
8  * Copyright (C) 2005 Universitaet Karlsruhe
9  * Released under the GPL
10  */
11
12 #ifndef _BENODE_T_H
13 #define _BENODE_T_H
14
15 #include "firm_config.h"
16 #include "pmap.h"
17
18 #include "irmode.h"
19 #include "irnode.h"
20 #include "entity_t.h"
21
22 #include "be_t.h"
23 #include "bearch.h"
24
25 #define BE_OUT_POS(p) (-((p) + 1))
26
27 /**
28  * The benode op's.  Must be available to register emitter function.
29  */
30 extern ir_op *op_be_Spill;
31 extern ir_op *op_be_Reload;
32 extern ir_op *op_be_Perm;
33 extern ir_op *op_be_Copy;
34 extern ir_op *op_be_Keep;
35 extern ir_op *op_be_Call;
36 extern ir_op *op_be_Return;
37 extern ir_op *op_be_IncSP;
38 extern ir_op *op_be_AddSP;
39 extern ir_op *op_be_SetSP;
40 extern ir_op *op_be_RegParams;
41 extern ir_op *op_be_StackParam;
42 extern ir_op *op_be_FrameAddr;
43 extern ir_op *op_be_FrameLoad;
44 extern ir_op *op_be_FrameStore;
45 extern ir_op *op_be_Barrier;
46
47 typedef enum {
48         beo_NoBeOp = 0,
49         beo_Spill,
50         beo_Reload,
51         beo_Perm,
52         beo_Copy,
53         beo_Keep,
54         beo_CopyKeep,
55         beo_Call,
56         beo_Return,
57         beo_AddSP,
58         beo_IncSP,
59         beo_SetSP,
60         beo_RegParams,
61         beo_StackParam,
62         beo_FrameLoad,
63         beo_FrameStore,
64         beo_FrameAddr,
65         beo_Barrier,
66         beo_Last
67 } be_opcode_t;
68
69 /** Expresses the direction of the stack pointer increment of IncSP nodes. */
70 typedef enum {
71         be_stack_dir_expand = 0,
72         be_stack_dir_shrink = 1
73 } be_stack_dir_t;
74
75 /** Not used yet. */
76 typedef enum {
77         be_frame_flag_spill = 1,
78         be_frame_flag_local = 2,
79         be_frame_flag_arg   = 4
80 } be_frame_flag_t;
81
82 /**
83  * A "symbolic constant" for the size of the stack frame to use with IncSP nodes.
84  * It gets back-patched to the real size as soon it is known.
85  */
86 #define BE_STACK_FRAME_SIZE ((unsigned) -1)
87
88 /**
89  * Create all BE specific opcodes.
90  */
91 void be_node_init(void);
92
93 enum {
94         be_pos_Spill_frame = 0,
95         be_pos_Spill_val   = 1
96 };
97 ir_node *be_new_Spill(const arch_register_class_t *cls, const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, ir_node *node_to_spill, ir_node *ctx);
98
99 enum {
100         be_pos_Reload_frame = 0,
101         be_pos_Reload_mem   = 1
102 };
103 ir_node *be_new_Reload(const arch_register_class_t *cls, const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, ir_node *spill_node, ir_mode *mode);
104
105 enum {
106         be_pos_Copy_orig = 0
107 };
108 ir_node *be_new_Copy(const arch_register_class_t *cls, ir_graph *irg, ir_node *block, ir_node *in);
109 ir_node *be_new_Perm(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int arity, ir_node *in[]);
110 ir_node *be_new_Keep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, int arity, ir_node *in[]);
111
112 ir_node *be_new_FrameLoad(const arch_register_class_t *cls_frame, const arch_register_class_t *cls_data,
113                                                   ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *frame, entity *ent);
114 ir_node *be_new_FrameStore(const arch_register_class_t *cls_frame, const arch_register_class_t *cls_data,
115                                                    ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *frame, ir_node *data, entity *ent);
116 ir_node *be_new_FrameAddr(const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_node *frame, entity *ent);
117
118 enum {
119         be_pos_AddSP_old_sp = 0,
120         be_pos_AddSP_size   = 1,
121         be_pos_AddSP_last   = 2
122 };
123
124 /**
125  * Make a new AddSP node.
126  * An AddSP node expresses an increase of the stack pointer in the direction the stack
127  * grows. In contrast to IncSP, the amount of bytes the stack pointer is grown, is not
128  * given by a constant but an ordinary Firm node.
129  * @param sp     The stack pointer register.
130  * @param irg    The graph.
131  * @param bl     The block.
132  * @param old_sp The node representing the old stack pointer value.
133  * @param sz     The node expressing the size by which the stack pointer shall be grown.
134  * @return       A new AddSP node.
135  */
136 ir_node *be_new_AddSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *sz);
137
138 ir_node *be_new_SetSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *operand, ir_node *mem);
139
140 /**
141  * Make a stack pointer increase/decrease node.
142  * @param sp     The stack pointer register.
143  * @param irg    The graph to insert the node to.
144  * @param bl     The block to insert the node into.
145  * @param old_sp The node defining the former stack pointer.
146  * @param amount The mount of bytes the stack pointer shall be increased/decreased.
147  * @param dir    The direction in which the stack pointer shall be modified:
148  *               Along the stack's growing direction or against.
149  * @return       A new stack pointer increment/decrement node.
150  * @note         This node sets a register constraint to the @p sp register on its output.
151  */
152 ir_node *be_new_IncSP(const arch_register_t *sp, ir_graph *irg, ir_node *bl, ir_node *old_sp, ir_node *mem, unsigned amount, be_stack_dir_t dir);
153
154
155
156 void     be_set_IncSP_offset(ir_node *irn, unsigned offset);
157 unsigned be_get_IncSP_offset(const ir_node *irn);
158
159 void           be_set_IncSP_direction(ir_node *irn, be_stack_dir_t dir);
160 be_stack_dir_t be_get_IncSP_direction(const ir_node *irn);
161
162 /** Gets the call entity or NULL if this is no static call. */
163 entity  *be_Call_get_entity(const ir_node *call);
164 /** Sets the call entity. */
165 void     be_Call_set_entity(ir_node *call, entity *ent);
166 /** Gets the call type. */
167 ir_type *be_Call_get_type(ir_node *call);
168 /** Sets the call type. */
169 void     be_Call_set_type(ir_node *call, ir_type *call_tp);
170
171 enum {
172         be_pos_Call_mem       = 0,  /**< memory input of a be_Call node */
173         be_pos_Call_sp        = 1,  /**< stack pointer input of a be_Call node */
174         be_pos_Call_ptr       = 2,  /**< call pointer input of a be_Call node */
175         be_pos_Call_first_arg = 3   /**< first argument input of a be_Call node */
176 };
177
178 /**
179  * Projection numbers for result of be_Call node: use for Proj nodes!
180  */
181 typedef enum {
182         pn_be_Call_M_regular = pn_Call_M_regular,  /**< The memory result of a be_Call. */
183         pn_be_Call_first_res = pn_Call_max         /**< The first result proj number of a be_Call. */
184 } pn_be_Call;
185
186 /**
187  * Construct a new be_Call
188  */
189 ir_node *be_new_Call(dbg_info *dbg, ir_graph *irg, ir_node *bl, ir_node *mem, ir_node *sp, ir_node *ptr,
190                      int n_outs, int n, ir_node *in[], ir_type *call_tp);
191
192 /**
193  * Construct a new be_Return
194  */
195 ir_node *be_new_Return(dbg_info *dbg, ir_graph *irg, ir_node *bl, int n, ir_node *in[]);
196 ir_node *be_new_StackParam(const arch_register_class_t *cls, const arch_register_class_t *cls_frame, ir_graph *irg, ir_node *bl, ir_mode *mode, ir_node *frame_pointer, entity *ent);
197 ir_node *be_new_RegParams(ir_graph *irg, ir_node *bl, int n_out);
198
199 ir_node *be_new_Barrier(ir_graph *irg, ir_node *bl, int n, ir_node *in[]);
200
201 ir_node *be_spill(const arch_env_t *arch_env, ir_node *irn,ir_node *spill_ctx);
202 ir_node *be_reload(const arch_env_t *arch_env, const arch_register_class_t *cls, ir_node *reloader, ir_mode *mode, ir_node *spill);
203
204 ir_node *be_new_CopyKeep(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, int n, ir_node *in_keep[], ir_mode *mode);
205 ir_node *be_new_CopyKeep_single(const arch_register_class_t *cls, ir_graph *irg, ir_node *bl, ir_node *src, ir_node *keep, ir_mode *mode);
206
207
208 /**
209  * Get the backend opcode of a backend node.
210  * @param irn The node.
211  * @return The backend opcode.
212  */
213 be_opcode_t be_get_irn_opcode(const ir_node *irn);
214
215 int be_is_Spill(const ir_node *irn);
216 int be_is_Reload(const ir_node *irn);
217 int be_is_Copy(const ir_node *irn);
218 int be_is_Perm(const ir_node *irn);
219 int be_is_Keep(const ir_node *irn);
220 int be_is_CopyKeep(const ir_node *irn);
221 int be_is_Call(const ir_node *irn);
222 int be_is_Return(const ir_node *irn);
223 int be_is_IncSP(const ir_node *irn);
224 int be_is_SetSP(const ir_node *irn);
225 int be_is_AddSP(const ir_node *irn);
226 int be_is_RegParams(const ir_node *irn);
227 int be_is_StackParam(const ir_node *irn);
228 int be_is_FrameAddr(const ir_node *irn);
229 int be_is_FrameLoad(const ir_node *irn);
230 int be_is_FrameStore(const ir_node *irn);
231 int be_is_Barrier(const ir_node *irn);
232
233 /**
234  * Get the entity on the stack frame the given node uses.
235  * @param irn The node.
236  * @return The entity on the stack frame used by the node or NULL,
237  *         if the node does not access the stack frame or is no back-end node.
238  *
239  */
240 entity *be_get_frame_entity(const ir_node *irn);
241
242 void   be_set_Spill_entity(ir_node *irn, entity *ent);
243 entity *be_get_spill_entity(const ir_node *irn);
244
245 ir_node *be_get_Spill_context(const ir_node *irn);
246
247 /**
248  * Set the entities of a Reload to the ones of the Spill it is pointing to.
249  * @param irg The graph.
250  */
251 void be_copy_entities_to_reloads(ir_graph *irg);
252
253 /**
254  * Impose a register constraint on a backend node.
255  * @param irn The node.
256  * @param pos The position of the argument/result. Results range from -1..-m and arguments form 0..n
257  * @param reg The register which is admissible for that node, argument/result and position.
258  */
259 void be_set_constr_single_reg(ir_node *irn, int pos, const arch_register_t *reg);
260
261 /**
262  * Impose register constraints on a backend node.
263  * The register subsets given by the limited function in @p req are copied to the backend node.
264  * This requires that the constraint type of the @p req is arch_register_req_type_limited.
265  * @param irn The backend node.
266  * @param pos The position (@see be_set_constr_single_reg()).
267  * @param req The register requirements which shall be transferred.
268  */
269 void be_set_constr_limited(ir_node *irn, int pos, const arch_register_req_t *req);
270
271 /**
272  * Set the flags of a node.
273  * @param irn The node itself.
274  * @param pos The position (0..n) for arguments, (-1..-m) for results.
275  * @param flags The flags to set for that node and position.
276  */
277 void be_node_set_flags(ir_node *irn, int pos, arch_irn_flags_t flags);
278
279 /**
280  * Set the register class of a node.
281  * @param irn The node itself.
282  * @param pos The position (0..n) for arguments, (-1..-m) for results.
283  * @param flags The register class to set for that node and position.
284  */
285 void be_node_set_reg_class(ir_node *irn, int pos, const arch_register_class_t *cls);
286
287 /**
288  * Make a new phi handler.
289  * @param env The architecture environment.
290  * @return A new phi handler.
291  */
292 arch_irn_handler_t *be_phi_handler_new(const arch_env_t *arch_env);
293
294 /**
295  * Free a phi handler.
296  * @param handler The handler to free.
297  */
298 void be_phi_handler_free(arch_irn_handler_t *handler);
299
300 /**
301  * Reset the register data in the phi handler.
302  * This should be called on each new graph and deletes the register information of the current graph.
303  */
304 void be_phi_handler_reset(arch_irn_handler_t *handler);
305
306 /**
307  * irn handler for common be nodes.
308  */
309 extern const arch_irn_handler_t be_node_irn_handler;
310
311 #endif /* _BENODE_T_H */