generalize bittest pattern
[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 *dbg;
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    = new_r_NoMem(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_irn_get_register(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         dbg   = 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(dbg, 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(dbg, block, noreg, noreg, nomem, res, in1);
110                 set_ia32_ls_mode(res, get_ia32_ls_mode(irn));
111
112                 /* exchange the add and the sub */
113                 edges_reroute(irn, res, irg);
114
115                 /* add to schedule */
116                 sched_add_before(irn, res);
117         } else {
118                 ir_node         *res_proj   = NULL;
119                 ir_node         *flags_proj = NULL;
120                 const ir_edge_t *edge;
121
122                 if (get_irn_mode(irn) == mode_T) {
123                         /* collect the Proj uses */
124                         foreach_out_edge(irn, edge) {
125                                 ir_node *proj = get_edge_src_irn(edge);
126                                 long     pn   = get_Proj_proj(proj);
127                                 if (pn == pn_ia32_Sub_res) {
128                                         assert(res_proj == NULL);
129                                         res_proj = proj;
130                                 } else {
131                                         assert(pn == pn_ia32_Sub_flags);
132                                         assert(flags_proj == NULL);
133                                         flags_proj = proj;
134                                 }
135                         }
136                 }
137
138                 if (flags_proj == NULL) {
139                         res = new_bd_ia32_Neg(dbg, block, in2);
140                         arch_set_irn_register(res, in2_reg);
141
142                         /* add to schedule */
143                         sched_add_before(irn, res);
144
145                         /* generate the add */
146                         res = new_bd_ia32_Add(dbg, block, noreg, noreg, nomem, res, in1);
147                         arch_set_irn_register(res, out_reg);
148                         set_ia32_commutative(res);
149
150                         /* exchange the add and the sub */
151                         edges_reroute(irn, res, irg);
152
153                         /* add to schedule */
154                         sched_add_before(irn, res);
155                 } else {
156                         ir_node *stc, *cmc, *nnot, *adc;
157                         ir_node *adc_flags;
158
159                         /*
160                          * ARG, the above technique does NOT set the flags right.
161                          * So, we must produce the following code:
162                          * t1 = ~b
163                          * t2 = a + ~b + Carry
164                          * Complement Carry
165                          *
166                          * a + -b = a + (~b + 1)  would set the carry flag IF a == b ...
167                          */
168                         nnot = new_bd_ia32_Not(dbg, block, in2);
169                         arch_set_irn_register(nnot, in2_reg);
170                         sched_add_before(irn, nnot);
171
172                         stc = new_bd_ia32_Stc(dbg, block);
173                         arch_set_irn_register(stc, &ia32_registers[REG_EFLAGS]);
174                         sched_add_before(irn, stc);
175
176                         adc = new_bd_ia32_Adc(dbg, block, noreg, noreg, nomem, nnot, in1, stc);
177                         arch_set_irn_register(adc, out_reg);
178                         sched_add_before(irn, adc);
179
180                         set_irn_mode(adc, mode_T);
181                         adc_flags = new_r_Proj(adc, mode_Iu, pn_ia32_Adc_flags);
182                         arch_set_irn_register(adc_flags, &ia32_registers[REG_EFLAGS]);
183
184                         cmc = new_bd_ia32_Cmc(dbg, block, adc_flags);
185                         arch_set_irn_register(cmc, &ia32_registers[REG_EFLAGS]);
186                         sched_add_before(irn, cmc);
187
188                         exchange(flags_proj, cmc);
189                         if (res_proj != NULL) {
190                                 set_Proj_pred(res_proj, adc);
191                                 set_Proj_proj(res_proj, pn_ia32_Adc_res);
192                         }
193
194                         res = adc;
195                 }
196         }
197
198         set_irn_mode(res, get_irn_mode(irn));
199
200         SET_IA32_ORIG_NODE(res, irn);
201
202         /* remove the old sub */
203         sched_remove(irn);
204         kill_node(irn);
205
206         DBG_OPT_SUB2NEGADD(irn, res);
207 }
208
209 static inline int need_constraint_copy(ir_node *irn)
210 {
211         /* TODO this should be determined from the node specification */
212         switch (get_ia32_irn_opcode(irn)) {
213                 case iro_ia32_IMul: {
214                         /* the 3 operand form of IMul needs no constraint copy */
215                         ir_node *right = get_irn_n(irn, n_ia32_IMul_right);
216                         return !is_ia32_Immediate(right);
217                 }
218
219                 case iro_ia32_Lea:
220                 case iro_ia32_Conv_I2I:
221                 case iro_ia32_Conv_I2I8Bit:
222                 case iro_ia32_CMovcc:
223                         return 0;
224
225                 default:
226                         return 1;
227         }
228 }
229
230 /**
231  * Returns the index of the "same" register.
232  * On the x86, we should have only one.
233  */
234 static int get_first_same(const arch_register_req_t* req)
235 {
236         const unsigned other = req->other_same;
237         int i;
238
239         for (i = 0; i < 32; ++i) {
240                 if (other & (1U << i)) return i;
241         }
242         panic("same position not found");
243 }
244
245 /**
246  * Insert copies for all ia32 nodes where the should_be_same requirement
247  * is not fulfilled.
248  * Transform Sub into Neg -- Add if IN2 == OUT
249  */
250 static void assure_should_be_same_requirements(ir_node *node)
251 {
252         const arch_register_t      *out_reg, *in_reg;
253         int                         n_res, i;
254         ir_node                    *in_node, *block;
255
256         n_res = arch_irn_get_n_outs(node);
257         block = get_nodes_block(node);
258
259         /* check all OUT requirements, if there is a should_be_same */
260         for (i = 0; i < n_res; i++) {
261                 int                          i2, arity;
262                 int                          same_pos;
263                 ir_node                     *perm;
264                 ir_node                     *in[2];
265                 ir_node                     *perm_proj0;
266                 ir_node                     *perm_proj1;
267                 ir_node                     *uses_out_reg;
268                 const arch_register_req_t   *req = arch_get_out_register_req(node, i);
269                 const arch_register_class_t *cls;
270                 int                         uses_out_reg_pos;
271
272                 if (!arch_register_req_is(req, should_be_same))
273                         continue;
274
275                 same_pos = get_first_same(req);
276
277                 /* get in and out register */
278                 out_reg = arch_irn_get_register(node, i);
279                 in_node = get_irn_n(node, same_pos);
280                 in_reg  = arch_get_irn_register(in_node);
281
282                 /* requirement already fulfilled? */
283                 if (in_reg == out_reg)
284                         continue;
285                 cls = arch_register_get_class(in_reg);
286                 assert(cls == arch_register_get_class(out_reg));
287
288                 /* check if any other input operands uses the out register */
289                 arity = get_irn_arity(node);
290                 uses_out_reg     = NULL;
291                 uses_out_reg_pos = -1;
292                 for (i2 = 0; i2 < arity; ++i2) {
293                         ir_node               *in     = get_irn_n(node, i2);
294                         const arch_register_t *in_reg;
295
296                         if (!mode_is_data(get_irn_mode(in)))
297                                 continue;
298
299                         in_reg = arch_get_irn_register(in);
300
301                         if (in_reg != out_reg)
302                                 continue;
303
304                         if (uses_out_reg != NULL && in != uses_out_reg) {
305                                 panic("invalid register allocation");
306                         }
307                         uses_out_reg = in;
308                         if (uses_out_reg_pos >= 0)
309                                 uses_out_reg_pos = -1; /* multiple inputs... */
310                         else
311                                 uses_out_reg_pos = i2;
312                 }
313
314                 /* no-one else is using the out reg, we can simply copy it
315                  * (the register can't be live since the operation will override it
316                  *  anyway) */
317                 if (uses_out_reg == NULL) {
318                         ir_node *copy = be_new_Copy(cls, block, in_node);
319                         DBG_OPT_2ADDRCPY(copy);
320
321                         /* destination is the out register */
322                         arch_set_irn_register(copy, out_reg);
323
324                         /* insert copy before the node into the schedule */
325                         sched_add_before(node, copy);
326
327                         /* set copy as in */
328                         set_irn_n(node, same_pos, copy);
329
330                         DBG((dbg, LEVEL_1,
331                                 "created copy %+F for should be same argument at input %d of %+F\n",
332                                 copy, same_pos, node));
333                         continue;
334                 }
335
336                 /* for commutative nodes we can simply swap the left/right */
337                 if (uses_out_reg_pos == n_ia32_binary_right && is_ia32_commutative(node)) {
338                         ia32_swap_left_right(node);
339                         DBG((dbg, LEVEL_1,
340                                 "swapped left/right input of %+F to resolve should be same constraint\n",
341                                 node));
342                         continue;
343                 }
344
345 #ifdef DEBUG_libfirm
346                 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);
347 #endif
348                 /* the out reg is used as node input: we need to permutate our input
349                  * and the other (this is allowed, since the other node can't be live
350                  * after! the operation as we will override the register. */
351                 in[0] = in_node;
352                 in[1] = uses_out_reg;
353                 perm  = be_new_Perm(cls, block, 2, in);
354
355                 perm_proj0 = new_r_Proj(perm, get_irn_mode(in[0]), 0);
356                 perm_proj1 = new_r_Proj(perm, get_irn_mode(in[1]), 1);
357
358                 arch_set_irn_register(perm_proj0, out_reg);
359                 arch_set_irn_register(perm_proj1, in_reg);
360
361                 sched_add_before(node, perm);
362
363                 DBG((dbg, LEVEL_1,
364                         "created perm %+F for should be same argument at input %d of %+F (need permutate with %+F)\n",
365                         perm, same_pos, node, uses_out_reg));
366
367                 /* use the perm results */
368                 for (i2 = 0; i2 < arity; ++i2) {
369                         ir_node *in = get_irn_n(node, i2);
370
371                         if (in == in_node) {
372                                 set_irn_n(node, i2, perm_proj0);
373                         } else if (in == uses_out_reg) {
374                                 set_irn_n(node, i2, perm_proj1);
375                         }
376                 }
377         }
378 }
379
380 /**
381  * Following Problem:
382  * We have a source address mode node with base or index register equal to
383  * result register and unfulfilled should_be_same requirement. The constraint
384  * handler will insert a copy from the remaining input operand to the result
385  * register -> base or index is broken then.
386  * Solution: Turn back this address mode into explicit Load + Operation.
387  */
388 static void fix_am_source(ir_node *irn)
389 {
390         int                         n_res, i;
391
392         /* check only ia32 nodes with source address mode */
393         if (!is_ia32_irn(irn) || get_ia32_op_type(irn) != ia32_AddrModeS)
394                 return;
395         /* only need to fix binary operations */
396         if (get_ia32_am_support(irn) != ia32_am_binary)
397                 return;
398
399         n_res = arch_irn_get_n_outs(irn);
400
401         for (i = 0; i < n_res; i++) {
402                 const arch_register_req_t *req = arch_get_out_register_req(irn, i);
403                 const arch_register_t     *out_reg;
404                 int                        same_pos;
405                 ir_node                   *same_node;
406                 const arch_register_t     *same_reg;
407                 ir_node                   *load_res;
408
409                 if (!arch_register_req_is(req, should_be_same))
410                         continue;
411
412                 /* get in and out register */
413                 out_reg   = arch_irn_get_register(irn, i);
414                 same_pos  = get_first_same(req);
415                 same_node = get_irn_n(irn, same_pos);
416                 same_reg  = arch_get_irn_register(same_node);
417
418                 /* should_be same constraint is fullfilled, nothing to do */
419                 if (out_reg == same_reg)
420                         continue;
421
422                 /* we only need to do something if the out reg is the same as base
423                          or index register */
424                 if (out_reg != arch_get_irn_register(get_irn_n(irn, n_ia32_base)) &&
425                                 out_reg != arch_get_irn_register(get_irn_n(irn, n_ia32_index)))
426                         continue;
427
428                 load_res = ia32_turn_back_am(irn);
429                 arch_set_irn_register(load_res, out_reg);
430
431                 DBG((dbg, LEVEL_3,
432                         "irg %+F: build back AM source for node %+F, inserted load %+F\n",
433                         get_irn_irg(irn), irn, get_Proj_pred(load_res)));
434                 break;
435         }
436 }
437
438 /**
439  * Block walker: finishes a block
440  */
441 static void ia32_finish_irg_walker(ir_node *block, void *env)
442 {
443         ir_node *irn, *next;
444         (void) env;
445
446         /* first: turn back AM source if necessary */
447         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
448                 next = sched_next(irn);
449                 fix_am_source(irn);
450         }
451
452         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
453                 next = sched_next(irn);
454
455                 /* check if there is a sub which need to be transformed */
456                 if (is_ia32_Sub(irn) || is_ia32_xSub(irn)) {
457                         ia32_transform_sub_to_neg_add(irn);
458                 }
459         }
460
461         /* second: insert copies and finish irg */
462         for (irn = sched_first(block); ! sched_is_end(irn); irn = next) {
463                 next = sched_next(irn);
464                 if (is_ia32_irn(irn)) {
465                         /* some nodes are just a bit less efficient, but need no fixing if the
466                          * should be same requirement is not fulfilled */
467                         if (need_constraint_copy(irn))
468                                 assure_should_be_same_requirements(irn);
469                 }
470         }
471 }
472
473 /**
474  * Block walker: pushes all blocks on a wait queue
475  */
476 static void ia32_push_on_queue_walker(ir_node *block, void *env)
477 {
478         waitq *wq = (waitq*)env;
479         waitq_put(wq, block);
480 }
481
482
483 /**
484  * Add Copy nodes for not fulfilled should_be_equal constraints
485  */
486 void ia32_finish_irg(ir_graph *irg)
487 {
488         waitq *wq = new_waitq();
489
490         /* Push the blocks on the waitq because ia32_finish_irg_walker starts more walks ... */
491         irg_block_walk_graph(irg, NULL, ia32_push_on_queue_walker, wq);
492
493         while (! waitq_empty(wq)) {
494                 ir_node *block = (ir_node*)waitq_get(wq);
495                 ia32_finish_irg_walker(block, NULL);
496         }
497         del_waitq(wq);
498 }
499
500 void ia32_init_finish(void)
501 {
502         FIRM_DBG_REGISTER(dbg, "firm.be.ia32.finish");
503 }