big refactoring of arch_XXX functions
[libfirm] / ir / be / ia32 / ia32_finish.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 functions to finalize the irg for emit.
23  * @author  Christian Wuerdig
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include "irnode.h"
29 #include "ircons.h"
30 #include "irgmod.h"
31 #include "irgwalk.h"
32 #include "iredges.h"
33 #include "irprintf.h"
34 #include "pdeq.h"
35 #include "error.h"
36
37 #include "../bearch.h"
38 #include "../besched.h"
39 #include "../benode.h"
40
41 #include "bearch_ia32_t.h"
42 #include "ia32_finish.h"
43 #include "ia32_new_nodes.h"
44 #include "ia32_common_transform.h"
45 #include "ia32_transform.h"
46 #include "ia32_dbg_stat.h"
47 #include "ia32_optimize.h"
48 #include "gen_ia32_regalloc_if.h"
49
50 DEBUG_ONLY(static firm_dbg_module_t *dbg = NULL;)
51
52 /**
53  * Transforms a Sub or xSub into Neg--Add iff OUT_REG != SRC1_REG && OUT_REG == SRC2_REG.
54  * THIS FUNCTIONS MUST BE CALLED AFTER REGISTER ALLOCATION.
55  */
56 static void ia32_transform_sub_to_neg_add(ir_node *irn)
57 {
58         ir_graph *irg;
59         ir_node *in1, *in2, *noreg, *nomem, *res;
60         ir_node *noreg_fp, *block;
61         dbg_info *dbgi;
62         const arch_register_t *in1_reg, *in2_reg, *out_reg;
63
64         /* fix_am will solve this for AddressMode variants */
65         if (get_ia32_op_type(irn) != ia32_Normal)
66                 return;
67
68         irg      = get_irn_irg(irn);
69         noreg    = ia32_new_NoReg_gp(irg);
70         noreg_fp = ia32_new_NoReg_xmm(irg);
71         nomem    = get_irg_no_mem(irg);
72         in1      = get_irn_n(irn, n_ia32_binary_left);
73         in2      = get_irn_n(irn, n_ia32_binary_right);
74         in1_reg  = arch_get_irn_register(in1);
75         in2_reg  = arch_get_irn_register(in2);
76         out_reg  = arch_get_irn_register_out(irn, 0);
77
78         if (out_reg == in1_reg)
79                 return;
80
81         /* in case of sub and OUT == SRC2 we can transform the sequence into neg src2 -- add */
82         if (out_reg != in2_reg)
83                 return;
84
85         block = get_nodes_block(irn);
86         dbgi   = get_irn_dbg_info(irn);
87
88         /* generate the neg src2 */
89         if (is_ia32_xSub(irn)) {
90                 int size;
91                 ir_entity *entity;
92                 ir_mode *op_mode = get_ia32_ls_mode(irn);
93
94                 assert(get_irn_mode(irn) != mode_T);
95
96                 res = new_bd_ia32_xXor(dbgi, block, noreg, noreg, nomem, in2, noreg_fp);
97                 size = get_mode_size_bits(op_mode);
98                 entity = ia32_gen_fp_known_const(size == 32 ? ia32_SSIGN : ia32_DSIGN);
99                 set_ia32_am_sc(res, entity);
100                 set_ia32_op_type(res, ia32_AddrModeS);
101                 set_ia32_ls_mode(res, op_mode);
102
103                 arch_set_irn_register(res, in2_reg);
104
105                 /* add to schedule */
106                 sched_add_before(irn, res);
107
108                 /* generate the add */
109                 res = new_bd_ia32_xAdd(dbgi, block, noreg, noreg, nomem, res, in1);
110                 set_ia32_ls_mode(res, get_ia32_ls_mode(irn));
111         } else {
112                 ir_node         *flags_proj = NULL;
113                 ir_node         *carry;
114                 const ir_edge_t *edge;
115
116                 if (get_irn_mode(irn) == mode_T) {
117                         /* collect the Proj uses */
118                         foreach_out_edge(irn, edge) {
119                                 ir_node *proj = get_edge_src_irn(edge);
120                                 long     pn   = get_Proj_proj(proj);
121                                 if (pn == pn_ia32_flags) {
122                                         assert(flags_proj == NULL);
123                                         flags_proj = proj;
124                                         break;
125                                 }
126                         }
127                 }
128
129                 if (is_ia32_Sbb(irn)) {
130                         /* Feed borrow (in CF) as carry (via CMC) into NOT+ADC. */
131                         carry = get_irn_n(irn, n_ia32_Sbb_eflags);
132                         carry = new_bd_ia32_Cmc(dbgi, block, carry);
133                         goto carry;
134                 } else if (flags_proj != 0) {
135                         /*
136                          * ARG, the above technique does NOT set the flags right.
137                          * So, we must produce the following code:
138                          * t1 = ~b
139                          * t2 = a + ~b + Carry
140                          * Complement Carry
141                          *
142                          * a + -b = a + (~b + 1)  would set the carry flag wrong IFF both a and b are zero.
143                          */
144                         ir_node *cmc;
145                         ir_node *nnot;
146                         ir_node *adc;
147                         ir_node *adc_flags;
148
149                         carry = new_bd_ia32_Stc(dbgi, block);
150
151 carry:
152                         nnot = new_bd_ia32_Not(dbgi, block, in2);
153                         arch_set_irn_register(nnot, in2_reg);
154                         sched_add_before(irn, nnot);
155
156                         arch_set_irn_register(carry, &ia32_registers[REG_EFLAGS]);
157                         sched_add_before(irn, carry);
158
159                         adc = new_bd_ia32_Adc(dbgi, block, noreg, noreg, nomem, nnot, in1, carry);
160                         arch_set_irn_register(adc, out_reg);
161                         set_ia32_commutative(adc);
162
163                         if (flags_proj != NULL) {
164                                 set_irn_mode(adc, mode_T);
165                                 adc_flags = new_r_Proj(adc, mode_Iu, pn_ia32_Adc_flags);
166                                 arch_set_irn_register(adc_flags, &ia32_registers[REG_EFLAGS]);
167
168                                 cmc = new_bd_ia32_Cmc(dbgi, block, adc_flags);
169                                 arch_set_irn_register(cmc, &ia32_registers[REG_EFLAGS]);
170                                 sched_add_after(irn, cmc);
171                                 exchange(flags_proj, cmc);
172                         }
173
174                         res = adc;
175                 } else {
176                         res = new_bd_ia32_Neg(dbgi, block, in2);
177                         arch_set_irn_register(res, in2_reg);
178
179                         /* add to schedule */
180                         sched_add_before(irn, res);
181
182                         /* generate the add */
183                         res = new_bd_ia32_Add(dbgi, block, noreg, noreg, nomem, res, in1);
184                         arch_set_irn_register(res, out_reg);
185                         set_ia32_commutative(res);
186                 }
187         }
188
189         /* exchange the add and the sub */
190         edges_reroute(irn, res);
191         sched_add_before(irn, res);
192
193         set_irn_mode(res, get_irn_mode(irn));
194
195         SET_IA32_ORIG_NODE(res, irn);
196
197         /* remove the old sub */
198         sched_remove(irn);
199         kill_node(irn);
200
201         DBG_OPT_SUB2NEGADD(irn, res);
202 }
203
204 static inline int need_constraint_copy(ir_node *irn)
205 {
206         /* TODO this should be determined from the node specification */
207         switch (get_ia32_irn_opcode(irn)) {
208                 case iro_ia32_IMul: {
209                         /* the 3 operand form of IMul needs no constraint copy */
210                         ir_node *right = get_irn_n(irn, n_ia32_IMul_right);
211                         return !is_ia32_Immediate(right);
212                 }
213
214                 case iro_ia32_Lea:
215                 case iro_ia32_Conv_I2I:
216                 case iro_ia32_Conv_I2I8Bit:
217                 case iro_ia32_CMovcc:
218                 case iro_ia32_Minus64Bit:
219                         return 0;
220
221                 default:
222                         return 1;
223         }
224 }
225
226 /**
227  * Returns the index of the "same" register.
228  * On the x86, we should have only one.
229  */
230 static int get_first_same(const arch_register_req_t* req)
231 {
232         const unsigned other = req->other_same;
233         int i;
234
235         for (i = 0; i < 32; ++i) {
236                 if (other & (1U << i)) return i;
237         }
238         panic("same position not found");
239 }
240
241 /**
242  * Insert copies for all ia32 nodes where the should_be_same requirement
243  * is not fulfilled.
244  * Transform Sub into Neg -- Add if IN2 == OUT
245  */
246 static void assure_should_be_same_requirements(ir_node *node)
247 {
248         const arch_register_t      *out_reg, *in_reg;
249         int                         n_res, i;
250         ir_node                    *in_node, *block;
251
252         n_res = arch_get_irn_n_outs(node);
253         block = get_nodes_block(node);
254
255         /* check all OUT requirements, if there is a should_be_same */
256         for (i = 0; i < n_res; i++) {
257                 int                          i2, arity;
258                 int                          same_pos;
259                 ir_node                     *uses_out_reg;
260                 const arch_register_req_t   *req = arch_get_irn_register_req_out(node, i);
261                 const arch_register_class_t *cls;
262                 int                         uses_out_reg_pos;
263
264                 if (!arch_register_req_is(req, should_be_same))
265                         continue;
266
267                 same_pos = get_first_same(req);
268
269                 /* get in and out register */
270                 out_reg = arch_get_irn_register_out(node, i);
271                 in_node = get_irn_n(node, same_pos);
272                 in_reg  = arch_get_irn_register(in_node);
273
274                 /* requirement already fulfilled? */
275                 if (in_reg == out_reg)
276                         continue;
277                 cls = arch_register_get_class(in_reg);
278                 assert(cls == arch_register_get_class(out_reg));
279
280                 /* check if any other input operands uses the out register */
281                 arity = get_irn_arity(node);
282                 uses_out_reg     = NULL;
283                 uses_out_reg_pos = -1;
284                 for (i2 = 0; i2 < arity; ++i2) {
285                         ir_node               *in     = get_irn_n(node, i2);
286                         const arch_register_t *other_in_reg;
287
288                         if (!mode_is_data(get_irn_mode(in)))
289                                 continue;
290
291                         other_in_reg = arch_get_irn_register(in);
292
293                         if (other_in_reg != out_reg)
294                                 continue;
295
296                         if (uses_out_reg != NULL && in != uses_out_reg) {
297                                 panic("invalid register allocation");
298                         }
299                         uses_out_reg = in;
300                         if (uses_out_reg_pos >= 0)
301                                 uses_out_reg_pos = -1; /* multiple inputs... */
302                         else
303                                 uses_out_reg_pos = i2;
304                 }
305
306                 /* no-one else is using the out reg, we can simply copy it
307                  * (the register can't be live since the operation will override it
308                  *  anyway) */
309                 if (uses_out_reg == NULL) {
310                         ir_node *copy = be_new_Copy(cls, block, in_node);
311                         DBG_OPT_2ADDRCPY(copy);
312
313                         /* destination is the out register */
314                         arch_set_irn_register(copy, out_reg);
315
316                         /* insert copy before the node into the schedule */
317                         sched_add_before(node, copy);
318
319                         /* set copy as in */
320                         set_irn_n(node, same_pos, copy);
321
322                         DBG((dbg, LEVEL_1,
323                                 "created copy %+F for should be same argument at input %d of %+F\n",
324                                 copy, same_pos, node));
325                         continue;
326                 }
327
328                 /* for commutative nodes we can simply swap the left/right */
329                 if (uses_out_reg_pos == n_ia32_binary_right && is_ia32_commutative(node)) {
330                         ia32_swap_left_right(node);
331                         DBG((dbg, LEVEL_1,
332                                 "swapped left/right input of %+F to resolve should be same constraint\n",
333                                 node));
334                         continue;
335                 }
336
337                 panic("Unresolved should_be_same constraint");
338         }
339 }
340
341 /**
342  * Following Problem:
343  * We have a source address mode node with base or index register equal to
344  * result register and unfulfilled should_be_same requirement. The constraint
345  * handler will insert a copy from the remaining input operand to the result
346  * register -> base or index is broken then.
347  * Solution: Turn back this address mode into explicit Load + Operation.
348  */
349 static void fix_am_source(ir_node *irn)
350 {
351         int                         n_res, i;
352
353         /* check only ia32 nodes with source address mode */
354         if (!is_ia32_irn(irn) || get_ia32_op_type(irn) != ia32_AddrModeS)
355                 return;
356         /* only need to fix binary operations */
357         if (get_ia32_am_support(irn) != ia32_am_binary)
358                 return;
359
360         n_res = arch_get_irn_n_outs(irn);
361
362         for (i = 0; i < n_res; i++) {
363                 const arch_register_req_t *req = arch_get_irn_register_req_out(irn, i);
364                 const arch_register_t     *out_reg;
365                 int                        same_pos;
366                 ir_node                   *same_node;
367                 const arch_register_t     *same_reg;
368                 ir_node                   *load_res;
369
370                 if (!arch_register_req_is(req, should_be_same))
371                         continue;
372
373                 /* get in and out register */
374                 out_reg   = arch_get_irn_register_out(irn, i);
375                 same_pos  = get_first_same(req);
376                 same_node = get_irn_n(irn, same_pos);
377                 same_reg  = arch_get_irn_register(same_node);
378
379                 /* should_be same constraint is fullfilled, nothing to do */
380                 if (out_reg == same_reg)
381                         continue;
382
383                 /* we only need to do something if the out reg is the same as base
384                          or index register */
385                 if (out_reg != arch_get_irn_register(get_irn_n(irn, n_ia32_base)) &&
386                                 out_reg != arch_get_irn_register(get_irn_n(irn, n_ia32_index)))
387                         continue;
388
389                 load_res = ia32_turn_back_am(irn);
390                 arch_set_irn_register(load_res, out_reg);
391
392                 DBG((dbg, LEVEL_3,
393                         "irg %+F: build back AM source for node %+F, inserted load %+F\n",
394                         get_irn_irg(irn), irn, get_Proj_pred(load_res)));
395                 break;
396         }
397 }
398
399 /**
400  * Block walker: finishes a block
401  */
402 static void ia32_finish_irg_walker(ir_node *block, void *env)
403 {
404         ir_node *irn, *next;
405         (void) env;
406
407         /* first: turn back AM source if necessary */
408         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
409                 next = sched_next(irn);
410                 fix_am_source(irn);
411         }
412
413         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
414                 next = sched_next(irn);
415
416                 /* check if there is a sub which need to be transformed */
417                 if (is_ia32_Sub(irn) || is_ia32_Sbb(irn) || is_ia32_xSub(irn)) {
418                         ia32_transform_sub_to_neg_add(irn);
419                 }
420         }
421
422         /* second: insert copies and finish irg */
423         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
424                 next = sched_next(irn);
425                 if (is_ia32_irn(irn)) {
426                         /* some nodes are just a bit less efficient, but need no fixing if the
427                          * should be same requirement is not fulfilled */
428                         if (need_constraint_copy(irn))
429                                 assure_should_be_same_requirements(irn);
430                 }
431         }
432 }
433
434 /**
435  * Block walker: pushes all blocks on a wait queue
436  */
437 static void ia32_push_on_queue_walker(ir_node *block, void *env)
438 {
439         waitq *wq = (waitq*)env;
440         waitq_put(wq, block);
441 }
442
443
444 /**
445  * Add Copy nodes for not fulfilled should_be_equal constraints
446  */
447 void ia32_finish_irg(ir_graph *irg)
448 {
449         waitq *wq = new_waitq();
450
451         /* Push the blocks on the waitq because ia32_finish_irg_walker starts more walks ... */
452         irg_block_walk_graph(irg, NULL, ia32_push_on_queue_walker, wq);
453
454         while (! waitq_empty(wq)) {
455                 ir_node *block = (ir_node*)waitq_get(wq);
456                 ia32_finish_irg_walker(block, NULL);
457         }
458         del_waitq(wq);
459 }
460
461 void ia32_init_finish(void)
462 {
463         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.finish");
464 }