a3b7413aa8d4390668557b35df7b9323368009b6
[libfirm] / ir / ir / irarch.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   Machine dependent Firm optimizations.
23  * @date    28.9.2004
24  * @author  Sebastian Hack, Michael Beck
25  * @version $Id$
26  *
27  * Implements "Strenght Reduction of Multiplications by Integer Constants" by Youfeng Wu.
28  * Implements Division and Modulo by Consts from "Hackers Delight",
29  */
30 #include "config.h"
31
32 #ifdef HAVE_STDLIB_H
33 # include <stdlib.h>
34 #endif
35
36 #include <assert.h>
37
38 #include "irnode_t.h"
39 #include "irgraph_t.h"
40 #include "irmode_t.h"
41 #include "iropt_t.h"
42 #include "ircons_t.h"
43 #include "irgmod.h"
44 #include "irvrfy.h"
45 #include "tv_t.h"
46 #include "dbginfo_t.h"
47 #include "iropt_dbg.h"
48 #include "irflag_t.h"
49 #include "irhooks.h"
50 #include "ircons.h"
51 #include "irarch.h"
52 #include "irflag.h"
53 #include "error.h"
54
55 #undef DEB
56
57 #define MAX_BITSTR 64
58
59 /* when we need verifying */
60 #ifdef NDEBUG
61 # define IRN_VRFY_IRG(res, irg)
62 #else
63 # define IRN_VRFY_IRG(res, irg)  irn_vrfy_irg(res, irg)
64 #endif
65
66 /** The params got from the factory in arch_dep_init(...). */
67 static const ir_settings_arch_dep_t *params = NULL;
68
69 /** The bit mask, which optimizations to apply. */
70 static arch_dep_opts_t opts;
71
72 void arch_dep_init(arch_dep_params_factory_t factory) {
73         opts = arch_dep_none;
74
75         if (factory != NULL)
76                 params = factory();
77 }
78
79 void arch_dep_set_opts(arch_dep_opts_t the_opts) {
80         opts = the_opts;
81 }
82
83 /** check, whether a mode allows a Mulh instruction. */
84 static int allow_Mulh(ir_mode *mode) {
85         if (get_mode_size_bits(mode) > params->max_bits_for_mulh)
86                 return 0;
87         return (mode_is_signed(mode) && params->allow_mulhs) || (!mode_is_signed(mode) && params->allow_mulhu);
88 }
89
90 /**
91  * An instruction,
92  */
93 typedef struct instruction instruction;
94 struct instruction {
95         insn_kind   kind;        /**< the instruction kind */
96         instruction *in[2];      /**< the ins */
97         unsigned    shift_count; /**< shift count for LEA and SHIFT */
98         ir_node     *irn;        /**< the generated node for this instruction if any. */
99         int         costs;       /**< the costs for this instruction */
100 };
101
102 /**
103  * The environment for the strength reduction of multiplications.
104  */
105 typedef struct _mul_env {
106         struct obstack obst;       /**< an obstack for local space. */
107         ir_mode        *mode;      /**< the mode of the multiplication constant */
108         unsigned       bits;       /**< number of bits in the mode */
109         unsigned       max_S;      /**< the maximum LEA shift value. */
110         instruction    *root;      /**< the root of the instruction tree */
111         ir_node        *op;        /**< the operand that is multiplied */
112         ir_node        *blk;       /**< the block where the new graph is built */
113         dbg_info       *dbg;       /**< the debug info for the new graph. */
114         ir_mode        *shf_mode;  /**< the (unsigned) mode for the shift constants */
115         int            fail;       /**< set to 1 if the instruction sequence fails the constraints */
116         int            n_shift;    /**< maximum number of allowed shift instructions */
117
118         evaluate_costs_func evaluate;  /**< the evaluate callback */
119 } mul_env;
120
121 /**
122  * Some kind of default evaluator. Return the cost of
123  * instructions.
124  */
125 static int default_evaluate(insn_kind kind, tarval *tv) {
126         (void) tv;
127
128         if (kind == MUL)
129                 return 13;
130         return 1;
131 }
132
133 /**
134  * emit a LEA (or an Add) instruction
135  */
136 static instruction *emit_LEA(mul_env *env, instruction *a, instruction *b, unsigned shift) {
137         instruction *res = obstack_alloc(&env->obst, sizeof(*res));
138         res->kind = shift > 0 ? LEA : ADD;
139         res->in[0] = a;
140         res->in[1] = b;
141         res->shift_count = shift;
142         res->irn = NULL;
143         res->costs = -1;
144         return res;
145 }
146
147 /**
148  * emit a SHIFT (or an Add or a Zero) instruction
149  */
150 static instruction *emit_SHIFT(mul_env *env, instruction *a, unsigned shift) {
151         instruction *res = obstack_alloc(&env->obst, sizeof(*res));
152         if (shift == env->bits) {
153                 /* a 2^bits with bits resolution is a zero */
154                 res->kind = ZERO;
155                 res->in[0] = NULL;
156                 res->in[1] = NULL;
157                 res->shift_count = 0;
158         } else if (shift != 1) {
159                 res->kind = SHIFT;
160                 res->in[0] = a;
161                 res->in[1] = NULL;
162                 res->shift_count = shift;
163         } else {
164                 res->kind = ADD;
165                 res->in[0] = a;
166                 res->in[1] = a;
167                 res->shift_count = 0;
168         }
169         res->irn = NULL;
170         res->costs = -1;
171         return res;
172 }
173
174 /**
175  * emit a SUB instruction
176  */
177 static instruction *emit_SUB(mul_env *env, instruction *a, instruction *b) {
178         instruction *res = obstack_alloc(&env->obst, sizeof(*res));
179         res->kind = SUB;
180         res->in[0] = a;
181         res->in[1] = b;
182         res->shift_count = 0;
183         res->irn = NULL;
184         res->costs = -1;
185         return res;
186 }
187
188 /**
189  * emit the ROOT instruction
190  */
191 static instruction *emit_ROOT(mul_env *env, ir_node *root_op) {
192         instruction *res = obstack_alloc(&env->obst, sizeof(*res));
193         res->kind = ROOT;
194         res->in[0] = NULL;
195         res->in[1] = NULL;
196         res->shift_count = 0;
197         res->irn = root_op;
198         res->costs = 0;
199         return res;
200 }
201
202
203 /**
204  * Returns the condensed representation of the tarval tv
205  */
206 static unsigned char *value_to_condensed(mul_env *env, tarval *tv, int *pr) {
207         ir_mode *mode = get_tarval_mode(tv);
208         int     bits = get_mode_size_bits(mode);
209         char    *bitstr = get_tarval_bitpattern(tv);
210         int     i, l, r;
211         unsigned char *R = obstack_alloc(&env->obst, bits);
212
213         l = r = 0;
214         for (i = 0; bitstr[i] != '\0'; ++i) {
215                 if (bitstr[i] == '1') {
216                         R[r] = i - l;
217                         l = i;
218                         ++r;
219                 }
220         }
221         free(bitstr);
222
223         *pr = r;
224         return R;
225 }
226
227 /**
228  * Calculate the gain when using the generalized complementary technique
229  */
230 static int calculate_gain(unsigned char *R, int r) {
231         int max_gain = 0;
232         int idx = -1, i;
233         int gain;
234
235         /* the gain for r == 1 */
236         gain = 2 - 3 - R[0];
237         for (i = 2; i < r; ++i) {
238                 /* calculate the gain for r from the gain for r-1 */
239                 gain += 2 - R[i - 1];
240
241                 if (gain > max_gain) {
242                         max_gain = gain;
243                         idx = i;
244                 }
245         }
246         return idx;
247 }
248
249 /**
250  * Calculates the condensed complement of a given (R,r) tuple
251  */
252 static unsigned char *complement_condensed(mul_env *env, unsigned char *R, int r, int gain, int *prs) {
253         unsigned char *value = obstack_alloc(&env->obst, env->bits);
254         int i, l, j;
255         unsigned char c;
256
257         memset(value, 0, env->bits);
258
259         j = 0;
260         for (i = 0; i < gain; ++i) {
261                 j += R[i];
262                 value[j] = 1;
263         }
264
265         /* negate and propagate 1 */
266         c = 1;
267         for (i = 0; i <= j; ++i) {
268                 unsigned char v = !value[i];
269
270                 value[i] = v ^ c;
271                 c = v & c;
272         }
273
274         /* condense it again */
275         l = r = 0;
276         R = value;
277         for (i = 0; i <= j; ++i) {
278                 if (value[i] == 1) {
279                         R[r] = i - l;
280                         l = i;
281                         ++r;
282                 }
283         }
284
285         *prs = r;
286         return R;
287 }
288
289 /**
290  * creates a tarval from a condensed representation.
291  */
292 static tarval *condensed_to_value(mul_env *env, unsigned char *R, int r) {
293         tarval *res, *tv;
294         int i, j;
295
296         j = 0;
297         tv = get_mode_one(env->mode);
298         res = NULL;
299         for (i = 0; i < r; ++i) {
300                 j = R[i];
301                 if (j) {
302                         tarval *t = new_tarval_from_long(j, mode_Iu);
303                         tv = tarval_shl(tv, t);
304                 }
305                 res = res ? tarval_add(res, tv) : tv;
306         }
307         return res;
308 }
309
310 /* forward */
311 static instruction *basic_decompose_mul(mul_env *env, unsigned char *R, int r, tarval *N);
312
313 /*
314  * handle simple cases with up-to 2 bits set
315  */
316 static instruction *decompose_simple_cases(mul_env *env, unsigned char *R, int r, tarval *N) {
317         instruction *ins, *ins2;
318
319         (void) N;
320         if (r == 1) {
321                 return emit_SHIFT(env, env->root, R[0]);
322         } else {
323                 assert(r == 2);
324
325                 ins = env->root;
326                 if (R[1] <= env->max_S) {
327                         ins = emit_LEA(env, ins, ins, R[1]);
328                         if (R[0] != 0) {
329                                 ins = emit_SHIFT(env, ins, R[0]);
330                         }
331                         return ins;
332                 }
333                 if (R[0] != 0) {
334                         ins = emit_SHIFT(env, ins, R[0]);
335                 }
336
337                 ins2 = emit_SHIFT(env, env->root, R[0] + R[1]);
338                 return emit_LEA(env, ins, ins2, 0);
339         }
340 }
341
342 /**
343  * Main decompose driver.
344  */
345 static instruction *decompose_mul(mul_env *env, unsigned char *R, int r, tarval *N) {
346         unsigned i;
347         int gain;
348
349         if (r <= 2)
350                 return decompose_simple_cases(env, R, r, N);
351
352         if (params->also_use_subs) {
353                 gain = calculate_gain(R, r);
354                 if (gain > 0) {
355                         instruction *instr1, *instr2;
356                         unsigned char *R1, *R2;
357                         int r1, r2, i, k, j;
358
359                         R1 = complement_condensed(env, R, r, gain, &r1);
360                         r2 = r - gain + 1;
361                         R2 = obstack_alloc(&env->obst, r2);
362
363                         k = 1;
364                         for (i = 0; i < gain; ++i) {
365                                 k += R[i];
366                         }
367                         R2[0] = k;
368                         R2[1] = R[gain] - 1;
369                         j = 2;
370                         if (R2[1] == 0) {
371                                 /* Two identical bits: normalize */
372                                 ++R2[0];
373                                 --j;
374                                 --r2;
375                         }
376                         for (i = gain + 1; i < r; ++i) {
377                                 R2[j++] = R[i];
378                         }
379
380                         instr1 = decompose_mul(env, R1, r1, NULL);
381                         instr2 = decompose_mul(env, R2, r2, NULL);
382                         return emit_SUB(env, instr2, instr1);
383                 }
384         }
385
386         if (N == NULL)
387                 N = condensed_to_value(env, R, r);
388
389         for (i = env->max_S; i > 0; --i) {
390                 tarval *div_res, *mod_res;
391                 tarval *tv = new_tarval_from_long((1 << i) + 1, env->mode);
392
393                 div_res = tarval_divmod(N, tv, &mod_res);
394                 if (mod_res == get_mode_null(env->mode)) {
395                         unsigned char *Rs;
396                         int rs;
397
398                         Rs = value_to_condensed(env, div_res, &rs);
399                         if (rs < r) {
400                                 instruction *N1 = decompose_mul(env, Rs, rs, div_res);
401                                 return emit_LEA(env, N1, N1, i);
402                         }
403                 }
404         }
405         return basic_decompose_mul(env, R, r, N);
406 }
407
408 #define IMAX(a,b) ((a) > (b) ? (a) : (b))
409
410 /**
411  * basic decomposition routine
412  */
413 static instruction *basic_decompose_mul(mul_env *env, unsigned char *R, int r, tarval *N) {
414         instruction *Ns;
415         unsigned t;
416
417         if (R[0] == 0) {                                        /* Case 1 */
418                 t = R[1] > IMAX(env->max_S, R[1]);
419                 R[1] -= t;
420                 Ns = decompose_mul(env, &R[1], r - 1, N);
421                 return emit_LEA(env, env->root, Ns, t);
422         } else if (R[0] <= env->max_S) {        /* Case 2 */
423                 t = R[0];
424                 R[1] += t;
425                 Ns = decompose_mul(env, &R[1], r - 1, N);
426                 return emit_LEA(env, Ns, env->root, t);
427         } else {
428                 t = R[0];
429                 R[0] = 0;
430                 Ns = decompose_mul(env, R, r, N);
431                 return emit_SHIFT(env, Ns, t);
432         }
433 }
434
435 /**
436  * recursive build the graph form the instructions.
437  *
438  * @param env   the environment
439  * @param inst  the instruction
440  */
441 static ir_node *build_graph(mul_env *env, instruction *inst) {
442         ir_node *l, *r, *c;
443
444         if (inst->irn)
445                 return inst->irn;
446
447         switch (inst->kind) {
448         case LEA:
449                 l = build_graph(env, inst->in[0]);
450                 r = build_graph(env, inst->in[1]);
451                 c = new_Const_long(env->shf_mode, inst->shift_count);
452                 r = new_rd_Shl(env->dbg, current_ir_graph, env->blk, r, c, env->mode);
453                 return inst->irn = new_rd_Add(env->dbg, current_ir_graph, env->blk, l, r, env->mode);
454         case SHIFT:
455                 l = build_graph(env, inst->in[0]);
456                 c = new_Const_long(env->shf_mode, inst->shift_count);
457                 return inst->irn = new_rd_Shl(env->dbg, current_ir_graph, env->blk, l, c, env->mode);
458         case SUB:
459                 l = build_graph(env, inst->in[0]);
460                 r = build_graph(env, inst->in[1]);
461                 return inst->irn = new_rd_Sub(env->dbg, current_ir_graph, env->blk, l, r, env->mode);
462         case ADD:
463                 l = build_graph(env, inst->in[0]);
464                 r = build_graph(env, inst->in[1]);
465                 return inst->irn = new_rd_Add(env->dbg, current_ir_graph, env->blk, l, r, env->mode);
466         case ZERO:
467                 return inst->irn = new_Const(get_mode_null(env->mode));
468         default:
469                 panic("Unsupported instruction kind");
470                 return NULL;
471         }
472 }
473
474 /**
475  * Calculate the costs for the given instruction sequence.
476  * Note that additional costs due to higher register pressure are NOT evaluated yet
477  */
478 static int evaluate_insn(mul_env *env, instruction *inst) {
479         int costs;
480
481         if (inst->costs >= 0) {
482                 /* was already evaluated */
483                 return 0;
484         }
485
486         switch (inst->kind) {
487         case LEA:
488         case SUB:
489         case ADD:
490                 costs  = evaluate_insn(env, inst->in[0]);
491                 costs += evaluate_insn(env, inst->in[1]);
492                 costs += env->evaluate(inst->kind, NULL);
493                 inst->costs = costs;
494                 return costs;
495         case SHIFT:
496                 if (inst->shift_count > params->highest_shift_amount)
497                         env->fail = 1;
498                 if (env->n_shift <= 0)
499                         env->fail = 1;
500                 else
501                         --env->n_shift;
502                 costs  = evaluate_insn(env, inst->in[0]);
503                 costs += env->evaluate(inst->kind, NULL);
504                 inst->costs = costs;
505                 return costs;
506         case ZERO:
507                 inst->costs = costs = env->evaluate(inst->kind, NULL);
508                 return costs;
509         case MUL:
510         case ROOT:
511                 break;
512         }
513         panic("Unsupported instruction kind");
514 }
515
516 /**
517  * Evaluate the replacement instructions and build a new graph
518  * if faster than the Mul.
519  * Returns the root of the new graph then or irn otherwise.
520  *
521  * @param irn      the Mul operation
522  * @param operand  the multiplication operand
523  * @param tv       the multiplication constant
524  *
525  * @return the new graph
526  */
527 static ir_node *do_decomposition(ir_node *irn, ir_node *operand, tarval *tv) {
528         mul_env       env;
529         instruction   *inst;
530         unsigned char *R;
531         int           r;
532         ir_node       *res = irn;
533         int           mul_costs;
534
535         obstack_init(&env.obst);
536         env.mode     = get_tarval_mode(tv);
537         env.bits     = (unsigned)get_mode_size_bits(env.mode);
538         env.max_S    = 3;
539         env.root     = emit_ROOT(&env, operand);
540         env.fail     = 0;
541         env.n_shift  = params->maximum_shifts;
542         env.evaluate = params->evaluate != NULL ? params->evaluate : default_evaluate;
543
544         R = value_to_condensed(&env, tv, &r);
545         inst = decompose_mul(&env, R, r, tv);
546
547         /* the paper suggests 70% here */
548         mul_costs = (env.evaluate(MUL, tv) * 7 + 5) / 10;
549         if (evaluate_insn(&env, inst) <= mul_costs && !env.fail) {
550                 env.op       = operand;
551                 env.blk      = get_nodes_block(irn);
552                 env.dbg      = get_irn_dbg_info(irn);
553                 env.shf_mode = find_unsigned_mode(env.mode);
554                 if (env.shf_mode == NULL)
555                         env.shf_mode = mode_Iu;
556
557                 res = build_graph(&env, inst);
558         }
559         obstack_free(&env.obst, NULL);
560         return res;
561 }
562
563 /* Replace Muls with Shifts and Add/Subs. */
564 ir_node *arch_dep_replace_mul_with_shifts(ir_node *irn) {
565         ir_node *res = irn;
566         ir_mode *mode = get_irn_mode(irn);
567
568         /* If the architecture dependent optimizations were not initialized
569            or this optimization was not enabled. */
570         if (params == NULL || (opts & arch_dep_mul_to_shift) == 0)
571                 return irn;
572
573         set_arch_dep_running(1);
574         {
575                 if (is_Mul(irn) && mode_is_int(mode)) {
576                         ir_node *left    = get_binop_left(irn);
577                         ir_node *right   = get_binop_right(irn);
578                         tarval *tv       = NULL;
579                         ir_node *operand = NULL;
580
581                         /* Look, if one operand is a constant. */
582                         if (is_Const(left)) {
583                                 tv = get_Const_tarval(left);
584                                 operand = right;
585                         } else if (is_Const(right)) {
586                                 tv = get_Const_tarval(right);
587                                 operand = left;
588                         }
589
590                         if (tv != NULL) {
591                                 res = do_decomposition(irn, operand, tv);
592
593                                 if (res != irn) {
594                                         hook_arch_dep_replace_mul_with_shifts(irn);
595                                         exchange(irn, res);
596                                 }
597                         }
598                 }
599         }
600         //set_arch_dep_running(0);
601
602         return res;
603 }
604
605 /**
606  * calculated the ld2 of a tarval if tarval is 2^n, else returns -1.
607  */
608 static int tv_ld2(tarval *tv, int bits) {
609         int i, k = 0, num;
610
611         for (num = i = 0; i < bits; ++i) {
612                 unsigned char v = get_tarval_sub_bits(tv, i);
613
614                 if (v) {
615                         int j;
616
617                         for (j = 0; j < 8; ++j)
618                                 if ((1 << j) & v) {
619                                         ++num;
620                                         k = 8 * i + j;
621                                 }
622                 }
623         }
624         if (num == 1)
625                 return k;
626         return -1;
627 }
628
629
630 /* for shorter lines */
631 #define ABS(a)    tarval_abs(a)
632 #define NEG(a)    tarval_neg(a)
633 #define NOT(a)    tarval_not(a)
634 #define SHL(a, b) tarval_shl(a, b)
635 #define SHR(a, b) tarval_shr(a, b)
636 #define ADD(a, b) tarval_add(a, b)
637 #define SUB(a, b) tarval_sub(a, b, NULL)
638 #define MUL(a, b) tarval_mul(a, b)
639 #define DIV(a, b) tarval_div(a, b)
640 #define MOD(a, b) tarval_mod(a, b)
641 #define CMP(a, b) tarval_cmp(a, b)
642 #define CNV(a, m) tarval_convert_to(a, m)
643 #define ONE(m)    get_mode_one(m)
644 #define ZERO(m)   get_mode_null(m)
645
646 /** The result of a the magic() function. */
647 struct ms {
648         tarval *M;        /**< magic number */
649         int s;            /**< shift amount */
650         int need_add;     /**< an additional add is needed */
651         int need_sub;     /**< an additional sub is needed */
652 };
653
654 /**
655  * Signed division by constant d: calculate the Magic multiplier M and the shift amount s
656  *
657  * see Hacker's Delight: 10-6 Integer Division by Constants: Incorporation into a Compiler
658  */
659 static struct ms magic(tarval *d) {
660         ir_mode *mode   = get_tarval_mode(d);
661         ir_mode *u_mode = find_unsigned_mode(mode);
662         int bits        = get_mode_size_bits(u_mode);
663         int p;
664         tarval *ad, *anc, *delta, *q1, *r1, *q2, *r2, *t;     /* unsigned */
665         pn_Cmp d_cmp, M_cmp;
666
667         tarval *bits_minus_1, *two_bits_1;
668
669         struct ms mag;
670
671         tarval_int_overflow_mode_t rem = tarval_get_integer_overflow_mode();
672
673         /* we need overflow mode to work correctly */
674         tarval_set_integer_overflow_mode(TV_OVERFLOW_WRAP);
675
676         /* 2^(bits-1) */
677         bits_minus_1 = new_tarval_from_long(bits - 1, u_mode);
678         two_bits_1   = SHL(get_mode_one(u_mode), bits_minus_1);
679
680         ad  = CNV(ABS(d), u_mode);
681         t   = ADD(two_bits_1, SHR(CNV(d, u_mode), bits_minus_1));
682         anc = SUB(SUB(t, ONE(u_mode)), MOD(t, ad));   /* Absolute value of nc */
683         p   = bits - 1;                               /* Init: p */
684         q1  = DIV(two_bits_1, anc);                   /* Init: q1 = 2^p/|nc| */
685         r1  = SUB(two_bits_1, MUL(q1, anc));          /* Init: r1 = rem(2^p, |nc|) */
686         q2  = DIV(two_bits_1, ad);                    /* Init: q2 = 2^p/|d| */
687         r2  = SUB(two_bits_1, MUL(q2, ad));           /* Init: r2 = rem(2^p, |d|) */
688
689         do {
690                 ++p;
691                 q1 = ADD(q1, q1);                           /* Update q1 = 2^p/|nc| */
692                 r1 = ADD(r1, r1);                           /* Update r1 = rem(2^p, |nc|) */
693
694                 if (CMP(r1, anc) & pn_Cmp_Ge) {
695                         q1 = ADD(q1, ONE(u_mode));
696                         r1 = SUB(r1, anc);
697                 }
698
699                 q2 = ADD(q2, q2);                           /* Update q2 = 2^p/|d| */
700                 r2 = ADD(r2, r2);                           /* Update r2 = rem(2^p, |d|) */
701
702                 if (CMP(r2, ad) & pn_Cmp_Ge) {
703                         q2 = ADD(q2, ONE(u_mode));
704                         r2 = SUB(r2, ad);
705                 }
706
707                 delta = SUB(ad, r2);
708         } while (CMP(q1, delta) & pn_Cmp_Lt || (CMP(q1, delta) & pn_Cmp_Eq && CMP(r1, ZERO(u_mode)) & pn_Cmp_Eq));
709
710         d_cmp = CMP(d, ZERO(mode));
711
712         if (d_cmp & pn_Cmp_Ge)
713                 mag.M = ADD(CNV(q2, mode), ONE(mode));
714         else
715                 mag.M = SUB(ZERO(mode), ADD(CNV(q2, mode), ONE(mode)));
716
717         M_cmp = CMP(mag.M, ZERO(mode));
718
719         mag.s = p - bits;
720
721         /* need an add if d > 0 && M < 0 */
722         mag.need_add = d_cmp & pn_Cmp_Gt && M_cmp & pn_Cmp_Lt;
723
724         /* need a sub if d < 0 && M > 0 */
725         mag.need_sub = d_cmp & pn_Cmp_Lt && M_cmp & pn_Cmp_Gt;
726
727         tarval_set_integer_overflow_mode(rem);
728
729         return mag;
730 }
731
732 /** The result of the magicu() function. */
733 struct mu {
734         tarval *M;        /**< magic add constant */
735         int s;            /**< shift amount */
736         int need_add;     /**< add indicator */
737 };
738
739 /**
740  * Unsigned division by constant d: calculate the Magic multiplier M and the shift amount s
741  *
742  * see Hacker's Delight: 10-10 Integer Division by Constants: Incorporation into a Compiler (Unsigned)
743  */
744 static struct mu magicu(tarval *d) {
745         ir_mode *mode   = get_tarval_mode(d);
746         int bits        = get_mode_size_bits(mode);
747         int p;
748         tarval *nc, *delta, *q1, *r1, *q2, *r2;
749         tarval *bits_minus_1, *two_bits_1, *seven_ff;
750
751         struct mu magu;
752
753         tarval_int_overflow_mode_t rem = tarval_get_integer_overflow_mode();
754
755         /* we need overflow mode to work correctly */
756         tarval_set_integer_overflow_mode(TV_OVERFLOW_WRAP);
757
758         bits_minus_1 = new_tarval_from_long(bits - 1, mode);
759         two_bits_1   = SHL(get_mode_one(mode), bits_minus_1);
760         seven_ff     = SUB(two_bits_1, ONE(mode));
761
762         magu.need_add = 0;                            /* initialize the add indicator */
763         nc = SUB(NEG(ONE(mode)), MOD(NEG(d), d));
764         p  = bits - 1;                                /* Init: p */
765         q1 = DIV(two_bits_1, nc);                     /* Init: q1 = 2^p/nc */
766         r1 = SUB(two_bits_1, MUL(q1, nc));            /* Init: r1 = rem(2^p, nc) */
767         q2 = DIV(seven_ff, d);                        /* Init: q2 = (2^p - 1)/d */
768         r2 = SUB(seven_ff, MUL(q2, d));               /* Init: r2 = rem(2^p - 1, d) */
769
770         do {
771                 ++p;
772                 if (CMP(r1, SUB(nc, r1)) & pn_Cmp_Ge) {
773                         q1 = ADD(ADD(q1, q1), ONE(mode));
774                         r1 = SUB(ADD(r1, r1), nc);
775                 }
776                 else {
777                         q1 = ADD(q1, q1);
778                         r1 = ADD(r1, r1);
779                 }
780
781                 if (CMP(ADD(r2, ONE(mode)), SUB(d, r2)) & pn_Cmp_Ge) {
782                         if (CMP(q2, seven_ff) & pn_Cmp_Ge)
783                                 magu.need_add = 1;
784
785                         q2 = ADD(ADD(q2, q2), ONE(mode));
786                         r2 = SUB(ADD(ADD(r2, r2), ONE(mode)), d);
787                 }
788                 else {
789                         if (CMP(q2, two_bits_1) & pn_Cmp_Ge)
790                                 magu.need_add = 1;
791
792                         q2 = ADD(q2, q2);
793                         r2 = ADD(ADD(r2, r2), ONE(mode));
794                 }
795                 delta = SUB(SUB(d, ONE(mode)), r2);
796         } while (p < 2*bits &&
797                 (CMP(q1, delta) & pn_Cmp_Lt || (CMP(q1, delta) & pn_Cmp_Eq && CMP(r1, ZERO(mode)) & pn_Cmp_Eq)));
798
799         magu.M = ADD(q2, ONE(mode));                       /* Magic number */
800         magu.s = p - bits;                                 /* and shift amount */
801
802         tarval_set_integer_overflow_mode(rem);
803
804         return magu;
805 }
806
807 /**
808  * Build the Mulh replacement code for n / tv.
809  *
810  * Note that 'div' might be a mod or DivMod operation as well
811  */
812 static ir_node *replace_div_by_mulh(ir_node *div, tarval *tv) {
813         dbg_info *dbg  = get_irn_dbg_info(div);
814         ir_node *n     = get_binop_left(div);
815         ir_node *block = get_irn_n(div, -1);
816         ir_mode *mode  = get_irn_mode(n);
817         int bits       = get_mode_size_bits(mode);
818         ir_node *q, *t, *c;
819
820         /* Beware: do not transform bad code */
821         if (is_Bad(n) || is_Bad(block))
822                 return div;
823
824         if (mode_is_signed(mode)) {
825                 struct ms mag = magic(tv);
826
827                 /* generate the Mulh instruction */
828                 c = new_Const(mag.M);
829                 q = new_rd_Mulh(dbg, current_ir_graph, block, n, c, mode);
830
831                 /* do we need an Add or Sub */
832                 if (mag.need_add)
833                         q = new_rd_Add(dbg, current_ir_graph, block, q, n, mode);
834                 else if (mag.need_sub)
835                         q = new_rd_Sub(dbg, current_ir_graph, block, q, n, mode);
836
837                 /* Do we need the shift */
838                 if (mag.s > 0) {
839                         c = new_Const_long(mode_Iu, mag.s);
840                         q = new_rd_Shrs(dbg, current_ir_graph, block, q, c, mode);
841                 }
842
843                 /* final */
844                 c = new_Const_long(mode_Iu, bits - 1);
845                 t = new_rd_Shr(dbg, current_ir_graph, block, q, c, mode);
846
847                 q = new_rd_Add(dbg, current_ir_graph, block, q, t, mode);
848         } else {
849                 struct mu mag = magicu(tv);
850                 ir_node *c;
851
852                 /* generate the Mulh instruction */
853                 c = new_Const(mag.M);
854                 q = new_rd_Mulh(dbg, current_ir_graph, block, n, c, mode);
855
856                 if (mag.need_add) {
857                         if (mag.s > 0) {
858                                 /* use the GM scheme */
859                                 t = new_rd_Sub(dbg, current_ir_graph, block, n, q, mode);
860
861                                 c = new_Const(get_mode_one(mode_Iu));
862                                 t = new_rd_Shr(dbg, current_ir_graph, block, t, c, mode);
863
864                                 t = new_rd_Add(dbg, current_ir_graph, block, t, q, mode);
865
866                                 c = new_Const_long(mode_Iu, mag.s - 1);
867                                 q = new_rd_Shr(dbg, current_ir_graph, block, t, c, mode);
868                         } else {
869                                 /* use the default scheme */
870                                 q = new_rd_Add(dbg, current_ir_graph, block, q, n, mode);
871                         }
872                 } else if (mag.s > 0) { /* default scheme, shift needed */
873                         c = new_Const_long(mode_Iu, mag.s);
874                         q = new_rd_Shr(dbg, current_ir_graph, block, q, c, mode);
875                 }
876         }
877         return q;
878 }
879
880 /* Replace Divs with Shifts and Add/Subs and Mulh. */
881 ir_node *arch_dep_replace_div_by_const(ir_node *irn) {
882         ir_node *res  = irn;
883
884         /* If the architecture dependent optimizations were not initialized
885         or this optimization was not enabled. */
886         if (params == NULL || (opts & arch_dep_div_by_const) == 0)
887                 return irn;
888
889         if (is_Div(irn)) {
890                 ir_node *c = get_Div_right(irn);
891                 ir_node *block, *left;
892                 ir_mode *mode;
893                 tarval *tv, *ntv;
894                 dbg_info *dbg;
895                 int n, bits;
896                 int k, n_flag;
897
898                 if (! is_Const(c))
899                         return irn;
900
901                 tv = get_Const_tarval(c);
902
903                 /* check for division by zero */
904                 if (tarval_is_null(tv))
905                         return irn;
906
907                 left  = get_Div_left(irn);
908                 mode  = get_irn_mode(left);
909                 block = get_irn_n(irn, -1);
910                 dbg   = get_irn_dbg_info(irn);
911
912                 bits = get_mode_size_bits(mode);
913                 n    = (bits + 7) / 8;
914
915                 k = -1;
916                 if (mode_is_signed(mode)) {
917                         /* for signed divisions, the algorithm works for a / -2^k by negating the result */
918                         ntv = tarval_neg(tv);
919                         n_flag = 1;
920                         k = tv_ld2(ntv, n);
921                 }
922
923                 if (k < 0) {
924                         n_flag = 0;
925                         k = tv_ld2(tv, n);
926                 }
927
928                 if (k >= 0) { /* division by 2^k or -2^k */
929                         if (mode_is_signed(mode)) {
930                                 ir_node *k_node;
931                                 ir_node *curr = left;
932
933                                 /* create the correction code for signed values only if there might be a remainder */
934                                 if (! is_Div_remainderless(irn)) {
935                                         if (k != 1) {
936                                                 k_node = new_Const_long(mode_Iu, k - 1);
937                                                 curr   = new_rd_Shrs(dbg, current_ir_graph, block, left, k_node, mode);
938                                         }
939
940                                         k_node = new_Const_long(mode_Iu, bits - k);
941                                         curr   = new_rd_Shr(dbg, current_ir_graph, block, curr, k_node, mode);
942
943                                         curr   = new_rd_Add(dbg, current_ir_graph, block, left, curr, mode);
944                                 } else {
945                                         k_node = left;
946                                 }
947
948                                 k_node = new_Const_long(mode_Iu, k);
949                                 res    = new_rd_Shrs(dbg, current_ir_graph, block, curr, k_node, mode);
950
951                                 if (n_flag) { /* negate the result */
952                                         ir_node *k_node;
953
954                                         k_node = new_Const(get_mode_null(mode));
955                                         res = new_rd_Sub(dbg, current_ir_graph, block, k_node, res, mode);
956                                 }
957                         } else {      /* unsigned case */
958                                 ir_node *k_node;
959
960                                 k_node = new_Const_long(mode_Iu, k);
961                                 res    = new_rd_Shr(dbg, current_ir_graph, block, left, k_node, mode);
962                         }
963                 } else {
964                         /* other constant */
965                         if (allow_Mulh(mode))
966                                 res = replace_div_by_mulh(irn, tv);
967                 }
968         }
969
970         if (res != irn)
971                 hook_arch_dep_replace_division_by_const(irn);
972
973         return res;
974 }
975
976 /* Replace Mods with Shifts and Add/Subs and Mulh. */
977 ir_node *arch_dep_replace_mod_by_const(ir_node *irn) {
978         ir_node *res  = irn;
979
980         /* If the architecture dependent optimizations were not initialized
981            or this optimization was not enabled. */
982         if (params == NULL || (opts & arch_dep_mod_by_const) == 0)
983                 return irn;
984
985         if (is_Mod(irn)) {
986                 ir_node *c = get_Mod_right(irn);
987                 ir_node *block, *left;
988                 ir_mode *mode;
989                 tarval *tv, *ntv;
990                 dbg_info *dbg;
991                 int n, bits;
992                 int k;
993
994                 if (! is_Const(c))
995                         return irn;
996
997                 tv = get_Const_tarval(c);
998
999                 /* check for division by zero */
1000                 if (tarval_is_null(tv))
1001                         return irn;
1002
1003                 left  = get_Mod_left(irn);
1004                 mode  = get_irn_mode(left);
1005                 block = get_irn_n(irn, -1);
1006                 dbg   = get_irn_dbg_info(irn);
1007                 bits = get_mode_size_bits(mode);
1008                 n    = (bits + 7) / 8;
1009
1010                 k = -1;
1011                 if (mode_is_signed(mode)) {
1012                         /* for signed divisions, the algorithm works for a / -2^k by negating the result */
1013                         ntv = tarval_neg(tv);
1014                         k = tv_ld2(ntv, n);
1015                 }
1016
1017                 if (k < 0) {
1018                         k = tv_ld2(tv, n);
1019                 }
1020
1021                 if (k >= 0) {
1022                         /* division by 2^k or -2^k:
1023                          * we use "modulus" here, so x % y == x % -y that's why is no difference between the case 2^k and -2^k
1024                          */
1025                         if (mode_is_signed(mode)) {
1026                                 ir_node *k_node;
1027                                 ir_node *curr = left;
1028
1029                                 if (k != 1) {
1030                                         k_node = new_Const_long(mode_Iu, k - 1);
1031                                         curr   = new_rd_Shrs(dbg, current_ir_graph, block, left, k_node, mode);
1032                                 }
1033
1034                                 k_node = new_Const_long(mode_Iu, bits - k);
1035                                 curr   = new_rd_Shr(dbg, current_ir_graph, block, curr, k_node, mode);
1036
1037                                 curr   = new_rd_Add(dbg, current_ir_graph, block, left, curr, mode);
1038
1039                                 k_node = new_Const_long(mode, (-1) << k);
1040                                 curr   = new_rd_And(dbg, current_ir_graph, block, curr, k_node, mode);
1041
1042                                 res    = new_rd_Sub(dbg, current_ir_graph, block, left, curr, mode);
1043                         } else {      /* unsigned case */
1044                                 ir_node *k_node;
1045
1046                                 k_node = new_Const_long(mode, (1 << k) - 1);
1047                                 res    = new_rd_And(dbg, current_ir_graph, block, left, k_node, mode);
1048                         }
1049                 } else {
1050                         /* other constant */
1051                         if (allow_Mulh(mode)) {
1052                                 res = replace_div_by_mulh(irn, tv);
1053
1054                                 res = new_rd_Mul(dbg, current_ir_graph, block, res, c, mode);
1055
1056                                 /* res = arch_dep_mul_to_shift(res); */
1057
1058                                 res = new_rd_Sub(dbg, current_ir_graph, block, left, res, mode);
1059                         }
1060                 }
1061         }
1062
1063         if (res != irn)
1064                 hook_arch_dep_replace_division_by_const(irn);
1065
1066         return res;
1067 }
1068
1069 /* Replace DivMods with Shifts and Add/Subs and Mulh. */
1070 void arch_dep_replace_divmod_by_const(ir_node **div, ir_node **mod, ir_node *irn) {
1071         *div = *mod = NULL;
1072
1073         /* If the architecture dependent optimizations were not initialized
1074            or this optimization was not enabled. */
1075         if (params == NULL ||
1076                 ((opts & (arch_dep_div_by_const|arch_dep_mod_by_const)) != (arch_dep_div_by_const|arch_dep_mod_by_const)))
1077                 return;
1078
1079         if (is_DivMod(irn)) {
1080                 ir_node *c = get_DivMod_right(irn);
1081                 ir_node *block, *left;
1082                 ir_mode *mode;
1083                 tarval *tv, *ntv;
1084                 dbg_info *dbg;
1085                 int n, bits;
1086                 int k, n_flag;
1087
1088                 if (! is_Const(c))
1089                         return;
1090
1091                 tv = get_Const_tarval(c);
1092
1093                 /* check for division by zero */
1094                 if (tarval_is_null(tv))
1095                         return;
1096
1097                 left  = get_DivMod_left(irn);
1098                 mode  = get_irn_mode(left);
1099                 block = get_irn_n(irn, -1);
1100                 dbg   = get_irn_dbg_info(irn);
1101
1102                 bits = get_mode_size_bits(mode);
1103                 n    = (bits + 7) / 8;
1104
1105                 k = -1;
1106                 if (mode_is_signed(mode)) {
1107                         /* for signed divisions, the algorithm works for a / -2^k by negating the result */
1108                         ntv = tarval_neg(tv);
1109                         n_flag = 1;
1110                         k = tv_ld2(ntv, n);
1111                 }
1112
1113                 if (k < 0) {
1114                         n_flag = 0;
1115                         k = tv_ld2(tv, n);
1116                 }
1117
1118                 if (k >= 0) { /* division by 2^k or -2^k */
1119                         if (mode_is_signed(mode)) {
1120                                 ir_node *k_node, *c_k;
1121                                 ir_node *curr = left;
1122
1123                                 if (k != 1) {
1124                                         k_node = new_Const_long(mode_Iu, k - 1);
1125                                         curr   = new_rd_Shrs(dbg, current_ir_graph, block, left, k_node, mode);
1126                                 }
1127
1128                                 k_node = new_Const_long(mode_Iu, bits - k);
1129                                 curr   = new_rd_Shr(dbg, current_ir_graph, block, curr, k_node, mode);
1130
1131                                 curr   = new_rd_Add(dbg, current_ir_graph, block, left, curr, mode);
1132
1133                                 c_k    = new_Const_long(mode_Iu, k);
1134
1135                                 *div   = new_rd_Shrs(dbg, current_ir_graph, block, curr, c_k, mode);
1136
1137                                 if (n_flag) { /* negate the div result */
1138                                         ir_node *k_node;
1139
1140                                         k_node = new_Const(get_mode_null(mode));
1141                                         *div = new_rd_Sub(dbg, current_ir_graph, block, k_node, *div, mode);
1142                                 }
1143
1144                                 k_node = new_Const_long(mode, (-1) << k);
1145                                 curr   = new_rd_And(dbg, current_ir_graph, block, curr, k_node, mode);
1146
1147                                 *mod   = new_rd_Sub(dbg, current_ir_graph, block, left, curr, mode);
1148                         } else {      /* unsigned case */
1149                                 ir_node *k_node;
1150
1151                                 k_node = new_Const_long(mode_Iu, k);
1152                                 *div   = new_rd_Shr(dbg, current_ir_graph, block, left, k_node, mode);
1153
1154                                 k_node = new_Const_long(mode, (1 << k) - 1);
1155                                 *mod   = new_rd_And(dbg, current_ir_graph, block, left, k_node, mode);
1156                         }
1157                 } else {
1158                         /* other constant */
1159                         if (allow_Mulh(mode)) {
1160                                 ir_node *t;
1161
1162                                 *div = replace_div_by_mulh(irn, tv);
1163
1164                                 t    = new_rd_Mul(dbg, current_ir_graph, block, *div, c, mode);
1165
1166                                 /* t = arch_dep_mul_to_shift(t); */
1167
1168                                 *mod = new_rd_Sub(dbg, current_ir_graph, block, left, t, mode);
1169                         }
1170                 }
1171         }
1172
1173         if (*div)
1174                 hook_arch_dep_replace_division_by_const(irn);
1175 }
1176
1177
1178 static const ir_settings_arch_dep_t default_params = {
1179         1,  /* also use subs */
1180         4,  /* maximum shifts */
1181         31, /* maximum shift amount */
1182         default_evaluate,  /* default evaluator */
1183
1184         0,  /* allow Mulhs */
1185         0,  /* allow Mulus */
1186         32  /* Mulh allowed up to 32 bit */
1187 };
1188
1189 /* A default parameter factory for testing purposes. */
1190 const ir_settings_arch_dep_t *arch_dep_default_factory(void) {
1191         return &default_params;
1192 }