fixed use of uninitialised variable
[libfirm] / ir / be / ia32 / ia32_finish.c
1 /*
2  * Copyright (C) 1995-2007 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 functions to finalize the irg for emit.
23  * @author  Christian Wuerdig
24  * @version $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include "irnode.h"
31 #include "ircons.h"
32 #include "irgmod.h"
33 #include "irgwalk.h"
34 #include "iredges.h"
35 #include "irprintf.h"
36 #include "pdeq.h"
37 #include "error.h"
38
39 #include "../bearch_t.h"
40 #include "../besched_t.h"
41 #include "../benode_t.h"
42
43 #include "bearch_ia32_t.h"
44 #include "ia32_finish.h"
45 #include "ia32_new_nodes.h"
46 #include "ia32_map_regs.h"
47 #include "ia32_transform.h"
48 #include "ia32_dbg_stat.h"
49 #include "ia32_optimize.h"
50 #include "gen_ia32_regalloc_if.h"
51
52 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
53
54 /**
55  * Transforms a Sub or xSub into Neg--Add iff OUT_REG == SRC2_REG.
56  * THIS FUNCTIONS MUST BE CALLED AFTER REGISTER ALLOCATION.
57  */
58 static void ia32_transform_sub_to_neg_add(ir_node *irn, ia32_code_gen_t *cg) {
59         ir_graph *irg;
60         ir_node *in1, *in2, *noreg, *nomem, *res;
61         ir_node *noreg_fp, *block;
62         ir_mode *mode = get_irn_mode(irn);
63         dbg_info *dbg = get_irn_dbg_info(irn);
64         const arch_register_t *in1_reg, *in2_reg, *out_reg, **slots;
65         int i, arity;
66
67         /* Return if not a Sub or xSub */
68         if (!is_ia32_Sub(irn) && !is_ia32_xSub(irn))
69                 return;
70         /* fix_am will solve this for AddressMode variants */
71         if(get_ia32_op_type(irn) != ia32_Normal)
72                 return;
73
74         noreg   = ia32_new_NoReg_gp(cg);
75         noreg_fp = ia32_new_NoReg_fp(cg);
76         nomem   = new_rd_NoMem(cg->irg);
77         in1     = get_irn_n(irn, 2);
78         in2     = get_irn_n(irn, 3);
79         in1_reg = arch_get_irn_register(cg->arch_env, in1);
80         in2_reg = arch_get_irn_register(cg->arch_env, in2);
81         out_reg = get_ia32_out_reg(irn, 0);
82
83         assert(get_irn_mode(irn) != mode_T);
84
85         irg     = cg->irg;
86         block   = get_nodes_block(irn);
87
88         /* in case of sub and OUT == SRC2 we can transform the sequence into neg src2 -- add */
89         if (out_reg != in2_reg)
90                 return;
91
92         /* generate the neg src2 */
93         if(mode_is_float(mode)) {
94                 int size;
95                 ir_entity *entity;
96
97                 res = new_rd_ia32_xXor(dbg, irg, block, noreg, noreg, in2, noreg_fp, nomem);
98                 size = get_mode_size_bits(mode);
99                 entity = ia32_gen_fp_known_const(size == 32 ? ia32_SSIGN : ia32_DSIGN);
100                 set_ia32_am_sc(res, entity);
101                 set_ia32_op_type(res, ia32_AddrModeS);
102                 set_ia32_ls_mode(res, get_ia32_ls_mode(irn));
103         } else {
104                 res = new_rd_ia32_Neg(dbg, irg, block, in2);
105         }
106         arch_set_irn_register(cg->arch_env, res, in2_reg);
107
108         /* add to schedule */
109         sched_add_before(irn, res);
110
111         /* generate the add */
112         if (mode_is_float(mode)) {
113                 res = new_rd_ia32_xAdd(dbg, irg, block, noreg, noreg, res, in1, nomem);
114                 set_ia32_am_support(res, ia32_am_Source, ia32_am_binary);
115                 set_ia32_ls_mode(res, get_ia32_ls_mode(irn));
116         } else {
117                 res = new_rd_ia32_Add(dbg, irg, block, noreg, noreg, res, in1, nomem);
118                 set_ia32_am_support(res, ia32_am_Full, ia32_am_binary);
119                 set_ia32_commutative(res);
120         }
121
122         SET_IA32_ORIG_NODE(res, ia32_get_old_node_name(cg, irn));
123         /* copy register */
124         slots    = get_ia32_slots(res);
125         slots[0] = in2_reg;
126
127         /* exchange the add and the sub */
128         edges_reroute(irn, res, irg);
129
130         /* add to schedule */
131         sched_add_before(irn, res);
132
133         /* remove the old sub */
134         sched_remove(irn);
135         arity = get_irn_arity(irn);
136         for(i = 0; i < arity; ++i) {
137                 set_irn_n(irn, i, new_Bad());
138         }
139
140         DBG_OPT_SUB2NEGADD(irn, res);
141 }
142
143 static INLINE int is_noreg(ia32_code_gen_t *cg, const ir_node *node)
144 {
145         return node == cg->noreg_gp;
146 }
147
148 static ir_node *create_immediate_from_int(ia32_code_gen_t *cg, int val)
149 {
150         ir_graph *irg         = current_ir_graph;
151         ir_node  *start_block = get_irg_start_block(irg);
152         ir_node  *immediate   = new_rd_ia32_Immediate(NULL, irg, start_block, NULL,
153                                                       0, val);
154         arch_set_irn_register(cg->arch_env, immediate, &ia32_gp_regs[REG_GP_NOREG]);
155
156         return immediate;
157 }
158
159 static ir_node *create_immediate_from_am(ia32_code_gen_t *cg,
160                                          const ir_node *node)
161 {
162         ir_graph  *irg     = get_irn_irg(node);
163         ir_node   *block   = get_nodes_block(node);
164         int        offset  = get_ia32_am_offs_int(node);
165         int        sc_sign = is_ia32_am_sc_sign(node);
166         ir_entity *entity  = get_ia32_am_sc(node);
167         ir_node   *res;
168
169         res = new_rd_ia32_Immediate(NULL, irg, block, entity, sc_sign, offset);
170         arch_set_irn_register(cg->arch_env, res, &ia32_gp_regs[REG_GP_NOREG]);
171         return res;
172 }
173
174 /**
175  * Transforms a LEA into an Add or SHL if possible.
176  * THIS FUNCTIONS MUST BE CALLED AFTER REGISTER ALLOCATION.
177  */
178 static void ia32_transform_lea_to_add_or_shl(ir_node *node, ia32_code_gen_t *cg)
179 {
180         const arch_env_t      *arch_env = cg->arch_env;
181         ir_graph              *irg      = current_ir_graph;
182         ir_node               *base;
183         ir_node               *index;
184         const arch_register_t *base_reg;
185         const arch_register_t *index_reg;
186         const arch_register_t *out_reg;
187         int                    scale;
188         int                    has_immediates;
189         ir_node               *op1;
190         ir_node               *op2;
191         dbg_info              *dbgi;
192         ir_node               *block;
193         ir_node               *res;
194         ir_node               *noreg;
195         ir_node               *nomem;
196
197         if(!is_ia32_Lea(node))
198                 return;
199
200         base  = get_irn_n(node, n_ia32_Lea_base);
201         index = get_irn_n(node, n_ia32_Lea_index);
202
203         if(is_noreg(cg, base)) {
204                 base     = NULL;
205                 base_reg = NULL;
206         } else {
207                 base_reg = arch_get_irn_register(arch_env, base);
208         }
209         if(is_noreg(cg, index)) {
210                 index     = NULL;
211                 index_reg = NULL;
212         } else {
213                 index_reg = arch_get_irn_register(arch_env, index);
214         }
215
216         if(base == NULL && index == NULL) {
217                 /* we shouldn't construct these in the first place... */
218 #ifdef DEBUG_libfirm
219                 ir_fprintf(stderr, "Optimisation warning: found immediate only lea\n");
220 #endif
221                 return;
222         }
223
224         out_reg = arch_get_irn_register(arch_env, node);
225         scale   = get_ia32_am_scale(node);
226         assert(!is_ia32_need_stackent(node) || get_ia32_frame_ent(node) != NULL);
227         /* check if we have immediates values (frame entities should already be
228          * expressed in the offsets) */
229         if(get_ia32_am_offs_int(node) != 0 || get_ia32_am_sc(node) != NULL) {
230                 has_immediates = 1;
231         } else {
232                 has_immediates = 0;
233         }
234
235         /* we can transform leas where the out register is the same as either the
236          * base or index register back to an Add or Shl */
237         if(out_reg == base_reg) {
238                 if(index == NULL) {
239 #ifdef DEBUG_libfirm
240                         if(!has_immediates) {
241                                 ir_fprintf(stderr, "Optimisation warning: found lea which is "
242                                            "just a copy\n");
243                         }
244 #endif
245                         op1 = base;
246                         op2 = create_immediate_from_am(cg, node);
247                         goto make_add;
248                 }
249                 if(scale == 0 && !has_immediates) {
250                         op1 = base;
251                         op2 = index;
252                         goto make_add;
253                 }
254                 /* can't create an add */
255                 return;
256         } else if(out_reg == index_reg) {
257                 if(base == NULL) {
258                    if(has_immediates && scale == 0) {
259                            op1 = index;
260                            op2 = create_immediate_from_am(cg, node);
261                            goto make_add;
262                    } else if(!has_immediates && scale > 0) {
263                            op1 = index;
264                            op2 = create_immediate_from_int(cg, scale);
265                            goto make_shl;
266                    } else if(!has_immediates) {
267 #ifdef DEBUG_libfirm
268                                 ir_fprintf(stderr, "Optimisation warning: found lea which is "
269                                            "just a copy\n");
270 #endif
271                    }
272                 } else if(scale == 0 && !has_immediates) {
273                         op1 = index;
274                         op2 = base;
275                         goto make_add;
276                 }
277                 /* can't create an add */
278                 return;
279         } else {
280                 /* can't create an add */
281                 return;
282         }
283
284 make_add:
285         dbgi  = get_irn_dbg_info(node);
286         block = get_nodes_block(node);
287         noreg = ia32_new_NoReg_gp(cg);
288         nomem = new_NoMem();
289         res   = new_rd_ia32_Add(dbgi, irg, block, noreg, noreg, op1, op2, nomem);
290         arch_set_irn_register(arch_env, res, out_reg);
291         set_ia32_op_type(res, ia32_Normal);
292         set_ia32_commutative(res);
293         goto exchange;
294
295 make_shl:
296         dbgi  = get_irn_dbg_info(node);
297         block = get_nodes_block(node);
298         noreg = ia32_new_NoReg_gp(cg);
299         nomem = new_NoMem();
300         res   = new_rd_ia32_Shl(dbgi, irg, block, op1, op2);
301         arch_set_irn_register(arch_env, res, out_reg);
302         set_ia32_op_type(res, ia32_Normal);
303         goto exchange;
304
305 exchange:
306         SET_IA32_ORIG_NODE(res, ia32_get_old_node_name(cg, node));
307
308         /* add new ADD/SHL to schedule */
309         sched_add_before(node, res);
310
311         DBG_OPT_LEA2ADD(node, res);
312
313         /* remove the old LEA */
314         sched_remove(node);
315
316         /* exchange the Add and the LEA */
317         exchange(node, res);
318 }
319
320 static INLINE int need_constraint_copy(ir_node *irn) {
321         return  ! is_ia32_Lea(irn)      &&
322                 ! is_ia32_Conv_I2I(irn)     &&
323                 ! is_ia32_Conv_I2I8Bit(irn) &&
324                 ! is_ia32_TestCMov(irn)     &&
325                 ! is_ia32_CmpCMov(irn);
326 }
327
328 /**
329  * Insert copies for all ia32 nodes where the should_be_same requirement
330  * is not fulfilled.
331  * Transform Sub into Neg -- Add if IN2 == OUT
332  */
333 static void assure_should_be_same_requirements(ia32_code_gen_t *cg,
334                                                ir_node *node)
335 {
336         ir_graph                   *irg      = cg->irg;
337         const arch_env_t           *arch_env = cg->arch_env;
338         const arch_register_req_t **reqs;
339         const arch_register_t      *out_reg, *in_reg;
340         int                         n_res, i;
341         ir_node                    *in_node, *block;
342         ia32_op_type_t              op_tp;
343
344         if(!is_ia32_irn(node))
345                 return;
346
347         /* some nodes are just a bit less efficient, but need no fixing if the
348          * should be same requirement is not fulfilled */
349         if(!need_constraint_copy(node))
350                 return;
351
352         op_tp = get_ia32_op_type(node);
353         reqs  = get_ia32_out_req_all(node);
354         n_res = get_ia32_n_res(node);
355         block = get_nodes_block(node);
356
357         /* check all OUT requirements, if there is a should_be_same */
358         for (i = 0; i < n_res; i++) {
359                 int                          i2, arity;
360                 int                          same_pos;
361                 ir_node                     *perm;
362                 ir_node                     *in[2];
363                 ir_node                     *perm_proj0;
364                 ir_node                     *perm_proj1;
365                 ir_node                     *uses_out_reg;
366                 const arch_register_req_t   *req = reqs[i];
367                 const arch_register_class_t *class;
368                 int                         uses_out_reg_pos;
369
370                 if (!arch_register_req_is(req, should_be_same))
371                         continue;
372
373                 same_pos = req->other_same;
374
375                 /* get in and out register */
376                 out_reg  = get_ia32_out_reg(node, i);
377                 in_node  = get_irn_n(node, same_pos);
378                 in_reg   = arch_get_irn_register(arch_env, in_node);
379
380                 /* requirement already fulfilled? */
381                 if (in_reg == out_reg)
382                         continue;
383                 /* unknowns can be changed to any register we want on emitting */
384                 if (is_unknown_reg(in_reg))
385                         continue;
386                 class = arch_register_get_class(in_reg);
387                 assert(class == arch_register_get_class(out_reg));
388
389                 /* check if any other input operands uses the out register */
390                 arity = get_irn_arity(node);
391                 uses_out_reg     = NULL;
392                 uses_out_reg_pos = -1;
393                 for(i2 = 0; i2 < arity; ++i2) {
394                         ir_node               *in     = get_irn_n(node, i2);
395                         const arch_register_t *in_reg = arch_get_irn_register(arch_env, in);
396
397                         if(in_reg != out_reg)
398                                 continue;
399
400                         if(uses_out_reg != NULL && in != uses_out_reg) {
401                                 panic("invalid register allocation");
402                         }
403                         uses_out_reg = in;
404                         if(uses_out_reg_pos >= 0)
405                                 uses_out_reg_pos = -1; /* multiple inputs... */
406                         else
407                                 uses_out_reg_pos = i2;
408                 }
409
410                 /* no-one else is using the out reg, we can simply copy it
411                  * (the register can't be live since the operation will override it
412                  *  anyway) */
413                 if(uses_out_reg == NULL) {
414                         ir_node *copy = be_new_Copy(class, irg, block, in_node);
415                         DBG_OPT_2ADDRCPY(copy);
416
417                         /* destination is the out register */
418                         arch_set_irn_register(arch_env, copy, out_reg);
419
420                         /* insert copy before the node into the schedule */
421                         sched_add_before(node, copy);
422
423                         /* set copy as in */
424                         set_irn_n(node, same_pos, copy);
425
426                         DBG((dbg, LEVEL_1, "created copy %+F for should be same argument "
427                              "at input %d of %+F\n", copy, same_pos, node));
428                         continue;
429                 }
430
431                 /* for commutative nodes we can simply swap the left/right */
432                 if(is_ia32_commutative(node) && uses_out_reg_pos == 3) {
433                         ia32_swap_left_right(node);
434                         DBG((dbg, LEVEL_1, "swapped left/right input of %+F to resolve "
435                              "should be same constraint\n", node));
436                         continue;
437                 }
438
439 #ifdef DEBUG_libfirm
440                 ir_fprintf(stderr, "Note: need perm to resolve should_be_same constraint at %+F (this is unsafe and should not happen in theory...)\n", node);
441 #endif
442                 /* the out reg is used as node input: we need to permutate our input
443                  * and the other (this is allowed, since the other node can't be live
444                  * after! the operation as we will override the register. */
445                 in[0] = in_node;
446                 in[1] = uses_out_reg;
447                 perm  = be_new_Perm(class, irg, block, 2, in);
448
449                 perm_proj0 = new_r_Proj(irg, block, perm, get_irn_mode(in[0]), 0);
450                 perm_proj1 = new_r_Proj(irg, block, perm, get_irn_mode(in[1]), 1);
451
452                 arch_set_irn_register(arch_env, perm_proj0, out_reg);
453                 arch_set_irn_register(arch_env, perm_proj1, in_reg);
454
455                 sched_add_before(node, perm);
456
457                 DBG((dbg, LEVEL_1, "created perm %+F for should be same argument "
458                      "at input %d of %+F (need permutate with %+F)\n", perm, same_pos,
459                      node, uses_out_reg));
460
461                 /* use the perm results */
462                 for(i2 = 0; i2 < arity; ++i2) {
463                         ir_node *in = get_irn_n(node, i2);
464
465                         if(in == in_node) {
466                                 set_irn_n(node, i2, perm_proj0);
467                         } else if(in == uses_out_reg) {
468                                 set_irn_n(node, i2, perm_proj1);
469                         }
470                 }
471         }
472
473         /* check xCmp: try to avoid unordered cmp */
474         if ((is_ia32_xCmp(node) || is_ia32_xCmpCMov(node) || is_ia32_xCmpSet(node)) &&
475                 op_tp == ia32_Normal)
476         {
477                 long pnc = get_ia32_pncode(node);
478
479                 if (pnc & pn_Cmp_Uo) {
480                         ir_node *tmp;
481                         int idx1 = 2, idx2 = 3;
482
483                         if (is_ia32_xCmpCMov(node)) {
484                                 idx1 = 0;
485                                 idx2 = 1;
486                         }
487
488                         /** Matze: TODO this looks wrong, I assume we should exchange
489                          * the proj numbers and not the inputs... */
490
491                         tmp = get_irn_n(node, idx1);
492                         set_irn_n(node, idx1, get_irn_n(node, idx2));
493                         set_irn_n(node, idx2, tmp);
494
495                         set_ia32_pncode(node, get_negated_pnc(pnc, mode_E));
496                 }
497         }
498 }
499
500 /**
501  * Following Problem:
502  * We have a source address mode node with base or index register equal to
503  * result register and unfulfilled should_be_same requirement. The constraint
504  * handler will insert a copy from the remaining input operand to the result
505  * register -> base or index is broken then.
506  * Solution: Turn back this address mode into explicit Load + Operation.
507  */
508 static void fix_am_source(ir_node *irn, void *env) {
509         ia32_code_gen_t            *cg = env;
510         const arch_env_t           *arch_env = cg->arch_env;
511         ir_node                    *base;
512         ir_node                    *index;
513         ir_node                    *noreg;
514         const arch_register_t      *reg_base;
515         const arch_register_t      *reg_index;
516         const arch_register_req_t **reqs;
517         int                         n_res, i;
518
519         /* check only ia32 nodes with source address mode */
520         if (! is_ia32_irn(irn) || get_ia32_op_type(irn) != ia32_AddrModeS)
521                 return;
522         /* only need to fix binary operations */
523         if (get_ia32_am_arity(irn) != ia32_am_binary)
524                 return;
525
526         base  = get_irn_n(irn, 0);
527         index = get_irn_n(irn, 1);
528
529         reg_base  = arch_get_irn_register(arch_env, base);
530         reg_index = arch_get_irn_register(arch_env, index);
531         reqs      = get_ia32_out_req_all(irn);
532
533         noreg = ia32_new_NoReg_gp(cg);
534
535         n_res = get_ia32_n_res(irn);
536
537         for (i = 0; i < n_res; i++) {
538                 if (arch_register_req_is(reqs[i], should_be_same)) {
539                         /* get in and out register */
540                         const arch_register_t *out_reg   = get_ia32_out_reg(irn, i);
541                         int                    same_pos  = reqs[i]->other_same;
542                         ir_node               *same_node = get_irn_n(irn, same_pos);
543                         const arch_register_t *same_reg
544                                 = arch_get_irn_register(arch_env, same_node);
545                         const arch_register_class_t *same_cls;
546                         ir_graph              *irg   = cg->irg;
547                         dbg_info              *dbgi  = get_irn_dbg_info(irn);
548                         ir_node               *block = get_nodes_block(irn);
549                         ir_mode               *proj_mode;
550                         ir_node               *load;
551                         ir_node               *load_res;
552                         int                    pnres;
553
554                         /* should_be same constraint is fullfilled, nothing to do */
555                         if(out_reg == same_reg)
556                                 continue;
557
558                         /* we only need to do something if the out reg is the same as base
559                            or index register */
560                         if (out_reg != reg_base && out_reg != reg_index)
561                                 continue;
562
563                         /* turn back address mode */
564                         same_cls = arch_register_get_class(same_reg);
565                         if (same_cls == &ia32_reg_classes[CLASS_ia32_gp]) {
566                                 load  = new_rd_ia32_Load(dbgi, irg, block, base, index,
567                                                          get_irn_n(irn, 4));
568                                 assert(get_irn_mode(get_irn_n(irn,4)) == mode_M);
569                                 pnres     = pn_ia32_Load_res;
570                                 proj_mode = mode_Iu;
571                         } else if (same_cls == &ia32_reg_classes[CLASS_ia32_xmm]) {
572                                 load  = new_rd_ia32_xLoad(dbgi, irg, block, base, index,
573                                                           get_irn_n(irn, 4),
574                                                           get_ia32_ls_mode(irn));
575                                 assert(get_irn_mode(get_irn_n(irn,4)) == mode_M);
576                                 pnres     = pn_ia32_xLoad_res;
577                                 proj_mode = mode_E;
578                         } else {
579                                 panic("cannot turn back address mode for this register class");
580                         }
581
582                         /* copy address mode information to load */
583                         set_ia32_ls_mode(load, get_ia32_ls_mode(irn));
584                         set_ia32_op_type(load, ia32_AddrModeS);
585                         set_ia32_am_scale(load, get_ia32_am_scale(irn));
586                         set_ia32_am_sc(load, get_ia32_am_sc(irn));
587                         if(is_ia32_am_sc_sign(irn))
588                                 set_ia32_am_sc_sign(load);
589                         add_ia32_am_offs_int(load, get_ia32_am_offs_int(irn));
590                         set_ia32_frame_ent(load, get_ia32_frame_ent(irn));
591                         if (is_ia32_use_frame(irn))
592                                 set_ia32_use_frame(load);
593
594                         /* insert the load into schedule */
595                         sched_add_before(irn, load);
596
597                         DBG((dbg, LEVEL_3, "irg %+F: build back AM source for node %+F, inserted load %+F\n", cg->irg, irn, load));
598
599                         load_res = new_r_Proj(cg->irg, block, load, proj_mode, pnres);
600                         arch_set_irn_register(cg->arch_env, load_res, out_reg);
601
602                         /* set the new input operand */
603                         set_irn_n(irn, 3, load_res);
604                         if(get_irn_mode(irn) == mode_T) {
605                                 const ir_edge_t *edge, *next;
606                                 foreach_out_edge_safe(irn, edge, next) {
607                                         ir_node *node = get_edge_src_irn(edge);
608                                         int      pn   = get_Proj_proj(node);
609                                         if(pn == 0) {
610                                                 exchange(node, irn);
611                                         } else {
612                                                 assert(pn == 1);
613                                                 set_Proj_pred(node, load);
614                                         }
615                                 }
616                                 set_irn_mode(irn, mode_Iu);
617                         }
618
619                         /* this is a normal node now */
620                         set_irn_n(irn, 0, noreg);
621                         set_irn_n(irn, 1, noreg);
622                         set_ia32_op_type(irn, ia32_Normal);
623                         break;
624                 }
625         }
626 }
627
628 /**
629  * Block walker: finishes a block
630  */
631 static void ia32_finish_irg_walker(ir_node *block, void *env) {
632         ia32_code_gen_t *cg = env;
633         ir_node *irn, *next;
634
635         /* first: turn back AM source if necessary */
636         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
637                 next = sched_next(irn);
638                 fix_am_source(irn, env);
639         }
640
641         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
642                 ia32_code_gen_t *cg = env;
643
644                 next = sched_next(irn);
645
646                 /* check if there is a sub which need to be transformed */
647                 ia32_transform_sub_to_neg_add(irn, cg);
648
649                 /* transform a LEA into an Add if possible */
650                 ia32_transform_lea_to_add_or_shl(irn, cg);
651         }
652
653         /* second: insert copies and finish irg */
654         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
655                 next = sched_next(irn);
656                 assure_should_be_same_requirements(cg, irn);
657         }
658 }
659
660 /**
661  * Block walker: pushes all blocks on a wait queue
662  */
663 static void ia32_push_on_queue_walker(ir_node *block, void *env) {
664         waitq *wq = env;
665         waitq_put(wq, block);
666 }
667
668
669 /**
670  * Add Copy nodes for not fulfilled should_be_equal constraints
671  */
672 void ia32_finish_irg(ir_graph *irg, ia32_code_gen_t *cg) {
673         waitq *wq = new_waitq();
674
675         /* Push the blocks on the waitq because ia32_finish_irg_walker starts more walks ... */
676         irg_block_walk_graph(irg, NULL, ia32_push_on_queue_walker, wq);
677
678         while (! waitq_empty(wq)) {
679                 ir_node *block = waitq_get(wq);
680                 ia32_finish_irg_walker(block, cg);
681         }
682         del_waitq(wq);
683 }
684
685 void ia32_init_finish(void)
686 {
687         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.finish");
688 }