change internal representation of addressmode offset to long
[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 ia32 assembler irg.
4  * @author Christian Wuerdig
5  * $Id$
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif
11
12 #ifdef HAVE_MALLOC_H
13 #include <malloc.h>
14 #endif
15
16 #ifdef HAVE_ALLOCA_H
17 #include <alloca.h>
18 #endif
19
20 #include <stdlib.h>
21
22 #include "irprog_t.h"
23 #include "irgraph_t.h"
24 #include "irnode_t.h"
25 #include "irmode_t.h"
26 #include "ircons_t.h"
27 #include "iropt_t.h"
28 #include "irop.h"
29 #include "firm_common_t.h"
30 #include "irvrfy_t.h"
31 #include "irprintf.h"
32
33 #include "../bearch.h"
34
35 #include "ia32_nodes_attr.h"
36 #include "ia32_new_nodes.h"
37 #include "gen_ia32_regalloc_if.h"
38
39 /**
40  * Returns the ident of a SymConst.
41  * @param symc  The SymConst
42  * @return The ident of the SymConst
43  */
44 static ident *get_sc_ident(ir_node *symc) {
45         entity  *ent;
46         ir_type *owner;
47         ident   *id;
48
49         switch (get_SymConst_kind(symc)) {
50                 case symconst_addr_name:
51                         return get_SymConst_name(symc);
52
53                 case symconst_addr_ent:
54                         ent   = get_SymConst_entity(symc);
55                         owner = get_entity_owner(ent);
56                         id    = get_entity_ld_ident(ent);
57                         if (owner == get_tls_type()) {
58                                 if (get_entity_visibility(ent) == visibility_external_allocated)
59                                         id = mangle(id, new_id_from_chars("@INDNTPOFF", 10));
60                                 else
61                                         id = mangle(id, new_id_from_chars("@NTPOFF", 7));
62                         }
63                         return id;
64
65                 default:
66                         assert(0 && "Unsupported SymConst");
67         }
68
69         return NULL;
70 }
71
72
73
74 /***********************************************************************************
75  *      _                                   _       _             __
76  *     | |                                 (_)     | |           / _|
77  *   __| |_   _ _ __ ___  _ __   ___ _ __   _ _ __ | |_ ___ _ __| |_ __ _  ___ ___
78  *  / _` | | | | '_ ` _ \| '_ \ / _ \ '__| | | '_ \| __/ _ \ '__|  _/ _` |/ __/ _ \
79  * | (_| | |_| | | | | | | |_) |  __/ |    | | | | | ||  __/ |  | || (_| | (_|  __/
80  *  \__,_|\__,_|_| |_| |_| .__/ \___|_|    |_|_| |_|\__\___|_|  |_| \__,_|\___\___|
81  *                       | |
82  *                       |_|
83  ***********************************************************************************/
84
85 /**
86  * Returns a string containing the names of all registers within the limited bitset
87  */
88 static char *get_limited_regs(const arch_register_req_t *req, char *buf, int max) {
89         bitset_t *bs   = bitset_alloca(req->cls->n_regs);
90         char     *p    = buf;
91         int       size = 0;
92         int       i, cnt;
93
94         req->limited(NULL, bs);
95
96         for (i = 0; i < req->cls->n_regs; i++) {
97                 if (bitset_is_set(bs, i)) {
98                         cnt = snprintf(p, max - size, " %s", req->cls->regs[i].name);
99                         if (cnt < 0) {
100                                 fprintf(stderr, "dumper problem, exiting\n");
101                                 exit(1);
102                         }
103
104                         p    += cnt;
105                         size += cnt;
106
107                         if (size >= max)
108                                 break;
109                 }
110         }
111
112         return buf;
113 }
114
115 /**
116  * Dumps the register requirements for either in or out.
117  */
118 static void dump_reg_req(FILE *F, ir_node *n, const ia32_register_req_t **reqs, int inout) {
119         char *dir = inout ? "out" : "in";
120         int   max = inout ? get_ia32_n_res(n) : get_irn_arity(n);
121         char *buf = alloca(1024);
122         int   i;
123
124         memset(buf, 0, 1024);
125
126         if (reqs) {
127                 for (i = 0; i < max; i++) {
128                         fprintf(F, "%sreq #%d =", dir, i);
129
130                         if (reqs[i]->req.type == arch_register_req_type_none) {
131                                 fprintf(F, " n/a");
132                         }
133
134                         if (reqs[i]->req.type & arch_register_req_type_normal) {
135                                 fprintf(F, " %s", reqs[i]->req.cls->name);
136                         }
137
138                         if (reqs[i]->req.type & arch_register_req_type_limited) {
139                                 fprintf(F, " %s", get_limited_regs(&reqs[i]->req, buf, 1024));
140                         }
141
142                         if (reqs[i]->req.type & arch_register_req_type_should_be_same) {
143                                 ir_fprintf(F, " same as %+F", get_irn_n(n, reqs[i]->same_pos));
144                         }
145
146                         if (reqs[i]->req.type & arch_register_req_type_should_be_different) {
147                                 ir_fprintf(F, " different from %+F", get_irn_n(n, reqs[i]->different_pos));
148                         }
149
150                         fprintf(F, "\n");
151                 }
152
153                 fprintf(F, "\n");
154         }
155         else {
156                 fprintf(F, "%sreq = N/A\n", dir);
157         }
158 }
159
160 /**
161  * Dumper interface for dumping ia32 nodes in vcg.
162  * @param n        the node to dump
163  * @param F        the output file
164  * @param reason   indicates which kind of information should be dumped
165  * @return 0 on success or != 0 on failure
166  */
167 static int ia32_dump_node(ir_node *n, FILE *F, dump_reason_t reason) {
168         ir_mode     *mode = NULL;
169         int          bad  = 0;
170         int          i, n_res, am_flav, flags;
171         const ia32_register_req_t **reqs;
172         const arch_register_t     **slots;
173
174         switch (reason) {
175                 case dump_node_opcode_txt:
176                         fprintf(F, "%s", get_irn_opname(n));
177                         break;
178
179                 case dump_node_mode_txt:
180                         mode = get_irn_mode(n);
181
182                         if (is_ia32_Ld(n) || is_ia32_St(n)) {
183                                 mode = get_ia32_ls_mode(n);
184                         }
185
186                         fprintf(F, "[%s]", mode ? get_mode_name(mode) : "?NOMODE?");
187                         break;
188
189                 case dump_node_nodeattr_txt:
190                         if (is_ia32_ImmConst(n) || is_ia32_ImmSymConst(n) || is_ia32_Cnst(n)) {
191                                 char       *pref = is_ia32_ImmSymConst(n) || (get_ia32_op_type(n) == ia32_SymConst) ? "SymC " : "";
192                                 const char *cnst = get_ia32_cnst(n);
193
194                                 fprintf(F, "[%s%s]", pref, cnst ? cnst : "NONE");
195                         }
196
197                         if (! is_ia32_Lea(n)) {
198                                 if (is_ia32_AddrModeS(n)) {
199                                         fprintf(F, "[AM S] ");
200                                 }
201                                 else if (is_ia32_AddrModeD(n)) {
202                                         fprintf(F, "[AM D] ");
203                                 }
204                         }
205
206                         break;
207
208                 case dump_node_info_txt:
209                         n_res = get_ia32_n_res(n);
210                         fprintf(F, "=== IA32 attr begin ===\n");
211
212                         /* dump IN requirements */
213                         if (get_irn_arity(n) > 0) {
214                                 reqs = get_ia32_in_req_all(n);
215                                 dump_reg_req(F, n, reqs, 0);
216                         }
217
218                         /* dump OUT requirements */
219                         if (n_res > 0) {
220                                 reqs = get_ia32_out_req_all(n);
221                                 dump_reg_req(F, n, reqs, 1);
222                         }
223
224                         /* dump assigned registers */
225                         slots = get_ia32_slots(n);
226                         if (slots && n_res > 0) {
227                                 for (i = 0; i < n_res; i++) {
228                                         fprintf(F, "reg #%d = %s\n", i, slots[i] ? slots[i]->name : "n/a");
229                                 }
230                                 fprintf(F, "\n");
231                         }
232
233                         /* dump op type */
234                         fprintf(F, "op = ");
235                         switch (get_ia32_op_type(n)) {
236                                 case ia32_Normal:
237                                         fprintf(F, "Normal");
238                                         break;
239                                 case ia32_Const:
240                                         fprintf(F, "Const");
241                                         break;
242                                 case ia32_SymConst:
243                                         fprintf(F, "SymConst");
244                                         break;
245                                 case ia32_AddrModeD:
246                                         fprintf(F, "AM Dest (Load+Store)");
247                                         break;
248                                 case ia32_AddrModeS:
249                                         fprintf(F, "AM Source (Load)");
250                                         break;
251                                 default:
252                                         fprintf(F, "unknown (%d)", get_ia32_op_type(n));
253                                         break;
254                         }
255                         fprintf(F, "\n");
256
257                         /* dump immop type */
258                         fprintf(F, "immediate = ");
259                         switch (get_ia32_immop_type(n)) {
260                                 case ia32_ImmNone:
261                                         fprintf(F, "None");
262                                         break;
263                                 case ia32_ImmConst:
264                                         fprintf(F, "Const");
265                                         break;
266                                 case ia32_ImmSymConst:
267                                         fprintf(F, "SymConst");
268                                         break;
269                                 default:
270                                         fprintf(F, "unknown (%d)", get_ia32_immop_type(n));
271                                         break;
272                         }
273                         fprintf(F, "\n");
274
275                         /* dump supported am */
276                         fprintf(F, "AM support = ");
277                         switch (get_ia32_am_support(n)) {
278                                 case ia32_am_None:
279                                         fprintf(F, "none");
280                                         break;
281                                 case ia32_am_Source:
282                                         fprintf(F, "source only (Load)");
283                                         break;
284                                 case ia32_am_Dest:
285                                         fprintf(F, "dest only (Load+Store)");
286                                         break;
287                                 case ia32_am_Full:
288                                         fprintf(F, "full");
289                                         break;
290                                 default:
291                                         fprintf(F, "unknown (%d)", get_ia32_am_support(n));
292                                         break;
293                         }
294                         fprintf(F, "\n");
295
296                         /* dump am flavour */
297                         fprintf(F, "AM flavour =");
298                         am_flav = get_ia32_am_flavour(n);
299                         if (am_flav == ia32_am_N) {
300                                 fprintf(F, " none");
301                         }
302                         else {
303                                 if (am_flav & ia32_O) {
304                                         fprintf(F, " O");
305                                 }
306                                 if (am_flav & ia32_B) {
307                                         fprintf(F, " B");
308                                 }
309                                 if (am_flav & ia32_I) {
310                                         fprintf(F, " I");
311                                 }
312                                 if (am_flav & ia32_S) {
313                                         fprintf(F, " S");
314                                 }
315                         }
316                         fprintf(F, " (%d)\n", am_flav);
317
318                         /* dump AM offset */
319                         fprintf(F, "AM offset = ");
320                         if (get_ia32_am_offs(n)) {
321                                 fprintf(F, "%s", get_ia32_am_offs(n));
322                         }
323                         else {
324                                 fprintf(F, "n/a");
325                         }
326                         fprintf(F, "\n");
327
328                         /* dump AM scale */
329                         fprintf(F, "AM scale = %d\n", get_ia32_am_scale(n));
330
331                         /* dump pn code */
332                         fprintf(F, "pn_code = %ld\n", get_ia32_pncode(n));
333
334                         /* dump n_res */
335                         fprintf(F, "n_res = %d\n", get_ia32_n_res(n));
336
337                         /* dump use_frame */
338                         fprintf(F, "use_frame = %d\n", is_ia32_use_frame(n));
339
340                         /* commutative */
341                         fprintf(F, "commutative = %d\n", is_ia32_commutative(n));
342
343                         /* emit cl */
344                         fprintf(F, "emit cl instead of ecx = %d\n", is_ia32_emit_cl(n));
345
346                         /* got lea */
347                         fprintf(F, "got loea = %d\n", is_ia32_got_lea(n));
348
349                         /* got reload */
350                         fprintf(F, "got reload = %d\n", is_ia32_got_reload(n));
351
352                         /* dump latency */
353                         fprintf(F, "latency = %d\n", get_ia32_latency(n));
354
355                         /* dump flags */
356                         fprintf(F, "flags =");
357                         flags = get_ia32_flags(n);
358                         if (flags == arch_irn_flags_none) {
359                                 fprintf(F, " none");
360                         }
361                         else {
362                                 if (flags & arch_irn_flags_dont_spill) {
363                                         fprintf(F, " unspillable");
364                                 }
365                                 if (flags & arch_irn_flags_rematerializable) {
366                                         fprintf(F, " remat");
367                                 }
368                                 if (flags & arch_irn_flags_ignore) {
369                                         fprintf(F, " ignore");
370                                 }
371                                 if (flags & arch_irn_flags_modify_sp) {
372                                         fprintf(F, " modify_sp");
373                                 }
374                         }
375                         fprintf(F, " (%d)\n", flags);
376
377                         /* dump frame entity */
378                         fprintf(F, "frame entity = ");
379                         if (get_ia32_frame_ent(n)) {
380                                 ir_fprintf(F, "%+F", get_ia32_frame_ent(n));
381                         }
382                         else {
383                                 fprintf(F, "n/a");
384                         }
385                         fprintf(F, "\n");
386
387                         /* dump modes */
388                         fprintf(F, "ls_mode = ");
389                         if (get_ia32_ls_mode(n)) {
390                                 ir_fprintf(F, "%+F", get_ia32_ls_mode(n));
391                         }
392                         else {
393                                 fprintf(F, "n/a");
394                         }
395                         fprintf(F, "\n");
396
397                         fprintf(F, "res_mode = ");
398                         if (get_ia32_res_mode(n)) {
399                                 ir_fprintf(F, "%+F", get_ia32_res_mode(n));
400                         }
401                         else {
402                                 fprintf(F, "n/a");
403                         }
404                         fprintf(F, "\n");
405
406                         fprintf(F, "src_mode = ");
407                         if (get_ia32_src_mode(n)) {
408                                 ir_fprintf(F, "%+F", get_ia32_src_mode(n));
409                         }
410                         else {
411                                 fprintf(F, "n/a");
412                         }
413                         fprintf(F, "\n");
414
415                         fprintf(F, "tgt_mode = ");
416                         if (get_ia32_tgt_mode(n)) {
417                                 ir_fprintf(F, "%+F", get_ia32_tgt_mode(n));
418                         }
419                         else {
420                                 fprintf(F, "n/a");
421                         }
422                         fprintf(F, "\n");
423
424 #ifndef NDEBUG
425                         /* dump original ir node name */
426                         fprintf(F, "orig node = ");
427                         if (get_ia32_orig_node(n)) {
428                                 fprintf(F, "%s", get_ia32_orig_node(n));
429                         }
430                         else {
431                                 fprintf(F, "n/a");
432                         }
433                         fprintf(F, "\n");
434 #endif /* NDEBUG */
435
436                         fprintf(F, "=== IA32 attr end ===\n");
437                         /* end of: case dump_node_info_txt */
438                         break;
439         }
440
441         return bad;
442 }
443
444
445
446 /***************************************************************************************************
447  *        _   _                   _       __        _                    _   _               _
448  *       | | | |                 | |     / /       | |                  | | | |             | |
449  *   __ _| |_| |_ _ __   ___  ___| |_   / /_ _  ___| |_   _ __ ___   ___| |_| |__   ___   __| |___
450  *  / _` | __| __| '__| / __|/ _ \ __| / / _` |/ _ \ __| | '_ ` _ \ / _ \ __| '_ \ / _ \ / _` / __|
451  * | (_| | |_| |_| |    \__ \  __/ |_ / / (_| |  __/ |_  | | | | | |  __/ |_| | | | (_) | (_| \__ \
452  *  \__,_|\__|\__|_|    |___/\___|\__/_/ \__, |\___|\__| |_| |_| |_|\___|\__|_| |_|\___/ \__,_|___/
453  *                                        __/ |
454  *                                       |___/
455  ***************************************************************************************************/
456
457 /**
458  * Returns an ident for the given tarval tv.
459  */
460 static ident *get_ident_for_tv(tarval *tv) {
461         char buf[1024];
462         int len = tarval_snprintf(buf, sizeof(buf), tv);
463         assert(len);
464         return new_id_from_str(buf);
465 }
466
467 /**
468  * Wraps get_irn_generic_attr() as it takes no const ir_node, so we need to do a cast.
469  * Firm was made by people hating const :-(
470  */
471 ia32_attr_t *get_ia32_attr(const ir_node *node) {
472         assert(is_ia32_irn(node) && "need ia32 node to get ia32 attributes");
473         return (ia32_attr_t *)get_irn_generic_attr((ir_node *)node);
474 }
475
476 /**
477  * Gets the type of an ia32 node.
478  */
479 ia32_op_type_t get_ia32_op_type(const ir_node *node) {
480         ia32_attr_t *attr = get_ia32_attr(node);
481         return attr->data.tp;
482 }
483
484 /**
485  * Sets the type of an ia32 node.
486  */
487 void set_ia32_op_type(ir_node *node, ia32_op_type_t tp) {
488         ia32_attr_t *attr = get_ia32_attr(node);
489         attr->data.tp     = tp;
490 }
491
492 /**
493  * Gets the immediate op type of an ia32 node.
494  */
495 ia32_immop_type_t get_ia32_immop_type(const ir_node *node) {
496         ia32_attr_t *attr = get_ia32_attr(node);
497         return attr->data.imm_tp;
498 }
499
500 /**
501  * Sets the immediate op type of an ia32 node.
502  */
503 void set_ia32_immop_type(ir_node *node, ia32_immop_type_t tp) {
504         ia32_attr_t *attr = get_ia32_attr(node);
505         attr->data.imm_tp = tp;
506 }
507
508 /**
509  * Gets the supported addrmode of an ia32 node
510  */
511 ia32_am_type_t get_ia32_am_support(const ir_node *node) {
512         ia32_attr_t *attr = get_ia32_attr(node);
513         return attr->data.am_support;
514 }
515
516 /**
517  * Sets the supported addrmode of an ia32 node
518  */
519 void set_ia32_am_support(ir_node *node, ia32_am_type_t am_tp) {
520         ia32_attr_t *attr     = get_ia32_attr(node);
521         attr->data.am_support = am_tp;
522 }
523
524 /**
525  * Gets the addrmode flavour of an ia32 node
526  */
527 ia32_am_flavour_t get_ia32_am_flavour(const ir_node *node) {
528         ia32_attr_t *attr = get_ia32_attr(node);
529         return attr->data.am_flavour;
530 }
531
532 /**
533  * Sets the addrmode flavour of an ia32 node
534  */
535 void set_ia32_am_flavour(ir_node *node, ia32_am_flavour_t am_flavour) {
536         ia32_attr_t *attr     = get_ia32_attr(node);
537         attr->data.am_flavour = am_flavour;
538 }
539
540 /**
541  * Joins all offsets to one string with adds.
542  */
543 char *get_ia32_am_offs(const ir_node *node) {
544         ia32_attr_t *attr = get_ia32_attr(node);
545         char        *res  = NULL;
546
547         if (! attr->am_offs) {
548                 return NULL;
549         }
550
551         res = obstack_alloc(get_irg_obstack(get_irn_irg(node)), 64);
552         snprintf(res, 64, "%+ld", attr->am_offs);
553
554         return res;
555 }
556
557 /**
558  * Gets the addressmode offset as long.
559  */
560 long get_ia32_am_offs_long(const ir_node *node) {
561         ia32_attr_t *attr = get_ia32_attr(node);
562         return attr->am_offs;
563 }
564
565 /**
566  * Add an offset for addrmode.
567  */
568 static void extend_ia32_am_offs(ir_node *node, char *offset, char op) {
569         ia32_attr_t *attr = get_ia32_attr(node);
570         int o;
571
572         if (! offset || strlen(offset) < 1)
573                 return;
574
575         sscanf(offset, "%d", &o);
576
577         if (op == '-')
578                 attr->am_offs -= o;
579         else if (op == '+')
580                 attr->am_offs -= o;
581         else
582                 assert(0);
583 }
584
585 /**
586  * Add an offset for addrmode.
587  */
588 void add_ia32_am_offs(ir_node *node, const char *offset) {
589         extend_ia32_am_offs(node, (char *)offset, '+');
590 }
591
592 /**
593  * Sub an offset for addrmode.
594  */
595 void sub_ia32_am_offs(ir_node *node, const char *offset) {
596         extend_ia32_am_offs(node, (char *)offset, '-');
597 }
598
599 /**
600  * Returns the symconst ident associated to addrmode.
601  */
602 ident *get_ia32_am_sc(const ir_node *node) {
603         ia32_attr_t *attr = get_ia32_attr(node);
604         return attr->am_sc;
605 }
606
607 /**
608  * Sets the symconst ident associated to addrmode.
609  */
610 void set_ia32_am_sc(ir_node *node, ident *sc) {
611         ia32_attr_t *attr = get_ia32_attr(node);
612         attr->am_sc       = sc;
613 }
614
615 /**
616  * Sets the sign bit for address mode symconst.
617  */
618 void set_ia32_am_sc_sign(ir_node *node) {
619         ia32_attr_t *attr     = get_ia32_attr(node);
620         attr->data.am_sc_sign = 1;
621 }
622
623 /**
624  * Clears the sign bit for address mode symconst.
625  */
626 void clear_ia32_am_sc_sign(ir_node *node) {
627         ia32_attr_t *attr     = get_ia32_attr(node);
628         attr->data.am_sc_sign = 0;
629 }
630
631 /**
632  * Returns the sign bit for address mode symconst.
633  */
634 int is_ia32_am_sc_sign(const ir_node *node) {
635         ia32_attr_t *attr = get_ia32_attr(node);
636         return attr->data.am_sc_sign;
637 }
638
639 /**
640  * Gets the addr mode const.
641  */
642 int get_ia32_am_scale(const ir_node *node) {
643         ia32_attr_t *attr = get_ia32_attr(node);
644         return attr->data.am_scale;
645 }
646
647 /**
648  * Sets the index register scale for addrmode.
649  */
650 void set_ia32_am_scale(ir_node *node, int scale) {
651         ia32_attr_t *attr   = get_ia32_attr(node);
652         attr->data.am_scale = scale;
653 }
654
655 /**
656  * Return the tarval of an immediate operation or NULL in case of SymConst
657  */
658 tarval *get_ia32_Immop_tarval(const ir_node *node) {
659         ia32_attr_t *attr = get_ia32_attr(node);
660     return attr->cnst_val.tv;
661 }
662
663 /**
664  * Sets the attributes of an immediate operation to the specified tarval
665  */
666 void set_ia32_Immop_tarval(ir_node *node, tarval *tv) {
667         ia32_attr_t *attr = get_ia32_attr(node);
668         attr->cnst_val.tv = tv;
669         attr->cnst        = get_ident_for_tv(tv);
670 }
671
672 /**
673  * Gets the string representation of the internal const (tv or symconst)
674  */
675 const char *get_ia32_cnst(const ir_node *node) {
676         ia32_attr_t *attr = get_ia32_attr(node);
677         if (! attr->cnst)
678                 return NULL;
679         return get_id_str(attr->cnst);
680 }
681
682 /**
683  * Sets the string representation of the internal const.
684  */
685 void set_ia32_cnst(ir_node *node, char *cnst) {
686         ia32_attr_t *attr = get_ia32_attr(node);
687         attr->cnst        = new_id_from_str(cnst);
688 }
689
690 /**
691  * Gets the ident representation of the internal const (tv or symconst)
692  */
693 ident *get_ia32_id_cnst(const ir_node *node) {
694         ia32_attr_t *attr = get_ia32_attr(node);
695         return attr->cnst;
696 }
697
698 /**
699  * Sets the ident representation of the internal const.
700  */
701 void set_ia32_id_cnst(ir_node *node, ident *cnst) {
702         ia32_attr_t *attr = get_ia32_attr(node);
703         attr->cnst        = cnst;
704 }
705
706 /**
707  * Sets the uses_frame flag.
708  */
709 void set_ia32_use_frame(ir_node *node) {
710         ia32_attr_t *attr    = get_ia32_attr(node);
711         attr->data.use_frame = 1;
712 }
713
714 /**
715  * Clears the uses_frame flag.
716  */
717 void clear_ia32_use_frame(ir_node *node) {
718         ia32_attr_t *attr    = get_ia32_attr(node);
719         attr->data.use_frame = 0;
720 }
721
722 /**
723  * Gets the uses_frame flag.
724  */
725 int is_ia32_use_frame(const ir_node *node) {
726         ia32_attr_t *attr = get_ia32_attr(node);
727         return attr->data.use_frame;
728 }
729
730 /**
731  * Sets node to commutative.
732  */
733 void set_ia32_commutative(ir_node *node) {
734         ia32_attr_t *attr         = get_ia32_attr(node);
735         attr->data.is_commutative = 1;
736 }
737
738 /**
739  * Sets node to non-commutative.
740  */
741 void clear_ia32_commutative(ir_node *node) {
742         ia32_attr_t *attr         = get_ia32_attr(node);
743         attr->data.is_commutative = 0;
744 }
745
746 /**
747  * Checks if node is commutative.
748  */
749 int is_ia32_commutative(const ir_node *node) {
750         ia32_attr_t *attr = get_ia32_attr(node);
751         return attr->data.is_commutative;
752 }
753
754 /**
755  * Sets node emit_cl.
756  */
757 void set_ia32_emit_cl(ir_node *node) {
758         ia32_attr_t *attr  = get_ia32_attr(node);
759         attr->data.emit_cl = 1;
760 }
761
762 /**
763  * Clears node emit_cl.
764  */
765 void clear_ia32_emit_cl(ir_node *node) {
766         ia32_attr_t *attr  = get_ia32_attr(node);
767         attr->data.emit_cl = 0;
768 }
769
770 /**
771  * Checks if node needs %cl.
772  */
773 int is_ia32_emit_cl(const ir_node *node) {
774         ia32_attr_t *attr = get_ia32_attr(node);
775         return attr->data.emit_cl;
776 }
777
778 /**
779  * Sets node got_lea.
780  */
781 void set_ia32_got_lea(ir_node *node) {
782         ia32_attr_t *attr  = get_ia32_attr(node);
783         attr->data.got_lea = 1;
784 }
785
786 /**
787  * Clears node got_lea.
788  */
789 void clear_ia32_got_lea(ir_node *node) {
790         ia32_attr_t *attr  = get_ia32_attr(node);
791         attr->data.got_lea = 0;
792 }
793
794 /**
795  * Checks if node got lea.
796  */
797 int is_ia32_got_lea(const ir_node *node) {
798         ia32_attr_t *attr = get_ia32_attr(node);
799         return attr->data.got_lea;
800 }
801
802 /**
803  * Sets node got_reload.
804  */
805 void set_ia32_got_reload(ir_node *node) {
806         ia32_attr_t *attr     = get_ia32_attr(node);
807         attr->data.got_reload = 1;
808 }
809
810 /**
811  * Clears node got_reload.
812  */
813 void clear_ia32_got_reload(ir_node *node) {
814         ia32_attr_t *attr     = get_ia32_attr(node);
815         attr->data.got_reload = 0;
816 }
817
818 /**
819  * Checks if node got reload.
820  */
821 int is_ia32_got_reload(const ir_node *node) {
822         ia32_attr_t *attr = get_ia32_attr(node);
823         return attr->data.got_reload;
824 }
825
826 /**
827  * Gets the mode of the stored/loaded value (only set for Store/Load)
828  */
829 ir_mode *get_ia32_ls_mode(const ir_node *node) {
830         ia32_attr_t *attr = get_ia32_attr(node);
831         return attr->ls_mode;
832 }
833
834 /**
835  * Sets the mode of the stored/loaded value (only set for Store/Load)
836  */
837 void set_ia32_ls_mode(ir_node *node, ir_mode *mode) {
838         ia32_attr_t *attr = get_ia32_attr(node);
839         attr->ls_mode     = mode;
840 }
841
842 /**
843  * Gets the mode of the result.
844  */
845 ir_mode *get_ia32_res_mode(const ir_node *node) {
846         ia32_attr_t *attr = get_ia32_attr(node);
847         return attr->res_mode;
848 }
849
850 /**
851  * Sets the mode of the result.
852  */
853 void set_ia32_res_mode(ir_node *node, ir_mode *mode) {
854         ia32_attr_t *attr = get_ia32_attr(node);
855         attr->res_mode    = mode;
856 }
857
858 /**
859  * Gets the source mode of conversion.
860  */
861 ir_mode *get_ia32_src_mode(const ir_node *node) {
862         ia32_attr_t *attr = get_ia32_attr(node);
863         return attr->src_mode;
864 }
865
866 /**
867  * Sets the source mode of conversion.
868  */
869 void set_ia32_src_mode(ir_node *node, ir_mode *mode) {
870         ia32_attr_t *attr = get_ia32_attr(node);
871         attr->src_mode    = mode;
872 }
873
874 /**
875  * Gets the target mode of conversion.
876  */
877 ir_mode *get_ia32_tgt_mode(const ir_node *node) {
878         ia32_attr_t *attr = get_ia32_attr(node);
879         return attr->tgt_mode;
880 }
881
882 /**
883  * Sets the target mode of conversion.
884  */
885 void set_ia32_tgt_mode(ir_node *node, ir_mode *mode) {
886         ia32_attr_t *attr = get_ia32_attr(node);
887         attr->tgt_mode    = mode;
888 }
889
890 /**
891  * Gets the frame entity assigned to this node.
892  */
893 entity *get_ia32_frame_ent(const ir_node *node) {
894         ia32_attr_t *attr = get_ia32_attr(node);
895         return attr->frame_ent;
896 }
897
898 /**
899  * Sets the frame entity for this node.
900  */
901 void set_ia32_frame_ent(ir_node *node, entity *ent) {
902         ia32_attr_t *attr = get_ia32_attr(node);
903         attr->frame_ent   = ent;
904         set_ia32_use_frame(node);
905 }
906
907
908 /**
909  * Gets the instruction latency.
910  */
911 unsigned get_ia32_latency(const ir_node *node) {
912         ia32_attr_t *attr = get_ia32_attr(node);
913         return attr->latency;
914 }
915
916 /**
917 * Sets the instruction latency.
918 */
919 void set_ia32_latency(ir_node *node, unsigned latency) {
920         ia32_attr_t *attr = get_ia32_attr(node);
921         attr->latency     = latency;
922 }
923
924 /**
925  * Returns the argument register requirements of an ia32 node.
926  */
927 const ia32_register_req_t **get_ia32_in_req_all(const ir_node *node) {
928         ia32_attr_t *attr = get_ia32_attr(node);
929         return attr->in_req;
930 }
931
932 /**
933  * Sets the argument register requirements of an ia32 node.
934  */
935 void set_ia32_in_req_all(ir_node *node, const ia32_register_req_t **reqs) {
936         ia32_attr_t *attr = get_ia32_attr(node);
937         attr->in_req      = reqs;
938 }
939
940 /**
941  * Returns the result register requirements of an ia32 node.
942  */
943 const ia32_register_req_t **get_ia32_out_req_all(const ir_node *node) {
944         ia32_attr_t *attr = get_ia32_attr(node);
945         return attr->out_req;
946 }
947
948 /**
949  * Sets the result register requirements of an ia32 node.
950  */
951 void set_ia32_out_req_all(ir_node *node, const ia32_register_req_t **reqs) {
952         ia32_attr_t *attr = get_ia32_attr(node);
953         attr->out_req     = reqs;
954 }
955
956 /**
957  * Returns the argument register requirement at position pos of an ia32 node.
958  */
959 const ia32_register_req_t *get_ia32_in_req(const ir_node *node, int pos) {
960         ia32_attr_t *attr = get_ia32_attr(node);
961         return attr->in_req[pos];
962 }
963
964 /**
965  * Returns the result register requirement at position pos of an ia32 node.
966  */
967 const ia32_register_req_t *get_ia32_out_req(const ir_node *node, int pos) {
968         ia32_attr_t *attr = get_ia32_attr(node);
969         return attr->out_req[pos];
970 }
971
972 /**
973  * Sets the OUT register requirements at position pos.
974  */
975 void set_ia32_req_out(ir_node *node, const ia32_register_req_t *req, int pos) {
976         ia32_attr_t *attr  = get_ia32_attr(node);
977         attr->out_req[pos] = req;
978 }
979
980 /**
981  * Sets the IN register requirements at position pos.
982  */
983 void set_ia32_req_in(ir_node *node, const ia32_register_req_t *req, int pos) {
984         ia32_attr_t *attr = get_ia32_attr(node);
985         attr->in_req[pos] = req;
986 }
987
988 /**
989  * Returns the register flag of an ia32 node.
990  */
991 arch_irn_flags_t get_ia32_flags(const ir_node *node) {
992         ia32_attr_t *attr = get_ia32_attr(node);
993         return attr->data.flags;
994 }
995
996 /**
997  * Sets the register flag of an ia32 node.
998  */
999 void set_ia32_flags(ir_node *node, arch_irn_flags_t flags) {
1000         ia32_attr_t *attr = get_ia32_attr(node);
1001         attr->data.flags  = flags;
1002 }
1003
1004 /**
1005  * Returns the result register slots of an ia32 node.
1006  */
1007 const arch_register_t **get_ia32_slots(const ir_node *node) {
1008         ia32_attr_t *attr = get_ia32_attr(node);
1009         return attr->slots;
1010 }
1011
1012 /**
1013  * Sets the number of results.
1014  */
1015 void set_ia32_n_res(ir_node *node, int n_res) {
1016         ia32_attr_t *attr = get_ia32_attr(node);
1017         attr->data.n_res  = n_res;
1018 }
1019
1020 /**
1021  * Returns the number of results.
1022  */
1023 int get_ia32_n_res(const ir_node *node) {
1024         ia32_attr_t *attr = get_ia32_attr(node);
1025         return attr->data.n_res;
1026 }
1027
1028 /**
1029  * Returns the flavour of an ia32 node,
1030  */
1031 ia32_op_flavour_t get_ia32_flavour(const ir_node *node) {
1032         ia32_attr_t *attr = get_ia32_attr(node);
1033         return attr->data.op_flav;
1034 }
1035
1036 /**
1037  * Sets the flavour of an ia32 node to flavour_Div/Mod/DivMod/Mul/Mulh.
1038  */
1039 void set_ia32_flavour(ir_node *node, ia32_op_flavour_t op_flav) {
1040         ia32_attr_t *attr  = get_ia32_attr(node);
1041         attr->data.op_flav = op_flav;
1042 }
1043
1044 /**
1045  * Returns the projnum code.
1046  */
1047 long get_ia32_pncode(const ir_node *node) {
1048         ia32_attr_t *attr = get_ia32_attr(node);
1049         return attr->pn_code;
1050 }
1051
1052 /**
1053  * Sets the projnum code
1054  */
1055 void set_ia32_pncode(ir_node *node, long code) {
1056         ia32_attr_t *attr = get_ia32_attr(node);
1057         attr->pn_code     = code;
1058 }
1059
1060 #ifndef NDEBUG
1061
1062 /**
1063  * Returns the name of the original ir node.
1064  */
1065 const char *get_ia32_orig_node(const ir_node *node) {
1066         ia32_attr_t *attr = get_ia32_attr(node);
1067         return attr->orig_node;
1068 }
1069
1070 /**
1071  * Sets the name of the original ir node.
1072  */
1073 void set_ia32_orig_node(ir_node *node, const char *name) {
1074         ia32_attr_t *attr = get_ia32_attr(node);
1075         attr->orig_node   = name;
1076 }
1077
1078 #endif /* NDEBUG */
1079
1080 /******************************************************************************************************
1081  *                      _       _         _   _           __                  _   _
1082  *                     (_)     | |       | | | |         / _|                | | (_)
1083  *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
1084  * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
1085  * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
1086  * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
1087  *     | |
1088  *     |_|
1089  ******************************************************************************************************/
1090
1091 /**
1092  * Gets the type of an ia32_Const.
1093  */
1094 unsigned get_ia32_Const_type(const ir_node *node) {
1095         ia32_attr_t *attr = get_ia32_attr(node);
1096
1097         assert(is_ia32_Cnst(node) && "Need ia32_Const to get type");
1098
1099         return attr->data.tp;
1100 }
1101
1102 /**
1103  * Sets the type of an ia32_Const.
1104  */
1105 void set_ia32_Const_type(ir_node *node, int type) {
1106         ia32_attr_t *attr = get_ia32_attr(node);
1107
1108         assert(is_ia32_Cnst(node) && "Need ia32_Const to set type");
1109         assert((type == ia32_Const || type == ia32_SymConst) && "Unsupported ia32_Const type");
1110
1111         attr->data.tp = type;
1112 }
1113
1114 /**
1115  * Copy the attributes from an ia32_Const to an Immop (Add_i, Sub_i, ...) node
1116  */
1117 void set_ia32_Immop_attr(ir_node *node, ir_node *cnst) {
1118         ia32_attr_t *na = get_ia32_attr(node);
1119         ia32_attr_t *ca = get_ia32_attr(cnst);
1120
1121         switch(get_ia32_Const_type(cnst)) {
1122                 case ia32_Const:
1123                         na->cnst_val.tv = ca->cnst_val.tv;
1124                         na->cnst        = ca->cnst;
1125                         set_ia32_immop_type(node, ia32_ImmConst);
1126                         break;
1127                 case ia32_SymConst:
1128                         na->cnst_val.sc = ca->cnst_val.sc;
1129                         na->cnst        = na->cnst_val.sc;
1130                         set_ia32_immop_type(node, ia32_ImmSymConst);
1131                         break;
1132                 default:
1133                         assert(0 && "Need ia32_Const to set Immop attr");
1134         }
1135 }
1136
1137 /**
1138  * Copy the attributes from Immop to an Immop
1139  */
1140 void copy_ia32_Immop_attr(ir_node *dst, ir_node *src) {
1141         ia32_attr_t *da = get_ia32_attr(dst);
1142         ia32_attr_t *sa = get_ia32_attr(src);
1143
1144         switch(get_ia32_immop_type(src)) {
1145                 case ia32_ImmConst:
1146                         da->cnst_val.tv = sa->cnst_val.tv;
1147                         da->cnst        = sa->cnst;
1148                         set_ia32_immop_type(dst, ia32_ImmConst);
1149                         break;
1150                 case ia32_ImmSymConst:
1151                         da->cnst_val.sc = sa->cnst_val.sc;
1152                         da->cnst        = sa->cnst;
1153                         set_ia32_immop_type(dst, ia32_ImmSymConst);
1154                         break;
1155                 default:
1156                         assert(0 && "Need Immop to copy Immop attr");
1157         }
1158 }
1159
1160 /**
1161  * Copy the attributes from a Firm Const/SymConst to an ia32_Const
1162  */
1163 void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst) {
1164         ia32_attr_t *attr = get_ia32_attr(ia32_cnst);
1165         ir_mode *mode;
1166
1167         assert(is_ia32_Cnst(ia32_cnst) && "Need ia32_Const to set Const attr");
1168
1169         switch (get_irn_opcode(cnst)) {
1170                 case iro_Const:
1171                         attr->data.tp     = ia32_Const;
1172                         attr->cnst_val.tv = get_Const_tarval(cnst);
1173                         mode = get_tarval_mode(attr->cnst_val.tv);
1174                         if (mode_is_reference(mode) &&
1175                             get_mode_null(mode) == attr->cnst_val.tv)
1176                                 attr->cnst_val.tv = get_mode_null(mode_Is);
1177                         attr->cnst        = get_ident_for_tv(attr->cnst_val.tv);
1178                         break;
1179                 case iro_SymConst:
1180                         attr->data.tp     = ia32_SymConst;
1181                         attr->cnst_val.sc = get_sc_ident(cnst);
1182                         attr->cnst        = attr->cnst_val.sc;
1183                         break;
1184                 case iro_Unknown:
1185                         assert(0 && "Unknown Const NYI");
1186                         break;
1187                 default:
1188                         assert(0 && "Cannot create ia32_Const for this opcode");
1189         }
1190 }
1191
1192 /**
1193  * Sets the AddrMode(S|D) attribute
1194  */
1195 void set_ia32_AddrMode(ir_node *node, char direction) {
1196         ia32_attr_t *attr = get_ia32_attr(node);
1197
1198         switch (direction) {
1199                 case 'D':
1200                         attr->data.tp = ia32_AddrModeD;
1201                         break;
1202                 case 'S':
1203                         attr->data.tp = ia32_AddrModeS;
1204                         break;
1205                 default:
1206                         assert(0 && "wrong AM type");
1207         }
1208 }
1209
1210 /**
1211  * Returns whether or not the node is an immediate operation with Const.
1212  */
1213 int is_ia32_ImmConst(const ir_node *node) {
1214         ia32_attr_t *attr = get_ia32_attr(node);
1215         return (attr->data.imm_tp == ia32_ImmConst);
1216 }
1217
1218 /**
1219  * Returns whether or not the node is an immediate operation with SymConst.
1220  */
1221 int is_ia32_ImmSymConst(const ir_node *node) {
1222         ia32_attr_t *attr = get_ia32_attr(node);
1223         return (attr->data.imm_tp == ia32_ImmSymConst);
1224 }
1225
1226 /**
1227  * Returns whether or not the node is an AddrModeS node.
1228  */
1229 int is_ia32_AddrModeS(const ir_node *node) {
1230         ia32_attr_t *attr = get_ia32_attr(node);
1231         return (attr->data.tp == ia32_AddrModeS);
1232 }
1233
1234 /**
1235  * Returns whether or not the node is an AddrModeD node.
1236  */
1237 int is_ia32_AddrModeD(const ir_node *node) {
1238         ia32_attr_t *attr = get_ia32_attr(node);
1239         return (attr->data.tp == ia32_AddrModeD);
1240 }
1241
1242 /**
1243  * Checks if node is a Load or xLoad/vfLoad.
1244  */
1245 int is_ia32_Ld(const ir_node *node) {
1246         return is_ia32_Load(node) || is_ia32_xLoad(node) || is_ia32_vfld(node) || is_ia32_fld(node);
1247 }
1248
1249 /**
1250  * Checks if node is a Store or xStore/vfStore.
1251  */
1252 int is_ia32_St(const ir_node *node) {
1253         return is_ia32_Store(node) || is_ia32_xStore(node) || is_ia32_vfst(node) || is_ia32_fst(node) || is_ia32_fstp(node);
1254 }
1255
1256 /**
1257  * Checks if node is a Const or xConst/vfConst.
1258  */
1259 int is_ia32_Cnst(const ir_node *node) {
1260         return is_ia32_Const(node) || is_ia32_xConst(node) || is_ia32_vfConst(node);
1261 }
1262
1263 /**
1264  * Returns the name of the OUT register at position pos.
1265  */
1266 const char *get_ia32_out_reg_name(const ir_node *node, int pos) {
1267         ia32_attr_t *attr = get_ia32_attr(node);
1268
1269         assert(is_ia32_irn(node) && "Not an ia32 node.");
1270         assert(pos < (int) attr->data.n_res && "Invalid OUT position.");
1271         assert(attr->slots[pos]  && "No register assigned");
1272
1273         return arch_register_get_name(attr->slots[pos]);
1274 }
1275
1276 /**
1277  * Returns the index of the OUT register at position pos within its register class.
1278  */
1279 int get_ia32_out_regnr(const ir_node *node, int pos) {
1280         ia32_attr_t *attr = get_ia32_attr(node);
1281
1282         assert(is_ia32_irn(node) && "Not an ia32 node.");
1283         assert(pos < (int) attr->data.n_res && "Invalid OUT position.");
1284         assert(attr->slots[pos]  && "No register assigned");
1285
1286         return arch_register_get_index(attr->slots[pos]);
1287 }
1288
1289 /**
1290  * Returns the OUT register at position pos.
1291  */
1292 const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos) {
1293         ia32_attr_t *attr = get_ia32_attr(node);
1294
1295         assert(is_ia32_irn(node) && "Not an ia32 node.");
1296         assert(pos < (int) attr->data.n_res && "Invalid OUT position.");
1297         assert(attr->slots[pos]  && "No register assigned");
1298
1299         return attr->slots[pos];
1300 }
1301
1302 /**
1303  * Initializes the nodes attributes.
1304  */
1305 void init_ia32_attributes(ir_node *node, arch_irn_flags_t flags, const ia32_register_req_t **in_reqs,
1306                                                   const ia32_register_req_t **out_reqs, int n_res, unsigned latency)
1307 {
1308         ia32_attr_t *attr = get_ia32_attr(node);
1309         set_ia32_flags(node, flags);
1310         set_ia32_in_req_all(node, in_reqs);
1311         set_ia32_out_req_all(node, out_reqs);
1312         set_ia32_latency(node, latency);
1313
1314         attr->data.n_res = n_res;
1315         memset((void *)attr->slots, 0, n_res * sizeof(attr->slots[0]));
1316 }
1317
1318 /***************************************************************************************
1319  *                  _                            _                   _
1320  *                 | |                          | |                 | |
1321  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
1322  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
1323  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
1324  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
1325  *
1326  ***************************************************************************************/
1327
1328 /* default compare operation to compare immediate ops */
1329 int ia32_compare_immop_attr(ia32_attr_t *a, ia32_attr_t *b) {
1330         int equ = 0;
1331
1332         if (a->data.tp == b->data.tp) {
1333                 equ = (a->cnst == b->cnst);
1334                 equ = equ ? (a->data.use_frame == b->data.use_frame) : 0;
1335
1336                 if (equ && a->data.use_frame && b->data.use_frame)
1337                         equ = (a->frame_ent == b->frame_ent);
1338         }
1339
1340         return !equ;
1341 }
1342
1343 /* compare converts */
1344 int ia32_compare_conv_attr(ia32_attr_t *a, ia32_attr_t *b) {
1345         int equ = ! ia32_compare_immop_attr(a, b);
1346
1347         equ = equ ? (a->src_mode == b->src_mode) && (a->tgt_mode == b->tgt_mode) : equ;
1348
1349         return !equ;
1350 }
1351
1352 /* Copy attribute function not needed any more, but might be of use later. */
1353 #if 0
1354 /* copies the ia32 attributes */
1355 static void ia32_copy_attr(const ir_node *old_node, ir_node *new_node) {
1356         ia32_attr_t    *attr_old = get_ia32_attr(old_node);
1357         ia32_attr_t    *attr_new = get_ia32_attr(new_node);
1358         int             n_res    = get_ia32_n_res(old_node);
1359
1360         /* copy the attributes */
1361         memcpy(attr_new, attr_old, sizeof(*attr_new));
1362 }
1363
1364 /**
1365  * Registers the ia32_copy_attr function for all ia32 opcodes.
1366  */
1367 void ia32_register_copy_attr_func(void) {
1368         unsigned i, f = get_ia32_opcode_first(), l = get_ia32_opcode_last();
1369
1370         for (i = f; i < l; i++) {
1371                 ir_op *op = get_irp_opcode(i);
1372                 op->ops.copy_attr = ia32_copy_attr;
1373         }
1374 }
1375 #endif
1376
1377 /* Include the generated constructor functions */
1378 #include "gen_ia32_new_nodes.c.inl"