added adressmode support
[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 /***********************************************************************************
46  *      _                                   _       _             __
47  *     | |                                 (_)     | |           / _|
48  *   __| |_   _ _ __ ___  _ __   ___ _ __   _ _ __ | |_ ___ _ __| |_ __ _  ___ ___
49  *  / _` | | | | '_ ` _ \| '_ \ / _ \ '__| | | '_ \| __/ _ \ '__|  _/ _` |/ __/ _ \
50  * | (_| | |_| | | | | | | |_) |  __/ |    | | | | | ||  __/ |  | || (_| | (_|  __/
51  *  \__,_|\__,_|_| |_| |_| .__/ \___|_|    |_|_| |_|\__\___|_|  |_| \__,_|\___\___|
52  *                       | |
53  *                       |_|
54  ***********************************************************************************/
55
56 /**
57  * Prints a tarval to file F.
58  * @param F         output file
59  * @param tv        tarval
60  * @param brackets  1 == print square brackets around tarval
61  */
62 static void fprintf_tv(FILE *F, tarval *tv, int brackets) {
63         char buf[1024];
64         tarval_snprintf(buf, sizeof(buf), tv);
65
66         if (brackets)
67                 fprintf(F, "[%s]", buf);
68         else
69                 fprintf(F, "%s", buf);
70 }
71
72 /**
73  * Returns the name of a SymConst.
74  * @param symc  the SymConst
75  * @return name of the SymConst
76  */
77 const char *get_sc_name(ir_node *symc) {
78         if (get_irn_opcode(symc) != iro_SymConst)
79                 return "NONE";
80
81         switch (get_SymConst_kind(symc)) {
82                 case symconst_addr_name:
83                         return get_id_str(get_SymConst_name(symc));
84
85                 case symconst_addr_ent:
86                         return get_entity_ld_name(get_SymConst_entity(symc));
87
88                 default:
89                         assert(0 && "Unsupported SymConst");
90         }
91
92         return NULL;
93 }
94
95 /**
96  * Returns a string containing the names of all registers within the limited bitset
97  */
98 static char *get_limited_regs(const arch_register_req_t *req, char *buf, int max) {
99         bitset_t *bs   = bitset_alloca(req->cls->n_regs);
100         char     *p    = buf;
101         int       size = 0;
102         int       i, cnt;
103
104         req->limited(NULL, bs);
105
106         for (i = 0; i < req->cls->n_regs; i++) {
107                 if (bitset_is_set(bs, i)) {
108                         cnt = snprintf(p, max - size, " %s", req->cls->regs[i].name);
109                         if (cnt < 0) {
110                                 fprintf(stderr, "dumper problem, exiting\n");
111                                 exit(1);
112                         }
113
114                         p    += cnt;
115                         size += cnt;
116
117                         if (size >= max)
118                                 break;
119                 }
120         }
121
122         return buf;
123 }
124
125 /**
126  * Dumps the register requirements for either in or out.
127  */
128 static void dump_reg_req(FILE *F, ir_node *n, const ia32_register_req_t **reqs, int inout) {
129         char *dir = inout ? "out" : "in";
130         int   max = inout ? get_ia32_n_res(n) : get_irn_arity(n);
131         char *buf = alloca(1024);
132         int   i;
133
134         memset(buf, 0, 1024);
135
136         if (reqs) {
137                 for (i = 0; i < max; i++) {
138                         fprintf(F, "%sreq #%d =", dir, i);
139
140                         if (reqs[i]->req.type == arch_register_req_type_none) {
141                                 fprintf(F, " n/a");
142                         }
143
144                         if (reqs[i]->req.type & arch_register_req_type_normal) {
145                                 fprintf(F, " %s", reqs[i]->req.cls->name);
146                         }
147
148                         if (reqs[i]->req.type & arch_register_req_type_limited) {
149                                 fprintf(F, " %s", get_limited_regs(&reqs[i]->req, buf, 1024));
150                         }
151
152                         if (reqs[i]->req.type & arch_register_req_type_should_be_same) {
153                                 ir_fprintf(F, " same as %+F", get_irn_n(n, reqs[i]->same_pos));
154                         }
155
156                         if (reqs[i]->req.type & arch_register_req_type_should_be_different) {
157                                 ir_fprintf(F, " different from %+F", get_irn_n(n, reqs[i]->different_pos));
158                         }
159
160                         fprintf(F, "\n");
161                 }
162
163                 fprintf(F, "\n");
164         }
165         else {
166                 fprintf(F, "%sreq = N/A\n", dir);
167         }
168 }
169
170 /**
171  * Dumper interface for dumping ia32 nodes in vcg.
172  * @param n        the node to dump
173  * @param F        the output file
174  * @param reason   indicates which kind of information should be dumped
175  * @return 0 on success or != 0 on failure
176  */
177 static int dump_node_ia32(ir_node *n, FILE *F, dump_reason_t reason) {
178         ir_mode     *mode = NULL;
179         int          bad  = 0;
180         int          i;
181         ia32_attr_t *attr;
182         const ia32_register_req_t **reqs;
183         const arch_register_t     **slots;
184
185         switch (reason) {
186                 case dump_node_opcode_txt:
187                         fprintf(F, "%s", get_irn_opname(n));
188                         break;
189
190                 case dump_node_mode_txt:
191                         mode = get_irn_mode(n);
192
193                         if (mode == mode_BB || mode == mode_ANY || mode == mode_BAD || mode == mode_T) {
194                                 mode = NULL;
195                         }
196                         else if (is_ia32_Load(n)) {
197                                 mode = get_irn_mode(get_irn_n(n, 0));
198                         }
199                         else if (is_ia32_Store(n)) {
200                                 mode = get_irn_mode(get_irn_n(n, 2));
201                         }
202
203                         if (mode) {
204                                 fprintf(F, "[%s]", get_mode_name(mode));
205                         }
206                         break;
207
208                 case dump_node_nodeattr_txt:
209                         if (is_ia32_Call(n)) {
210                                 fprintf(F, "&%s ", get_ia32_sc(n));
211                         }
212                         else if (get_ia32_cnst(n)) {
213                                 char *pref = "";
214
215                                 if (get_ia32_sc(n)) {
216                                         pref = "SymC ";
217                                 }
218
219                                 fprintf(F, "[%s%s]", pref, get_ia32_cnst(n));
220                         }
221
222                         if (is_ia32_AddrModeS(n) || is_ia32_AddrModeD(n)) {
223                                 fprintf(F, "[AM] ");
224                         }
225
226                         break;
227
228                 case dump_node_info_txt:
229                         attr = get_ia32_attr(n);
230                         fprintf(F, "=== IA32 attr begin ===\n");
231
232                         /* dump IN requirements */
233                         if (get_irn_arity(n) > 0) {
234                                 reqs = get_ia32_in_req_all(n);
235                                 dump_reg_req(F, n, reqs, 0);
236                         }
237
238                         /* dump OUT requirements */
239                         if (attr->n_res > 0) {
240                                 reqs = get_ia32_out_req_all(n);
241                                 dump_reg_req(F, n, reqs, 1);
242                         }
243
244                         /* dump assigned registers */
245                         slots = get_ia32_slots(n);
246                         if (slots && attr->n_res > 0) {
247                                 for (i = 0; i < attr->n_res; i++) {
248                                         if (slots[i]) {
249                                                 fprintf(F, "reg #%d = %s\n", i, slots[i]->name);
250                                         }
251                                         else {
252                                                 fprintf(F, "reg #%d = n/a\n", i);
253                                         }
254                                 }
255                         }
256                         fprintf(F, "\n");
257
258                         /* dump op type */
259                         fprintf(F, "op = ");
260                         switch (attr->tp) {
261                                 case ia32_Normal:
262                                         fprintf(F, "Normal");
263                                         break;
264                                 case ia32_Const:
265                                         fprintf(F, "Const");
266                                         break;
267                                 case ia32_SymConst:
268                                         fprintf(F, "SymConst");
269                                         break;
270                                 case ia32_AddrModeD:
271                                         fprintf(F, "AM Dest (Load+Store)");
272                                         break;
273                                 case ia32_AddrModeS:
274                                         fprintf(F, "AM Source (Load)");
275                                         break;
276                         }
277                         fprintf(F, "\n");
278
279
280                         /* dump supported am */
281                         fprintf(F, "AM support = ");
282                         switch (attr->am_support) {
283                                 case ia32_am_None:
284                                         fprintf(F, "none");
285                                         break;
286                                 case ia32_am_Source:
287                                         fprintf(F, "source only (Load)");
288                                         break;
289                                 case ia32_am_Dest:
290                                         fprintf(F, "dest only (Load+Store)");
291                                         break;
292                                 case ia32_am_Full:
293                                         fprintf(F, "full");
294                                         break;
295                         }
296                         fprintf(F, "\n");
297
298                         /* dump AM offset */
299                         fprintf(F, "AM offset = ");
300                         if (attr->am_offs) {
301                                 fprintf(F, "%s", get_ia32_am_offs(n));
302                         }
303                         else {
304                                 fprintf(F, "n/a");
305                         }
306                         fprintf(F, "\n");
307
308                         /* dump AM scale */
309                         fprintf(F, "AM scale = %d\n", get_ia32_am_scale(n));
310
311                         /* dump pn code */
312                         fprintf(F, "pn_code = %d\n", get_ia32_pncode(n));
313
314                         /* dump n_res */
315                         fprintf(F, "n_res = %d\n", get_ia32_n_res(n));
316
317                         /* dump flags */
318                         fprintf(F, "flags =");
319                         if (attr->flags & arch_irn_flags_dont_spill) {
320                                 fprintf(F, " unspillable");
321                         }
322                         if (attr->flags & arch_irn_flags_rematerializable) {
323                                 fprintf(F, " remat");
324                         }
325                         if (attr->flags & arch_irn_flags_ignore) {
326                                 fprintf(F, " ignore");
327                         }
328                         fprintf(F, "\n");
329
330                         fprintf(F, "=== IA32 attr end ===\n");
331                         /* end of: case dump_node_info_txt */
332                         break;
333         }
334
335         return bad;
336 }
337
338
339
340 /***************************************************************************************************
341  *        _   _                   _       __        _                    _   _               _
342  *       | | | |                 | |     / /       | |                  | | | |             | |
343  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
344  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
345  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
346  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
347  *                                        __/ |
348  *                                       |___/
349  ***************************************************************************************************/
350
351  static char *copy_str(char *dst, const char *src) {
352          dst = xcalloc(1, strlen(src) + 1);
353          strncpy(dst, src, strlen(src) + 1);
354          return dst;
355  }
356
357  static char *set_cnst_from_tv(char *cnst, tarval *tv) {
358          if (cnst) {
359                  free(cnst);
360          }
361
362          cnst = xcalloc(1, 64);
363          assert(tarval_snprintf(cnst, 63, tv));
364          return cnst;
365  }
366
367 /**
368  * Wraps get_irn_generic_attr() as it takes no const ir_node, so we need to do a cast.
369  * Firm was made by people hating const :-(
370  */
371 ia32_attr_t *get_ia32_attr(const ir_node *node) {
372         assert(is_ia32_irn(node) && "need ia32 node to get ia32 attributes");
373         return (ia32_attr_t *)get_irn_generic_attr((ir_node *)node);
374 }
375
376 /**
377  * Gets the type of an ia32 node.
378  */
379 ia32_op_type_t get_ia32_op_type(const ir_node *node) {
380         ia32_attr_t *attr = get_ia32_attr(node);
381         return attr->tp;
382 }
383
384 /**
385  * Sets the type of an ia32 node.
386  */
387 void set_ia32_op_type(ir_node *node, ia32_op_type_t tp) {
388         ia32_attr_t *attr = get_ia32_attr(node);
389         attr->tp          = tp;
390 }
391
392 /**
393  * Gets the supported addrmode of an ia32 node
394  */
395 ia32_am_type_t get_ia32_am_support(const ir_node *node) {
396         ia32_attr_t *attr = get_ia32_attr(node);
397         return attr->am_support;
398 }
399
400 /**
401  * Sets the supported addrmode of an ia32 node
402  */
403 void set_ia32_am_support(ir_node *node, ia32_am_type_t am_tp) {
404         ia32_attr_t *attr = get_ia32_attr(node);
405         attr->am_support  = am_tp;
406 }
407
408 /**
409  * Gets the addrmode flavour of an ia32 node
410  */
411 ia32_am_flavour_t get_ia32_am_flavour(const ir_node *node) {
412         ia32_attr_t *attr = get_ia32_attr(node);
413         return attr->am_flavour;
414 }
415
416 /**
417  * Sets the addrmode flavour of an ia32 node
418  */
419 void set_ia32_am_flavour(ir_node *node, ia32_am_flavour_t am_flavour) {
420         ia32_attr_t *attr = get_ia32_attr(node);
421         attr->am_support  = am_flavour;
422 }
423
424 /**
425  * Joins all offsets to one string with adds.
426  */
427 char *get_ia32_am_offs(const ir_node *node) {
428         ia32_attr_t *attr = get_ia32_attr(node);
429         char        *res  = NULL;
430         int          size;
431
432         size = obstack_object_size(attr->am_offs);
433     if (size > 0) {
434                 res = xcalloc(1, size + 1);
435                 memcpy(res, obstack_base(attr->am_offs), size);
436     }
437
438         res[size] = '\0';
439         return res;
440 }
441
442 /**
443  * Add an offset for addrmode.
444  */
445 static void extend_ia32_am_offs(ir_node *node, char *offset, char op) {
446         ia32_attr_t *attr = get_ia32_attr(node);
447
448         if (!attr->am_offs) {
449                 /* obstack is not initialized */
450                 attr->am_offs = xcalloc(1, sizeof(*(attr->am_offs)));
451                 obstack_init(attr->am_offs);
452         }
453         else {
454                 /* obstack is initialized -> there is already one offset */
455                 /* present -> connect the offsets with an add            */
456                 obstack_printf(attr->am_offs, " %c ", op);
457         }
458
459         obstack_printf(attr->am_offs, "%s", offset);
460 }
461
462 /**
463  * Add an offset for addrmode.
464  */
465 void add_ia32_am_offs(ir_node *node, char *offset) {
466         extend_ia32_am_offs(node, offset, '+');
467 }
468
469 /**
470  * Sub an offset for addrmode.
471  */
472 void sub_ia32_am_offs(ir_node *node, char *offset) {
473         extend_ia32_am_offs(node, offset, '-');
474 }
475
476 /**
477  * Gets the addr mode const.
478  */
479 int get_ia32_am_scale(const ir_node *node) {
480         ia32_attr_t *attr = get_ia32_attr(node);
481         return attr->am_scale;
482 }
483
484 /**
485  * Sets the index register scale for addrmode.
486  */
487 void set_ia32_am_scale(ir_node *node, int scale) {
488         ia32_attr_t *attr = get_ia32_attr(node);
489         attr->am_scale    = scale;
490 }
491
492 /**
493  * Return the tarval of an immediate operation or NULL in case of SymConst
494  */
495 tarval *get_ia32_Immop_tarval(const ir_node *node) {
496         ia32_attr_t *attr = get_ia32_attr(node);
497     return attr->tv;
498 }
499
500 /**
501  * Sets the attributes of an immediate operation to the specified tarval
502  */
503 void set_ia32_Immop_tarval(ir_node *node, tarval *tv) {
504         ia32_attr_t *attr = get_ia32_attr(node);
505         attr->tv          = tv;
506         attr->cnst        = set_cnst_from_tv(attr->cnst, attr->tv);
507 }
508
509 /**
510  * Return the sc attribute.
511  */
512 char *get_ia32_sc(const ir_node *node) {
513   ia32_attr_t *attr = get_ia32_attr(node);
514   return attr->sc;
515 }
516
517 /**
518  * Sets the sc attribute.
519  */
520 void set_ia32_sc(ir_node *node, char *sc) {
521   ia32_attr_t *attr = get_ia32_attr(node);
522   attr->sc          = copy_str(attr->sc, sc);
523
524   if (attr->cnst) {
525           free(attr->cnst);
526   }
527   attr->cnst = attr->sc;
528 }
529
530 /**
531  * Gets the string representation of the internal const (tv or symconst)
532  */
533 char *get_ia32_cnst(ir_node *node) {
534   ia32_attr_t *attr = get_ia32_attr(node);
535   return attr->cnst;
536 }
537
538 /**
539  * Returns the argument register requirements of an ia32 node.
540  */
541 const ia32_register_req_t **get_ia32_in_req_all(const ir_node *node) {
542         ia32_attr_t *attr = get_ia32_attr(node);
543         return attr->in_req;
544 }
545
546 /**
547  * Returns the result register requirements of an ia32 node.
548  */
549 const ia32_register_req_t **get_ia32_out_req_all(const ir_node *node) {
550         ia32_attr_t *attr = get_ia32_attr(node);
551         return attr->out_req;
552 }
553
554 /**
555  * Returns the argument register requirement at position pos of an ia32 node.
556  */
557 const ia32_register_req_t *get_ia32_in_req(const ir_node *node, int pos) {
558         ia32_attr_t *attr = get_ia32_attr(node);
559         return attr->in_req[pos];
560 }
561
562 /**
563  * Returns the result register requirement at position pos of an ia32 node.
564  */
565 const ia32_register_req_t *get_ia32_out_req(const ir_node *node, int pos) {
566         ia32_attr_t *attr = get_ia32_attr(node);
567         return attr->out_req[pos];
568 }
569
570 /**
571  * Sets the OUT register requirements at position pos.
572  */
573 void set_ia32_req_out(ir_node *node, const ia32_register_req_t *req, int pos) {
574         ia32_attr_t *attr  = get_ia32_attr(node);
575         attr->out_req[pos] = req;
576 }
577
578 /**
579  * Sets the IN register requirements at position pos.
580  */
581 void set_ia32_req_in(ir_node *node, const ia32_register_req_t *req, int pos) {
582         ia32_attr_t *attr = get_ia32_attr(node);
583         attr->in_req[pos] = req;
584 }
585
586 /**
587  * Returns the register flag of an ia32 node.
588  */
589 arch_irn_flags_t get_ia32_flags(const ir_node *node) {
590         ia32_attr_t *attr = get_ia32_attr(node);
591         return attr->flags;
592 }
593
594 /**
595  * Sets the register flag of an ia32 node.
596  */
597 void set_ia32_flags(const ir_node *node, arch_irn_flags_t flags) {
598         ia32_attr_t *attr = get_ia32_attr(node);
599         attr->flags       = flags;
600 }
601
602 /**
603  * Returns the result register slots of an ia32 node.
604  */
605 const arch_register_t **get_ia32_slots(const ir_node *node) {
606         ia32_attr_t *attr = get_ia32_attr(node);
607         return attr->slots;
608 }
609
610 /**
611  * Returns the name of the OUT register at position pos.
612  */
613 const char *get_ia32_out_reg_name(const ir_node *node, int pos) {
614         ia32_attr_t *attr = get_ia32_attr(node);
615
616         assert(is_ia32_irn(node) && "Not an ia32 node.");
617         assert(pos < attr->n_res && "Invalid OUT position.");
618         assert(attr->slots[pos]  && "No register assigned");
619
620         return arch_register_get_name(attr->slots[pos]);
621 }
622
623 /**
624  * Returns the index of the OUT register at position pos within its register class.
625  */
626 int get_ia32_out_regnr(const ir_node *node, int pos) {
627         ia32_attr_t *attr = get_ia32_attr(node);
628
629         assert(is_ia32_irn(node) && "Not an ia32 node.");
630         assert(pos < attr->n_res && "Invalid OUT position.");
631         assert(attr->slots[pos]  && "No register assigned");
632
633         return arch_register_get_index(attr->slots[pos]);
634 }
635
636 /**
637  * Returns the OUT register at position pos.
638  */
639 const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos) {
640         ia32_attr_t *attr = get_ia32_attr(node);
641
642         assert(is_ia32_irn(node) && "Not an ia32 node.");
643         assert(pos < attr->n_res && "Invalid OUT position.");
644         assert(attr->slots[pos]  && "No register assigned");
645
646         return attr->slots[pos];
647 }
648
649 /**
650  * Sets the number of results.
651  */
652 void set_ia32_n_res(ir_node *node, int n_res) {
653         ia32_attr_t *attr = get_ia32_attr(node);
654         attr->n_res       = n_res;
655 }
656
657 /**
658  * Returns the number of results.
659  */
660 int get_ia32_n_res(const ir_node *node) {
661         ia32_attr_t *attr = get_ia32_attr(node);
662         return attr->n_res;
663 }
664
665 /**
666  * Returns the flavour of an ia32 node,
667  */
668 ia32_op_flavour_t get_ia32_flavour(const ir_node *node) {
669         ia32_attr_t *attr = get_ia32_attr(node);
670         return attr->op_flav;
671 }
672
673 /**
674  * Sets the flavour of an ia32 node to flavour_Div/Mod/DivMod/Mul/Mulh.
675  */
676 void set_ia32_flavour(ir_node *node, ia32_op_flavour_t op_flav) {
677         ia32_attr_t *attr = get_ia32_attr(node);
678         attr->op_flav     = op_flav;
679 }
680
681 /**
682  * Returns the projnum code.
683  */
684 long get_ia32_pncode(const ir_node *node) {
685         ia32_attr_t *attr = get_ia32_attr(node);
686         return attr->pn_code;
687 }
688
689 /**
690  * Sets the projnum code
691  */
692 void set_ia32_pncode(ir_node *node, long code) {
693         ia32_attr_t *attr = get_ia32_attr(node);
694         attr->pn_code     = code;
695 }
696
697
698 /******************************************************************************************************
699  *                      _       _         _   _           __                  _   _
700  *                     (_)     | |       | | | |         / _|                | | (_)
701  *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
702  * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
703  * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
704  * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
705  *     | |
706  *     |_|
707  ******************************************************************************************************/
708
709 /**
710  * Gets the type of an ia32_Const.
711  */
712 unsigned get_ia32_Const_type(ir_node *node) {
713         ia32_attr_t *attr = get_ia32_attr(node);
714
715         assert((is_ia32_Const(node) || is_ia32_fConst(node)) && "Need ia32_Const to get type");
716
717         return attr->tp;
718 }
719
720 /**
721  * Sets the type of an ia32_Const.
722  */
723 void set_ia32_Const_type(ir_node *node, int type) {
724         ia32_attr_t *attr = get_ia32_attr(node);
725
726         assert((is_ia32_Const(node) || is_ia32_fConst(node)) && "Need ia32_Const to set type");
727         assert((type == ia32_Const || type == ia32_SymConst) && "Unsupported ia32_Const type");
728
729         attr->tp = type;
730 }
731
732 /**
733  * Copy the attributes from an ia32_Const to an Immop (Add_i, Sub_i, ...) node
734  */
735 void set_ia32_Immop_attr(ir_node *node, ir_node *cnst) {
736         ia32_attr_t *na = get_ia32_attr(node);
737         ia32_attr_t *ca = get_ia32_attr(cnst);
738
739         assert((is_ia32_Const(cnst) || is_ia32_fConst(cnst)) && "Need ia32_Const to set Immop attr");
740
741         na->tp = ca->tp;
742         na->tv = ca->tv;
743
744         if (ca->sc) {
745                 na->sc = copy_str(na->sc, ca->sc);
746         }
747         else {
748                 na->sc = NULL;
749         }
750 }
751
752 /**
753  * Copy the attributes from a Const to an ia32_Const
754  */
755 void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst) {
756         ia32_attr_t *attr = get_ia32_attr(ia32_cnst);
757
758         assert((is_ia32_Const(ia32_cnst) || is_ia32_fConst(ia32_cnst)) && "Need ia32_Const to set Const attr");
759
760         switch (get_irn_opcode(cnst)) {
761                 case iro_Const:
762                         attr->tp   = ia32_Const;
763                         attr->tv   = get_Const_tarval(cnst);
764                         attr->cnst = set_cnst_from_tv(attr->cnst, attr->tv);
765                         break;
766                 case iro_SymConst:
767                         attr->tp   = ia32_SymConst;
768                         attr->tv   = NULL;
769                         attr->sc   = copy_str(attr->sc, get_sc_name(cnst));
770                         attr->cnst = attr->sc;
771                         break;
772                 case iro_Unknown:
773                         assert(0 && "Unknown Const NYI");
774                         break;
775                 default:
776                         assert(0 && "Cannot create ia32_Const for this opcode");
777         }
778 }
779
780 /**
781  * Sets the AddrMode(S|D) attribute
782  */
783 void set_ia32_AddrMode(ir_node *node, char direction) {
784         ia32_attr_t *attr = get_ia32_attr(node);
785
786         switch (direction) {
787                 case 'D':
788                         attr->tp = ia32_AddrModeD;
789                         break;
790                 case 'S':
791                         attr->tp = ia32_AddrModeS;
792                         break;
793                 default:
794                         assert(0 && "wrong AM type");
795         }
796 }
797
798 /**
799  * Returns whether or not the node is an AddrModeS node.
800  */
801 int is_ia32_AddrModeS(ir_node *node) {
802         ia32_attr_t *attr = get_ia32_attr(node);
803         return (attr->tp == ia32_AddrModeS);
804 }
805
806 /**
807  * Returns whether or not the node is an AddrModeD node.
808  */
809 int is_ia32_AddrModeD(ir_node *node) {
810         ia32_attr_t *attr = get_ia32_attr(node);
811         return (attr->tp == ia32_AddrModeD);
812 }
813
814
815
816 /***************************************************************************************
817  *                  _                            _                   _
818  *                 | |                          | |                 | |
819  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
820  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
821  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
822  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
823  *
824  ***************************************************************************************/
825
826 /* Include the generated constructor functions */
827 #include "gen_ia32_new_nodes.c.inl"