2f5fd7862438bd20c3b9acf7673e9ac6da5d9a6f
[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 (is_ia32_Load(n)) {
194                                 mode = get_irn_mode(get_irn_n(n, 0));
195                         }
196                         else if (is_ia32_Store(n)) {
197                                 mode = get_irn_mode(get_irn_n(n, 2));
198                         }
199
200                         if (mode) {
201                                 fprintf(F, "[%s]", get_mode_name(mode));
202                         }
203                         break;
204
205                 case dump_node_nodeattr_txt:
206                         if (is_ia32_Call(n)) {
207                                 fprintf(F, "&%s ", get_ia32_sc(n));
208                         }
209                         else if (get_ia32_cnst(n)) {
210                                 char *pref = "";
211
212                                 if (get_ia32_sc(n)) {
213                                         pref = "SymC ";
214                                 }
215
216                                 fprintf(F, "[%s%s]", pref, get_ia32_cnst(n));
217                         }
218
219                         if (is_ia32_AddrModeS(n)) {
220                                 fprintf(F, "[AM S] ");
221                         }
222                         else if (is_ia32_AddrModeD(n)) {
223                                 fprintf(F, "[AM D] ");
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                                 default:
277                                         fprintf(F, "unknown (%d)", attr->tp);
278                                         break;
279                         }
280                         fprintf(F, "\n");
281
282
283                         /* dump supported am */
284                         fprintf(F, "AM support = ");
285                         switch (attr->am_support) {
286                                 case ia32_am_None:
287                                         fprintf(F, "none");
288                                         break;
289                                 case ia32_am_Source:
290                                         fprintf(F, "source only (Load)");
291                                         break;
292                                 case ia32_am_Dest:
293                                         fprintf(F, "dest only (Load+Store)");
294                                         break;
295                                 case ia32_am_Full:
296                                         fprintf(F, "full");
297                                         break;
298                                 default:
299                                         fprintf(F, "unknown (%d)", attr->am_support);
300                                         break;
301                         }
302                         fprintf(F, "\n");
303
304                         /* dump am flavour */
305                         fprintf(F, "AM flavour =");
306                         if (attr->am_flavour == ia32_am_N) {
307                                 fprintf(F, " none");
308                         }
309                         else {
310                                 if (attr->am_flavour & ia32_O) {
311                                         fprintf(F, " O");
312                                 }
313                                 if (attr->am_flavour & ia32_B) {
314                                         fprintf(F, " B");
315                                 }
316                                 if (attr->am_flavour & ia32_I) {
317                                         fprintf(F, " I");
318                                 }
319                                 if (attr->am_flavour & ia32_S) {
320                                         fprintf(F, " S");
321                                 }
322                         }
323                         fprintf(F, " (%d)\n", attr->am_flavour);
324
325                         /* dump AM offset */
326                         fprintf(F, "AM offset = ");
327                         if (attr->am_offs) {
328                                 fprintf(F, "%s", get_ia32_am_offs(n));
329                         }
330                         else {
331                                 fprintf(F, "n/a");
332                         }
333                         fprintf(F, "\n");
334
335                         /* dump AM scale */
336                         fprintf(F, "AM scale = %d\n", get_ia32_am_scale(n));
337
338                         /* dump pn code */
339                         fprintf(F, "pn_code = %d\n", get_ia32_pncode(n));
340
341                         /* dump n_res */
342                         fprintf(F, "n_res = %d\n", get_ia32_n_res(n));
343
344                         /* dump flags */
345                         fprintf(F, "flags =");
346                         if (attr->flags == arch_irn_flags_none) {
347                                 fprintf(F, " none");
348                         }
349                         else {
350                                 if (attr->flags & arch_irn_flags_dont_spill) {
351                                         fprintf(F, " unspillable");
352                                 }
353                                 if (attr->flags & arch_irn_flags_rematerializable) {
354                                         fprintf(F, " remat");
355                                 }
356                                 if (attr->flags & arch_irn_flags_ignore) {
357                                         fprintf(F, " ignore");
358                                 }
359                         }
360                         fprintf(F, " (%d)\n", attr->flags);
361
362                         fprintf(F, "=== IA32 attr end ===\n");
363                         /* end of: case dump_node_info_txt */
364                         break;
365         }
366
367         return bad;
368 }
369
370
371
372 /***************************************************************************************************
373  *        _   _                   _       __        _                    _   _               _
374  *       | | | |                 | |     / /       | |                  | | | |             | |
375  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
376  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
377  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
378  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
379  *                                        __/ |
380  *                                       |___/
381  ***************************************************************************************************/
382
383  static char *copy_str(char *dst, const char *src) {
384          dst = xcalloc(1, strlen(src) + 1);
385          strncpy(dst, src, strlen(src) + 1);
386          return dst;
387  }
388
389  static char *set_cnst_from_tv(char *cnst, tarval *tv) {
390          if (cnst) {
391                  free(cnst);
392          }
393
394          cnst = xcalloc(1, 64);
395          assert(tarval_snprintf(cnst, 63, tv));
396          return cnst;
397  }
398
399 /**
400  * Wraps get_irn_generic_attr() as it takes no const ir_node, so we need to do a cast.
401  * Firm was made by people hating const :-(
402  */
403 ia32_attr_t *get_ia32_attr(const ir_node *node) {
404         assert(is_ia32_irn(node) && "need ia32 node to get ia32 attributes");
405         return (ia32_attr_t *)get_irn_generic_attr((ir_node *)node);
406 }
407
408 /**
409  * Gets the type of an ia32 node.
410  */
411 ia32_op_type_t get_ia32_op_type(const ir_node *node) {
412         ia32_attr_t *attr = get_ia32_attr(node);
413         return attr->tp;
414 }
415
416 /**
417  * Sets the type of an ia32 node.
418  */
419 void set_ia32_op_type(ir_node *node, ia32_op_type_t tp) {
420         ia32_attr_t *attr = get_ia32_attr(node);
421         attr->tp          = tp;
422 }
423
424 /**
425  * Gets the supported addrmode of an ia32 node
426  */
427 ia32_am_type_t get_ia32_am_support(const ir_node *node) {
428         ia32_attr_t *attr = get_ia32_attr(node);
429         return attr->am_support;
430 }
431
432 /**
433  * Sets the supported addrmode of an ia32 node
434  */
435 void set_ia32_am_support(ir_node *node, ia32_am_type_t am_tp) {
436         ia32_attr_t *attr = get_ia32_attr(node);
437         attr->am_support  = am_tp;
438 }
439
440 /**
441  * Gets the addrmode flavour of an ia32 node
442  */
443 ia32_am_flavour_t get_ia32_am_flavour(const ir_node *node) {
444         ia32_attr_t *attr = get_ia32_attr(node);
445         return attr->am_flavour;
446 }
447
448 /**
449  * Sets the addrmode flavour of an ia32 node
450  */
451 void set_ia32_am_flavour(ir_node *node, ia32_am_flavour_t am_flavour) {
452         ia32_attr_t *attr = get_ia32_attr(node);
453         attr->am_flavour  = am_flavour;
454 }
455
456 /**
457  * Joins all offsets to one string with adds.
458  */
459 char *get_ia32_am_offs(const ir_node *node) {
460         ia32_attr_t *attr = get_ia32_attr(node);
461         char        *res  = NULL;
462         int          size;
463
464         if (! attr->am_offs) {
465                 return NULL;
466         }
467
468         size = obstack_object_size(attr->am_offs);
469     if (size > 0) {
470                 res = xcalloc(1, size + 1);
471                 memcpy(res, obstack_base(attr->am_offs), size);
472     }
473
474         res[size] = '\0';
475         return res;
476 }
477
478 /**
479  * Add an offset for addrmode.
480  */
481 static void extend_ia32_am_offs(ir_node *node, char *offset, char op) {
482         ia32_attr_t *attr = get_ia32_attr(node);
483
484         if (!attr->am_offs) {
485                 /* obstack is not initialized */
486                 attr->am_offs = xcalloc(1, sizeof(*(attr->am_offs)));
487                 obstack_init(attr->am_offs);
488         }
489         else {
490                 /* obstack is initialized -> there is already one offset */
491                 /* present -> connect the offsets with an add            */
492                 obstack_printf(attr->am_offs, " %c ", op);
493         }
494
495         obstack_printf(attr->am_offs, "%s", offset);
496 }
497
498 /**
499  * Add an offset for addrmode.
500  */
501 void add_ia32_am_offs(ir_node *node, char *offset) {
502         extend_ia32_am_offs(node, offset, '+');
503 }
504
505 /**
506  * Sub an offset for addrmode.
507  */
508 void sub_ia32_am_offs(ir_node *node, char *offset) {
509         extend_ia32_am_offs(node, offset, '-');
510 }
511
512 /**
513  * Gets the addr mode const.
514  */
515 int get_ia32_am_scale(const ir_node *node) {
516         ia32_attr_t *attr = get_ia32_attr(node);
517         return attr->am_scale;
518 }
519
520 /**
521  * Sets the index register scale for addrmode.
522  */
523 void set_ia32_am_scale(ir_node *node, int scale) {
524         ia32_attr_t *attr = get_ia32_attr(node);
525         attr->am_scale    = scale;
526 }
527
528 /**
529  * Return the tarval of an immediate operation or NULL in case of SymConst
530  */
531 tarval *get_ia32_Immop_tarval(const ir_node *node) {
532         ia32_attr_t *attr = get_ia32_attr(node);
533     return attr->tv;
534 }
535
536 /**
537  * Sets the attributes of an immediate operation to the specified tarval
538  */
539 void set_ia32_Immop_tarval(ir_node *node, tarval *tv) {
540         ia32_attr_t *attr = get_ia32_attr(node);
541         attr->tv          = tv;
542         attr->cnst        = set_cnst_from_tv(attr->cnst, attr->tv);
543 }
544
545 /**
546  * Return the sc attribute.
547  */
548 char *get_ia32_sc(const ir_node *node) {
549   ia32_attr_t *attr = get_ia32_attr(node);
550   return attr->sc;
551 }
552
553 /**
554  * Sets the sc attribute.
555  */
556 void set_ia32_sc(ir_node *node, char *sc) {
557   ia32_attr_t *attr = get_ia32_attr(node);
558   attr->sc          = copy_str(attr->sc, sc);
559
560   if (attr->cnst) {
561           free(attr->cnst);
562   }
563   attr->cnst = attr->sc;
564 }
565
566 /**
567  * Gets the string representation of the internal const (tv or symconst)
568  */
569 char *get_ia32_cnst(ir_node *node) {
570   ia32_attr_t *attr = get_ia32_attr(node);
571   return attr->cnst;
572 }
573
574 /**
575  * Returns the argument register requirements of an ia32 node.
576  */
577 const ia32_register_req_t **get_ia32_in_req_all(const ir_node *node) {
578         ia32_attr_t *attr = get_ia32_attr(node);
579         return attr->in_req;
580 }
581
582 /**
583  * Returns the result register requirements of an ia32 node.
584  */
585 const ia32_register_req_t **get_ia32_out_req_all(const ir_node *node) {
586         ia32_attr_t *attr = get_ia32_attr(node);
587         return attr->out_req;
588 }
589
590 /**
591  * Returns the argument register requirement at position pos of an ia32 node.
592  */
593 const ia32_register_req_t *get_ia32_in_req(const ir_node *node, int pos) {
594         ia32_attr_t *attr = get_ia32_attr(node);
595         return attr->in_req[pos];
596 }
597
598 /**
599  * Returns the result register requirement at position pos of an ia32 node.
600  */
601 const ia32_register_req_t *get_ia32_out_req(const ir_node *node, int pos) {
602         ia32_attr_t *attr = get_ia32_attr(node);
603         return attr->out_req[pos];
604 }
605
606 /**
607  * Sets the OUT register requirements at position pos.
608  */
609 void set_ia32_req_out(ir_node *node, const ia32_register_req_t *req, int pos) {
610         ia32_attr_t *attr  = get_ia32_attr(node);
611         attr->out_req[pos] = req;
612 }
613
614 /**
615  * Sets the IN register requirements at position pos.
616  */
617 void set_ia32_req_in(ir_node *node, const ia32_register_req_t *req, int pos) {
618         ia32_attr_t *attr = get_ia32_attr(node);
619         attr->in_req[pos] = req;
620 }
621
622 /**
623  * Returns the register flag of an ia32 node.
624  */
625 arch_irn_flags_t get_ia32_flags(const ir_node *node) {
626         ia32_attr_t *attr = get_ia32_attr(node);
627         return attr->flags;
628 }
629
630 /**
631  * Sets the register flag of an ia32 node.
632  */
633 void set_ia32_flags(const ir_node *node, arch_irn_flags_t flags) {
634         ia32_attr_t *attr = get_ia32_attr(node);
635         attr->flags       = flags;
636 }
637
638 /**
639  * Returns the result register slots of an ia32 node.
640  */
641 const arch_register_t **get_ia32_slots(const ir_node *node) {
642         ia32_attr_t *attr = get_ia32_attr(node);
643         return attr->slots;
644 }
645
646 /**
647  * Returns the name of the OUT register at position pos.
648  */
649 const char *get_ia32_out_reg_name(const ir_node *node, int pos) {
650         ia32_attr_t *attr = get_ia32_attr(node);
651
652         assert(is_ia32_irn(node) && "Not an ia32 node.");
653         assert(pos < attr->n_res && "Invalid OUT position.");
654         assert(attr->slots[pos]  && "No register assigned");
655
656         return arch_register_get_name(attr->slots[pos]);
657 }
658
659 /**
660  * Returns the index of the OUT register at position pos within its register class.
661  */
662 int get_ia32_out_regnr(const ir_node *node, int pos) {
663         ia32_attr_t *attr = get_ia32_attr(node);
664
665         assert(is_ia32_irn(node) && "Not an ia32 node.");
666         assert(pos < attr->n_res && "Invalid OUT position.");
667         assert(attr->slots[pos]  && "No register assigned");
668
669         return arch_register_get_index(attr->slots[pos]);
670 }
671
672 /**
673  * Returns the OUT register at position pos.
674  */
675 const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos) {
676         ia32_attr_t *attr = get_ia32_attr(node);
677
678         assert(is_ia32_irn(node) && "Not an ia32 node.");
679         assert(pos < attr->n_res && "Invalid OUT position.");
680         assert(attr->slots[pos]  && "No register assigned");
681
682         return attr->slots[pos];
683 }
684
685 /**
686  * Sets the number of results.
687  */
688 void set_ia32_n_res(ir_node *node, int n_res) {
689         ia32_attr_t *attr = get_ia32_attr(node);
690         attr->n_res       = n_res;
691 }
692
693 /**
694  * Returns the number of results.
695  */
696 int get_ia32_n_res(const ir_node *node) {
697         ia32_attr_t *attr = get_ia32_attr(node);
698         return attr->n_res;
699 }
700
701 /**
702  * Returns the flavour of an ia32 node,
703  */
704 ia32_op_flavour_t get_ia32_flavour(const ir_node *node) {
705         ia32_attr_t *attr = get_ia32_attr(node);
706         return attr->op_flav;
707 }
708
709 /**
710  * Sets the flavour of an ia32 node to flavour_Div/Mod/DivMod/Mul/Mulh.
711  */
712 void set_ia32_flavour(ir_node *node, ia32_op_flavour_t op_flav) {
713         ia32_attr_t *attr = get_ia32_attr(node);
714         attr->op_flav     = op_flav;
715 }
716
717 /**
718  * Returns the projnum code.
719  */
720 long get_ia32_pncode(const ir_node *node) {
721         ia32_attr_t *attr = get_ia32_attr(node);
722         return attr->pn_code;
723 }
724
725 /**
726  * Sets the projnum code
727  */
728 void set_ia32_pncode(ir_node *node, long code) {
729         ia32_attr_t *attr = get_ia32_attr(node);
730         attr->pn_code     = code;
731 }
732
733
734 /******************************************************************************************************
735  *                      _       _         _   _           __                  _   _
736  *                     (_)     | |       | | | |         / _|                | | (_)
737  *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
738  * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
739  * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
740  * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
741  *     | |
742  *     |_|
743  ******************************************************************************************************/
744
745 /**
746  * Gets the type of an ia32_Const.
747  */
748 unsigned get_ia32_Const_type(ir_node *node) {
749         ia32_attr_t *attr = get_ia32_attr(node);
750
751         assert((is_ia32_Const(node) || is_ia32_fConst(node)) && "Need ia32_Const to get type");
752
753         return attr->tp;
754 }
755
756 /**
757  * Sets the type of an ia32_Const.
758  */
759 void set_ia32_Const_type(ir_node *node, int type) {
760         ia32_attr_t *attr = get_ia32_attr(node);
761
762         assert((is_ia32_Const(node) || is_ia32_fConst(node)) && "Need ia32_Const to set type");
763         assert((type == ia32_Const || type == ia32_SymConst) && "Unsupported ia32_Const type");
764
765         attr->tp = type;
766 }
767
768 /**
769  * Copy the attributes from an ia32_Const to an Immop (Add_i, Sub_i, ...) node
770  */
771 void set_ia32_Immop_attr(ir_node *node, ir_node *cnst) {
772         ia32_attr_t *na = get_ia32_attr(node);
773         ia32_attr_t *ca = get_ia32_attr(cnst);
774
775         assert((is_ia32_Const(cnst) || is_ia32_fConst(cnst)) && "Need ia32_Const to set Immop attr");
776
777         na->tv = ca->tv;
778
779         if (ca->sc) {
780                 na->sc = copy_str(na->sc, ca->sc);
781         }
782         else {
783                 na->cnst = set_cnst_from_tv(na->cnst, na->tv);
784                 na->sc   = NULL;
785         }
786 }
787
788 /**
789  * Copy the attributes from a Const to an ia32_Const
790  */
791 void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst) {
792         ia32_attr_t *attr = get_ia32_attr(ia32_cnst);
793
794         assert((is_ia32_Const(ia32_cnst) || is_ia32_fConst(ia32_cnst)) && "Need ia32_Const to set Const attr");
795
796         switch (get_irn_opcode(cnst)) {
797                 case iro_Const:
798                         attr->tp   = ia32_Const;
799                         attr->tv   = get_Const_tarval(cnst);
800                         attr->cnst = set_cnst_from_tv(attr->cnst, attr->tv);
801                         break;
802                 case iro_SymConst:
803                         attr->tp   = ia32_SymConst;
804                         attr->tv   = NULL;
805                         attr->sc   = copy_str(attr->sc, get_sc_name(cnst));
806                         attr->cnst = attr->sc;
807                         break;
808                 case iro_Unknown:
809                         assert(0 && "Unknown Const NYI");
810                         break;
811                 default:
812                         assert(0 && "Cannot create ia32_Const for this opcode");
813         }
814 }
815
816 /**
817  * Sets the AddrMode(S|D) attribute
818  */
819 void set_ia32_AddrMode(ir_node *node, char direction) {
820         ia32_attr_t *attr = get_ia32_attr(node);
821
822         switch (direction) {
823                 case 'D':
824                         attr->tp = ia32_AddrModeD;
825                         break;
826                 case 'S':
827                         attr->tp = ia32_AddrModeS;
828                         break;
829                 default:
830                         assert(0 && "wrong AM type");
831         }
832 }
833
834 /**
835  * Returns whether or not the node is an AddrModeS node.
836  */
837 int is_ia32_AddrModeS(ir_node *node) {
838         ia32_attr_t *attr = get_ia32_attr(node);
839         return (attr->tp == ia32_AddrModeS);
840 }
841
842 /**
843  * Returns whether or not the node is an AddrModeD node.
844  */
845 int is_ia32_AddrModeD(ir_node *node) {
846         ia32_attr_t *attr = get_ia32_attr(node);
847         return (attr->tp == ia32_AddrModeD);
848 }
849
850
851
852 /***************************************************************************************
853  *                  _                            _                   _
854  *                 | |                          | |                 | |
855  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
856  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
857  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
858  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
859  *
860  ***************************************************************************************/
861
862 /* Include the generated constructor functions */
863 #include "gen_ia32_new_nodes.c.inl"