9d03609854e8793e3a2f85123a1ecd0b1abaa80d
[libfirm] / ir / be / ia32 / ia32_new_nodes.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Handling of ia32 specific firm opcodes.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  *
26  * This file implements the creation of the achitecture specific firm opcodes
27  * and the corresponding node constructors for the ia32 assembler irg.
28  */
29 #ifdef HAVE_CONFIG_H
30 #include "config.h"
31 #endif
32
33 #include <stdlib.h>
34
35 #include "irprog_t.h"
36 #include "irgraph_t.h"
37 #include "irnode_t.h"
38 #include "irmode_t.h"
39 #include "ircons_t.h"
40 #include "iropt_t.h"
41 #include "irop.h"
42 #include "firm_common_t.h"
43 #include "irvrfy_t.h"
44 #include "irprintf.h"
45 #include "iredges.h"
46 #include "error.h"
47 #include "raw_bitset.h"
48 #include "xmalloc.h"
49
50 #include "../bearch_t.h"
51
52 #include "bearch_ia32_t.h"
53 #include "ia32_nodes_attr.h"
54 #include "ia32_new_nodes.h"
55 #include "gen_ia32_regalloc_if.h"
56 #include "gen_ia32_machine.h"
57
58 /***********************************************************************************
59  *      _                                   _       _             __
60  *     | |                                 (_)     | |           / _|
61  *   __| |_   _ _ __ ___  _ __   ___ _ __   _ _ __ | |_ ___ _ __| |_ __ _  ___ ___
62  *  / _` | | | | '_ ` _ \| '_ \ / _ \ '__| | | '_ \| __/ _ \ '__|  _/ _` |/ __/ _ \
63  * | (_| | |_| | | | | | | |_) |  __/ |    | | | | | ||  __/ |  | || (_| | (_|  __/
64  *  \__,_|\__,_|_| |_| |_| .__/ \___|_|    |_|_| |_|\__\___|_|  |_| \__,_|\___\___|
65  *                       | |
66  *                       |_|
67  ***********************************************************************************/
68
69 /**
70  * Dumps the register requirements for either in or out.
71  */
72 static void dump_reg_req(FILE *F, ir_node *n, const arch_register_req_t **reqs,
73                          int inout) {
74         char *dir = inout ? "out" : "in";
75         int   max = inout ? get_ia32_n_res(n) : get_irn_arity(n);
76         char  buf[1024];
77         int   i;
78
79         memset(buf, 0, sizeof(buf));
80
81         if (reqs) {
82                 for (i = 0; i < max; i++) {
83                         fprintf(F, "%sreq #%d =", dir, i);
84
85                         if (reqs[i]->type == arch_register_req_type_none) {
86                                 fprintf(F, " n/a");
87                         }
88
89                         if (reqs[i]->type & arch_register_req_type_normal) {
90                                 fprintf(F, " %s", reqs[i]->cls->name);
91                         }
92
93                         if (reqs[i]->type & arch_register_req_type_limited) {
94                                 fprintf(F, " %s",
95                                         arch_register_req_format(buf, sizeof(buf), reqs[i], n));
96                         }
97
98                         if (reqs[i]->type & arch_register_req_type_should_be_same) {
99                                 ir_fprintf(F, " same as %+F", get_irn_n(n, reqs[i]->other_same[0]));
100                                 if (reqs[i]->other_same[1] != -1)
101                                         ir_fprintf(F, " or %+F", get_irn_n(n, reqs[i]->other_same[1]));
102                         }
103
104                         if (reqs[i]->type & arch_register_req_type_should_be_different) {
105                                 ir_fprintf(F, " different from %+F", get_irn_n(n, reqs[i]->other_different));
106                         }
107
108                         fprintf(F, "\n");
109                 }
110
111                 fprintf(F, "\n");
112         }
113         else {
114                 fprintf(F, "%sreq = N/A\n", dir);
115         }
116 }
117
118 /**
119  * Dumper interface for dumping ia32 nodes in vcg.
120  * @param n        the node to dump
121  * @param F        the output file
122  * @param reason   indicates which kind of information should be dumped
123  * @return 0 on success or != 0 on failure
124  */
125 static int ia32_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
126         ir_mode     *mode = NULL;
127         int          bad  = 0;
128         int          i, n_res, flags;
129         const arch_register_req_t **reqs;
130         const arch_register_t     **slots;
131
132         switch (reason) {
133                 case dump_node_opcode_txt:
134                         fprintf(F, "%s", get_irn_opname(n));
135
136                         if(is_ia32_Immediate(n) || is_ia32_Const(n)) {
137                                 const ia32_immediate_attr_t *attr
138                                         = get_ia32_immediate_attr_const(n);
139
140                                 fputc(' ', F);
141                                 if(attr->symconst) {
142                                         if(attr->sc_sign) {
143                                                 fputc('-', F);
144                                         }
145                                         fputs(get_entity_name(attr->symconst), F);
146                                 }
147                                 if(attr->offset != 0 || attr->symconst == NULL) {
148                                         if(attr->offset > 0 && attr->symconst != NULL) {
149                                                 fputc('+', F);
150                                         }
151                                         fprintf(F, "%ld", attr->offset);
152                                 }
153                         }
154                         else {
155                                 const ia32_attr_t *attr = get_ia32_attr_const(n);
156
157                                 if(attr->am_sc != NULL || attr->am_offs != 0)
158                                         fputs(" [", F);
159
160                                 if(attr->am_sc != NULL) {
161                                         if(attr->data.am_sc_sign) {
162                                                 fputc('-', F);
163                                         }
164                                         fputs(get_entity_name(attr->am_sc), F);
165                                 }
166                                 if(attr->am_offs != 0) {
167                                         if(attr->am_offs > 0 && attr->am_sc != NULL) {
168                                                 fputc('+', F);
169                                         }
170                                         fprintf(F, "%d", attr->am_offs);
171                                 }
172
173                                 if(attr->am_sc != NULL || attr->am_offs != 0)
174                                         fputc(']', F);
175                         }
176                         break;
177
178                 case dump_node_mode_txt:
179                         if (is_ia32_Ld(n) || is_ia32_St(n)) {
180                                 mode = get_ia32_ls_mode(n);
181                                 fprintf(F, "[%s]", mode ? get_mode_name(mode) : "?NOMODE?");
182                         }
183                         break;
184
185                 case dump_node_nodeattr_txt:
186                         if (! is_ia32_Lea(n)) {
187                                 if (is_ia32_AddrModeS(n)) {
188                                         fprintf(F, "[AM S] ");
189                                 } else if (is_ia32_AddrModeD(n)) {
190                                         fprintf(F, "[AM D] ");
191                                 }
192                         }
193
194                         break;
195
196                 case dump_node_info_txt:
197                         n_res = get_ia32_n_res(n);
198                         fprintf(F, "=== IA32 attr begin ===\n");
199
200                         /* dump IN requirements */
201                         if (get_irn_arity(n) > 0) {
202                                 reqs = get_ia32_in_req_all(n);
203                                 dump_reg_req(F, n, reqs, 0);
204                         }
205
206                         /* dump OUT requirements */
207                         if (n_res > 0) {
208                                 reqs = get_ia32_out_req_all(n);
209                                 dump_reg_req(F, n, reqs, 1);
210                         }
211
212                         /* dump assigned registers */
213                         slots = get_ia32_slots(n);
214                         if (slots && n_res > 0) {
215                                 for (i = 0; i < n_res; i++) {
216                                         const arch_register_t *reg;
217
218                                         reg = slots[i];
219
220                                         fprintf(F, "reg #%d = %s\n", i, reg ? arch_register_get_name(reg) : "n/a");
221                                 }
222                                 fprintf(F, "\n");
223                         }
224
225                         /* dump op type */
226                         fprintf(F, "op = ");
227                         switch (get_ia32_op_type(n)) {
228                                 case ia32_Normal:
229                                         fprintf(F, "Normal");
230                                         break;
231                                 case ia32_AddrModeD:
232                                         fprintf(F, "AM Dest (Load+Store)");
233                                         break;
234                                 case ia32_AddrModeS:
235                                         fprintf(F, "AM Source (Load)");
236                                         break;
237                                 default:
238                                         fprintf(F, "unknown (%d)", get_ia32_op_type(n));
239                                         break;
240                         }
241                         fprintf(F, "\n");
242
243                         /* dump supported am */
244                         fprintf(F, "AM support = ");
245                         switch (get_ia32_am_support(n)) {
246                                 case ia32_am_None:
247                                         fprintf(F, "none");
248                                         break;
249                                 case ia32_am_Source:
250                                         fprintf(F, "source only (Load)");
251                                         break;
252                                 case ia32_am_Dest:
253                                         fprintf(F, "dest only (Load+Store)");
254                                         break;
255                                 case ia32_am_Full:
256                                         fprintf(F, "full");
257                                         break;
258                                 default:
259                                         fprintf(F, "unknown (%d)", get_ia32_am_support(n));
260                                         break;
261                         }
262                         fprintf(F, "\n");
263
264                         /* dump AM offset */
265                         if(get_ia32_am_offs_int(n) != 0) {
266                                 fprintf(F, "AM offset = %d\n", get_ia32_am_offs_int(n));
267                         }
268
269                         /* dump AM symconst */
270                         if(get_ia32_am_sc(n) != NULL) {
271                                 ir_entity *ent = get_ia32_am_sc(n);
272                                 ident *id = get_entity_ld_ident(ent);
273                                 fprintf(F, "AM symconst = %s\n", get_id_str(id));
274                         }
275
276                         /* dump AM scale */
277                         fprintf(F, "AM scale = %d\n", get_ia32_am_scale(n));
278
279                         /* dump pn code */
280                         if (is_ia32_SwitchJmp(n)) {
281                                 fprintf(F, "pn_code = %ld\n", get_ia32_condcode(n));
282                         } else if (is_ia32_CMov(n) || is_ia32_Set(n) || is_ia32_Jcc(n)) {
283                                 long pnc = get_ia32_condcode(n);
284                                 fprintf(F, "pn_code = %ld (%s)\n", pnc, get_pnc_string(pnc));
285                         }
286                         else if (is_ia32_CopyB(n) || is_ia32_CopyB_i(n)) {
287                                 fprintf(F, "size = %u\n", get_ia32_copyb_size(n));
288                         }
289
290                         /* dump n_res */
291                         fprintf(F, "n_res = %d\n", get_ia32_n_res(n));
292
293                         /* dump use_frame */
294                         fprintf(F, "use_frame = %d\n", is_ia32_use_frame(n));
295
296                         /* commutative */
297                         fprintf(F, "commutative = %d\n", is_ia32_commutative(n));
298
299                         /* need stackent */
300                         fprintf(F, "need stackent = %d\n", is_ia32_need_stackent(n));
301
302                         /* dump latency */
303                         fprintf(F, "latency = %d\n", get_ia32_latency(n));
304
305                         /* dump flags */
306                         fprintf(F, "flags =");
307                         flags = get_ia32_flags(n);
308                         if (flags == arch_irn_flags_none) {
309                                 fprintf(F, " none");
310                         }
311                         else {
312                                 if (flags & arch_irn_flags_dont_spill) {
313                                         fprintf(F, " unspillable");
314                                 }
315                                 if (flags & arch_irn_flags_rematerializable) {
316                                         fprintf(F, " remat");
317                                 }
318                                 if (flags & arch_irn_flags_ignore) {
319                                         fprintf(F, " ignore");
320                                 }
321                                 if (flags & arch_irn_flags_modify_sp) {
322                                         fprintf(F, " modify_sp");
323                                 }
324                         }
325                         fprintf(F, " (%d)\n", flags);
326
327                         /* dump frame entity */
328                         fprintf(F, "frame entity = ");
329                         if (get_ia32_frame_ent(n)) {
330                                 ir_fprintf(F, "%+F", get_ia32_frame_ent(n));
331                         }
332                         else {
333                                 fprintf(F, "n/a");
334                         }
335                         fprintf(F, "\n");
336
337                         /* dump modes */
338                         fprintf(F, "ls_mode = ");
339                         if (get_ia32_ls_mode(n)) {
340                                 ir_fprintf(F, "%+F", get_ia32_ls_mode(n));
341                         }
342                         else {
343                                 fprintf(F, "n/a");
344                         }
345                         fprintf(F, "\n");
346
347 #ifndef NDEBUG
348                         /* dump original ir node name */
349                         fprintf(F, "orig node = ");
350                         if (get_ia32_orig_node(n)) {
351                                 fprintf(F, "%s", get_ia32_orig_node(n));
352                         }
353                         else {
354                                 fprintf(F, "n/a");
355                         }
356                         fprintf(F, "\n");
357 #endif /* NDEBUG */
358
359                         fprintf(F, "=== IA32 attr end ===\n");
360                         /* end of: case dump_node_info_txt */
361                         break;
362         }
363
364         return bad;
365 }
366
367
368
369 /***************************************************************************************************
370  *        _   _                   _       __        _                    _   _               _
371  *       | | | |                 | |     / /       | |                  | | | |             | |
372  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
373  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
374  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
375  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
376  *                                        __/ |
377  *                                       |___/
378  ***************************************************************************************************/
379
380 ia32_attr_t *get_ia32_attr(ir_node *node) {
381         assert(is_ia32_irn(node) && "need ia32 node to get ia32 attributes");
382         return (ia32_attr_t *)get_irn_generic_attr(node);
383 }
384
385 const ia32_attr_t *get_ia32_attr_const(const ir_node *node) {
386         assert(is_ia32_irn(node) && "need ia32 node to get ia32 attributes");
387         return (const ia32_attr_t*) get_irn_generic_attr_const(node);
388 }
389
390 ia32_x87_attr_t *get_ia32_x87_attr(ir_node *node) {
391         ia32_attr_t     *attr     = get_ia32_attr(node);
392         ia32_x87_attr_t *x87_attr = CAST_IA32_ATTR(ia32_x87_attr_t, attr);
393         return x87_attr;
394 }
395
396 const ia32_x87_attr_t *get_ia32_x87_attr_const(const ir_node *node) {
397         const ia32_attr_t     *attr     = get_ia32_attr_const(node);
398         const ia32_x87_attr_t *x87_attr = CONST_CAST_IA32_ATTR(ia32_x87_attr_t, attr);
399         return x87_attr;
400 }
401
402 const ia32_asm_attr_t *get_ia32_asm_attr_const(const ir_node *node) {
403         const ia32_attr_t     *attr     = get_ia32_attr_const(node);
404         const ia32_asm_attr_t *asm_attr = CONST_CAST_IA32_ATTR(ia32_asm_attr_t, attr);
405
406         return asm_attr;
407 }
408
409 const ia32_immediate_attr_t *get_ia32_immediate_attr_const(const ir_node *node)
410 {
411         const ia32_attr_t           *attr     = get_ia32_attr_const(node);
412         const ia32_immediate_attr_t *imm_attr = CONST_CAST_IA32_ATTR(ia32_immediate_attr_t, attr);
413
414         assert(is_ia32_Immediate(node) || is_ia32_Const(node));
415         return imm_attr;
416 }
417
418 ia32_condcode_attr_t *get_ia32_condcode_attr(ir_node *node) {
419         ia32_attr_t          *attr    = get_ia32_attr(node);
420         ia32_condcode_attr_t *cc_attr = CAST_IA32_ATTR(ia32_condcode_attr_t, attr);
421
422         assert(is_ia32_SwitchJmp(node) || is_ia32_CMov(node) || is_ia32_Set(node) || is_ia32_Jcc(node));
423         return cc_attr;
424 }
425
426 const ia32_condcode_attr_t *get_ia32_condcode_attr_const(const ir_node *node) {
427         const ia32_attr_t          *attr    = get_ia32_attr_const(node);
428         const ia32_condcode_attr_t *cc_attr = CONST_CAST_IA32_ATTR(ia32_condcode_attr_t, attr);
429
430         assert(is_ia32_SwitchJmp(node) || is_ia32_CMov(node) || is_ia32_Set(node) || is_ia32_Jcc(node));
431         return cc_attr;
432 }
433
434 ia32_copyb_attr_t *get_ia32_copyb_attr(ir_node *node) {
435         ia32_attr_t       *attr       = get_ia32_attr(node);
436         ia32_copyb_attr_t *copyb_attr = CAST_IA32_ATTR(ia32_copyb_attr_t, attr);
437
438         assert(is_ia32_CopyB(node) || is_ia32_CopyB_i(node));
439         return copyb_attr;
440 }
441
442 const ia32_copyb_attr_t *get_ia32_copyb_attr_const(const ir_node *node) {
443         const ia32_attr_t       *attr       = get_ia32_attr_const(node);
444         const ia32_copyb_attr_t *copyb_attr = CONST_CAST_IA32_ATTR(ia32_copyb_attr_t, attr);
445
446         assert(is_ia32_CopyB(node) || is_ia32_CopyB_i(node));
447         return copyb_attr;
448 }
449
450 /**
451  * Gets the type of an ia32 node.
452  */
453 ia32_op_type_t get_ia32_op_type(const ir_node *node) {
454         const ia32_attr_t *attr = get_ia32_attr_const(node);
455         return attr->data.tp;
456 }
457
458 /**
459  * Sets the type of an ia32 node.
460  */
461 void set_ia32_op_type(ir_node *node, ia32_op_type_t tp) {
462         ia32_attr_t *attr = get_ia32_attr(node);
463         attr->data.tp     = tp;
464 }
465
466 /**
467  * Gets the supported address mode of an ia32 node
468  */
469 ia32_am_type_t get_ia32_am_support(const ir_node *node) {
470         const ia32_attr_t *attr = get_ia32_attr_const(node);
471         return attr->data.am_support;
472 }
473
474 ia32_am_arity_t get_ia32_am_arity(const ir_node *node) {
475         const ia32_attr_t *attr = get_ia32_attr_const(node);
476         return attr->data.am_arity;
477 }
478
479 /**
480  * Sets the supported address mode of an ia32 node
481  */
482 void set_ia32_am_support(ir_node *node, ia32_am_type_t am_tp,
483                          ia32_am_arity_t arity) {
484         ia32_attr_t *attr     = get_ia32_attr(node);
485         attr->data.am_support = am_tp;
486         attr->data.am_arity   = arity;
487
488         assert((am_tp == ia32_am_None && arity == ia32_am_arity_none) ||
489                (am_tp != ia32_am_None &&
490                ((arity == ia32_am_unary) || (arity == ia32_am_binary) || (arity == ia32_am_ternary))));
491 }
492
493 /**
494  * Gets the address mode offset as int.
495  */
496 int get_ia32_am_offs_int(const ir_node *node) {
497         const ia32_attr_t *attr = get_ia32_attr_const(node);
498         return attr->am_offs;
499 }
500
501 /**
502  * Sets the address mode offset from an int.
503  */
504 void set_ia32_am_offs_int(ir_node *node, int offset) {
505         ia32_attr_t *attr = get_ia32_attr(node);
506         attr->am_offs = offset;
507 }
508
509 void add_ia32_am_offs_int(ir_node *node, int offset) {
510         ia32_attr_t *attr = get_ia32_attr(node);
511         attr->am_offs += offset;
512 }
513
514 /**
515  * Returns the symconst entity associated to address mode.
516  */
517 ir_entity *get_ia32_am_sc(const ir_node *node) {
518         const ia32_attr_t *attr = get_ia32_attr_const(node);
519         return attr->am_sc;
520 }
521
522 /**
523  * Sets the symconst entity associated to address mode.
524  */
525 void set_ia32_am_sc(ir_node *node, ir_entity *entity) {
526         ia32_attr_t *attr = get_ia32_attr(node);
527         attr->am_sc       = entity;
528 }
529
530 /**
531  * Sets the sign bit for address mode symconst.
532  */
533 void set_ia32_am_sc_sign(ir_node *node) {
534         ia32_attr_t *attr     = get_ia32_attr(node);
535         attr->data.am_sc_sign = 1;
536 }
537
538 /**
539  * Clears the sign bit for address mode symconst.
540  */
541 void clear_ia32_am_sc_sign(ir_node *node) {
542         ia32_attr_t *attr     = get_ia32_attr(node);
543         attr->data.am_sc_sign = 0;
544 }
545
546 /**
547  * Returns the sign bit for address mode symconst.
548  */
549 int is_ia32_am_sc_sign(const ir_node *node) {
550         const ia32_attr_t *attr = get_ia32_attr_const(node);
551         return attr->data.am_sc_sign;
552 }
553
554 /**
555  * Gets the addr mode const.
556  */
557 int get_ia32_am_scale(const ir_node *node) {
558         const ia32_attr_t *attr = get_ia32_attr_const(node);
559         return attr->data.am_scale;
560 }
561
562 /**
563  * Sets the index register scale for address mode.
564  */
565 void set_ia32_am_scale(ir_node *node, int scale) {
566         ia32_attr_t *attr   = get_ia32_attr(node);
567         attr->data.am_scale = scale;
568 }
569
570 void ia32_copy_am_attrs(ir_node *to, const ir_node *from)
571 {
572         set_ia32_ls_mode(to, get_ia32_ls_mode(from));
573         set_ia32_am_scale(to, get_ia32_am_scale(from));
574         set_ia32_am_sc(to, get_ia32_am_sc(from));
575         if(is_ia32_am_sc_sign(from))
576                 set_ia32_am_sc_sign(to);
577         add_ia32_am_offs_int(to, get_ia32_am_offs_int(from));
578         set_ia32_frame_ent(to, get_ia32_frame_ent(from));
579         if (is_ia32_use_frame(from))
580                 set_ia32_use_frame(to);
581 }
582
583 /**
584  * Sets the uses_frame flag.
585  */
586 void set_ia32_use_frame(ir_node *node) {
587         ia32_attr_t *attr    = get_ia32_attr(node);
588         attr->data.use_frame = 1;
589 }
590
591 /**
592  * Clears the uses_frame flag.
593  */
594 void clear_ia32_use_frame(ir_node *node) {
595         ia32_attr_t *attr    = get_ia32_attr(node);
596         attr->data.use_frame = 0;
597 }
598
599 /**
600  * Gets the uses_frame flag.
601  */
602 int is_ia32_use_frame(const ir_node *node) {
603         const ia32_attr_t *attr = get_ia32_attr_const(node);
604         return attr->data.use_frame;
605 }
606
607 /**
608  * Sets node to commutative.
609  */
610 void set_ia32_commutative(ir_node *node) {
611         ia32_attr_t *attr         = get_ia32_attr(node);
612         attr->data.is_commutative = 1;
613 }
614
615 /**
616  * Sets node to non-commutative.
617  */
618 void clear_ia32_commutative(ir_node *node) {
619         ia32_attr_t *attr         = get_ia32_attr(node);
620         attr->data.is_commutative = 0;
621 }
622
623 /**
624  * Checks if node is commutative.
625  */
626 int is_ia32_commutative(const ir_node *node) {
627         const ia32_attr_t *attr = get_ia32_attr_const(node);
628         return attr->data.is_commutative;
629 }
630
631 void set_ia32_need_stackent(ir_node *node) {
632         ia32_attr_t *attr     = get_ia32_attr(node);
633         attr->data.need_stackent = 1;
634 }
635
636 void clear_ia32_need_stackent(ir_node *node) {
637         ia32_attr_t *attr     = get_ia32_attr(node);
638         attr->data.need_stackent = 0;
639 }
640
641 int is_ia32_need_stackent(const ir_node *node) {
642         const ia32_attr_t *attr = get_ia32_attr_const(node);
643         return attr->data.need_stackent;
644 }
645
646 /**
647  * Gets the mode of the stored/loaded value (only set for Store/Load)
648  */
649 ir_mode *get_ia32_ls_mode(const ir_node *node) {
650         const ia32_attr_t *attr = get_ia32_attr_const(node);
651         return attr->ls_mode;
652 }
653
654 /**
655  * Sets the mode of the stored/loaded value (only set for Store/Load)
656  */
657 void set_ia32_ls_mode(ir_node *node, ir_mode *mode) {
658         ia32_attr_t *attr = get_ia32_attr(node);
659         attr->ls_mode     = mode;
660 }
661
662 /**
663  * Gets the frame entity assigned to this node.
664  */
665 ir_entity *get_ia32_frame_ent(const ir_node *node) {
666         const ia32_attr_t *attr = get_ia32_attr_const(node);
667         return attr->frame_ent;
668 }
669
670 /**
671  * Sets the frame entity for this node.
672  */
673 void set_ia32_frame_ent(ir_node *node, ir_entity *ent) {
674         ia32_attr_t *attr = get_ia32_attr(node);
675         attr->frame_ent   = ent;
676         if(ent != NULL)
677                 set_ia32_use_frame(node);
678         else
679                 clear_ia32_use_frame(node);
680 }
681
682
683 /**
684  * Gets the instruction latency.
685  */
686 unsigned get_ia32_latency(const ir_node *node) {
687         const ir_op *op               = get_irn_op(node);
688         const ia32_op_attr_t *op_attr = (ia32_op_attr_t*) get_op_attr(op);
689         return op_attr->latency;
690 }
691
692 /**
693  * Returns the argument register requirements of an ia32 node.
694  */
695 const arch_register_req_t **get_ia32_in_req_all(const ir_node *node) {
696         const ia32_attr_t *attr = get_ia32_attr_const(node);
697         return attr->in_req;
698 }
699
700 /**
701  * Sets the argument register requirements of an ia32 node.
702  */
703 void set_ia32_in_req_all(ir_node *node, const arch_register_req_t **reqs) {
704         ia32_attr_t *attr = get_ia32_attr(node);
705         attr->in_req      = reqs;
706 }
707
708 /**
709  * Returns the result register requirements of an ia32 node.
710  */
711 const arch_register_req_t **get_ia32_out_req_all(const ir_node *node) {
712         const ia32_attr_t *attr = get_ia32_attr_const(node);
713         return attr->out_req;
714 }
715
716 /**
717  * Sets the result register requirements of an ia32 node.
718  */
719 void set_ia32_out_req_all(ir_node *node, const arch_register_req_t **reqs) {
720         ia32_attr_t *attr = get_ia32_attr(node);
721         attr->out_req     = reqs;
722 }
723
724 /**
725  * Returns the argument register requirement at position pos of an ia32 node.
726  */
727 const arch_register_req_t *get_ia32_in_req(const ir_node *node, int pos) {
728         const ia32_attr_t *attr = get_ia32_attr_const(node);
729         if(attr->in_req == NULL)
730                 return arch_no_register_req;
731
732         return attr->in_req[pos];
733 }
734
735 /**
736  * Returns the result register requirement at position pos of an ia32 node.
737  */
738 const arch_register_req_t *get_ia32_out_req(const ir_node *node, int pos) {
739         const ia32_attr_t *attr = get_ia32_attr_const(node);
740         if(attr->out_req == NULL)
741                 return arch_no_register_req;
742
743         return attr->out_req[pos];
744 }
745
746 /**
747  * Sets the OUT register requirements at position pos.
748  */
749 void set_ia32_req_out(ir_node *node, const arch_register_req_t *req, int pos) {
750         ia32_attr_t *attr  = get_ia32_attr(node);
751         attr->out_req[pos] = req;
752 }
753
754 /**
755  * Sets the IN register requirements at position pos.
756  */
757 void set_ia32_req_in(ir_node *node, const arch_register_req_t *req, int pos) {
758         ia32_attr_t *attr = get_ia32_attr(node);
759         attr->in_req[pos] = req;
760 }
761
762 /**
763  * Returns the register flag of an ia32 node.
764  */
765 arch_irn_flags_t get_ia32_flags(const ir_node *node) {
766         const ia32_attr_t *attr = get_ia32_attr_const(node);
767         return attr->data.flags;
768 }
769
770 /**
771  * Sets the register flag of an ia32 node.
772  */
773 void set_ia32_flags(ir_node *node, arch_irn_flags_t flags) {
774         ia32_attr_t *attr = get_ia32_attr(node);
775         attr->data.flags  = flags;
776 }
777
778 /**
779  * Returns the result register slots of an ia32 node.
780  */
781 const arch_register_t **get_ia32_slots(const ir_node *node) {
782         const ia32_attr_t *attr = get_ia32_attr_const(node);
783         return attr->slots;
784 }
785
786 /**
787  * Returns the number of results.
788  */
789 int get_ia32_n_res(const ir_node *node) {
790         const ia32_attr_t *attr = get_ia32_attr_const(node);
791         return ARR_LEN(attr->slots);
792 }
793
794 /**
795  * Returns the condition code of a node.
796  */
797 long get_ia32_condcode(const ir_node *node)
798 {
799         const ia32_condcode_attr_t *attr = get_ia32_condcode_attr_const(node);
800         return attr->pn_code;
801 }
802
803 /**
804  * Sets the condition code of a node
805  */
806 void set_ia32_condcode(ir_node *node, long code)
807 {
808         ia32_condcode_attr_t *attr = get_ia32_condcode_attr(node);
809         attr->pn_code = code;
810 }
811
812 /**
813  * Returns the condition code of a node.
814  */
815 unsigned get_ia32_copyb_size(const ir_node *node)
816 {
817         const ia32_copyb_attr_t *attr = get_ia32_copyb_attr_const(node);
818         return attr->size;
819 }
820
821 /**
822  * Sets the flags for the n'th out.
823  */
824 void set_ia32_out_flags(ir_node *node, arch_irn_flags_t flags, int pos) {
825         ia32_attr_t *attr = get_ia32_attr(node);
826         assert(pos < ARR_LEN(attr->out_flags) && "Invalid OUT position.");
827         attr->out_flags[pos] = flags;
828 }
829
830 /**
831  * Gets the flags for the n'th out.
832  */
833 arch_irn_flags_t get_ia32_out_flags(const ir_node *node, int pos) {
834         const ia32_attr_t *attr = get_ia32_attr_const(node);
835         assert(pos < ARR_LEN(attr->out_flags) && "Invalid OUT position.");
836         return attr->out_flags[pos];
837 }
838
839 /**
840  * Get the list of available execution units.
841  */
842 const be_execution_unit_t ***get_ia32_exec_units(const ir_node *node) {
843         const ia32_attr_t *attr = get_ia32_attr_const(node);
844         return attr->exec_units;
845 }
846
847 /**
848  * Get the exception label attribute.
849  */
850 unsigned get_ia32_exc_label(const ir_node *node) {
851         const ia32_attr_t *attr = get_ia32_attr_const(node);
852         return attr->data.except_label;
853 }
854
855 /**
856  * Set the exception label attribute.
857  */
858 void set_ia32_exc_label(ir_node *node, unsigned flag) {
859         ia32_attr_t *attr = get_ia32_attr(node);
860         attr->data.except_label = flag;
861 }
862
863 #ifndef NDEBUG
864
865 /**
866  * Returns the name of the original ir node.
867  */
868 const char *get_ia32_orig_node(const ir_node *node) {
869         const ia32_attr_t *attr = get_ia32_attr_const(node);
870         return attr->orig_node;
871 }
872
873 /**
874  * Sets the name of the original ir node.
875  */
876 void set_ia32_orig_node(ir_node *node, const char *name) {
877         ia32_attr_t *attr = get_ia32_attr(node);
878         attr->orig_node   = name;
879 }
880
881 #endif /* NDEBUG */
882
883 /******************************************************************************************************
884  *                      _       _         _   _           __                  _   _
885  *                     (_)     | |       | | | |         / _|                | | (_)
886  *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
887  * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
888  * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
889  * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
890  *     | |
891  *     |_|
892  ******************************************************************************************************/
893
894 /**
895  * Returns whether or not the node is an AddrModeS node.
896  */
897 int is_ia32_AddrModeS(const ir_node *node) {
898         const ia32_attr_t *attr = get_ia32_attr_const(node);
899         return (attr->data.tp == ia32_AddrModeS);
900 }
901
902 /**
903  * Returns whether or not the node is an AddrModeD node.
904  */
905 int is_ia32_AddrModeD(const ir_node *node) {
906         const ia32_attr_t *attr = get_ia32_attr_const(node);
907         return (attr->data.tp == ia32_AddrModeD);
908 }
909
910 /**
911  * Checks if node is a Load or xLoad/vfLoad.
912  */
913 int is_ia32_Ld(const ir_node *node) {
914         int op = get_ia32_irn_opcode(node);
915         return op == iro_ia32_Load ||
916                op == iro_ia32_xLoad ||
917                op == iro_ia32_vfld ||
918                op == iro_ia32_fld;
919 }
920
921 /**
922  * Checks if node is a Store or xStore/vfStore.
923  */
924 int is_ia32_St(const ir_node *node) {
925         int op = get_ia32_irn_opcode(node);
926         return op == iro_ia32_Store ||
927                op == iro_ia32_Store8Bit ||
928                op == iro_ia32_xStore ||
929                op == iro_ia32_vfst ||
930                op == iro_ia32_fst ||
931                op == iro_ia32_fstp;
932 }
933
934 /**
935  * Returns the name of the OUT register at position pos.
936  */
937 const char *get_ia32_out_reg_name(const ir_node *node, int pos) {
938         const ia32_attr_t *attr = get_ia32_attr_const(node);
939
940         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
941         assert(attr->slots[pos]  && "No register assigned");
942
943         return arch_register_get_name(attr->slots[pos]);
944 }
945
946 /**
947  * Returns the index of the OUT register at position pos within its register class.
948  */
949 int get_ia32_out_regnr(const ir_node *node, int pos) {
950         const ia32_attr_t *attr = get_ia32_attr_const(node);
951
952         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
953         assert(attr->slots[pos]  && "No register assigned");
954
955         return arch_register_get_index(attr->slots[pos]);
956 }
957
958 void ia32_swap_left_right(ir_node *node)
959 {
960         ia32_attr_t *attr  = get_ia32_attr(node);
961         ir_node     *left  = get_irn_n(node, n_ia32_binary_left);
962         ir_node     *right = get_irn_n(node, n_ia32_binary_right);
963
964         assert(is_ia32_commutative(node));
965         attr->data.ins_permuted = !attr->data.ins_permuted;
966         set_irn_n(node, n_ia32_binary_left,  right);
967         set_irn_n(node, n_ia32_binary_right, left);
968 }
969
970 /**
971  * Returns the OUT register at position pos.
972  */
973 const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos) {
974         const ia32_attr_t *attr = get_ia32_attr_const(node);
975
976         assert(pos < ARR_LEN(attr->slots) && "Invalid OUT position.");
977         assert(attr->slots[pos]  && "No register assigned");
978
979         return attr->slots[pos];
980 }
981
982 /**
983  * Initializes the nodes attributes.
984  */
985 void init_ia32_attributes(ir_node *node, arch_irn_flags_t flags,
986                           const arch_register_req_t **in_reqs,
987                           const arch_register_req_t **out_reqs,
988                           const be_execution_unit_t ***execution_units,
989                           int n_res)
990 {
991         ir_graph        *irg  = get_irn_irg(node);
992         struct obstack  *obst = get_irg_obstack(irg);
993         ia32_attr_t     *attr = get_ia32_attr(node);
994
995         set_ia32_flags(node, flags);
996         set_ia32_in_req_all(node, in_reqs);
997         set_ia32_out_req_all(node, out_reqs);
998
999         attr->exec_units  = execution_units;
1000 #ifndef NDEBUG
1001         attr->attr_type  |= IA32_ATTR_ia32_attr_t;
1002 #endif
1003
1004         attr->out_flags = NEW_ARR_D(int, obst, n_res);
1005         memset(attr->out_flags, 0, n_res * sizeof(attr->out_flags[0]));
1006
1007         attr->slots = NEW_ARR_D(const arch_register_t*, obst, n_res);
1008         /* void* cast to suppress an incorrect warning on MSVC */
1009         memset((void*)attr->slots, 0, n_res * sizeof(attr->slots[0]));
1010 }
1011
1012 void
1013 init_ia32_x87_attributes(ir_node *res)
1014 {
1015 #ifndef NDEBUG
1016         ia32_attr_t *attr  = get_ia32_attr(res);
1017         attr->attr_type   |= IA32_ATTR_ia32_x87_attr_t;
1018 #else
1019         (void) res;
1020 #endif
1021         ia32_current_cg->do_x87_sim = 1;
1022 }
1023
1024 void
1025 init_ia32_asm_attributes(ir_node *res)
1026 {
1027 #ifndef NDEBUG
1028         ia32_attr_t *attr  = get_ia32_attr(res);
1029         attr->attr_type   |= IA32_ATTR_ia32_asm_attr_t;
1030 #else
1031         (void) res;
1032 #endif
1033 }
1034
1035 void
1036 init_ia32_immediate_attributes(ir_node *res, ir_entity *symconst,
1037                                int symconst_sign, long offset)
1038 {
1039         ia32_immediate_attr_t *attr = get_irn_generic_attr(res);
1040
1041 #ifndef NDEBUG
1042         attr->attr.attr_type  |= IA32_ATTR_ia32_immediate_attr_t;
1043 #endif
1044         attr->symconst = symconst;
1045         attr->sc_sign  = symconst_sign;
1046         attr->offset   = offset;
1047 }
1048
1049 void
1050 init_ia32_copyb_attributes(ir_node *res, unsigned size) {
1051         ia32_copyb_attr_t *attr = get_irn_generic_attr(res);
1052
1053 #ifndef NDEBUG
1054         attr->attr.attr_type  |= IA32_ATTR_ia32_copyb_attr_t;
1055 #endif
1056         attr->size = size;
1057 }
1058
1059 void
1060 init_ia32_condcode_attributes(ir_node *res, long pnc) {
1061         ia32_condcode_attr_t *attr = get_irn_generic_attr(res);
1062
1063 #ifndef NDEBUG
1064         attr->attr.attr_type  |= IA32_ATTR_ia32_condcode_attr_t;
1065 #endif
1066         attr->pn_code = pnc;
1067 }
1068
1069 ir_node *get_ia32_result_proj(const ir_node *node)
1070 {
1071         const ir_edge_t *edge;
1072
1073         foreach_out_edge(node, edge) {
1074                 ir_node *proj = get_edge_src_irn(edge);
1075                 if(get_Proj_proj(proj) == 0) {
1076                         return proj;
1077                 }
1078         }
1079         return NULL;
1080 }
1081
1082 /***************************************************************************************
1083  *                  _                            _                   _
1084  *                 | |                          | |                 | |
1085  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
1086  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
1087  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
1088  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
1089  *
1090  ***************************************************************************************/
1091
1092 /* default compare operation to compare attributes */
1093 int ia32_compare_attr(const ia32_attr_t *a, const ia32_attr_t *b) {
1094         if (a->data.tp != b->data.tp)
1095                 return 1;
1096
1097         if (a->data.am_scale != b->data.am_scale
1098             || a->data.am_sc_sign != b->data.am_sc_sign
1099             || a->am_offs != b->am_offs
1100             || a->am_sc != b->am_sc
1101             || a->ls_mode != b->ls_mode)
1102                 return 1;
1103
1104         /* nodes with not yet assigned entities shouldn't be CSEd (important for
1105          * unsigned int -> double conversions */
1106         if(a->data.use_frame && a->frame_ent == NULL)
1107                 return 1;
1108         if(b->data.use_frame && b->frame_ent == NULL)
1109                 return 1;
1110
1111         if (a->data.use_frame != b->data.use_frame
1112             || a->frame_ent != b->frame_ent)
1113                 return 1;
1114
1115         if (a->data.tp != b->data.tp)
1116                 return 1;
1117
1118         if (a->data.except_label != b->data.except_label)
1119                 return 1;
1120
1121         if (a->data.ins_permuted != b->data.ins_permuted
1122                         || a->data.cmp_unsigned != b->data.cmp_unsigned)
1123                 return 1;
1124
1125         return 0;
1126 }
1127
1128 /** Compare nodes attributes for all "normal" nodes. */
1129 static
1130 int ia32_compare_nodes_attr(ir_node *a, ir_node *b)
1131 {
1132         const ia32_attr_t* attr_a = get_ia32_attr_const(a);
1133         const ia32_attr_t* attr_b = get_ia32_attr_const(b);
1134
1135         return ia32_compare_attr(attr_a, attr_b);
1136 }
1137
1138 /** Compare node attributes for nodes with condition code. */
1139 static
1140 int ia32_compare_condcode_attr(ir_node *a, ir_node *b)
1141 {
1142         const ia32_condcode_attr_t *attr_a;
1143         const ia32_condcode_attr_t *attr_b;
1144
1145         if (ia32_compare_nodes_attr(a, b))
1146                 return 1;
1147
1148         attr_a = get_ia32_condcode_attr_const(a);
1149         attr_b = get_ia32_condcode_attr_const(b);
1150
1151         if(attr_a->pn_code != attr_b->pn_code)
1152                 return 1;
1153
1154         return 0;
1155 }
1156
1157 /** Compare node attributes for CopyB nodes. */
1158 static
1159 int ia32_compare_copyb_attr(ir_node *a, ir_node *b)
1160 {
1161         const ia32_copyb_attr_t *attr_a;
1162         const ia32_copyb_attr_t *attr_b;
1163
1164         if (ia32_compare_nodes_attr(a, b))
1165                 return 1;
1166
1167         attr_a = get_ia32_copyb_attr_const(a);
1168         attr_b = get_ia32_copyb_attr_const(b);
1169
1170         if(attr_a->size != attr_b->size)
1171                 return 1;
1172
1173         return 0;
1174 }
1175
1176
1177 /** Compare ASM node attributes. */
1178 static
1179 int ia32_compare_asm_attr(ir_node *a, ir_node *b)
1180 {
1181         const ia32_asm_attr_t *attr_a;
1182         const ia32_asm_attr_t *attr_b;
1183
1184         if(ia32_compare_nodes_attr(a, b))
1185                 return 1;
1186
1187         attr_a = get_ia32_asm_attr_const(a);
1188         attr_b = get_ia32_asm_attr_const(b);
1189
1190         if(attr_a->asm_text != attr_b->asm_text)
1191                 return 1;
1192
1193         return 0;
1194 }
1195
1196 /** Compare node attributes for Immediates. */
1197 static
1198 int ia32_compare_immediate_attr(ir_node *a, ir_node *b)
1199 {
1200         const ia32_immediate_attr_t *attr_a = get_ia32_immediate_attr_const(a);
1201         const ia32_immediate_attr_t *attr_b = get_ia32_immediate_attr_const(b);
1202
1203         if(attr_a->symconst != attr_b->symconst ||
1204            attr_a->sc_sign != attr_b->sc_sign ||
1205            attr_a->offset != attr_b->offset)
1206                 return 1;
1207
1208         return 0;
1209 }
1210
1211 /** Compare node attributes for x87 nodes. */
1212 static
1213 int ia32_compare_x87_attr(ir_node *a, ir_node *b)
1214 {
1215         return ia32_compare_nodes_attr(a, b);
1216 }
1217
1218
1219 /* copies the ia32 attributes */
1220 static void ia32_copy_attr(const ir_node *old_node, ir_node *new_node)
1221 {
1222         ir_graph          *irg      = get_irn_irg(new_node);
1223         struct obstack    *obst     = get_irg_obstack(irg);
1224         const ia32_attr_t *attr_old = get_ia32_attr_const(old_node);
1225         ia32_attr_t       *attr_new = get_ia32_attr(new_node);
1226
1227         /* copy the attributes */
1228         memcpy(attr_new, attr_old, get_op_attr_size(get_irn_op(old_node)));
1229
1230         /* copy out flags */
1231         attr_new->out_flags =
1232                 DUP_ARR_D(int, obst, attr_old->out_flags);
1233         /* copy register assignments */
1234         attr_new->slots =
1235                 DUP_ARR_D(arch_register_t*, obst, attr_old->slots);
1236 }
1237
1238 /* Include the generated constructor functions */
1239 #include "gen_ia32_new_nodes.c.inl"