add support for external tls variables
[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         int          size;
547
548         if (! attr->am_offs) {
549                 return NULL;
550         }
551
552         if (! attr->plain_offs)
553                 attr->plain_offs = (struct obstack *)_new_arr_d(get_irg_obstack(get_irn_irg(node)), 1, sizeof(*(attr->plain_offs)));
554         else
555                 obstack_free(attr->plain_offs, NULL);
556
557         obstack_init(attr->plain_offs);
558
559         size = obstack_object_size(attr->am_offs);
560         if (size > 0) {
561                 res = obstack_alloc(attr->plain_offs, size + 2);
562                 res[0] = attr->data.offs_sign ? '-' : '+';
563                 memcpy(&res[1], obstack_base(attr->am_offs), size);
564                 res[size + 1] = '\0';
565         }
566
567         return res;
568 }
569
570 /**
571  * Add an offset for addrmode.
572  */
573 static void extend_ia32_am_offs(ir_node *node, char *offset, char op) {
574         ia32_attr_t *attr = get_ia32_attr(node);
575
576         if (! offset || strlen(offset) < 1)
577                 return;
578
579         /* offset could already have an explicit sign */
580         /* -> supersede op if necessary               */
581         if (offset[0] == '-' || offset[0] == '+') {
582                 if (offset[0] == '-') {
583                         op = (op == '-') ? '+' : '-';
584                 }
585
586                 /* skip explicit sign */
587                 offset++;
588         }
589
590         if (! attr->am_offs) {
591                 /* obstack is not initialized */
592                 attr->am_offs = (struct obstack *)_new_arr_d(get_irg_obstack(get_irn_irg(node)), 1, sizeof(*(attr->am_offs)));
593                 obstack_init(attr->am_offs);
594
595                 attr->data.offs_sign = (op == '-') ? 1 : 0;
596         }
597         else {
598                 /* If obstack is initialized, connect the new offset with op */
599                 obstack_printf(attr->am_offs, "%c", op);
600         }
601
602         obstack_printf(attr->am_offs, "%s", offset);
603 }
604
605 /**
606  * Add an offset for addrmode.
607  */
608 void add_ia32_am_offs(ir_node *node, const char *offset) {
609         extend_ia32_am_offs(node, (char *)offset, '+');
610 }
611
612 /**
613  * Sub an offset for addrmode.
614  */
615 void sub_ia32_am_offs(ir_node *node, const char *offset) {
616         extend_ia32_am_offs(node, (char *)offset, '-');
617 }
618
619 /**
620  * Returns the symconst ident associated to addrmode.
621  */
622 ident *get_ia32_am_sc(const ir_node *node) {
623         ia32_attr_t *attr = get_ia32_attr(node);
624         return attr->am_sc;
625 }
626
627 /**
628  * Sets the symconst ident associated to addrmode.
629  */
630 void set_ia32_am_sc(ir_node *node, ident *sc) {
631         ia32_attr_t *attr = get_ia32_attr(node);
632         attr->am_sc       = sc;
633 }
634
635 /**
636  * Sets the sign bit for address mode symconst.
637  */
638 void set_ia32_am_sc_sign(ir_node *node) {
639         ia32_attr_t *attr     = get_ia32_attr(node);
640         attr->data.am_sc_sign = 1;
641 }
642
643 /**
644  * Clears the sign bit for address mode symconst.
645  */
646 void clear_ia32_am_sc_sign(ir_node *node) {
647         ia32_attr_t *attr     = get_ia32_attr(node);
648         attr->data.am_sc_sign = 0;
649 }
650
651 /**
652  * Returns the sign bit for address mode symconst.
653  */
654 int is_ia32_am_sc_sign(const ir_node *node) {
655         ia32_attr_t *attr = get_ia32_attr(node);
656         return attr->data.am_sc_sign;
657 }
658
659 /**
660  * Gets the addr mode const.
661  */
662 int get_ia32_am_scale(const ir_node *node) {
663         ia32_attr_t *attr = get_ia32_attr(node);
664         return attr->data.am_scale;
665 }
666
667 /**
668  * Sets the index register scale for addrmode.
669  */
670 void set_ia32_am_scale(ir_node *node, int scale) {
671         ia32_attr_t *attr   = get_ia32_attr(node);
672         attr->data.am_scale = scale;
673 }
674
675 /**
676  * Return the tarval of an immediate operation or NULL in case of SymConst
677  */
678 tarval *get_ia32_Immop_tarval(const ir_node *node) {
679         ia32_attr_t *attr = get_ia32_attr(node);
680     return attr->cnst_val.tv;
681 }
682
683 /**
684  * Sets the attributes of an immediate operation to the specified tarval
685  */
686 void set_ia32_Immop_tarval(ir_node *node, tarval *tv) {
687         ia32_attr_t *attr = get_ia32_attr(node);
688         attr->cnst_val.tv = tv;
689         attr->cnst        = get_ident_for_tv(tv);
690 }
691
692 /**
693  * Gets the string representation of the internal const (tv or symconst)
694  */
695 const char *get_ia32_cnst(const ir_node *node) {
696         ia32_attr_t *attr = get_ia32_attr(node);
697         if (! attr->cnst)
698                 return NULL;
699         return get_id_str(attr->cnst);
700 }
701
702 /**
703  * Sets the string representation of the internal const.
704  */
705 void set_ia32_cnst(ir_node *node, char *cnst) {
706         ia32_attr_t *attr = get_ia32_attr(node);
707         attr->cnst        = new_id_from_str(cnst);
708 }
709
710 /**
711  * Gets the ident representation of the internal const (tv or symconst)
712  */
713 ident *get_ia32_id_cnst(const ir_node *node) {
714         ia32_attr_t *attr = get_ia32_attr(node);
715         return attr->cnst;
716 }
717
718 /**
719  * Sets the ident representation of the internal const.
720  */
721 void set_ia32_id_cnst(ir_node *node, ident *cnst) {
722         ia32_attr_t *attr = get_ia32_attr(node);
723         attr->cnst        = cnst;
724 }
725
726 /**
727  * Sets the uses_frame flag.
728  */
729 void set_ia32_use_frame(ir_node *node) {
730         ia32_attr_t *attr    = get_ia32_attr(node);
731         attr->data.use_frame = 1;
732 }
733
734 /**
735  * Clears the uses_frame flag.
736  */
737 void clear_ia32_use_frame(ir_node *node) {
738         ia32_attr_t *attr    = get_ia32_attr(node);
739         attr->data.use_frame = 0;
740 }
741
742 /**
743  * Gets the uses_frame flag.
744  */
745 int is_ia32_use_frame(const ir_node *node) {
746         ia32_attr_t *attr = get_ia32_attr(node);
747         return attr->data.use_frame;
748 }
749
750 /**
751  * Sets node to commutative.
752  */
753 void set_ia32_commutative(ir_node *node) {
754         ia32_attr_t *attr         = get_ia32_attr(node);
755         attr->data.is_commutative = 1;
756 }
757
758 /**
759  * Sets node to non-commutative.
760  */
761 void clear_ia32_commutative(ir_node *node) {
762         ia32_attr_t *attr         = get_ia32_attr(node);
763         attr->data.is_commutative = 0;
764 }
765
766 /**
767  * Checks if node is commutative.
768  */
769 int is_ia32_commutative(const ir_node *node) {
770         ia32_attr_t *attr = get_ia32_attr(node);
771         return attr->data.is_commutative;
772 }
773
774 /**
775  * Sets node emit_cl.
776  */
777 void set_ia32_emit_cl(ir_node *node) {
778         ia32_attr_t *attr  = get_ia32_attr(node);
779         attr->data.emit_cl = 1;
780 }
781
782 /**
783  * Clears node emit_cl.
784  */
785 void clear_ia32_emit_cl(ir_node *node) {
786         ia32_attr_t *attr  = get_ia32_attr(node);
787         attr->data.emit_cl = 0;
788 }
789
790 /**
791  * Checks if node needs %cl.
792  */
793 int is_ia32_emit_cl(const ir_node *node) {
794         ia32_attr_t *attr = get_ia32_attr(node);
795         return attr->data.emit_cl;
796 }
797
798 /**
799  * Sets node got_lea.
800  */
801 void set_ia32_got_lea(ir_node *node) {
802         ia32_attr_t *attr  = get_ia32_attr(node);
803         attr->data.got_lea = 1;
804 }
805
806 /**
807  * Clears node got_lea.
808  */
809 void clear_ia32_got_lea(ir_node *node) {
810         ia32_attr_t *attr  = get_ia32_attr(node);
811         attr->data.got_lea = 0;
812 }
813
814 /**
815  * Checks if node got lea.
816  */
817 int is_ia32_got_lea(const ir_node *node) {
818         ia32_attr_t *attr = get_ia32_attr(node);
819         return attr->data.got_lea;
820 }
821
822 /**
823  * Sets node got_reload.
824  */
825 void set_ia32_got_reload(ir_node *node) {
826         ia32_attr_t *attr     = get_ia32_attr(node);
827         attr->data.got_reload = 1;
828 }
829
830 /**
831  * Clears node got_reload.
832  */
833 void clear_ia32_got_reload(ir_node *node) {
834         ia32_attr_t *attr     = get_ia32_attr(node);
835         attr->data.got_reload = 0;
836 }
837
838 /**
839  * Checks if node got reload.
840  */
841 int is_ia32_got_reload(const ir_node *node) {
842         ia32_attr_t *attr = get_ia32_attr(node);
843         return attr->data.got_reload;
844 }
845
846 /**
847  * Gets the mode of the stored/loaded value (only set for Store/Load)
848  */
849 ir_mode *get_ia32_ls_mode(const ir_node *node) {
850         ia32_attr_t *attr = get_ia32_attr(node);
851         return attr->ls_mode;
852 }
853
854 /**
855  * Sets the mode of the stored/loaded value (only set for Store/Load)
856  */
857 void set_ia32_ls_mode(ir_node *node, ir_mode *mode) {
858         ia32_attr_t *attr = get_ia32_attr(node);
859         attr->ls_mode     = mode;
860 }
861
862 /**
863  * Gets the mode of the result.
864  */
865 ir_mode *get_ia32_res_mode(const ir_node *node) {
866         ia32_attr_t *attr = get_ia32_attr(node);
867         return attr->res_mode;
868 }
869
870 /**
871  * Sets the mode of the result.
872  */
873 void set_ia32_res_mode(ir_node *node, ir_mode *mode) {
874         ia32_attr_t *attr = get_ia32_attr(node);
875         attr->res_mode    = mode;
876 }
877
878 /**
879  * Gets the source mode of conversion.
880  */
881 ir_mode *get_ia32_src_mode(const ir_node *node) {
882         ia32_attr_t *attr = get_ia32_attr(node);
883         return attr->src_mode;
884 }
885
886 /**
887  * Sets the source mode of conversion.
888  */
889 void set_ia32_src_mode(ir_node *node, ir_mode *mode) {
890         ia32_attr_t *attr = get_ia32_attr(node);
891         attr->src_mode    = mode;
892 }
893
894 /**
895  * Gets the target mode of conversion.
896  */
897 ir_mode *get_ia32_tgt_mode(const ir_node *node) {
898         ia32_attr_t *attr = get_ia32_attr(node);
899         return attr->tgt_mode;
900 }
901
902 /**
903  * Sets the target mode of conversion.
904  */
905 void set_ia32_tgt_mode(ir_node *node, ir_mode *mode) {
906         ia32_attr_t *attr = get_ia32_attr(node);
907         attr->tgt_mode    = mode;
908 }
909
910 /**
911  * Gets the frame entity assigned to this node.
912  */
913 entity *get_ia32_frame_ent(const ir_node *node) {
914         ia32_attr_t *attr = get_ia32_attr(node);
915         return attr->frame_ent;
916 }
917
918 /**
919  * Sets the frame entity for this node.
920  */
921 void set_ia32_frame_ent(ir_node *node, entity *ent) {
922         ia32_attr_t *attr = get_ia32_attr(node);
923         attr->frame_ent   = ent;
924         set_ia32_use_frame(node);
925 }
926
927
928 /**
929  * Gets the instruction latency.
930  */
931 unsigned get_ia32_latency(const ir_node *node) {
932         ia32_attr_t *attr = get_ia32_attr(node);
933         return attr->latency;
934 }
935
936 /**
937 * Sets the instruction latency.
938 */
939 void set_ia32_latency(ir_node *node, unsigned latency) {
940         ia32_attr_t *attr = get_ia32_attr(node);
941         attr->latency     = latency;
942 }
943
944 /**
945  * Returns the argument register requirements of an ia32 node.
946  */
947 const ia32_register_req_t **get_ia32_in_req_all(const ir_node *node) {
948         ia32_attr_t *attr = get_ia32_attr(node);
949         return attr->in_req;
950 }
951
952 /**
953  * Sets the argument register requirements of an ia32 node.
954  */
955 void set_ia32_in_req_all(ir_node *node, const ia32_register_req_t **reqs) {
956         ia32_attr_t *attr = get_ia32_attr(node);
957         attr->in_req      = reqs;
958 }
959
960 /**
961  * Returns the result register requirements of an ia32 node.
962  */
963 const ia32_register_req_t **get_ia32_out_req_all(const ir_node *node) {
964         ia32_attr_t *attr = get_ia32_attr(node);
965         return attr->out_req;
966 }
967
968 /**
969  * Sets the result register requirements of an ia32 node.
970  */
971 void set_ia32_out_req_all(ir_node *node, const ia32_register_req_t **reqs) {
972         ia32_attr_t *attr = get_ia32_attr(node);
973         attr->out_req     = reqs;
974 }
975
976 /**
977  * Returns the argument register requirement at position pos of an ia32 node.
978  */
979 const ia32_register_req_t *get_ia32_in_req(const ir_node *node, int pos) {
980         ia32_attr_t *attr = get_ia32_attr(node);
981         return attr->in_req[pos];
982 }
983
984 /**
985  * Returns the result register requirement at position pos of an ia32 node.
986  */
987 const ia32_register_req_t *get_ia32_out_req(const ir_node *node, int pos) {
988         ia32_attr_t *attr = get_ia32_attr(node);
989         return attr->out_req[pos];
990 }
991
992 /**
993  * Sets the OUT register requirements at position pos.
994  */
995 void set_ia32_req_out(ir_node *node, const ia32_register_req_t *req, int pos) {
996         ia32_attr_t *attr  = get_ia32_attr(node);
997         attr->out_req[pos] = req;
998 }
999
1000 /**
1001  * Sets the IN register requirements at position pos.
1002  */
1003 void set_ia32_req_in(ir_node *node, const ia32_register_req_t *req, int pos) {
1004         ia32_attr_t *attr = get_ia32_attr(node);
1005         attr->in_req[pos] = req;
1006 }
1007
1008 /**
1009  * Returns the register flag of an ia32 node.
1010  */
1011 arch_irn_flags_t get_ia32_flags(const ir_node *node) {
1012         ia32_attr_t *attr = get_ia32_attr(node);
1013         return attr->data.flags;
1014 }
1015
1016 /**
1017  * Sets the register flag of an ia32 node.
1018  */
1019 void set_ia32_flags(ir_node *node, arch_irn_flags_t flags) {
1020         ia32_attr_t *attr = get_ia32_attr(node);
1021         attr->data.flags  = flags;
1022 }
1023
1024 /**
1025  * Returns the result register slots of an ia32 node.
1026  */
1027 const arch_register_t **get_ia32_slots(const ir_node *node) {
1028         ia32_attr_t *attr = get_ia32_attr(node);
1029         return attr->slots;
1030 }
1031
1032 /**
1033  * Sets the number of results.
1034  */
1035 void set_ia32_n_res(ir_node *node, int n_res) {
1036         ia32_attr_t *attr = get_ia32_attr(node);
1037         attr->data.n_res  = n_res;
1038 }
1039
1040 /**
1041  * Returns the number of results.
1042  */
1043 int get_ia32_n_res(const ir_node *node) {
1044         ia32_attr_t *attr = get_ia32_attr(node);
1045         return attr->data.n_res;
1046 }
1047
1048 /**
1049  * Returns the flavour of an ia32 node,
1050  */
1051 ia32_op_flavour_t get_ia32_flavour(const ir_node *node) {
1052         ia32_attr_t *attr = get_ia32_attr(node);
1053         return attr->data.op_flav;
1054 }
1055
1056 /**
1057  * Sets the flavour of an ia32 node to flavour_Div/Mod/DivMod/Mul/Mulh.
1058  */
1059 void set_ia32_flavour(ir_node *node, ia32_op_flavour_t op_flav) {
1060         ia32_attr_t *attr  = get_ia32_attr(node);
1061         attr->data.op_flav = op_flav;
1062 }
1063
1064 /**
1065  * Returns the projnum code.
1066  */
1067 long get_ia32_pncode(const ir_node *node) {
1068         ia32_attr_t *attr = get_ia32_attr(node);
1069         return attr->pn_code;
1070 }
1071
1072 /**
1073  * Sets the projnum code
1074  */
1075 void set_ia32_pncode(ir_node *node, long code) {
1076         ia32_attr_t *attr = get_ia32_attr(node);
1077         attr->pn_code     = code;
1078 }
1079
1080 #ifndef NDEBUG
1081
1082 /**
1083  * Returns the name of the original ir node.
1084  */
1085 const char *get_ia32_orig_node(const ir_node *node) {
1086         ia32_attr_t *attr = get_ia32_attr(node);
1087         return attr->orig_node;
1088 }
1089
1090 /**
1091  * Sets the name of the original ir node.
1092  */
1093 void set_ia32_orig_node(ir_node *node, const char *name) {
1094         ia32_attr_t *attr = get_ia32_attr(node);
1095         attr->orig_node   = name;
1096 }
1097
1098 #endif /* NDEBUG */
1099
1100 /******************************************************************************************************
1101  *                      _       _         _   _           __                  _   _
1102  *                     (_)     | |       | | | |         / _|                | | (_)
1103  *  ___ _ __   ___  ___ _  __ _| |   __ _| |_| |_ _ __  | |_ _   _ _ __   ___| |_ _  ___  _ __    ___
1104  * / __| '_ \ / _ \/ __| |/ _` | |  / _` | __| __| '__| |  _| | | | '_ \ / __| __| |/ _ \| '_ \  / __|
1105  * \__ \ |_) |  __/ (__| | (_| | | | (_| | |_| |_| |    | | | |_| | | | | (__| |_| | (_) | | | | \__ \
1106  * |___/ .__/ \___|\___|_|\__,_|_|  \__,_|\__|\__|_|    |_|  \__,_|_| |_|\___|\__|_|\___/|_| |_| |___/
1107  *     | |
1108  *     |_|
1109  ******************************************************************************************************/
1110
1111 /**
1112  * Gets the type of an ia32_Const.
1113  */
1114 unsigned get_ia32_Const_type(const ir_node *node) {
1115         ia32_attr_t *attr = get_ia32_attr(node);
1116
1117         assert(is_ia32_Cnst(node) && "Need ia32_Const to get type");
1118
1119         return attr->data.tp;
1120 }
1121
1122 /**
1123  * Sets the type of an ia32_Const.
1124  */
1125 void set_ia32_Const_type(ir_node *node, int type) {
1126         ia32_attr_t *attr = get_ia32_attr(node);
1127
1128         assert(is_ia32_Cnst(node) && "Need ia32_Const to set type");
1129         assert((type == ia32_Const || type == ia32_SymConst) && "Unsupported ia32_Const type");
1130
1131         attr->data.tp = type;
1132 }
1133
1134 /**
1135  * Copy the attributes from an ia32_Const to an Immop (Add_i, Sub_i, ...) node
1136  */
1137 void set_ia32_Immop_attr(ir_node *node, ir_node *cnst) {
1138         ia32_attr_t *na = get_ia32_attr(node);
1139         ia32_attr_t *ca = get_ia32_attr(cnst);
1140
1141         switch(get_ia32_Const_type(cnst)) {
1142                 case ia32_Const:
1143                         na->cnst_val.tv = ca->cnst_val.tv;
1144                         na->cnst        = ca->cnst;
1145                         set_ia32_immop_type(node, ia32_ImmConst);
1146                         break;
1147                 case ia32_SymConst:
1148                         na->cnst_val.sc = ca->cnst_val.sc;
1149                         na->cnst        = na->cnst_val.sc;
1150                         set_ia32_immop_type(node, ia32_ImmSymConst);
1151                         break;
1152                 default:
1153                         assert(0 && "Need ia32_Const to set Immop attr");
1154         }
1155 }
1156
1157 /**
1158  * Copy the attributes from Immop to an Immop
1159  */
1160 void copy_ia32_Immop_attr(ir_node *dst, ir_node *src) {
1161         ia32_attr_t *da = get_ia32_attr(dst);
1162         ia32_attr_t *sa = get_ia32_attr(src);
1163
1164         switch(get_ia32_immop_type(src)) {
1165                 case ia32_ImmConst:
1166                         da->cnst_val.tv = sa->cnst_val.tv;
1167                         da->cnst        = sa->cnst;
1168                         set_ia32_immop_type(dst, ia32_ImmConst);
1169                         break;
1170                 case ia32_ImmSymConst:
1171                         da->cnst_val.sc = sa->cnst_val.sc;
1172                         da->cnst        = sa->cnst;
1173                         set_ia32_immop_type(dst, ia32_ImmSymConst);
1174                         break;
1175                 default:
1176                         assert(0 && "Need Immop to copy Immop attr");
1177         }
1178 }
1179
1180 /**
1181  * Copy the attributes from a Firm Const/SymConst to an ia32_Const
1182  */
1183 void set_ia32_Const_attr(ir_node *ia32_cnst, ir_node *cnst) {
1184         ia32_attr_t *attr = get_ia32_attr(ia32_cnst);
1185         ir_mode *mode;
1186
1187         assert(is_ia32_Cnst(ia32_cnst) && "Need ia32_Const to set Const attr");
1188
1189         switch (get_irn_opcode(cnst)) {
1190                 case iro_Const:
1191                         attr->data.tp     = ia32_Const;
1192                         attr->cnst_val.tv = get_Const_tarval(cnst);
1193                         mode = get_tarval_mode(attr->cnst_val.tv);
1194                         if (mode_is_reference(mode) &&
1195                             get_mode_null(mode) == attr->cnst_val.tv)
1196                                 attr->cnst_val.tv = get_mode_null(mode_Is);
1197                         attr->cnst        = get_ident_for_tv(attr->cnst_val.tv);
1198                         break;
1199                 case iro_SymConst:
1200                         attr->data.tp     = ia32_SymConst;
1201                         attr->cnst_val.sc = get_sc_ident(cnst);
1202                         attr->cnst        = attr->cnst_val.sc;
1203                         break;
1204                 case iro_Unknown:
1205                         assert(0 && "Unknown Const NYI");
1206                         break;
1207                 default:
1208                         assert(0 && "Cannot create ia32_Const for this opcode");
1209         }
1210 }
1211
1212 /**
1213  * Sets the AddrMode(S|D) attribute
1214  */
1215 void set_ia32_AddrMode(ir_node *node, char direction) {
1216         ia32_attr_t *attr = get_ia32_attr(node);
1217
1218         switch (direction) {
1219                 case 'D':
1220                         attr->data.tp = ia32_AddrModeD;
1221                         break;
1222                 case 'S':
1223                         attr->data.tp = ia32_AddrModeS;
1224                         break;
1225                 default:
1226                         assert(0 && "wrong AM type");
1227         }
1228 }
1229
1230 /**
1231  * Returns whether or not the node is an immediate operation with Const.
1232  */
1233 int is_ia32_ImmConst(const ir_node *node) {
1234         ia32_attr_t *attr = get_ia32_attr(node);
1235         return (attr->data.imm_tp == ia32_ImmConst);
1236 }
1237
1238 /**
1239  * Returns whether or not the node is an immediate operation with SymConst.
1240  */
1241 int is_ia32_ImmSymConst(const ir_node *node) {
1242         ia32_attr_t *attr = get_ia32_attr(node);
1243         return (attr->data.imm_tp == ia32_ImmSymConst);
1244 }
1245
1246 /**
1247  * Returns whether or not the node is an AddrModeS node.
1248  */
1249 int is_ia32_AddrModeS(const ir_node *node) {
1250         ia32_attr_t *attr = get_ia32_attr(node);
1251         return (attr->data.tp == ia32_AddrModeS);
1252 }
1253
1254 /**
1255  * Returns whether or not the node is an AddrModeD node.
1256  */
1257 int is_ia32_AddrModeD(const ir_node *node) {
1258         ia32_attr_t *attr = get_ia32_attr(node);
1259         return (attr->data.tp == ia32_AddrModeD);
1260 }
1261
1262 /**
1263  * Checks if node is a Load or xLoad/vfLoad.
1264  */
1265 int is_ia32_Ld(const ir_node *node) {
1266         return is_ia32_Load(node) || is_ia32_xLoad(node) || is_ia32_vfld(node) || is_ia32_fld(node);
1267 }
1268
1269 /**
1270  * Checks if node is a Store or xStore/vfStore.
1271  */
1272 int is_ia32_St(const ir_node *node) {
1273         return is_ia32_Store(node) || is_ia32_xStore(node) || is_ia32_vfst(node) || is_ia32_fst(node) || is_ia32_fstp(node);
1274 }
1275
1276 /**
1277  * Checks if node is a Const or xConst/vfConst.
1278  */
1279 int is_ia32_Cnst(const ir_node *node) {
1280         return is_ia32_Const(node) || is_ia32_xConst(node) || is_ia32_vfConst(node);
1281 }
1282
1283 /**
1284  * Returns the name of the OUT register at position pos.
1285  */
1286 const char *get_ia32_out_reg_name(const ir_node *node, int pos) {
1287         ia32_attr_t *attr = get_ia32_attr(node);
1288
1289         assert(is_ia32_irn(node) && "Not an ia32 node.");
1290         assert(pos < (int) attr->data.n_res && "Invalid OUT position.");
1291         assert(attr->slots[pos]  && "No register assigned");
1292
1293         return arch_register_get_name(attr->slots[pos]);
1294 }
1295
1296 /**
1297  * Returns the index of the OUT register at position pos within its register class.
1298  */
1299 int get_ia32_out_regnr(const ir_node *node, int pos) {
1300         ia32_attr_t *attr = get_ia32_attr(node);
1301
1302         assert(is_ia32_irn(node) && "Not an ia32 node.");
1303         assert(pos < (int) attr->data.n_res && "Invalid OUT position.");
1304         assert(attr->slots[pos]  && "No register assigned");
1305
1306         return arch_register_get_index(attr->slots[pos]);
1307 }
1308
1309 /**
1310  * Returns the OUT register at position pos.
1311  */
1312 const arch_register_t *get_ia32_out_reg(const ir_node *node, int pos) {
1313         ia32_attr_t *attr = get_ia32_attr(node);
1314
1315         assert(is_ia32_irn(node) && "Not an ia32 node.");
1316         assert(pos < (int) attr->data.n_res && "Invalid OUT position.");
1317         assert(attr->slots[pos]  && "No register assigned");
1318
1319         return attr->slots[pos];
1320 }
1321
1322 /**
1323  * Initializes the nodes attributes.
1324  */
1325 void init_ia32_attributes(ir_node *node, arch_irn_flags_t flags, const ia32_register_req_t **in_reqs,
1326                                                   const ia32_register_req_t **out_reqs, int n_res, unsigned latency)
1327 {
1328         ia32_attr_t *attr = get_ia32_attr(node);
1329         set_ia32_flags(node, flags);
1330         set_ia32_in_req_all(node, in_reqs);
1331         set_ia32_out_req_all(node, out_reqs);
1332         set_ia32_latency(node, latency);
1333
1334         attr->data.n_res = n_res;
1335         memset((void *)attr->slots, 0, n_res * sizeof(attr->slots[0]));
1336 }
1337
1338 /***************************************************************************************
1339  *                  _                            _                   _
1340  *                 | |                          | |                 | |
1341  *  _ __   ___   __| | ___    ___ ___  _ __  ___| |_ _ __ _   _  ___| |_ ___  _ __ ___
1342  * | '_ \ / _ \ / _` |/ _ \  / __/ _ \| '_ \/ __| __| '__| | | |/ __| __/ _ \| '__/ __|
1343  * | | | | (_) | (_| |  __/ | (_| (_) | | | \__ \ |_| |  | |_| | (__| || (_) | |  \__ \
1344  * |_| |_|\___/ \__,_|\___|  \___\___/|_| |_|___/\__|_|   \__,_|\___|\__\___/|_|  |___/
1345  *
1346  ***************************************************************************************/
1347
1348 /* default compare operation to compare immediate ops */
1349 int ia32_compare_immop_attr(ia32_attr_t *a, ia32_attr_t *b) {
1350         int equ = 0;
1351
1352         if (a->data.tp == b->data.tp) {
1353                 equ = (a->cnst == b->cnst);
1354                 equ = equ ? (a->data.use_frame == b->data.use_frame) : 0;
1355
1356                 if (equ && a->data.use_frame && b->data.use_frame)
1357                         equ = (a->frame_ent == b->frame_ent);
1358         }
1359
1360         return !equ;
1361 }
1362
1363 /* compare converts */
1364 int ia32_compare_conv_attr(ia32_attr_t *a, ia32_attr_t *b) {
1365         int equ = ! ia32_compare_immop_attr(a, b);
1366
1367         equ = equ ? (a->src_mode == b->src_mode) && (a->tgt_mode == b->tgt_mode) : equ;
1368
1369         return !equ;
1370 }
1371
1372 /* Include the generated constructor functions */
1373 #include "gen_ia32_new_nodes.c.inl"