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