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