added new dump wrapper
[libfirm] / ir / be / ia32 / ia32_new_nodes.c
1 /**
2  * This file implements the creation of the achitecture specific firm opcodes
3  * and the coresponding node constructors for the $arch assembler irg.
4  * @author Christian Wuerdig
5  * $Id$
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif
11
12 #ifdef _WIN32
13 #include <malloc.h>
14 #else
15 #include <alloca.h>
16 #endif
17
18 #include <stdlib.h>
19
20 #include "irprog_t.h"
21 #include "irgraph_t.h"
22 #include "irnode_t.h"
23 #include "irmode_t.h"
24 #include "ircons_t.h"
25 #include "iropt_t.h"
26 #include "irop.h"
27 #include "firm_common_t.h"
28 #include "irvrfy_t.h"
29 #include "irprintf.h"
30
31 #include "../bearch.h"
32
33 #include "ia32_nodes_attr.h"
34 #include "ia32_new_nodes.h"
35 #include "gen_ia32_regalloc_if.h"
36
37 #ifdef obstack_chunk_alloc
38 # undef obstack_chunk_alloc
39 # define obstack_chunk_alloc xmalloc
40 #else
41 # define obstack_chunk_alloc xmalloc
42 # define obstack_chunk_free free
43 #endif
44
45 extern int obstack_printf(struct obstack *obst, char *fmt, ...);
46
47 /***********************************************************************************
48  *      _                                   _       _             __
49  *     | |                                 (_)     | |           / _|
50  *   __| |_   _ _ __ ___  _ __   ___ _ __   _ _ __ | |_ ___ _ __| |_ __ _  ___ ___
51  *  / _` | | | | '_ ` _ \| '_ \ / _ \ '__| | | '_ \| __/ _ \ '__|  _/ _` |/ __/ _ \
52  * | (_| | |_| | | | | | | |_) |  __/ |    | | | | | ||  __/ |  | || (_| | (_|  __/
53  *  \__,_|\__,_|_| |_| |_| .__/ \___|_|    |_|_| |_|\__\___|_|  |_| \__,_|\___\___|
54  *                       | |
55  *                       |_|
56  ***********************************************************************************/
57
58 /**
59  * Returns the name of a SymConst.
60  * @param symc  the SymConst
61  * @return name of the SymConst
62  */
63 const char *get_sc_name(ir_node *symc) {
64         if (get_irn_opcode(symc) != iro_SymConst)
65                 return "NONE";
66
67         switch (get_SymConst_kind(symc)) {
68                 case symconst_addr_name:
69                         return get_id_str(get_SymConst_name(symc));
70
71                 case symconst_addr_ent:
72                         return get_entity_ld_name(get_SymConst_entity(symc));
73
74                 default:
75                         assert(0 && "Unsupported SymConst");
76         }
77
78         return NULL;
79 }
80
81 /**
82  * Returns a string containing the names of all registers within the limited bitset
83  */
84 static char *get_limited_regs(const arch_register_req_t *req, char *buf, int max) {
85         bitset_t *bs   = bitset_alloca(req->cls->n_regs);
86         char     *p    = buf;
87         int       size = 0;
88         int       i, cnt;
89
90         req->limited(NULL, bs);
91
92         for (i = 0; i < req->cls->n_regs; i++) {
93                 if (bitset_is_set(bs, i)) {
94                         cnt = snprintf(p, max - size, " %s", req->cls->regs[i].name);
95                         if (cnt < 0) {
96                                 fprintf(stderr, "dumper problem, exiting\n");
97                                 exit(1);
98                         }
99
100                         p    += cnt;
101                         size += cnt;
102
103                         if (size >= max)
104                                 break;
105                 }
106         }
107
108         return buf;
109 }
110
111 /**
112  * Dumps the register requirements for either in or out.
113  */
114 static void dump_reg_req(FILE *F, ir_node *n, const ia32_register_req_t **reqs, int inout) {
115         char *dir = inout ? "out" : "in";
116         int   max = inout ? get_ia32_n_res(n) : get_irn_arity(n);
117         char *buf = alloca(1024);
118         int   i;
119
120         memset(buf, 0, 1024);
121
122         if (reqs) {
123                 for (i = 0; i < max; i++) {
124                         fprintf(F, "%sreq #%d =", dir, i);
125
126                         if (reqs[i]->req.type == arch_register_req_type_none) {
127                                 fprintf(F, " n/a");
128                         }
129
130                         if (reqs[i]->req.type & arch_register_req_type_normal) {
131                                 fprintf(F, " %s", reqs[i]->req.cls->name);
132                         }
133
134                         if (reqs[i]->req.type & arch_register_req_type_limited) {
135                                 fprintf(F, " %s", get_limited_regs(&reqs[i]->req, buf, 1024));
136                         }
137
138                         if (reqs[i]->req.type & arch_register_req_type_should_be_same) {
139                                 ir_fprintf(F, " same as %+F", get_irn_n(n, reqs[i]->same_pos));
140                         }
141
142                         if (reqs[i]->req.type & arch_register_req_type_should_be_different) {
143                                 ir_fprintf(F, " different from %+F", get_irn_n(n, reqs[i]->different_pos));
144                         }
145
146                         fprintf(F, "\n");
147                 }
148
149                 fprintf(F, "\n");
150         }
151         else {
152                 fprintf(F, "%sreq = N/A\n", dir);
153         }
154 }
155
156 /**
157  * Dumper interface for dumping ia32 nodes in vcg.
158  * @param n        the node to dump
159  * @param F        the output file
160  * @param reason   indicates which kind of information should be dumped
161  * @return 0 on success or != 0 on failure
162  */
163 static int dump_node_ia32(ir_node *n, FILE *F, dump_reason_t reason) {
164         ir_mode     *mode = NULL;
165         int          bad  = 0;
166         int          i, n_res, am_flav, flags;
167         const ia32_register_req_t **reqs;
168         const arch_register_t     **slots;
169
170         switch (reason) {
171                 case dump_node_opcode_txt:
172                         fprintf(F, "%s", get_irn_opname(n));
173                         break;
174
175                 case dump_node_mode_txt:
176                         mode = get_irn_mode(n);
177
178                         if (is_ia32_Ld(n) || is_ia32_St(n)) {
179                                 mode = get_ia32_ls_mode(n);
180                         }
181
182                         fprintf(F, "[%s]", mode ? get_mode_name(mode) : "?NOMODE?");
183                         break;
184
185                 case dump_node_nodeattr_txt:
186                         if (get_ia32_cnst(n)) {
187                                 char *pref = "";
188
189                                 if (get_ia32_sc(n)) {
190                                         pref = "SymC ";
191                                 }
192
193                                 fprintf(F, "[%s%s]", pref, get_ia32_cnst(n));
194                         }
195
196                         if (! is_ia32_Lea(n)) {
197                                 if (is_ia32_AddrModeS(n)) {
198                                         fprintf(F, "[AM S] ");
199                                 }
200                                 else if (is_ia32_AddrModeD(n)) {
201                                         fprintf(F, "[AM D] ");
202                                 }
203                         }
204
205                         break;
206
207                 case dump_node_info_txt:
208                         n_res = get_ia32_n_res(n);
209                         fprintf(F, "=== IA32 attr begin ===\n");
210
211                         /* dump IN requirements */
212                         if (get_irn_arity(n) > 0) {
213                                 reqs = get_ia32_in_req_all(n);
214                                 dump_reg_req(F, n, reqs, 0);
215                         }
216
217                         /* dump OUT requirements */
218                         if (n_res > 0) {
219                                 reqs = get_ia32_out_req_all(n);
220                                 dump_reg_req(F, n, reqs, 1);
221                         }
222
223                         /* dump assigned registers */
224                         slots = get_ia32_slots(n);
225                         if (slots && n_res > 0) {
226                                 for (i = 0; i < n_res; i++) {
227                                         fprintf(F, "reg #%d = %s\n", i, slots[i] ? slots[i]->name : "n/a");
228                                 }
229                                 fprintf(F, "\n");
230                         }
231
232                         /* dump op type */
233                         fprintf(F, "op = ");
234                         switch (get_ia32_op_type(n)) {
235                                 case ia32_Normal:
236                                         fprintf(F, "Normal");
237                                         break;
238                                 case ia32_Const:
239                                         fprintf(F, "Const");
240                                         break;
241                                 case ia32_SymConst:
242                                         fprintf(F, "SymConst");
243                                         break;
244                                 case ia32_AddrModeD:
245                                         fprintf(F, "AM Dest (Load+Store)");
246                                         break;
247                                 case ia32_AddrModeS:
248                                         fprintf(F, "AM Source (Load)");
249                                         break;
250                                 default:
251                                         fprintf(F, "unknown (%d)", get_ia32_op_type(n));
252                                         break;
253                         }
254                         fprintf(F, "\n");
255
256
257                         /* dump supported am */
258                         fprintf(F, "AM support = ");
259                         switch (get_ia32_am_support(n)) {
260                                 case ia32_am_None:
261                                         fprintf(F, "none");
262                                         break;
263                                 case ia32_am_Source:
264                                         fprintf(F, "source only (Load)");
265                                         break;
266                                 case ia32_am_Dest:
267                                         fprintf(F, "dest only (Load+Store)");
268                                         break;
269                                 case ia32_am_Full:
270                                         fprintf(F, "full");
271                                         break;
272                                 default:
273                                         fprintf(F, "unknown (%d)", get_ia32_am_support(n));
274                                         break;
275                         }
276                         fprintf(F, "\n");
277
278                         /* dump am flavour */
279                         fprintf(F, "AM flavour =");
280                         am_flav = get_ia32_am_flavour(n);
281                         if (am_flav == ia32_am_N) {
282                                 fprintf(F, " none");
283                         }
284                         else {
285                                 if (am_flav & ia32_O) {
286                                         fprintf(F, " O");
287                                 }
288                                 if (am_flav & ia32_B) {
289                                         fprintf(F, " B");
290                                 }
291                                 if (am_flav & ia32_I) {
292                                         fprintf(F, " I");
293                                 }
294                                 if (am_flav & ia32_S) {
295                                         fprintf(F, " S");
296                                 }
297                         }
298                         fprintf(F, " (%d)\n", am_flav);
299
300                         /* dump AM offset */
301                         fprintf(F, "AM offset = ");
302                         if (get_ia32_am_offs(n)) {
303                                 fprintf(F, "%s", get_ia32_am_offs(n));
304                         }
305                         else {
306                                 fprintf(F, "n/a");
307                         }
308                         fprintf(F, "\n");
309
310                         /* dump AM scale */
311                         fprintf(F, "AM scale = %d\n", get_ia32_am_scale(n));
312
313                         /* dump pn code */
314                         fprintf(F, "pn_code = %ld\n", get_ia32_pncode(n));
315
316                         /* dump n_res */
317                         fprintf(F, "n_res = %d\n", get_ia32_n_res(n));
318
319                         /* dump use_frame */
320                         fprintf(F, "use_frame = %d\n", is_ia32_use_frame(n));
321
322                         /* commutative */
323                         fprintf(F, "commutative = %d\n", is_ia32_commutative(n));
324
325                         /* dump flags */
326                         fprintf(F, "flags =");
327                         flags = get_ia32_flags(n);
328                         if (flags == arch_irn_flags_none) {
329                                 fprintf(F, " none");
330                         }
331                         else {
332                                 if (flags & arch_irn_flags_dont_spill) {
333                                         fprintf(F, " unspillable");
334                                 }
335                                 if (flags & arch_irn_flags_rematerializable) {
336                                         fprintf(F, " remat");
337                                 }
338                                 if (flags & arch_irn_flags_ignore) {
339                                         fprintf(F, " ignore");
340                                 }
341                         }
342                         fprintf(F, " (%d)\n", flags);
343
344                         /* dump frame entity */
345                         fprintf(F, "frame entity = ");
346                         if (get_ia32_frame_ent(n)) {
347                                 ir_fprintf(F, "%+F", get_ia32_frame_ent(n));
348                         }
349                         else {
350                                 fprintf(F, "n/a");
351                         }
352                         fprintf(F, "\n");
353
354 #ifndef NDEBUG
355                         /* dump original ir node name */
356                         fprintf(F, "orig node = ");
357                         if (get_ia32_orig_node(n)) {
358                                 fprintf(F, "%s", get_ia32_orig_node(n));
359                         }
360                         else {
361                                 fprintf(F, "n/a");
362                         }
363                         fprintf(F, "\n");
364 #endif /* NDEBUG */
365
366                         fprintf(F, "=== IA32 attr end ===\n");
367                         /* end of: case dump_node_info_txt */
368                         break;
369         }
370
371         return bad;
372 }
373
374
375
376 /***************************************************************************************************
377  *        _   _                   _       __        _                    _   _               _
378  *       | | | |                 | |     / /       | |                  | | | |             | |
379  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
380  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
381  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
382  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
383  *                                        __/ |
384  *                                       |___/
385  ***************************************************************************************************/
386
387  static char *copy_str(char *dst, const char *src) {
388          dst = xcalloc(1, strlen(src) + 1);
389          strncpy(dst, src, strlen(src) + 1);
390          return dst;
391  }
392
393  static char *set_cnst_from_tv(char *cnst, tarval *tv) {
394          if (cnst) {
395                  free(cnst);
396          }
397
398          cnst = xcalloc(1, 64);
399          assert(tarval_snprintf(cnst, 63, tv));
400          return cnst;
401  }
402
403 /**
404  * Wraps get_irn_generic_attr() as it takes no const ir_node, so we need to do a cast.
405  * Firm was made by people hating const :-(
406  */
407 ia32_attr_t *get_ia32_attr(const ir_node *node) {
408         assert(is_ia32_irn(node) && "need ia32 node to get ia32 attributes");
409         return (ia32_attr_t *)get_irn_generic_attr((ir_node *)node);
410 }
411
412 /**
413  * Gets the type of an ia32 node.
414  */
415 ia32_op_type_t get_ia32_op_type(const ir_node *node) {
416         ia32_attr_t *attr = get_ia32_attr(node);
417         return attr->data.tp;
418 }
419
420 /**
421  * Sets the type of an ia32 node.
422  */
423 void set_ia32_op_type(ir_node *node, ia32_op_type_t tp) {
424         ia32_attr_t *attr = get_ia32_attr(node);
425         attr->data.tp     = tp;
426 }
427
428 /**
429  * Gets the supported addrmode of an ia32 node
430  */
431 ia32_am_type_t get_ia32_am_support(const ir_node *node) {
432         ia32_attr_t *attr = get_ia32_attr(node);
433         return attr->data.am_support;
434 }
435
436 /**
437  * Sets the supported addrmode of an ia32 node
438  */
439 void set_ia32_am_support(ir_node *node, ia32_am_type_t am_tp) {
440         ia32_attr_t *attr = get_ia32_attr(node);
441         attr->data.am_support  = am_tp;
442 }
443
444 /**
445  * Gets the addrmode flavour of an ia32 node
446  */
447 ia32_am_flavour_t get_ia32_am_flavour(const ir_node *node) {
448         ia32_attr_t *attr = get_ia32_attr(node);
449         return attr->data.am_flavour;
450 }
451
452 /**
453  * Sets the addrmode flavour of an ia32 node
454  */
455 void set_ia32_am_flavour(ir_node *node, ia32_am_flavour_t am_flavour) {
456         ia32_attr_t *attr = get_ia32_attr(node);
457         attr->data.am_flavour  = am_flavour;
458 }
459
460 /**
461  * Joins all offsets to one string with adds.
462  */
463 char *get_ia32_am_offs(const ir_node *node) {
464         ia32_attr_t *attr = get_ia32_attr(node);
465         char        *res  = NULL;
466         int          size;
467
468         if (! attr->am_offs) {
469                 return NULL;
470         }
471
472         size = obstack_object_size(attr->am_offs);
473     if (size > 0) {
474                 res    = xcalloc(1, size + 2);
475                 res[0] = attr->data.offs_sign ? '-' : '+';
476                 memcpy(&res[1], obstack_base(attr->am_offs), size);
477     }
478
479         res[size + 1] = '\0';
480         return res;
481 }
482
483 /**
484  * Add an offset for addrmode.
485  */
486 static void extend_ia32_am_offs(ir_node *node, char *offset, char op) {
487         ia32_attr_t *attr = get_ia32_attr(node);
488
489         if (! offset)
490                 return;
491
492         /* offset could already have an explicit sign */
493         /* -> supersede op if necessary               */
494         if (offset[0] == '-' || offset[0] == '+') {
495                 if (offset[0] == '-') {
496                         op = (op == '-') ? '+' : '-';
497                 }
498
499                 /* skip explicit sign */
500                 offset++;
501         }
502
503         if (! attr->am_offs) {
504                 /* obstack is not initialized */
505                 attr->am_offs = xcalloc(1, sizeof(*(attr->am_offs)));
506                 obstack_init(attr->am_offs);
507
508                 attr->data.offs_sign = (op == '-') ? 1 : 0;
509         }
510         else {
511                 /* If obstack is initialized, connect the new offset with op */
512                 obstack_printf(attr->am_offs, "%c", op);
513         }
514
515         obstack_printf(attr->am_offs, "%s", offset);
516 }
517
518 /**
519  * Add an offset for addrmode.
520  */
521 void add_ia32_am_offs(ir_node *node, char *offset) {
522         extend_ia32_am_offs(node, offset, '+');
523 }
524
525 /**
526  * Sub an offset for addrmode.
527  */
528 void sub_ia32_am_offs(ir_node *node, char *offset) {
529         extend_ia32_am_offs(node, offset, '-');
530 }
531
532 /**
533  * Gets the addr mode const.
534  */
535 int get_ia32_am_scale(const ir_node *node) {
536         ia32_attr_t *attr = get_ia32_attr(node);
537         return attr->data.am_scale;
538 }
539
540 /**
541  * Sets the index register scale for addrmode.
542  */
543 void set_ia32_am_scale(ir_node *node, int scale) {
544         ia32_attr_t *attr   = get_ia32_attr(node);
545         attr->data.am_scale = scale;
546 }
547
548 /**
549  * Return the tarval of an immediate operation or NULL in case of SymConst
550  */
551 tarval *get_ia32_Immop_tarval(const ir_node *node) {
552         ia32_attr_t *attr = get_ia32_attr(node);
553     return attr->tv;
554 }
555
556 /**
557  * Sets the attributes of an immediate operation to the specified tarval
558  */
559 void set_ia32_Immop_tarval(ir_node *node, tarval *tv) {
560         ia32_attr_t *attr = get_ia32_attr(node);
561         attr->tv          = tv;
562         attr->cnst        = set_cnst_from_tv(attr->cnst, attr->tv);
563 }
564
565 /**
566  * Return the sc attribute.
567  */
568 char *get_ia32_sc(const ir_node *node) {
569         ia32_attr_t *attr = get_ia32_attr(node);
570         return attr->sc;
571 }
572
573 /**
574  * Sets the sc attribute.
575  */
576 void set_ia32_sc(ir_node *node, char *sc) {
577         ia32_attr_t *attr = get_ia32_attr(node);
578         attr->sc          = copy_str(attr->sc, sc);
579
580         if (attr->cnst) {
581                 free(attr->cnst);
582         }
583         attr->cnst = attr->sc;
584 }
585
586 /**
587  * Gets the string representation of the internal const (tv or symconst)
588  */
589 char *get_ia32_cnst(const ir_node *node) {
590         ia32_attr_t *attr = get_ia32_attr(node);
591         return attr->cnst;
592 }
593
594 /**
595  * Sets the uses_frame flag.
596  */
597 void set_ia32_use_frame(ir_node *node) {
598         ia32_attr_t *attr    = get_ia32_attr(node);
599         attr->data.use_frame = 1;
600 }
601
602 /**
603  * Clears the uses_frame flag.
604  */
605 void clear_ia32_use_frame(ir_node *node) {
606         ia32_attr_t *attr    = get_ia32_attr(node);
607         attr->data.use_frame = 0;
608 }
609
610 /**
611  * Gets the uses_frame flag.
612  */
613 int is_ia32_use_frame(const ir_node *node) {
614         ia32_attr_t *attr = get_ia32_attr(node);
615         return attr->data.use_frame;
616 }
617
618 /**
619  * Sets node to commutative.
620  */
621 void set_ia32_commutative(ir_node *node) {
622         ia32_attr_t *attr         = get_ia32_attr(node);
623         attr->data.is_commutative = 1;
624 }
625
626 /**
627  * Sets node to non-commutative.
628  */
629 void clear_ia32_commutative(ir_node *node) {
630         ia32_attr_t *attr         = get_ia32_attr(node);
631         attr->data.is_commutative = 0;
632 }
633
634 /**
635  * Checks if node is commutative.
636  */
637 int is_ia32_commutative(const ir_node *node) {
638         ia32_attr_t *attr = get_ia32_attr(node);
639         return attr->data.is_commutative;
640 }
641
642 /**
643  * Gets the mode of the stored/loaded value (only set for Store/Load)
644  */
645 ir_mode *get_ia32_ls_mode(const ir_node *node) {
646         ia32_attr_t *attr = get_ia32_attr(node);
647         return attr->ls_mode;
648 }
649
650 /**
651  * Sets the mode of the stored/loaded value (only set for Store/Load)
652  */
653 void set_ia32_ls_mode(ir_node *node, ir_mode *mode) {
654         ia32_attr_t *attr = get_ia32_attr(node);
655         attr->ls_mode     = mode;
656 }
657
658 /**
659  * Gets the mode of the result.
660  */
661 ir_mode *get_ia32_res_mode(const ir_node *node) {
662         ia32_attr_t *attr = get_ia32_attr(node);
663         return attr->res_mode;
664 }
665
666 /**
667  * Sets the mode of the result.
668  */
669 void set_ia32_res_mode(ir_node *node, ir_mode *mode) {
670         ia32_attr_t *attr = get_ia32_attr(node);
671         attr->res_mode    = mode;
672 }
673
674 /**
675  * Gets the frame entity assigned to this node;
676  */
677 entity *get_ia32_frame_ent(const ir_node *node) {
678         ia32_attr_t *attr = get_ia32_attr(node);
679         return attr->frame_ent;
680 }
681
682 /**
683  * Sets the frame entity for this node;
684  */
685 void set_ia32_frame_ent(ir_node *node, entity *ent) {
686         ia32_attr_t *attr = get_ia32_attr(node);
687         attr->frame_ent   = ent;
688 }
689
690 /**
691  * Returns the argument register requirements of an ia32 node.
692  */
693 const ia32_register_req_t **get_ia32_in_req_all(const ir_node *node) {
694         ia32_attr_t *attr = get_ia32_attr(node);
695         return attr->in_req;
696 }
697
698 /**
699  * Sets the argument register requirements of an ia32 node.
700  */
701 void set_ia32_in_req_all(ir_node *node, const ia32_register_req_t **reqs) {
702         ia32_attr_t *attr = get_ia32_attr(node);
703         attr->in_req      = reqs;
704 }
705
706 /**
707  * Returns the result register requirements of an ia32 node.
708  */
709 const ia32_register_req_t **get_ia32_out_req_all(const ir_node *node) {
710         ia32_attr_t *attr = get_ia32_attr(node);
711         return attr->out_req;
712 }
713
714 /**
715  * Sets the result register requirements of an ia32 node.
716  */
717 void set_ia32_out_req_all(ir_node *node, const ia32_register_req_t **reqs) {
718         ia32_attr_t *attr = get_ia32_attr(node);
719         attr->out_req     = reqs;
720 }
721
722 /**
723  * Returns the argument register requirement at position pos of an ia32 node.
724  */
725 const ia32_register_req_t *get_ia32_in_req(const ir_node *node, int pos) {
726         ia32_attr_t *attr = get_ia32_attr(node);
727         return attr->in_req[pos];
728 }
729
730 /**
731  * Returns the result register requirement at position pos of an ia32 node.
732  */
733 const ia32_register_req_t *get_ia32_out_req(const ir_node *node, int pos) {
734         ia32_attr_t *attr = get_ia32_attr(node);
735         return attr->out_req[pos];
736 }
737
738 /**
739  * Sets the OUT register requirements at position pos.
740  */
741 void set_ia32_req_out(ir_node *node, const ia32_register_req_t *req, int pos) {
742         ia32_attr_t *attr  = get_ia32_attr(node);
743         attr->out_req[pos] = req;
744 }
745
746 /**
747  * Sets the IN register requirements at position pos.
748  */
749 void set_ia32_req_in(ir_node *node, const ia32_register_req_t *req, int pos) {
750         ia32_attr_t *attr = get_ia32_attr(node);
751         attr->in_req[pos] = req;
752 }
753
754 /**
755  * Returns the register flag of an ia32 node.
756  */
757 arch_irn_flags_t get_ia32_flags(const ir_node *node) {
758         ia32_attr_t *attr = get_ia32_attr(node);
759         return attr->data.flags;
760 }
761
762 /**
763  * Sets the register flag of an ia32 node.
764  */
765 void set_ia32_flags(ir_node *node, arch_irn_flags_t flags) {
766         ia32_attr_t *attr = get_ia32_attr(node);
767         attr->data.flags  = flags;
768 }
769
770 /**
771  * Returns the result register slots of an ia32 node.
772  */
773 const arch_register_t **get_ia32_slots(const ir_node *node) {
774         ia32_attr_t *attr = get_ia32_attr(node);
775         return attr->slots;
776 }
777
778 /**
779  * Sets the number of results.
780  */
781 void set_ia32_n_res(ir_node *node, int n_res) {
782         ia32_attr_t *attr = get_ia32_attr(node);
783         attr->data.n_res  = n_res;
784 }
785
786 /**
787  * Returns the number of results.
788  */
789 int get_ia32_n_res(const ir_node *node) {
790         ia32_attr_t *attr = get_ia32_attr(node);
791         return attr->data.n_res;
792 }
793
794 /**
795  * Returns the flavour of an ia32 node,
796  */
797 ia32_op_flavour_t get_ia32_flavour(const ir_node *node) {
798         ia32_attr_t *attr = get_ia32_attr(node);
799         return attr->data.op_flav;
800 }
801
802 /**
803  * Sets the flavour of an ia32 node to flavour_Div/Mod/DivMod/Mul/Mulh.
804  */
805 void set_ia32_flavour(ir_node *node, ia32_op_flavour_t op_flav) {
806         ia32_attr_t *attr  = get_ia32_attr(node);
807         attr->data.op_flav = op_flav;
808 }
809
810 /**
811  * Returns the projnum code.
812  */
813 long get_ia32_pncode(const ir_node *node) {
814         ia32_attr_t *attr = get_ia32_attr(node);
815         return attr->pn_code;
816 }
817
818 /**
819  * Sets the projnum code
820  */
821 void set_ia32_pncode(ir_node *node, long code) {
822         ia32_attr_t *attr = get_ia32_attr(node);
823         attr->pn_code     = code;
824 }
825
826 #ifndef NDEBUG
827
828 /**
829  * Returns the name of the original ir node.
830  */
831 const char *get_ia32_orig_node(const ir_node *node) {
832         ia32_attr_t *attr = get_ia32_attr(node);
833         return attr->orig_node;
834 }
835
836 /**
837  * Sets the name of the original ir node.
838  */
839 void set_ia32_orig_node(ir_node *node, const char *name) {
840         ia32_attr_t *attr = get_ia32_attr(node);
841         attr->orig_node   = name;
842 }
843
844 #endif /* NDEBUG */
845
846 /******************************************************************************************************
847  *                      _       _         _   _           __                  _   _
848  *                     (_)     | |       | | | |         / _|                | | (_)
849  *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
850  * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
851  * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
852  * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
853  *     | |
854  *     |_|
855  ******************************************************************************************************/
856
857 /**
858  * Gets the type of an ia32_Const.
859  */
860 unsigned get_ia32_Const_type(const ir_node *node) {
861         ia32_attr_t *attr = get_ia32_attr(node);
862
863         assert(is_ia32_Cnst(node) && "Need ia32_Const to get type");
864
865         return attr->data.tp;
866 }
867
868 /**
869  * Sets the type of an ia32_Const.
870  */
871 void set_ia32_Const_type(ir_node *node, int type) {
872         ia32_attr_t *attr = get_ia32_attr(node);
873
874         assert(is_ia32_Cnst(node) && "Need ia32_Const to set type");
875         assert((type == ia32_Const || type == ia32_SymConst) && "Unsupported ia32_Const type");
876
877         attr->data.tp = type;
878 }
879
880 /**
881  * Copy the attributes from an ia32_Const to an Immop (Add_i, Sub_i, ...) node
882  */
883 void set_ia32_Immop_attr(ir_node *node, ir_node *cnst) {
884         ia32_attr_t *na = get_ia32_attr(node);
885         ia32_attr_t *ca = get_ia32_attr(cnst);
886
887         assert(is_ia32_Cnst(cnst) && "Need ia32_Const to set Immop attr");
888
889         na->tv = ca->tv;
890
891         if (ca->sc) {
892                 na->sc   = copy_str(na->sc, ca->sc);
893                 na->cnst = na->sc;
894         }
895         else {
896                 na->cnst = set_cnst_from_tv(na->cnst, na->tv);
897                 na->sc   = NULL;
898         }
899 }
900
901 /**
902  * Copy the attributes from a Const to an ia32_Const
903  */
904 void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst) {
905         ia32_attr_t *attr = get_ia32_attr(ia32_cnst);
906
907         assert(is_ia32_Cnst(ia32_cnst) && "Need ia32_Const to set Const attr");
908
909         switch (get_irn_opcode(cnst)) {
910                 case iro_Const:
911                         attr->data.tp = ia32_Const;
912                         attr->tv      = get_Const_tarval(cnst);
913                         attr->cnst    = set_cnst_from_tv(attr->cnst, attr->tv);
914                         break;
915                 case iro_SymConst:
916                         attr->data.tp = ia32_SymConst;
917                         attr->tv      = NULL;
918                         attr->sc      = copy_str(attr->sc, get_sc_name(cnst));
919                         attr->cnst    = attr->sc;
920                         break;
921                 case iro_Unknown:
922                         assert(0 && "Unknown Const NYI");
923                         break;
924                 default:
925                         assert(0 && "Cannot create ia32_Const for this opcode");
926         }
927 }
928
929 /**
930  * Sets the AddrMode(S|D) attribute
931  */
932 void set_ia32_AddrMode(ir_node *node, char direction) {
933         ia32_attr_t *attr = get_ia32_attr(node);
934
935         switch (direction) {
936                 case 'D':
937                         attr->data.tp = ia32_AddrModeD;
938                         break;
939                 case 'S':
940                         attr->data.tp = ia32_AddrModeS;
941                         break;
942                 default:
943                         assert(0 && "wrong AM type");
944         }
945 }
946
947 /**
948  * Returns whether or not the node is an AddrModeS node.
949  */
950 int is_ia32_AddrModeS(const ir_node *node) {
951         ia32_attr_t *attr = get_ia32_attr(node);
952         return (attr->data.tp == ia32_AddrModeS);
953 }
954
955 /**
956  * Returns whether or not the node is an AddrModeD node.
957  */
958 int is_ia32_AddrModeD(const ir_node *node) {
959         ia32_attr_t *attr = get_ia32_attr(node);
960         return (attr->data.tp == ia32_AddrModeD);
961 }
962
963 /**
964  * Checks if node is a Load or fLoad.
965  */
966 int is_ia32_Ld(const ir_node *node) {
967         return is_ia32_Load(node) || is_ia32_fLoad(node);
968 }
969
970 /**
971  * Checks if node is a Store or fStore.
972  */
973 int is_ia32_St(const ir_node *node) {
974         return is_ia32_Store(node) || is_ia32_fStore(node);
975 }
976
977 /**
978  * Checks if node is a Const or fConst.
979  */
980 int is_ia32_Cnst(const ir_node *node) {
981         return is_ia32_Const(node) || is_ia32_fConst(node);
982 }
983
984 /**
985  * Returns the name of the OUT register at position pos.
986  */
987 const char *get_ia32_out_reg_name(const ir_node *node, int pos) {
988         ia32_attr_t *attr = get_ia32_attr(node);
989
990         assert(is_ia32_irn(node) && "Not an ia32 node.");
991         assert(pos < attr->data.n_res && "Invalid OUT position.");
992         assert(attr->slots[pos]  && "No register assigned");
993
994         return arch_register_get_name(attr->slots[pos]);
995 }
996
997 /**
998  * Returns the index of the OUT register at position pos within its register class.
999  */
1000 int get_ia32_out_regnr(const ir_node *node, int pos) {
1001         ia32_attr_t *attr = get_ia32_attr(node);
1002
1003         assert(is_ia32_irn(node) && "Not an ia32 node.");
1004         assert(pos < attr->data.n_res && "Invalid OUT position.");
1005         assert(attr->slots[pos]  && "No register assigned");
1006
1007         return arch_register_get_index(attr->slots[pos]);
1008 }
1009
1010 /**
1011  * Returns the OUT register at position pos.
1012  */
1013 const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos) {
1014         ia32_attr_t *attr = get_ia32_attr(node);
1015
1016         assert(is_ia32_irn(node) && "Not an ia32 node.");
1017         assert(pos < attr->data.n_res && "Invalid OUT position.");
1018         assert(attr->slots[pos]  && "No register assigned");
1019
1020         return attr->slots[pos];
1021 }
1022
1023 /**
1024  * Allocates num register slots for node.
1025  */
1026 void alloc_ia32_reg_slots(ir_node *node, int num) {
1027         ia32_attr_t *attr = get_ia32_attr(node);
1028
1029         if (num) {
1030                 attr->slots = xcalloc(num, sizeof(attr->slots[0]));
1031         }
1032         else {
1033                 attr->slots = NULL;
1034         }
1035
1036         attr->data.n_res = num;
1037 }
1038
1039 /**
1040  * Initializes the nodes attributes.
1041  */
1042 void init_ia32_attributes(ir_node *node, arch_irn_flags_t flags, const ia32_register_req_t **in_reqs,
1043                                                   const ia32_register_req_t **out_reqs, int n_res)
1044 {
1045         set_ia32_flags(node, flags);
1046         set_ia32_in_req_all(node, in_reqs);
1047         set_ia32_out_req_all(node, out_reqs);
1048         alloc_ia32_reg_slots(node, n_res);
1049 }
1050
1051 /***************************************************************************************
1052  *                  _                            _                   _
1053  *                 | |                          | |                 | |
1054  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
1055  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
1056  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
1057  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
1058  *
1059  ***************************************************************************************/
1060
1061 /* default compare operation to compare immediate ops */
1062 int ia32_compare_immop_attr(ia32_attr_t *a, ia32_attr_t *b) {
1063         if (a->data.tp == b->data.tp) {
1064                 if (! (a->cnst && b->cnst))
1065                         return 1;
1066
1067                 return strcmp(a->cnst, b->cnst);
1068         }
1069
1070         return 1;
1071 }
1072
1073 /* Include the generated constructor functions */
1074 #include "gen_ia32_new_nodes.c.inl"