Push/Pop/AddSP/SubSP always modify ESP
[libfirm] / ir / be / ia32 / ia32_new_nodes.h
1 /**
2  * Function prototypes for the assembler ir node constructors.
3  * @author Christian Wuerdig
4  * $Id$
5  */
6
7 #ifndef _IA32_NEW_NODES_H_
8 #define _IA32_NEW_NODES_H_
9
10 #include "firm_config.h"
11 #include "ia32_nodes_attr.h"
12
13 /***************************************************************************************************
14  *        _   _                   _       __        _                    _   _               _
15  *       | | | |                 | |     / /       | |                  | | | |             | |
16  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
17  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
18  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
19  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
20  *                                        __/ |
21  *                                       |___/
22  ***************************************************************************************************/
23
24 /**
25  * Returns the attributes of an ia32 node.
26  */
27 ia32_attr_t *get_ia32_attr(const ir_node *node);
28
29 /**
30  * Gets the type of an ia32 node.
31  */
32 ia32_op_type_t get_ia32_op_type(const ir_node *node);
33
34 /**
35  * Sets the type of an ia32 node.
36  */
37 void set_ia32_op_type(ir_node *node, ia32_op_type_t tp);
38
39 /**
40  * Gets the immediate op type of an ia32 node.
41  */
42 ia32_immop_type_t get_ia32_immop_type(const ir_node *node);
43
44 /**
45  * Sets the immediate op type of an ia32 node.
46  */
47 void set_ia32_immop_type(ir_node *node, ia32_immop_type_t tp);
48
49 /**
50  * Gets the supported addrmode of an ia32 node
51  */
52 ia32_am_type_t get_ia32_am_support(const ir_node *node);
53
54 /**
55  * Sets the supported addrmode of an ia32 node
56  */
57 void set_ia32_am_support(ir_node *node, ia32_am_type_t am_tp);
58
59 /**
60  * Gets the addrmode flavour of an ia32 node
61  */
62 ia32_am_flavour_t get_ia32_am_flavour(const ir_node *node);
63
64 /**
65  * Sets the addrmode flavour of an ia32 node
66  */
67 void set_ia32_am_flavour(ir_node *node, ia32_am_flavour_t am_flavour);
68
69 /**
70  * Gets the joined addrmode offset.
71  */
72 char *get_ia32_am_offs(const ir_node *node);
73
74 /**
75  * Gets the addressmode offset as long.
76  */
77 long get_ia32_am_offs_long(const ir_node *node);
78
79 /**
80  * Adds an offset for addrmode.
81  */
82 void add_ia32_am_offs(ir_node *node, const char *offset);
83
84 /**
85  * Subs an offset for addrmode.
86  */
87 void sub_ia32_am_offs(ir_node *node, const char *offset);
88
89 /**
90  * Returns the symconst ident associated to addrmode.
91  */
92 ident *get_ia32_am_sc(const ir_node *node);
93
94 /**
95  * Sets the symconst ident associated to addrmode.
96  */
97 void set_ia32_am_sc(ir_node *node, ident *sc);
98
99 /**
100  * Sets the sign bit for address mode symconst.
101  */
102 void set_ia32_am_sc_sign(ir_node *node);
103
104 /**
105  * Clears the sign bit for address mode symconst.
106  */
107 void clear_ia32_am_sc_sign(ir_node *node);
108
109 /**
110  * Returns the sign bit for address mode symconst.
111  */
112 int is_ia32_am_sc_sign(const ir_node *node);
113
114 /**
115  * Gets the addr mode const.
116  */
117 int get_ia32_am_scale(const ir_node *node);
118
119 /**
120  * Sets the const for addr mode.
121  */
122 void set_ia32_am_scale(ir_node *node, int scale);
123
124 /**
125  * Return the tarval of an immediate operation or NULL in case of SymConst
126  */
127 tarval *get_ia32_Immop_tarval(const ir_node *node);
128
129 /**
130  * Sets the attributes of an immediate operation to the specified tarval
131  */
132 void set_ia32_Immop_tarval(ir_node *node, tarval *tv);
133
134 /**
135  * Gets the string representation of the internal const (tv or symconst)
136  */
137 const char *get_ia32_cnst(const ir_node *node);
138
139 /**
140  * Sets the string representation of the internal const.
141  */
142 void set_ia32_cnst(ir_node *node, const char *cnst);
143
144 /**
145  * Gets the ident representation of the internal const (tv or symconst)
146  */
147 ident *get_ia32_id_cnst(const ir_node *node);
148
149 /**
150  * Sets the ident representation of the internal const.
151  */
152 void set_ia32_id_cnst(ir_node *node, ident *cnst);
153
154 /**
155  * Sets the uses_frame flag.
156  */
157 void set_ia32_use_frame(ir_node *node);
158
159 /**
160  * Clears the uses_frame flag.
161  */
162 void clear_ia32_use_frame(ir_node *node);
163
164 /**
165  * Gets the uses_frame flag.
166  */
167 int is_ia32_use_frame(const ir_node *node);
168
169 /**
170  * Sets node to commutative.
171  */
172 void set_ia32_commutative(ir_node *node);
173
174 /**
175  * Sets node to non-commutative.
176  */
177 void clear_ia32_commutative(ir_node *node);
178
179 /**
180  * Checks if node is commutative.
181  */
182 int is_ia32_commutative(const ir_node *node);
183
184 /**
185  * Sets node emit_cl.
186  */
187 void set_ia32_emit_cl(ir_node *node);
188
189 /**
190  * Clears node emit_cl.
191  */
192 void clear_ia32_emit_cl(ir_node *node);
193
194 /**
195  * Checks if node is commutative.
196  */
197 int is_ia32_emit_cl(const ir_node *node);
198
199 /**
200  * Sets node got_lea.
201  */
202 void set_ia32_got_lea(ir_node *node);
203
204 /**
205  * Clears node got_lea.
206  */
207 void clear_ia32_got_lea(ir_node *node);
208
209 /**
210  * Checks if node got lea.
211  */
212 int is_ia32_got_lea(const ir_node *node);
213
214 /**
215  * Sets node got_reload.
216  */
217 void set_ia32_got_reload(ir_node *node);
218
219 /**
220  * Clears node got_reload.
221  */
222 void clear_ia32_got_reload(ir_node *node);
223
224 /**
225  * Checks if node got reload.
226  */
227 int is_ia32_got_reload(const ir_node *node);
228
229 /**
230  * Gets the mode of the stored/loaded value (only set for Store/Load)
231  */
232 ir_mode *get_ia32_ls_mode(const ir_node *node);
233
234 /**
235  * Sets the mode of the stored/loaded value (only set for Store/Load)
236  */
237 void set_ia32_ls_mode(ir_node *node, ir_mode *mode);
238
239 /**
240  * Gets the mode of the result.
241  */
242 ir_mode *get_ia32_res_mode(const ir_node *node);
243
244 /**
245  * Sets the mode of the result.
246  */
247 void set_ia32_res_mode(ir_node *node, ir_mode *mode);
248
249 /**
250  * Gets the source mode of conversion.
251  */
252 ir_mode *get_ia32_src_mode(const ir_node *node);
253
254 /**
255  * Sets the source mode of conversion.
256  */
257 void set_ia32_src_mode(ir_node *node, ir_mode *mode);
258
259 /**
260  * Gets the target mode of conversion.
261  */
262 ir_mode *get_ia32_tgt_mode(const ir_node *node);
263
264 /**
265  * Sets the target mode of conversion.
266  */
267 void set_ia32_tgt_mode(ir_node *node, ir_mode *mode);
268
269 /**
270  * Gets the frame entity assigned to this node;
271  */
272 entity *get_ia32_frame_ent(const ir_node *node);
273
274 /**
275  * Sets the frame entity for this node;
276  */
277 void set_ia32_frame_ent(ir_node *node, entity *ent);
278
279 /**
280  * Returns the argument register requirements of an ia32 node.
281  */
282 const ia32_register_req_t **get_ia32_in_req_all(const ir_node *node);
283
284 /**
285  * Sets the argument register requirements of an ia32 node.
286  */
287 void set_ia32_in_req_all(ir_node *node, const ia32_register_req_t **reqs);
288
289 /**
290  * Returns the result register requirements of an ia32 node.
291  */
292 const ia32_register_req_t **get_ia32_out_req_all(const ir_node *node);
293
294 /**
295  * Sets the result register requirements of an ia32 node.
296  */
297 void set_ia32_out_req_all(ir_node *node, const ia32_register_req_t **reqs);
298
299 /**
300  * Returns the argument register requirements of an ia32 node.
301  */
302 const ia32_register_req_t *get_ia32_in_req(const ir_node *node, int pos);
303
304 /**
305  * Returns the result register requirements of an ia32 node.
306  */
307 const ia32_register_req_t *get_ia32_out_req(const ir_node *node, int pos);
308
309 /**
310  * Sets the OUT register requirements at position pos.
311  */
312 void set_ia32_req_out(ir_node *node, const ia32_register_req_t *req, int pos);
313
314 /**
315  * Sets the IN register requirements at position pos.
316  */
317 void set_ia32_req_in(ir_node *node, const ia32_register_req_t *req, int pos);
318
319 /**
320  * Returns the register flag of an ia32 node.
321  */
322 arch_irn_flags_t get_ia32_flags(const ir_node *node);
323
324 /**
325  * Sets the register flag of an ia32 node.
326  */
327 void set_ia32_flags(ir_node *node, arch_irn_flags_t flags);
328
329 /**
330  * Returns the result register slots of an ia32 node.
331  */
332 const arch_register_t **get_ia32_slots(const ir_node *node);
333
334 /**
335  * Returns the name of the OUT register at position pos.
336  */
337 const char *get_ia32_out_reg_name(const ir_node *node, int pos);
338
339 /**
340  * Returns the index of the OUT register at position pos within its register class.
341  */
342 int get_ia32_out_regnr(const ir_node *node, int pos);
343
344 /**
345  * Returns the OUT register at position pos.
346  */
347 const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos);
348
349 /**
350  * Sets the number of results.
351  */
352 void set_ia32_n_res(ir_node *node, int n_res);
353
354 /**
355  * Returns the number of results.
356  */
357 int get_ia32_n_res(const ir_node *node);
358
359 /**
360  * Returns the flavour of an ia32 node,
361  */
362 ia32_op_flavour_t get_ia32_flavour(const ir_node *node);
363
364 /**
365  * Sets the flavour of an ia32 node to flavour_Div/Mod/DivMod/Mul/Mulh.
366  */
367 void set_ia32_flavour(ir_node *node, ia32_op_flavour_t op_flav);
368
369 /**
370  * Returns the projnum code.
371  */
372 long get_ia32_pncode(const ir_node *node);
373
374 /**
375  * Sets the projnum code
376  */
377 void set_ia32_pncode(ir_node *node, long code);
378
379 /**
380  * Gets the instruction latency.
381  */
382 unsigned get_ia32_latency(const ir_node *node);
383
384 /**
385  * Sets the instruction latency.
386  */
387 void set_ia32_latency(ir_node *node, unsigned latency);
388
389 #ifndef NDEBUG
390
391 /**
392  * Returns the name of the original ir node.
393  */
394 const char *get_ia32_orig_node(const ir_node *node);
395
396 /**
397  * Sets the name of the original ir node.
398  */
399 void set_ia32_orig_node(ir_node *node, const char *name);
400
401 #endif /* NDEBUG */
402
403 /******************************************************************************************************
404  *                      _       _         _   _           __                  _   _
405  *                     (_)     | |       | | | |         / _|                | | (_)
406  *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
407  * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
408  * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
409  * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
410  *     | |
411  *     |_|
412  ******************************************************************************************************/
413
414 /**
415  * Gets the type of an ia32_Const.
416  */
417 unsigned get_ia32_Const_type(const ir_node *node);
418
419 /**
420  * Sets the type of an ia32_Const.
421  */
422 void set_ia32_Const_type(ir_node *node, int type);
423
424 /**
425  * Copy the attributes from an ia32_Const to an Immop (Add_i, Sub_i, ...) node
426  */
427 void set_ia32_Immop_attr(ir_node *node, ir_node *cnst);
428
429 /**
430  * Copy the attributes from Immop to an Immop
431  */
432 void copy_ia32_Immop_attr(ir_node *node, ir_node *src);
433
434 /**
435  * Copy the attributes from a Const to an ia32_Const
436  */
437 void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst);
438
439 /**
440  * Sets the AddrMode attribute
441  * @param direction The "direction" of AM ('S' source or 'D' destination)
442  */
443 void set_ia32_AddrMode(ir_node *node, char direction);
444
445 /**
446  * Returns whether or not the node is an immediate operation with Const.
447  */
448 int is_ia32_ImmConst(const ir_node *node);
449
450 /**
451  * Returns whether or not the node is an immediate operation with SymConst.
452  */
453 int is_ia32_ImmSymConst(const ir_node *node);
454
455 /**
456  * Returns whether or not the node is an AddrModeS node.
457  */
458 int is_ia32_AddrModeS(const ir_node *node);
459
460 /**
461  * Returns whether or not the node is an AddrModeD node.
462  */
463 int is_ia32_AddrModeD(const ir_node *node);
464
465 /**
466  * Checks if node is a Load or fLoad.
467  */
468 int is_ia32_Ld(const ir_node *node);
469
470 /**
471  * Checks if node is a Store or fStore.
472  */
473 int is_ia32_St(const ir_node *node);
474
475 /**
476  * Checks if node is a Const or fConst.
477  */
478 int is_ia32_Cnst(const ir_node *node);
479
480 /**
481  * Initializes the nodes attributes.
482  */
483 void init_ia32_attributes(ir_node *node, arch_irn_flags_t flags, const ia32_register_req_t **in_reqs, \
484         const ia32_register_req_t **out_reqs, int n_res, unsigned latency);
485
486 /* Include the generated headers */
487 #include "gen_ia32_new_nodes.h"
488
489 #endif /* _IA32_NEW_NODES_H_ */