rework fragile ops to have a throws_exception attribute
[libfirm] / ir / be / ia32 / ia32_common_transform.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       This file implements the common parts of IR transformation from
23  *              firm into ia32-Firm.
24  * @author      Matthias Braun, Sebastian Buchwald
25  * @version     $Id: ia32_common_transform.c 21012 2008-08-06 13:35:17Z beck $
26  */
27 #include "config.h"
28
29 #include "error.h"
30 #include "ircons.h"
31 #include "irprintf.h"
32 #include "typerep.h"
33 #include "bitset.h"
34 #include "heights.h"
35
36 #include "../betranshlp.h"
37 #include "../beirg.h"
38 #include "../beabi.h"
39
40 #include "ia32_architecture.h"
41 #include "ia32_common_transform.h"
42 #include "ia32_new_nodes.h"
43
44 #include "gen_ia32_new_nodes.h"
45 #include "gen_ia32_regalloc_if.h"
46
47 ir_heights_t *ia32_heights = NULL;
48
49 static int check_immediate_constraint(long val, char immediate_constraint_type)
50 {
51         switch (immediate_constraint_type) {
52                 case 0:
53                 case 'i': return 1;
54
55                 case 'I': return    0 <= val && val <=  31;
56                 case 'J': return    0 <= val && val <=  63;
57                 case 'K': return -128 <= val && val <= 127;
58                 case 'L': return val == 0xff || val == 0xffff;
59                 case 'M': return    0 <= val && val <=   3;
60                 case 'N': return    0 <= val && val <= 255;
61                 case 'O': return    0 <= val && val <= 127;
62
63                 default: panic("Invalid immediate constraint found");
64         }
65 }
66
67 /**
68  * Get a primitive type for a mode with alignment 16.
69  */
70 static ir_type *ia32_get_prim_type(pmap *types, ir_mode *mode)
71 {
72         ir_type *res = (ir_type*)pmap_get(types, mode);
73         if (res != NULL)
74                 return res;
75
76         res = new_type_primitive(mode);
77         if (get_mode_size_bits(mode) >= 80) {
78                 set_type_alignment_bytes(res, 16);
79         }
80         pmap_insert(types, mode, res);
81         return res;
82 }
83
84 ir_entity *ia32_create_float_const_entity(ir_node *cnst)
85 {
86         ir_graph         *irg      = get_irn_irg(cnst);
87         const arch_env_t *arch_env = be_get_irg_arch_env(irg);
88         ia32_isa_t       *isa      = (ia32_isa_t*) arch_env;
89         ir_tarval        *tv       = get_Const_tarval(cnst);
90         ir_entity        *res      = (ir_entity*)pmap_get(isa->tv_ent, tv);
91         ir_initializer_t *initializer;
92         ir_mode          *mode;
93         ir_type          *tp;
94
95         if (res != NULL)
96                 return res;
97
98         mode = get_tarval_mode(tv);
99
100         if (! ia32_cg_config.use_sse2) {
101                 /* try to reduce the mode to produce smaller sized entities */
102                 if (mode != mode_F) {
103                         if (tarval_ieee754_can_conv_lossless(tv, mode_F)) {
104                                 mode = mode_F;
105                                 tv = tarval_convert_to(tv, mode);
106                         } else if (mode != mode_D) {
107                                 if (tarval_ieee754_can_conv_lossless(tv, mode_D)) {
108                                         mode = mode_D;
109                                         tv = tarval_convert_to(tv, mode);
110                                 }
111                         }
112                 }
113         }
114
115         tp  = ia32_get_prim_type(isa->types, mode);
116         res = new_entity(get_glob_type(), id_unique("C%u"), tp);
117         set_entity_ld_ident(res, get_entity_ident(res));
118         set_entity_visibility(res, ir_visibility_private);
119         add_entity_linkage(res, IR_LINKAGE_CONSTANT);
120
121         initializer = create_initializer_tarval(tv);
122         set_entity_initializer(res, initializer);
123
124         pmap_insert(isa->tv_ent, tv, res);
125         return res;
126 }
127
128 ir_node *ia32_create_Immediate(ir_entity *symconst, int symconst_sign, long val)
129 {
130         ir_graph *irg         = current_ir_graph;
131         ir_node  *start_block = get_irg_start_block(irg);
132         ir_node  *immediate   = new_bd_ia32_Immediate(NULL, start_block, symconst,
133                         symconst_sign, ia32_no_pic_adjust, val);
134         arch_set_irn_register(immediate, &ia32_registers[REG_GP_NOREG]);
135
136         return immediate;
137 }
138
139 const arch_register_t *ia32_get_clobber_register(const char *clobber)
140 {
141         const arch_register_t       *reg = NULL;
142         int                          c;
143         size_t                       r;
144         const arch_register_class_t *cls;
145
146         /* TODO: construct a hashmap instead of doing linear search for clobber
147          * register */
148         for (c = 0; c < N_IA32_CLASSES; ++c) {
149                 cls = & ia32_reg_classes[c];
150                 for (r = 0; r < cls->n_regs; ++r) {
151                         const arch_register_t *temp_reg = arch_register_for_index(cls, r);
152                         if (strcmp(temp_reg->name, clobber) == 0
153                                         || (c == CLASS_ia32_gp && strcmp(temp_reg->name+1, clobber) == 0)) {
154                                 reg = temp_reg;
155                                 break;
156                         }
157                 }
158                 if (reg != NULL)
159                         break;
160         }
161
162         return reg;
163 }
164
165 int ia32_mode_needs_gp_reg(ir_mode *mode)
166 {
167         if (mode == ia32_mode_fpcw)
168                 return 0;
169         if (get_mode_size_bits(mode) > 32)
170                 return 0;
171         return mode_is_int(mode) || mode_is_reference(mode) || mode == mode_b;
172 }
173
174 static void parse_asm_constraints(constraint_t *constraint, const char *c,
175                            int is_output)
176 {
177         char                         immediate_type     = '\0';
178         unsigned                     limited            = 0;
179         const arch_register_class_t *cls                = NULL;
180         int                          memory_possible       = 0;
181         int                          all_registers_allowed = 0;
182         int                          p;
183         int                          same_as = -1;
184
185         memset(constraint, 0, sizeof(constraint[0]));
186         constraint->same_as = -1;
187
188         if (*c == 0) {
189                 /* a memory constraint: no need to do anything in backend about it
190                  * (the dependencies are already respected by the memory edge of
191                  * the node) */
192                 return;
193         }
194
195         /* TODO: improve error messages with node and source info. (As users can
196          * easily hit these) */
197         while (*c != 0) {
198                 switch (*c) {
199                 case ' ':
200                 case '\t':
201                 case '\n':
202                         break;
203
204                 /* Skip out/in-out marker */
205                 case '=': break;
206                 case '+': break;
207
208                 case '&': break;
209
210                 case '*':
211                         ++c;
212                         break;
213                 case '#':
214                         while (*c != 0 && *c != ',')
215                                 ++c;
216                         break;
217
218                 case 'a':
219                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
220                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
221                         limited |= 1 << REG_GP_EAX;
222                         break;
223                 case 'b':
224                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
225                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
226                         limited |= 1 << REG_GP_EBX;
227                         break;
228                 case 'c':
229                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
230                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
231                         limited |= 1 << REG_GP_ECX;
232                         break;
233                 case 'd':
234                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
235                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
236                         limited |= 1 << REG_GP_EDX;
237                         break;
238                 case 'D':
239                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
240                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
241                         limited |= 1 << REG_GP_EDI;
242                         break;
243                 case 'S':
244                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
245                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
246                         limited |= 1 << REG_GP_ESI;
247                         break;
248                 case 'Q':
249                 case 'q':
250                         /* q means lower part of the regs only, this makes no
251                          * difference to Q for us (we only assign whole registers) */
252                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
253                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
254                         limited |= 1 << REG_GP_EAX | 1 << REG_GP_EBX | 1 << REG_GP_ECX |
255                                    1 << REG_GP_EDX;
256                         break;
257                 case 'A':
258                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
259                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
260                         limited |= 1 << REG_GP_EAX | 1 << REG_GP_EDX;
261                         break;
262                 case 'l':
263                         assert(cls == NULL || cls == &ia32_reg_classes[CLASS_ia32_gp]);
264                         cls      = &ia32_reg_classes[CLASS_ia32_gp];
265                         limited |= 1 << REG_GP_EAX | 1 << REG_GP_EBX | 1 << REG_GP_ECX |
266                                    1 << REG_GP_EDX | 1 << REG_GP_ESI | 1 << REG_GP_EDI |
267                                    1 << REG_GP_EBP;
268                         break;
269
270                 case 'R':
271                 case 'r':
272                 case 'p':
273                         if (cls != NULL && cls != &ia32_reg_classes[CLASS_ia32_gp])
274                                 panic("multiple register classes not supported");
275                         cls                   = &ia32_reg_classes[CLASS_ia32_gp];
276                         all_registers_allowed = 1;
277                         break;
278
279                 case 'f':
280                 case 't':
281                 case 'u':
282                         /* TODO: mark values so the x87 simulator knows about t and u */
283                         if (cls != NULL && cls != &ia32_reg_classes[CLASS_ia32_vfp])
284                                 panic("multiple register classes not supported");
285                         cls                   = &ia32_reg_classes[CLASS_ia32_vfp];
286                         all_registers_allowed = 1;
287                         break;
288
289                 case 'Y':
290                 case 'x':
291                         if (cls != NULL && cls != &ia32_reg_classes[CLASS_ia32_xmm])
292                                 panic("multiple register classes not supproted");
293                         cls                   = &ia32_reg_classes[CLASS_ia32_xmm];
294                         all_registers_allowed = 1;
295                         break;
296
297                 case 'I':
298                 case 'J':
299                 case 'K':
300                 case 'L':
301                 case 'M':
302                 case 'N':
303                 case 'O':
304                         if (cls != NULL && cls != &ia32_reg_classes[CLASS_ia32_gp])
305                                 panic("multiple register classes not supported");
306                         if (immediate_type != '\0')
307                                 panic("multiple immediate types not supported");
308                         cls            = &ia32_reg_classes[CLASS_ia32_gp];
309                         immediate_type = *c;
310                         break;
311                 case 'n':
312                 case 'i':
313                         if (cls != NULL && cls != &ia32_reg_classes[CLASS_ia32_gp])
314                                 panic("multiple register classes not supported");
315                         if (immediate_type != '\0')
316                                 panic("multiple immediate types not supported");
317                         cls            = &ia32_reg_classes[CLASS_ia32_gp];
318                         immediate_type = 'i';
319                         break;
320
321                 case 'X':
322                 case 'g':
323                         if (cls != NULL && cls != &ia32_reg_classes[CLASS_ia32_gp])
324                                 panic("multiple register classes not supported");
325                         if (immediate_type != '\0')
326                                 panic("multiple immediate types not supported");
327                         immediate_type        = 'i';
328                         cls                   = &ia32_reg_classes[CLASS_ia32_gp];
329                         all_registers_allowed = 1;
330                         memory_possible       = 1;
331                         break;
332
333                 case '0':
334                 case '1':
335                 case '2':
336                 case '3':
337                 case '4':
338                 case '5':
339                 case '6':
340                 case '7':
341                 case '8':
342                 case '9':
343                         if (is_output)
344                                 panic("can only specify same constraint on input");
345
346                         sscanf(c, "%d%n", &same_as, &p);
347                         if (same_as >= 0) {
348                                 c += p;
349                                 continue;
350                         }
351                         break;
352
353                 case 'm':
354                 case 'o':
355                 case 'V':
356                         /* memory constraint no need to do anything in backend about it
357                          * (the dependencies are already respected by the memory edge of
358                          * the node) */
359                         memory_possible = 1;
360                         break;
361
362                 case 'E': /* no float consts yet */
363                 case 'F': /* no float consts yet */
364                 case 's': /* makes no sense on x86 */
365                 case '<': /* no autodecrement on x86 */
366                 case '>': /* no autoincrement on x86 */
367                 case 'C': /* sse constant not supported yet */
368                 case 'G': /* 80387 constant not supported yet */
369                 case 'y': /* we don't support mmx registers yet */
370                 case 'Z': /* not available in 32 bit mode */
371                 case 'e': /* not available in 32 bit mode */
372                         panic("unsupported asm constraint '%c' found in (%+F)",
373                               *c, current_ir_graph);
374                         break;
375                 default:
376                         panic("unknown asm constraint '%c' found in (%+F)", *c,
377                               current_ir_graph);
378                         break;
379                 }
380                 ++c;
381         }
382
383         if (same_as >= 0) {
384                 if (cls != NULL)
385                         panic("same as and register constraint not supported");
386                 if (immediate_type != '\0')
387                         panic("same as and immediate constraint not supported");
388         }
389
390         if (cls == NULL && same_as < 0) {
391                 if (!memory_possible)
392                         panic("no constraint specified for assembler input");
393         }
394
395         constraint->same_as               = same_as;
396         constraint->cls                   = cls;
397         constraint->allowed_registers     = limited;
398         constraint->all_registers_allowed = all_registers_allowed;
399         constraint->memory_possible       = memory_possible;
400         constraint->immediate_type        = immediate_type;
401 }
402
403 static bool can_match(const arch_register_req_t *in,
404                       const arch_register_req_t *out)
405 {
406         if (in->cls != out->cls)
407                 return false;
408         if ( (in->type & arch_register_req_type_limited) == 0
409                 || (out->type & arch_register_req_type_limited) == 0 )
410                 return true;
411
412         return (*in->limited & *out->limited) != 0;
413 }
414
415 static inline ir_node *get_new_node(ir_node *node)
416 {
417 #ifdef FIRM_GRGEN_BE
418         if (be_transformer == TRANSFORMER_DEFAULT) {
419                 return be_transform_node(node);
420         } else {
421                 return node;
422         }
423 #else
424         return be_transform_node(node);
425 #endif
426 }
427
428 ir_node *ia32_gen_ASM(ir_node *node)
429 {
430         ir_node                    *block     = get_nodes_block(node);
431         ir_node                    *new_block = get_new_node(block);
432         dbg_info                   *dbgi      = get_irn_dbg_info(node);
433         int                         i, arity;
434         int                         value_arity;
435         int                         out_idx;
436         ir_node                   **in;
437         ir_node                    *new_node;
438         int                         out_arity;
439         int                         n_out_constraints;
440         int                         n_clobbers;
441         const arch_register_req_t **out_reg_reqs;
442         const arch_register_req_t **in_reg_reqs;
443         ia32_asm_reg_t             *register_map;
444         unsigned                    reg_map_size = 0;
445         struct obstack             *obst;
446         const ir_asm_constraint    *in_constraints;
447         const ir_asm_constraint    *out_constraints;
448         ident                     **clobbers;
449         unsigned                    clobber_bits[N_IA32_CLASSES];
450         int                         out_size;
451         backend_info_t             *info;
452
453         memset(&clobber_bits, 0, sizeof(clobber_bits));
454
455         arity = get_irn_arity(node);
456         in    = ALLOCANZ(ir_node*, arity);
457
458         clobbers   = get_ASM_clobbers(node);
459         n_clobbers = 0;
460         for (i = 0; i < get_ASM_n_clobbers(node); ++i) {
461                 const arch_register_req_t *req;
462                 const char                *c = get_id_str(clobbers[i]);
463
464                 if (strcmp(c, "memory") == 0)
465                         continue;
466                 if (strcmp(c, "cc") == 0) {
467                         continue;
468                 }
469
470                 req = ia32_parse_clobber(c);
471                 clobber_bits[req->cls->index] |= *req->limited;
472
473                 n_clobbers++;
474         }
475         n_out_constraints = get_ASM_n_output_constraints(node);
476         out_arity         = n_out_constraints + n_clobbers;
477
478         in_constraints  = get_ASM_input_constraints(node);
479         out_constraints = get_ASM_output_constraints(node);
480
481         /* determine size of register_map */
482         for (out_idx = 0; out_idx < n_out_constraints; ++out_idx) {
483                 const ir_asm_constraint *constraint = &out_constraints[out_idx];
484                 if (constraint->pos > reg_map_size)
485                         reg_map_size = constraint->pos;
486         }
487         for (i = 0; i < arity; ++i) {
488                 const ir_asm_constraint *constraint = &in_constraints[i];
489                 if (constraint->pos > reg_map_size)
490                         reg_map_size = constraint->pos;
491         }
492         ++reg_map_size;
493
494         obst         = get_irg_obstack(current_ir_graph);
495         register_map = NEW_ARR_D(ia32_asm_reg_t, obst, reg_map_size);
496         memset(register_map, 0, reg_map_size * sizeof(register_map[0]));
497
498         /* construct output constraints */
499         out_size = out_arity + 1;
500         out_reg_reqs = OALLOCN(obst, const arch_register_req_t*, out_size);
501
502         for (out_idx = 0; out_idx < n_out_constraints; ++out_idx) {
503                 const ir_asm_constraint   *constraint = &out_constraints[out_idx];
504                 const char                *c       = get_id_str(constraint->constraint);
505                 unsigned                   pos     = constraint->pos;
506                 constraint_t               parsed_constraint;
507                 const arch_register_req_t *req;
508
509                 parse_asm_constraints(&parsed_constraint, c, 1);
510                 req = ia32_make_register_req(&parsed_constraint, n_out_constraints,
511                                         out_reg_reqs, out_idx);
512                 out_reg_reqs[out_idx] = req;
513
514                 /* multiple constraints for same pos. This can happen for example when
515                  * a =A constraint gets lowered to two constraints: =a and =d for the
516                  * same pos */
517                 if (register_map[pos].valid)
518                         continue;
519
520                 register_map[pos].use_input = 0;
521                 register_map[pos].valid     = 1;
522                 register_map[pos].memory    = 0;
523                 register_map[pos].inout_pos = out_idx;
524                 register_map[pos].mode      = constraint->mode;
525         }
526
527         /* inputs + input constraints */
528         in_reg_reqs = OALLOCN(obst, const arch_register_req_t*, arity);
529         for (i = 0; i < arity; ++i) {
530                 ir_node                   *pred         = get_irn_n(node, i);
531                 const ir_asm_constraint   *constraint   = &in_constraints[i];
532                 ident                     *constr_id    = constraint->constraint;
533                 const char                *c            = get_id_str(constr_id);
534                 unsigned                   pos          = constraint->pos;
535                 int                        is_memory_op = 0;
536                 ir_node                   *input        = NULL;
537                 unsigned                   r_clobber_bits;
538                 constraint_t               parsed_constraint;
539                 const arch_register_req_t *req;
540
541                 parse_asm_constraints(&parsed_constraint, c, 0);
542                 if (parsed_constraint.cls != NULL) {
543                         r_clobber_bits = clobber_bits[parsed_constraint.cls->index];
544                         if (r_clobber_bits != 0) {
545                                 if (parsed_constraint.all_registers_allowed) {
546                                         parsed_constraint.all_registers_allowed = 0;
547                                         be_set_allocatable_regs(current_ir_graph,
548                                                         parsed_constraint.cls,
549                                                         &parsed_constraint.allowed_registers);
550                                 }
551                                 parsed_constraint.allowed_registers &= ~r_clobber_bits;
552                         }
553                 }
554
555                 req = ia32_make_register_req(&parsed_constraint, n_out_constraints,
556                                         out_reg_reqs, i);
557                 in_reg_reqs[i] = req;
558
559                 if (parsed_constraint.immediate_type != '\0') {
560                         char imm_type = parsed_constraint.immediate_type;
561                         input = ia32_try_create_Immediate(pred, imm_type);
562                 }
563
564                 if (input == NULL) {
565                         ir_node *pred = get_irn_n(node, i);
566                         input = get_new_node(pred);
567
568                         if (parsed_constraint.cls == NULL
569                                         && parsed_constraint.same_as < 0) {
570                                 is_memory_op = 1;
571                         } else if (parsed_constraint.memory_possible) {
572                                 /* TODO: match Load or Load/Store if memory possible is set */
573                         }
574                 }
575                 in[i] = input;
576
577                 register_map[pos].use_input = 1;
578                 register_map[pos].valid     = 1;
579                 register_map[pos].memory    = is_memory_op;
580                 register_map[pos].inout_pos = i;
581                 register_map[pos].mode      = constraint->mode;
582         }
583
584         /* parse clobbers */
585         for (i = 0; i < get_ASM_n_clobbers(node); ++i) {
586                 const char                *c = get_id_str(clobbers[i]);
587                 const arch_register_req_t *req;
588
589                 if (strcmp(c, "memory") == 0 || strcmp(c, "cc") == 0)
590                         continue;
591
592                 req = ia32_parse_clobber(c);
593                 out_reg_reqs[out_idx] = req;
594                 ++out_idx;
595         }
596
597         /* count inputs which are real values (and not memory) */
598         value_arity = 0;
599         for (i = 0; i < arity; ++i) {
600                 ir_node *in = get_irn_n(node, i);
601                 if (get_irn_mode(in) == mode_M)
602                         continue;
603                 ++value_arity;
604         }
605
606         /* Attempt to make ASM node register pressure faithful.
607          * (This does not work for complicated cases yet!)
608          *
609          * Algorithm: Check if there are fewer inputs or outputs (I will call this
610          * the smaller list). Then try to match each constraint of the smaller list
611          * to 1 of the other list. If we can't match it, then we have to add a dummy
612          * input/output to the other list
613          *
614          * FIXME: This is still broken in lots of cases. But at least better than
615          *        before...
616          * FIXME: need to do this per register class...
617          */
618         if (out_arity <= value_arity) {
619                 int       orig_arity = arity;
620                 int       in_size    = arity;
621                 int       o;
622                 bitset_t *used_ins = bitset_alloca(arity);
623                 for (o = 0; o < out_arity; ++o) {
624                         int   i;
625                         const arch_register_req_t *outreq = out_reg_reqs[o];
626
627                         if (outreq->cls == NULL) {
628                                 continue;
629                         }
630
631                         for (i = 0; i < orig_arity; ++i) {
632                                 const arch_register_req_t *inreq;
633                                 if (bitset_is_set(used_ins, i))
634                                         continue;
635                                 inreq = in_reg_reqs[i];
636                                 if (!can_match(outreq, inreq))
637                                         continue;
638                                 bitset_set(used_ins, i);
639                                 break;
640                         }
641                         /* did we find any match? */
642                         if (i < orig_arity)
643                                 continue;
644
645                         /* we might need more space in the input arrays */
646                         if (arity >= in_size) {
647                                 const arch_register_req_t **new_in_reg_reqs;
648                                 ir_node             **new_in;
649
650                                 in_size *= 2;
651                                 new_in_reg_reqs = OALLOCN(obst, const arch_register_req_t*,
652                                                           in_size);
653                                 memcpy(new_in_reg_reqs, in_reg_reqs, arity * sizeof(new_in_reg_reqs[0]));
654                                 new_in = ALLOCANZ(ir_node*, in_size);
655                                 memcpy(new_in, in, arity*sizeof(new_in[0]));
656
657                                 in_reg_reqs = new_in_reg_reqs;
658                                 in          = new_in;
659                         }
660
661                         /* add a new (dummy) input which occupies the register */
662                         assert(outreq->type & arch_register_req_type_limited);
663                         in_reg_reqs[arity] = outreq;
664                         in[arity]          = new_bd_ia32_ProduceVal(NULL, block);
665                         ++arity;
666                 }
667         } else {
668                 int       i;
669                 bitset_t *used_outs = bitset_alloca(out_arity);
670                 int       orig_out_arity = out_arity;
671                 for (i = 0; i < arity; ++i) {
672                         int   o;
673                         const arch_register_req_t *inreq = in_reg_reqs[i];
674
675                         if (inreq->cls == NULL) {
676                                 continue;
677                         }
678
679                         for (o = 0; o < orig_out_arity; ++o) {
680                                 const arch_register_req_t *outreq;
681                                 if (bitset_is_set(used_outs, o))
682                                         continue;
683                                 outreq = out_reg_reqs[o];
684                                 if (!can_match(outreq, inreq))
685                                         continue;
686                                 bitset_set(used_outs, i);
687                                 break;
688                         }
689                         /* did we find any match? */
690                         if (o < orig_out_arity)
691                                 continue;
692
693                         /* we might need more space in the output arrays */
694                         if (out_arity >= out_size) {
695                                 const arch_register_req_t **new_out_reg_reqs;
696
697                                 out_size *= 2;
698                                 new_out_reg_reqs
699                                         = OALLOCN(obst, const arch_register_req_t*, out_size);
700                                 memcpy(new_out_reg_reqs, out_reg_reqs,
701                                        out_arity * sizeof(new_out_reg_reqs[0]));
702                                 out_reg_reqs = new_out_reg_reqs;
703                         }
704
705                         /* add a new (dummy) output which occupies the register */
706                         assert(inreq->type & arch_register_req_type_limited);
707                         out_reg_reqs[out_arity] = inreq;
708                         ++out_arity;
709                 }
710         }
711
712         /* append none register requirement for the memory output */
713         if (out_arity + 1 >= out_size) {
714                 const arch_register_req_t **new_out_reg_reqs;
715
716                 out_size = out_arity + 1;
717                 new_out_reg_reqs
718                         = OALLOCN(obst, const arch_register_req_t*, out_size);
719                 memcpy(new_out_reg_reqs, out_reg_reqs,
720                            out_arity * sizeof(new_out_reg_reqs[0]));
721                 out_reg_reqs = new_out_reg_reqs;
722         }
723
724         /* add a new (dummy) output which occupies the register */
725         out_reg_reqs[out_arity] = arch_no_register_req;
726         ++out_arity;
727
728         new_node = new_bd_ia32_Asm(dbgi, new_block, arity, in, out_arity,
729                                    get_ASM_text(node), register_map);
730
731         info = be_get_info(new_node);
732         for (i = 0; i < out_arity; ++i) {
733                 info->out_infos[i].req = out_reg_reqs[i];
734         }
735         arch_set_in_register_reqs(new_node, in_reg_reqs);
736
737         SET_IA32_ORIG_NODE(new_node, node);
738
739         return new_node;
740 }
741
742 ir_node *ia32_gen_CopyB(ir_node *node)
743 {
744         ir_node  *block    = get_new_node(get_nodes_block(node));
745         ir_node  *src      = get_CopyB_src(node);
746         ir_node  *new_src  = get_new_node(src);
747         ir_node  *dst      = get_CopyB_dst(node);
748         ir_node  *new_dst  = get_new_node(dst);
749         ir_node  *mem      = get_CopyB_mem(node);
750         ir_node  *new_mem  = get_new_node(mem);
751         ir_node  *res      = NULL;
752         dbg_info *dbgi     = get_irn_dbg_info(node);
753         int      size      = get_type_size_bytes(get_CopyB_type(node));
754         int      throws_exception = ir_throws_exception(node);
755         int      rem;
756
757         /* If we have to copy more than 32 bytes, we use REP MOVSx and */
758         /* then we need the size explicitly in ECX.                    */
759         if (size >= 32 * 4) {
760                 rem = size & 0x3; /* size % 4 */
761                 size >>= 2;
762
763                 res = new_bd_ia32_Const(dbgi, block, NULL, 0, 0, size);
764
765                 res = new_bd_ia32_CopyB(dbgi, block, new_dst, new_src, res, new_mem, rem);
766         } else {
767                 if (size == 0) {
768                         ir_fprintf(stderr, "Optimization warning copyb %+F with size <4\n",
769                                    node);
770                 }
771                 res = new_bd_ia32_CopyB_i(dbgi, block, new_dst, new_src, new_mem, size);
772         }
773         ir_set_throws_exception(res, throws_exception);
774
775         SET_IA32_ORIG_NODE(res, node);
776
777         return res;
778 }
779
780 ir_node *ia32_gen_Proj_tls(ir_node *node)
781 {
782         ir_node *block = get_new_node(get_nodes_block(node));
783         ir_node *res   = new_bd_ia32_LdTls(NULL, block);
784         return res;
785 }
786
787 ir_node *ia32_gen_Unknown(ir_node *node)
788 {
789         ir_mode  *mode  = get_irn_mode(node);
790         ir_graph *irg   = current_ir_graph;
791         dbg_info *dbgi  = get_irn_dbg_info(node);
792         ir_node  *block = get_irg_start_block(irg);
793         ir_node  *res   = NULL;
794
795         if (mode_is_float(mode)) {
796                 if (ia32_cg_config.use_sse2) {
797                         res = new_bd_ia32_xUnknown(dbgi, block);
798                 } else {
799                         res = new_bd_ia32_vfldz(dbgi, block);
800                 }
801         } else if (ia32_mode_needs_gp_reg(mode)) {
802                 res = new_bd_ia32_Unknown(dbgi, block);
803         } else {
804                 panic("unsupported Unknown-Mode");
805         }
806
807         return res;
808 }
809
810 const arch_register_req_t *ia32_make_register_req(const constraint_t *constraint,
811                 int n_outs, const arch_register_req_t **out_reqs, int pos)
812 {
813         struct obstack      *obst    = get_irg_obstack(current_ir_graph);
814         int                  same_as = constraint->same_as;
815         arch_register_req_t *req;
816
817         if (same_as >= 0) {
818                 const arch_register_req_t *other_constr;
819
820                 if (same_as >= n_outs)
821                         panic("invalid output number in same_as constraint");
822
823                 other_constr     = out_reqs[same_as];
824
825                 req              = OALLOC(obst, arch_register_req_t);
826                 *req             = *other_constr;
827                 req->type       |= arch_register_req_type_should_be_same;
828                 req->other_same  = 1U << pos;
829                 req->width       = 1;
830
831                 /* switch constraints. This is because in firm we have same_as
832                  * constraints on the output constraints while in the gcc asm syntax
833                  * they are specified on the input constraints */
834                 out_reqs[same_as] = req;
835                 return other_constr;
836         }
837
838         /* pure memory ops */
839         if (constraint->cls == NULL) {
840                 return arch_no_register_req;
841         }
842
843         if (constraint->allowed_registers != 0
844                         && !constraint->all_registers_allowed) {
845                 unsigned *limited_ptr;
846
847                 req         = (arch_register_req_t*)obstack_alloc(obst, sizeof(req[0]) + sizeof(unsigned));
848                 memset(req, 0, sizeof(req[0]));
849                 limited_ptr = (unsigned*) (req+1);
850
851                 req->type    = arch_register_req_type_limited;
852                 *limited_ptr = constraint->allowed_registers;
853                 req->limited = limited_ptr;
854         } else {
855                 req       = OALLOCZ(obst, arch_register_req_t);
856                 req->type = arch_register_req_type_normal;
857         }
858         req->cls   = constraint->cls;
859         req->width = 1;
860
861         return req;
862 }
863
864 const arch_register_req_t *ia32_parse_clobber(const char *clobber)
865 {
866         struct obstack        *obst = get_irg_obstack(current_ir_graph);
867         const arch_register_t *reg  = ia32_get_clobber_register(clobber);
868         arch_register_req_t   *req;
869         unsigned              *limited;
870
871         if (reg == NULL) {
872                 panic("Register '%s' mentioned in asm clobber is unknown", clobber);
873         }
874
875         assert(reg->index < 32);
876
877         limited  = OALLOC(obst, unsigned);
878         *limited = 1 << reg->index;
879
880         req          = OALLOCZ(obst, arch_register_req_t);
881         req->type    = arch_register_req_type_limited;
882         req->cls     = arch_register_get_class(reg);
883         req->limited = limited;
884         req->width   = 1;
885
886         return req;
887 }
888
889
890 int ia32_prevents_AM(ir_node *const block, ir_node *const am_candidate,
891                        ir_node *const other)
892 {
893         if (get_nodes_block(other) != block)
894                 return 0;
895
896         if (is_Sync(other)) {
897                 int i;
898
899                 for (i = get_Sync_n_preds(other) - 1; i >= 0; --i) {
900                         ir_node *const pred = get_Sync_pred(other, i);
901
902                         if (get_nodes_block(pred) != block)
903                                 continue;
904
905                         /* Do not block ourselves from getting eaten */
906                         if (is_Proj(pred) && get_Proj_pred(pred) == am_candidate)
907                                 continue;
908
909                         if (!heights_reachable_in_block(ia32_heights, pred, am_candidate))
910                                 continue;
911
912                         return 1;
913                 }
914
915                 return 0;
916         } else {
917                 /* Do not block ourselves from getting eaten */
918                 if (is_Proj(other) && get_Proj_pred(other) == am_candidate)
919                         return 0;
920
921                 if (!heights_reachable_in_block(ia32_heights, other, am_candidate))
922                         return 0;
923
924                 return 1;
925         }
926 }
927
928 ir_node *ia32_try_create_Immediate(ir_node *node, char immediate_constraint_type)
929 {
930         long       val = 0;
931         ir_entity *symconst_ent  = NULL;
932         ir_mode   *mode;
933         ir_node   *cnst          = NULL;
934         ir_node   *symconst      = NULL;
935         ir_node   *new_node;
936
937         mode = get_irn_mode(node);
938         if (!mode_is_int(mode) && !mode_is_reference(mode)) {
939                 return NULL;
940         }
941
942         if (is_Const(node)) {
943                 cnst     = node;
944                 symconst = NULL;
945         } else if (is_SymConst_addr_ent(node)
946                         && get_entity_owner(get_SymConst_entity(node)) != get_tls_type()) {
947                 cnst     = NULL;
948                 symconst = node;
949         } else if (is_Add(node)) {
950                 ir_node *left  = get_Add_left(node);
951                 ir_node *right = get_Add_right(node);
952                 if (is_Const(left) && is_SymConst_addr_ent(right)) {
953                         cnst     = left;
954                         symconst = right;
955                 } else if (is_SymConst_addr_ent(left) && is_Const(right)) {
956                         cnst     = right;
957                         symconst = left;
958                 }
959         } else {
960                 return NULL;
961         }
962
963         if (cnst != NULL) {
964                 ir_tarval *offset = get_Const_tarval(cnst);
965                 if (!tarval_is_long(offset)) {
966                         ir_fprintf(stderr, "Optimisation Warning: tarval of %+F is not a long?\n", cnst);
967                         return NULL;
968                 }
969
970                 val = get_tarval_long(offset);
971                 if (!check_immediate_constraint(val, immediate_constraint_type))
972                         return NULL;
973         }
974         if (symconst != NULL) {
975                 if (immediate_constraint_type != 0) {
976                         /* we need full 32bits for symconsts */
977                         return NULL;
978                 }
979
980                 symconst_ent = get_Global_entity(symconst);
981         }
982         if (cnst == NULL && symconst == NULL)
983                 return NULL;
984
985         new_node = ia32_create_Immediate(symconst_ent, 0, val);
986         return new_node;
987 }