fix a bunch of warnings reported by clang analyzer
[libfirm] / ir / lower / lower_intrinsics.c
1 /*
2  * Copyright (C) 1995-2011 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   lowering of Calls of intrinsic functions
23  * @author  Michael Beck
24  */
25 #include "config.h"
26
27 #include <stdbool.h>
28
29 #include "lowering.h"
30 #include "irop_t.h"
31 #include "irprog_t.h"
32 #include "irnode_t.h"
33 #include "irprog_t.h"
34 #include "irgwalk.h"
35 #include "ircons.h"
36 #include "irgmod.h"
37 #include "irgopt.h"
38 #include "trouts.h"
39 #include "irverify.h"
40 #include "pmap.h"
41 #include "array_t.h"
42 #include "irpass_t.h"
43 #include "iropt_dbg.h"
44 #include "error.h"
45 #include "be.h"
46 #include "util.h"
47
48 /** Walker environment. */
49 typedef struct walker_env {
50         pmap     *c_map;              /**< The intrinsic call map. */
51         size_t   nr_of_intrinsics;    /**< statistics */
52         i_instr_record **i_map;       /**< The intrinsic instruction map. */
53 } walker_env_t;
54
55 /**
56  * walker: call all mapper functions
57  */
58 static void call_mapper(ir_node *node, void *env)
59 {
60         walker_env_t *wenv = (walker_env_t*)env;
61         ir_op *op = get_irn_op(node);
62
63         if (op == op_Call) {
64                 ir_node *symconst;
65                 const i_call_record *r;
66                 ir_entity *ent;
67
68                 symconst = get_Call_ptr(node);
69                 if (! is_SymConst_addr_ent(symconst))
70                         return;
71
72                 ent = get_SymConst_entity(symconst);
73                 r   = pmap_get(i_call_record const, wenv->c_map, ent);
74
75                 if (r != NULL) {
76                         wenv->nr_of_intrinsics += r->i_mapper(node, r->ctx) ? 1 : 0;
77                 }
78         } else {
79                 if (op->code < (unsigned) ARR_LEN(wenv->i_map)) {
80                         const i_instr_record *r = wenv->i_map[op->code];
81                         /* run all possible mapper */
82                         while (r) {
83                                 if (r->i_mapper(node, r->ctx)) {
84                                         ++wenv->nr_of_intrinsics;
85                                         break;
86                                 }
87                                 r = (const i_instr_record*)r->link;
88                         }
89                 }
90         }
91 }
92
93 size_t lower_intrinsics(i_record *list, size_t length, int part_block_used)
94 {
95         size_t         i, n;
96         size_t         n_ops = ir_get_n_opcodes();
97         ir_graph       *irg;
98         pmap           *c_map = pmap_create_ex(length);
99         i_instr_record **i_map;
100         size_t         nr_of_intrinsics = 0;
101         walker_env_t   wenv;
102
103         /* we use the ir_op generic pointers here */
104         NEW_ARR_A(i_instr_record *, i_map, n_ops);
105         memset((void *)i_map, 0, sizeof(*i_map) * n_ops);
106
107         /* fill a map for faster search */
108         for (i = 0; i < length; ++i) {
109                 if (list[i].i_call.kind == INTRINSIC_CALL) {
110                         pmap_insert(c_map, list[i].i_call.i_ent, (void *)&list[i].i_call);
111                 } else {
112                         ir_op *op = list[i].i_instr.op;
113                         assert(op->code < (unsigned) ARR_LEN(i_map));
114
115                         list[i].i_instr.link = i_map[op->code];
116                         i_map[op->code] = &list[i].i_instr;
117                 }
118         }
119
120         wenv.c_map = c_map;
121         wenv.i_map = i_map;
122
123         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
124                 irg = get_irp_irg(i);
125
126                 if (part_block_used) {
127                         ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_PHI_LIST);
128                         collect_phiprojs(irg);
129                 }
130
131                 wenv.nr_of_intrinsics = 0;
132                 irg_walk_graph(irg, NULL, call_mapper, &wenv);
133
134                 if (part_block_used)
135                         ir_free_resources(irg, IR_RESOURCE_IRN_LINK | IR_RESOURCE_PHI_LIST);
136
137                 if (wenv.nr_of_intrinsics > 0) {
138                         confirm_irg_properties(irg, IR_GRAPH_PROPERTIES_NONE);
139                         nr_of_intrinsics += wenv.nr_of_intrinsics;
140                 }
141         }
142         pmap_destroy(c_map);
143
144         return nr_of_intrinsics;
145 }
146
147 typedef struct pass_t {
148         ir_prog_pass_t pass;
149
150         int      part_block_used;
151         size_t   length;
152         i_record list[1];
153 } pass_t;
154
155 /**
156  * Wrapper for running lower_intrinsics() as an ir_prog pass.
157  */
158 static int pass_wrapper(ir_prog *irp, void *context)
159 {
160         pass_t *pass = (pass_t*)context;
161         (void) irp; /* TODO: set current irp, or remove parameter */
162         lower_intrinsics(pass->list, pass->length, pass->part_block_used);
163         /* probably this pass should not run again */
164         return 0;
165 }
166
167 /**
168  * Creates an ir_prog pass for lower_intrinsics.
169  *
170  * @param name             the name of this pass or NULL
171  * @param list             an array of intrinsic map records
172  * @param length           the length of the array
173  * @param part_block_used  set to true if part_block() must be using during lowering
174  */
175 ir_prog_pass_t *lower_intrinsics_pass(
176         const char *name,
177         i_record *list, size_t length, int part_block_used)
178 {
179         pass_t *const pass = XMALLOCF(pass_t, list, length);
180         memcpy(pass->list, list, sizeof(list[0]) * length);
181         pass->length          = length;
182         pass->part_block_used = part_block_used;
183
184         return def_prog_pass_constructor(
185                 &pass->pass, name ? name : "lower_intrinsics", pass_wrapper);
186 }
187
188 /**
189  * Helper function, replace the call by the given node.
190  *
191  * @param irn      the result node
192  * @param call     the call to replace
193  * @param mem      the new mem result
194  * @param reg_jmp  new regular control flow, if NULL, a Jmp will be used
195  * @param exc_jmp  new exception control flow, if reg_jmp == NULL, a Bad will be used
196  */
197 static void replace_call(ir_node *irn, ir_node *call, ir_node *mem,
198                          ir_node *reg_jmp, ir_node *exc_jmp)
199 {
200         ir_node  *block = get_nodes_block(call);
201         ir_graph *irg   = get_irn_irg(block);
202         ir_node  *rest  = new_r_Tuple(block, 1, &irn);
203
204         if (ir_throws_exception(call)) {
205                 turn_into_tuple(call, pn_Call_max+1);
206                 if (reg_jmp == NULL) {
207                         reg_jmp = new_r_Jmp(block);
208                 }
209                 if (exc_jmp == NULL) {
210                         exc_jmp = new_r_Bad(irg, mode_X);
211                 }
212                 set_Tuple_pred(call, pn_Call_X_regular, reg_jmp);
213                 set_Tuple_pred(call, pn_Call_X_except, exc_jmp);
214         } else {
215                 assert(reg_jmp == NULL);
216                 assert(exc_jmp == NULL);
217                 turn_into_tuple(call, pn_Call_T_result+1);
218                 assert(pn_Call_M <= pn_Call_T_result);
219                 assert(pn_Call_X_regular > pn_Call_T_result);
220                 assert(pn_Call_X_except > pn_Call_T_result);
221         }
222         set_Tuple_pred(call, pn_Call_M, mem);
223         set_Tuple_pred(call, pn_Call_T_result, rest);
224 }
225
226 int i_mapper_abs(ir_node *call, void *ctx)
227 {
228         ir_node  *mem      = get_Call_mem(call);
229         ir_node  *block    = get_nodes_block(call);
230         ir_node  *op       = get_Call_param(call, 0);
231         ir_graph *irg      = get_irn_irg(call);
232         ir_mode  *mode     = get_irn_mode(op);
233         dbg_info *dbg      = get_irn_dbg_info(call);
234         ir_node  *zero     = new_r_Const(irg, get_mode_null(mode));
235         ir_node  *cmp      = new_rd_Cmp(dbg, block, op, zero, ir_relation_less);
236         ir_node  *minus_op = new_rd_Minus(dbg, block, op, mode);
237         ir_node  *mux;
238         arch_allow_ifconv_func allow_ifconv = be_get_backend_param()->allow_ifconv;
239         (void) ctx;
240
241         /* mux allowed by backend? */
242         if (!allow_ifconv(cmp, op, minus_op))
243                 return 0;
244
245         /* construct Mux */
246         mux = new_rd_Mux(dbg, block, cmp, op, minus_op, mode);
247         DBG_OPT_ALGSIM0(call, mux, FS_OPT_RTS_ABS);
248         replace_call(mux, call, mem, NULL, NULL);
249         return 1;
250 }
251
252 int i_mapper_bswap(ir_node *call, void *ctx)
253 {
254         ir_node *mem   = get_Call_mem(call);
255         ir_node *block = get_nodes_block(call);
256         ir_node *op    = get_Call_param(call, 0);
257         ir_type *tp    = get_Call_type(call);
258         dbg_info *dbg  = get_irn_dbg_info(call);
259         ir_node *irn;
260         (void) ctx;
261
262         irn = new_rd_Builtin(dbg, block, get_irg_no_mem(current_ir_graph), 1, &op, ir_bk_bswap, tp);
263         set_irn_pinned(irn, op_pin_state_floats);
264         irn = new_r_Proj(irn, get_irn_mode(op), pn_Builtin_max+1);
265         replace_call(irn, call, mem, NULL, NULL);
266         return 1;
267 }
268
269 int i_mapper_alloca(ir_node *call, void *ctx)
270 {
271         ir_node *mem   = get_Call_mem(call);
272         ir_node *block = get_nodes_block(call);
273         ir_node *op    = get_Call_param(call, 0);
274         ir_node *irn, *exc, *no_exc;
275         dbg_info *dbg  = get_irn_dbg_info(call);
276         (void) ctx;
277
278         if (mode_is_signed(get_irn_mode(op))) {
279                 ir_mode *mode = get_irn_mode(op);
280                 mode = find_unsigned_mode(mode);
281                 if (mode == NULL) {
282                         panic("Cannot find unsigned mode for %M", mode);
283                 }
284                 op = new_rd_Conv(dbg, block, op, mode);
285         }
286
287         irn    = new_rd_Alloc(dbg, block, mem, op, get_unknown_type(), stack_alloc);
288         mem    = new_rd_Proj(dbg, irn, mode_M, pn_Alloc_M);
289         irn    = new_rd_Proj(dbg, irn, get_modeP_data(), pn_Alloc_res);
290         if (ir_throws_exception(call)) {
291                 no_exc = new_rd_Proj(dbg, irn, mode_X, pn_Alloc_X_regular);
292                 exc    = new_rd_Proj(dbg, irn, mode_X, pn_Alloc_X_except);
293                 ir_set_throws_exception(irn, true);
294         } else {
295                 no_exc = NULL;
296                 exc    = NULL;
297         }
298
299         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ALLOCA);
300         replace_call(irn, call, mem, no_exc, exc);
301         return 1;
302 }
303
304 int i_mapper_sqrt(ir_node *call, void *ctx)
305 {
306         ir_node   *mem;
307         ir_tarval *tv;
308         ir_node   *op = get_Call_param(call, 0);
309         (void) ctx;
310
311         if (!is_Const(op))
312                 return 0;
313
314         tv = get_Const_tarval(op);
315         if (! tarval_is_null(tv) && !tarval_is_one(tv))
316                 return 0;
317
318         mem = get_Call_mem(call);
319
320         /* sqrt(0) = 0, sqrt(1) = 1 */
321         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_SQRT);
322         replace_call(op, call, mem, NULL, NULL);
323         return 1;
324 }
325
326 int i_mapper_cbrt(ir_node *call, void *ctx)
327 {
328         ir_node   *mem;
329         ir_tarval *tv;
330         ir_node   *op = get_Call_param(call, 0);
331         (void) ctx;
332
333         if (!is_Const(op))
334                 return 0;
335
336         tv = get_Const_tarval(op);
337         if (! tarval_is_null(tv) && !tarval_is_one(tv) && !tarval_is_minus_one(tv))
338                 return 0;
339
340         mem = get_Call_mem(call);
341
342         /* cbrt(0) = 0, cbrt(1) = 1, cbrt(-1) = -1 */
343         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_CBRT);
344         replace_call(op, call, mem, NULL, NULL);
345         return 1;
346 }
347
348 int i_mapper_pow(ir_node *call, void *ctx)
349 {
350         ir_node  *left    = get_Call_param(call, 0);
351         ir_node  *right   = get_Call_param(call, 1);
352         ir_node  *block   = get_nodes_block(call);
353         ir_graph *irg     = get_irn_irg(block);
354         ir_node  *reg_jmp = NULL;
355         ir_node  *exc_jmp = NULL;
356         ir_node  *irn;
357         dbg_info *dbg;
358         ir_node  *mem;
359         (void) ctx;
360
361         if (is_Const(left) && is_Const_one(left)) {
362                 /* pow (1.0, x) = 1.0 */
363                 irn = left;
364         } else if (is_Const(right)) {
365                 ir_tarval *tv = get_Const_tarval(right);
366                 if (tarval_is_null(tv)) {
367                         /* pow(x, 0.0) = 1.0 */
368                         ir_mode *mode = get_tarval_mode(tv);
369                         irn = new_r_Const(irg, get_mode_one(mode));
370                 } else if (tarval_is_one(tv)) {
371                         /* pow(x, 1.0) = x */
372                         irn = left;
373                 } else if (tarval_is_minus_one(tv)) {
374                         /* pow(x, -1.0) = 1/x */
375                         irn = NULL;
376                 } else
377                         return 0;
378         } else {
379                 return 0;
380         }
381
382         mem = get_Call_mem(call);
383         dbg = get_irn_dbg_info(call);
384
385         if (irn == NULL) {
386                 ir_mode *result_mode = get_irn_mode(left);
387                 ir_node *div;
388
389                 ir_mode *mode             = result_mode;
390                 ir_mode *float_arithmetic = be_get_backend_param()->mode_float_arithmetic;
391                 if (float_arithmetic != NULL) {
392                         left = new_r_Conv(block, left, float_arithmetic);
393                         mode = float_arithmetic;
394                 }
395
396                 irn  = new_r_Const(irg, get_mode_one(mode));
397                 div  = new_rd_Div(dbg, block, mem, irn, left, mode, op_pin_state_pinned);
398                 mem  = new_r_Proj(div, mode_M, pn_Div_M);
399                 irn  = new_r_Proj(div, mode, pn_Div_res);
400                 if (ir_throws_exception(call)) {
401                         reg_jmp = new_r_Proj(div, mode_X, pn_Div_X_regular);
402                         exc_jmp = new_r_Proj(div, mode_X, pn_Div_X_except);
403                         ir_set_throws_exception(div, true);
404                 }
405                 if (result_mode != mode) {
406                         irn = new_r_Conv(block, irn, result_mode);
407                 }
408         }
409         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_POW);
410         replace_call(irn, call, mem, reg_jmp, exc_jmp);
411         return 1;
412 }
413
414 int i_mapper_exp(ir_node *call, void *ctx)
415 {
416         ir_node *val  = get_Call_param(call, 0);
417         (void) ctx;
418
419         if (is_Const(val) && is_Const_null(val)) {
420                 /* exp(0.0) = 1.0 */
421                 ir_graph *irg  = get_irn_irg(val);
422                 ir_mode *mode  = get_irn_mode(val);
423                 ir_node *irn   = new_r_Const(irg, get_mode_one(mode));
424                 ir_node *mem   = get_Call_mem(call);
425                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_EXP);
426                 replace_call(irn, call, mem, NULL, NULL);
427                 return 1;
428         }
429         return 0;
430 }
431
432 int i_mapper_exp2(ir_node *call, void *ctx)
433 {
434         return i_mapper_exp(call, ctx);
435 }
436
437 int i_mapper_exp10(ir_node *call, void *ctx)
438 {
439         return i_mapper_exp(call, ctx);
440 }
441
442 /**
443  * A mapper for mapping f(0.0) to 0.0.
444  */
445 static int i_mapper_zero_to_zero(ir_node *call, void *ctx, int reason)
446 {
447         ir_node *val  = get_Call_param(call, 0);
448         (void) ctx;
449
450         if (is_Const(val) && is_Const_null(val)) {
451                 /* f(0.0) = 0.0 */
452                 ir_node *mem = get_Call_mem(call);
453                 DBG_OPT_ALGSIM0(call, val, reason);
454                 replace_call(val, call, mem, NULL, NULL);
455                 return 1;
456         }
457         return 0;
458 }
459
460 /**
461  * A mapper for mapping f(1.0) to 0.0.
462  */
463 static int i_mapper_one_to_zero(ir_node *call, void *ctx, int reason)
464 {
465         ir_node *val  = get_Call_param(call, 0);
466         (void) ctx;
467
468         if (is_Const(val) && is_Const_one(val)) {
469                 /* acos(1.0) = 0.0 */
470                 ir_graph *irg = get_irn_irg(val);
471                 ir_mode *mode = get_irn_mode(val);
472                 ir_node *irn  = new_r_Const(irg, get_mode_null(mode));
473                 ir_node *mem  = get_Call_mem(call);
474                 DBG_OPT_ALGSIM0(call, irn, reason);
475                 replace_call(irn, call, mem, NULL, NULL);
476                 return 1;
477         }
478         return 0;
479 }
480
481 /**
482  * A mapper for mapping a functions with the following characteristics:
483  * f(-x)  = f(x).
484  * f(0.0) = 1.0
485  */
486 static int i_mapper_symmetric_zero_to_one(ir_node *call, void *ctx, int reason)
487 {
488         int      changed = 0;
489         ir_node *val     = get_Call_param(call, 0);
490         (void) ctx;
491
492         if (is_Conv(val)) {
493                 ir_node *op = get_Conv_op(val);
494                 if (is_Minus(op)) {
495                         /* f(-x) = f(x) with strictConv */
496                         ir_node *block = get_nodes_block(call);
497                         ir_mode *mode  = get_irn_mode(val);
498                         dbg_info *dbg  = get_irn_dbg_info(val);
499
500                         op = get_Minus_op(op);
501                         val = new_rd_Conv(dbg, block, op, mode);
502                         DBG_OPT_ALGSIM2(call, op, call, FS_OPT_RTS_SYMMETRIC);
503                         set_Call_param(call, 0, val);
504                         changed = 1;
505                 }
506         } else if (is_Minus(val)) {
507                 /* f(-x) = f(x) */
508                 val = get_Minus_op(val);
509                 DBG_OPT_ALGSIM2(call, val, call, FS_OPT_RTS_SYMMETRIC);
510                 set_Call_param(call, 0, val);
511                 changed = 1;
512         }
513
514         if (is_Const(val) && is_Const_null(val)) {
515                 /* f(0.0) = 1.0 */
516                 ir_graph *irg  = get_irn_irg(val);
517                 ir_mode *mode  = get_irn_mode(val);
518                 ir_node *irn   = new_r_Const(irg, get_mode_one(mode));
519                 ir_node *mem   = get_Call_mem(call);
520                 DBG_OPT_ALGSIM0(call, irn, reason);
521                 replace_call(irn, call, mem, NULL, NULL);
522                 changed = 1;
523         }
524         return changed;
525 }
526
527 int i_mapper_log(ir_node *call, void *ctx)
528 {
529         /* log(1.0) = 0.0 */
530         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_LOG);
531 }
532
533 int i_mapper_log2(ir_node *call, void *ctx)
534 {
535         /* log2(1.0) = 0.0 */
536         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_LOG);
537 }
538
539 int i_mapper_log10(ir_node *call, void *ctx)
540 {
541         /* log10(1.0) = 0.0 */
542         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_LOG);
543 }
544
545 int i_mapper_sin(ir_node *call, void *ctx)
546 {
547         /* sin(0.0) = 0.0 */
548         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SIN);
549 }
550
551 int i_mapper_cos(ir_node *call, void *ctx)
552 {
553         /* cos(0.0) = 1.0, cos(-x) = x */
554         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COS);
555 }
556
557 int i_mapper_tan(ir_node *call, void *ctx)
558 {
559         /* tan(0.0) = 0.0 */
560         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TAN);
561 }
562
563 int i_mapper_asin(ir_node *call, void *ctx)
564 {
565         /* asin(0.0) = 0.0 */
566         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ASIN);
567 }
568
569 int i_mapper_acos(ir_node *call, void *ctx)
570 {
571         /* acos(1.0) = 0.0 */
572         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_ACOS);
573 }
574
575 int i_mapper_atan(ir_node *call, void *ctx)
576 {
577         /* atan(0.0) = 0.0 */
578         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ATAN);
579 }
580
581 int i_mapper_sinh(ir_node *call, void *ctx)
582 {
583         /* sinh(0.0) = 0.0 */
584         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SINH);
585 }
586
587 int i_mapper_cosh(ir_node *call, void *ctx)
588 {
589         /* cosh(0.0) = 1.0, cosh(-x) = x */
590         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COSH);
591 }
592
593 int i_mapper_tanh(ir_node *call, void *ctx)
594 {
595         /* tanh(0.0) = 0.0 */
596         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TANH);
597 }
598
599 /**
600  * Return the const entity that is accessed through the pointer ptr or
601  * NULL if there is no entity (or the entity is not constant).
602  *
603  * @param ptr  the pointer
604  */
605 static ir_entity *get_const_entity(ir_node *ptr)
606 {
607         if (is_SymConst_addr_ent(ptr)) {
608                 ir_entity *ent = get_SymConst_entity(ptr);
609
610                 if (get_entity_linkage(ent) & IR_LINKAGE_CONSTANT) {
611                         /* a constant entity */
612                         return ent;
613                 }
614         }
615         return NULL;
616 }
617
618 static ir_tarval *get_initializer_value(ir_initializer_t *const init, ir_mode *const mode)
619 {
620         switch (get_initializer_kind(init)) {
621         case IR_INITIALIZER_NULL:
622                 return get_mode_null(mode);
623
624         case IR_INITIALIZER_TARVAL:
625                 return get_initializer_tarval_value(init);
626
627         case IR_INITIALIZER_CONST: {
628                 ir_node *const irn = get_initializer_const_value(init);
629                 if (is_Const(irn))
630                         return get_Const_tarval(irn);
631                 break;
632         }
633
634         case IR_INITIALIZER_COMPOUND:
635                 break;
636         }
637
638         return get_tarval_undefined();
639 }
640
641 static bool initializer_val_is_null(ir_initializer_t *init)
642 {
643         ir_tarval *tv;
644
645         if (get_initializer_kind(init) == IR_INITIALIZER_NULL)
646                 return true;
647
648         if (get_initializer_kind(init) == IR_INITIALIZER_TARVAL) {
649                 tv = get_initializer_tarval_value(init);
650         } else if (get_initializer_kind(init) == IR_INITIALIZER_CONST) {
651                 ir_node *irn = get_initializer_const_value(init);
652                 if (!is_Const(irn))
653                         return false;
654                 tv = get_Const_tarval(irn);
655         } else {
656                 return false;
657         }
658
659         return tarval_is_null(tv);
660 }
661
662 /**
663  * Calculate the value of strlen if possible.
664  *
665  * @param ent     the entity
666  * @param res_tp  the result type
667  *
668  * @return a Const node containing the strlen() result or NULL
669  *         if the evaluation fails
670  */
671 static ir_node *eval_strlen(ir_graph *irg, ir_entity *ent, ir_type *res_tp)
672 {
673         ir_type *tp = get_entity_type(ent);
674         ir_mode *mode;
675         ir_initializer_t *initializer;
676         size_t            size;
677         size_t            i;
678
679         if (! is_Array_type(tp))
680                 return NULL;
681         tp = get_array_element_type(tp);
682         if (! is_Primitive_type(tp))
683                 return NULL;
684         mode = get_type_mode(tp);
685
686         /* FIXME: This is too restrict, as the type char might be more the 8bits */
687         if (!mode_is_int(mode) || get_mode_size_bits(mode) != 8)
688                 return NULL;
689
690         initializer = get_entity_initializer(ent);
691         if (get_initializer_kind(initializer) != IR_INITIALIZER_COMPOUND)
692                 return NULL;
693
694         size = get_initializer_compound_n_entries(initializer);
695         for (i = 0; i < size; ++i) {
696                 ir_initializer_t *val = get_initializer_compound_value(initializer, i);
697                 if (initializer_val_is_null(val)) {
698                         ir_tarval *tv = new_tarval_from_long(i, get_type_mode(res_tp));
699                         return new_r_Const(irg, tv);
700                 }
701         }
702
703         return NULL;
704 }
705
706 int i_mapper_strlen(ir_node *call, void *ctx)
707 {
708         ir_node *s     = get_Call_param(call, 0);
709         ir_entity *ent = get_const_entity(s);
710
711         (void) ctx;
712
713         /* FIXME: this cannot handle constant strings inside struct initializers yet */
714         if (ent != NULL) {
715                 /* a constant entity */
716                 ir_type *tp = get_Call_type(call);
717                 ir_node *irn;
718
719                 tp  = get_method_res_type(tp, 0);
720                 irn = eval_strlen(get_irn_irg(call), ent, tp);
721
722                 if (irn) {
723                         ir_node *mem = get_Call_mem(call);
724                         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRLEN);
725                         replace_call(irn, call, mem, NULL, NULL);
726                         return 1;
727                 }
728         }
729         return 0;
730 }
731
732 /**
733  * Calculate the value of strlen if possible.
734  *
735  * @param left    the left entity
736  * @param right   the right entity
737  * @param res_tp  the result type
738  *
739  * @return a Const node containing the strcmp() result or NULL
740  *         if the evaluation fails
741  */
742 static ir_node *eval_strcmp(ir_graph *irg, ir_entity *left, ir_entity *right,
743                             ir_type *res_tp)
744 {
745         ir_type          *tp;
746         ir_mode          *mode;
747         ir_initializer_t *init_l;
748         ir_initializer_t *init_r;
749         size_t            size_l;
750         size_t            size_r;
751         size_t            size;
752         size_t            i;
753
754         tp = get_entity_type(left);
755         if (! is_Array_type(tp))
756                 return NULL;
757         tp = get_array_element_type(tp);
758         if (! is_Primitive_type(tp))
759                 return NULL;
760         mode = get_type_mode(tp);
761
762         /* FIXME: This is too restrict, as the type char might be more the 8bits */
763         if (!mode_is_int(mode) || get_mode_size_bits(mode) != 8)
764                 return NULL;
765
766         tp = get_entity_type(right);
767         if (! is_Array_type(tp))
768                 return NULL;
769         tp = get_array_element_type(tp);
770         if (! is_Primitive_type(tp))
771                 return NULL;
772         mode = get_type_mode(tp);
773
774         /* FIXME: This is too restrict, as the type char might be more the 8bits */
775         if (!mode_is_int(mode) || get_mode_size_bits(mode) != 8)
776                 return NULL;
777
778         init_l = get_entity_initializer(left);
779         init_r = get_entity_initializer(right);
780         if (get_initializer_kind(init_l) != IR_INITIALIZER_COMPOUND ||
781             get_initializer_kind(init_r) != IR_INITIALIZER_COMPOUND)
782                 return NULL;
783
784         size_l = get_initializer_compound_n_entries(init_l);
785         size_r = get_initializer_compound_n_entries(init_r);
786         size   = size_l < size_r ? size_l : size_r;
787
788         for (i = 0; i != size; ++i) {
789                 ir_initializer_t *const val_l = get_initializer_compound_value(init_l, i);
790                 ir_tarval        *const tv_l  = get_initializer_value(val_l, mode);
791                 ir_initializer_t *const val_r = get_initializer_compound_value(init_r, i);
792                 ir_tarval        *const tv_r  = get_initializer_value(val_r, mode);
793
794                 if (!tarval_is_constant(tv_l) || !tarval_is_constant(tv_r))
795                         return NULL;
796
797                 if (tv_l != tv_r) {
798                         ir_mode   *const res_mode = get_type_mode(res_tp);
799                         ir_tarval *const res_l    = tarval_convert_to(tv_l, res_mode);
800                         ir_tarval *const res_r    = tarval_convert_to(tv_r, res_mode);
801                         ir_tarval *const tv       = tarval_sub(res_l, res_r, res_mode);
802                         return new_r_Const(irg, tv);
803                 }
804
805                 if (tarval_is_null(tv_l)) {
806                         ir_tarval *const tv = get_mode_null(get_type_mode(res_tp));
807                         return new_r_Const(irg, tv);
808                 }
809         }
810
811         return NULL;
812 }
813
814 /**
815  * Checks if an entity represents the empty string.
816  *
817  * @param ent     the entity
818  *
819  * @return non-zero if ent represents the empty string
820  */
821 static int is_empty_string(ir_entity *ent)
822 {
823         ir_type          *tp = get_entity_type(ent);
824         ir_mode          *mode;
825         ir_initializer_t *initializer;
826         ir_initializer_t *init0;
827
828         if (! is_Array_type(tp))
829                 return 0;
830         tp = get_array_element_type(tp);
831         if (! is_Primitive_type(tp))
832                 return 0;
833         mode = get_type_mode(tp);
834
835         /* FIXME: This is too restrict, as the type char might be more the 8bits */
836         if (!mode_is_int(mode) || get_mode_size_bits(mode) != 8)
837                 return 0;
838
839         initializer = get_entity_initializer(ent);
840         if (get_initializer_kind(initializer) != IR_INITIALIZER_COMPOUND)
841                 return 0;
842
843         if (get_initializer_compound_n_entries(initializer) < 1)
844                 return 0;
845
846         init0 = get_initializer_compound_value(initializer, 0);
847         return initializer_val_is_null(init0);
848 }
849
850 int i_mapper_strcmp(ir_node *call, void *ctx)
851 {
852         ir_node   *left    = get_Call_param(call, 0);
853         ir_node   *right   = get_Call_param(call, 1);
854         ir_node   *irn     = NULL;
855         ir_node   *exc     = NULL;
856         ir_node   *reg     = NULL;
857         ir_type   *call_tp = get_Call_type(call);
858         ir_type   *res_tp  = get_method_res_type(call_tp, 0);
859         ir_entity *ent_l, *ent_r;
860         ir_type   *char_tp;
861         ir_node   *v;
862
863         (void) ctx;
864
865         /* do some type checks first */
866         if (! is_Primitive_type(res_tp))
867                 return 0;
868         char_tp = get_method_param_type(call_tp, 0);
869         if (char_tp != get_method_param_type(call_tp, 1))
870                 return 0;
871         if (! is_Pointer_type(char_tp))
872                 return 0;
873         char_tp = get_pointer_points_to_type(char_tp);
874
875         ir_node *mem = get_Call_mem(call);
876         if (left == right) {
877                 /* a strcmp(s, s) ==> 0 */
878                 ir_graph *irg = get_irn_irg(call);
879                 ir_mode *mode = get_type_mode(res_tp);
880
881                 irn = new_r_Const(irg, get_mode_null(mode));
882                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
883                 replace_call(irn, call, mem, NULL, NULL);
884                 return 1;
885         }
886         ent_l = get_const_entity(left);
887         ent_r = get_const_entity(right);
888
889         if (ent_l != NULL && ent_r != NULL) {
890                 /* both entities are const, try to evaluate */
891                 irn = eval_strcmp(get_irn_irg(call), ent_l, ent_r, res_tp);
892         } else if (ent_l != NULL) {
893                 if (is_empty_string(ent_l)) {
894                         /* s strcmp("", s) ==> -(*s)*/
895                         v = right;
896                         goto replace_by_call;
897                 }
898         } else if (ent_r != NULL) {
899                 if (is_empty_string(ent_r)) {
900                         /* s strcmp(s, "") ==> (*s) */
901                         ir_node  *block;
902                         dbg_info *dbg;
903                         ir_mode  *mode;
904
905                         v = left;
906 replace_by_call:
907                         mem   = get_Call_mem(call);
908                         block = get_nodes_block(call);
909                         dbg   = get_irn_dbg_info(call);
910                         mode  = get_type_mode(char_tp);
911
912                         /* replace the strcmp by (*x) */
913                         irn = new_rd_Load(dbg, block, mem, v, mode, cons_none);
914                         mem = new_r_Proj(irn, mode_M, pn_Load_M);
915                         irn = new_r_Proj(irn, mode, pn_Load_res);
916                         if (ir_throws_exception(call)) {
917                                 exc = new_r_Proj(irn, mode_X, pn_Load_X_except);
918                                 reg = new_r_Proj(irn, mode_X, pn_Load_X_regular);
919                                 ir_set_throws_exception(irn, true);
920                         } else {
921                                 exc = NULL;
922                                 reg = NULL;
923                         }
924
925                         /* conv to the result mode */
926                         mode = get_type_mode(res_tp);
927                         irn  = new_rd_Conv(dbg, block, irn, mode);
928
929                         if (v == right) {
930                                 /* negate in the ("", s) case */
931                                 irn = new_rd_Minus(dbg, block, irn, mode);
932                         }
933                 }
934         }
935
936         if (irn != NULL) {
937                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
938                 replace_call(irn, call, mem, reg, exc);
939                 return 1;
940         }
941
942         return 0;
943 }
944
945 int i_mapper_strncmp(ir_node *call, void *ctx)
946 {
947         ir_node *left  = get_Call_param(call, 0);
948         ir_node *right = get_Call_param(call, 1);
949         ir_node *len   = get_Call_param(call, 2);
950         ir_node *irn;
951         (void) ctx;
952
953         if (left == right || (is_Const(len) && is_Const_null(len))) {
954                 /* a strncmp(s, s, len) ==> 0 OR
955                    a strncmp(a, b, 0) ==> 0 */
956                 ir_graph  *irg     = get_irn_irg(call);
957                 ir_node   *mem     = get_Call_mem(call);
958                 ir_node   *adr     = get_Call_ptr(call);
959                 ir_entity *ent     = get_SymConst_entity(adr);
960                 ir_type   *call_tp = get_entity_type(ent);
961                 ir_type   *res_tp  = get_method_res_type(call_tp, 0);
962                 ir_mode   *mode    = get_type_mode(res_tp);
963
964                 irn = new_r_Const(irg, get_mode_null(mode));
965                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRNCMP);
966                 replace_call(irn, call, mem, NULL, NULL);
967                 return 1;
968         }
969         return 0;
970 }
971
972 int i_mapper_strcpy(ir_node *call, void *ctx)
973 {
974         ir_node *dst = get_Call_param(call, 0);
975         ir_node *src = get_Call_param(call, 1);
976         (void) ctx;
977
978         if (dst == src) {
979                 /* a strcpy(d, s) ==> d */
980                 ir_node *mem = get_Call_mem(call);
981                 ir_node *dst = get_Call_param(call, 0);
982
983                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_STRCPY);
984                 replace_call(dst, call, mem, NULL, NULL);
985                 return 1;
986         }
987         return 0;
988 }
989
990 int i_mapper_memcpy(ir_node *call, void *ctx)
991 {
992         ir_node *dst = get_Call_param(call, 0);
993         ir_node *src = get_Call_param(call, 1);
994         ir_node *len = get_Call_param(call, 2);
995         (void) ctx;
996
997         if (dst == src || (is_Const(len) && is_Const_null(len))) {
998                 /* a memcpy(d, d, len) ==> d OR
999                    a memcpy(d, s, 0) ==> d */
1000                 ir_node *mem = get_Call_mem(call);
1001
1002                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMCPY);
1003                 replace_call(dst, call, mem, NULL, NULL);
1004                 return 1;
1005         }
1006         return 0;
1007 }
1008
1009 int i_mapper_mempcpy(ir_node *call, void *ctx)
1010 {
1011         ir_node *dst = get_Call_param(call, 0);
1012         ir_node *src = get_Call_param(call, 1);
1013         ir_node *len = get_Call_param(call, 2);
1014         (void) ctx;
1015
1016         if (dst == src || (is_Const(len) && is_Const_null(len))) {
1017                 /* a memcpy(d, d, len) ==> d + len OR
1018                    a memcpy(d, s, 0) ==> d + 0 */
1019                 dbg_info *dbg = get_irn_dbg_info(call);
1020                 ir_node *mem  = get_Call_mem(call);
1021                 ir_node *blk  = get_nodes_block(call);
1022                 ir_mode *mode = get_irn_mode(dst);
1023                 ir_node *res  = new_rd_Add(dbg, blk, dst, len, mode);
1024
1025                 DBG_OPT_ALGSIM0(call, res, FS_OPT_RTS_MEMPCPY);
1026                 replace_call(res, call, mem, NULL, NULL);
1027                 return 1;
1028         }
1029         return 0;
1030 }
1031
1032 int i_mapper_memmove(ir_node *call, void *ctx)
1033 {
1034         ir_node *dst = get_Call_param(call, 0);
1035         ir_node *src = get_Call_param(call, 1);
1036         ir_node *len = get_Call_param(call, 2);
1037         (void) ctx;
1038
1039         if (dst == src || (is_Const(len) && is_Const_null(len))) {
1040                 /* a memmove(d, d, len) ==> d OR
1041                    a memmove(d, s, 0) ==> d */
1042                 ir_node *mem = get_Call_mem(call);
1043
1044                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMMOVE);
1045                 replace_call(dst, call, mem, NULL, NULL);
1046                 return 1;
1047         }
1048         return 0;
1049 }
1050
1051 int i_mapper_memset(ir_node *call, void *ctx)
1052 {
1053         ir_node *len = get_Call_param(call, 2);
1054         (void) ctx;
1055
1056         if (is_Const(len) && is_Const_null(len)) {
1057                 /* a memset(d, C, 0) ==> d */
1058                 ir_node *mem = get_Call_mem(call);
1059                 ir_node *dst = get_Call_param(call, 0);
1060
1061                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMSET);
1062                 replace_call(dst, call, mem, NULL, NULL);
1063                 return 1;
1064         }
1065         return 0;
1066 }
1067
1068 int i_mapper_memcmp(ir_node *call, void *ctx)
1069 {
1070         ir_node *left  = get_Call_param(call, 0);
1071         ir_node *right = get_Call_param(call, 1);
1072         ir_node *len   = get_Call_param(call, 2);
1073         ir_node *irn;
1074         (void) ctx;
1075
1076         if (left == right || (is_Const(len) && is_Const_null(len))) {
1077                 /* a memcmp(s, s, len) ==> 0 OR
1078                    a memcmp(a, b, 0) ==> 0 */
1079                 ir_graph  *irg     = get_irn_irg(call);
1080                 ir_node   *mem     = get_Call_mem(call);
1081                 ir_node   *adr     = get_Call_ptr(call);
1082                 ir_entity *ent     = get_SymConst_entity(adr);
1083                 ir_type   *call_tp = get_entity_type(ent);
1084                 ir_type   *res_tp  = get_method_res_type(call_tp, 0);
1085                 ir_mode   *mode    = get_type_mode(res_tp);
1086
1087                 irn = new_r_Const(irg, get_mode_null(mode));
1088                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRNCMP);
1089                 replace_call(irn, call, mem, NULL, NULL);
1090                 return 1;
1091         }
1092         return 0;
1093 }
1094
1095 /**
1096  * Returns the result mode of a node.
1097  */
1098 static ir_mode *get_irn_res_mode(ir_node *node)
1099 {
1100         switch (get_irn_opcode(node)) {
1101         case iro_Load:   return get_Load_mode(node);
1102         case iro_Div:    return get_Div_resmode(node);
1103         case iro_Mod:    return get_Mod_resmode(node);
1104         default: return NULL;
1105         }
1106 }
1107
1108 int i_mapper_RuntimeCall(ir_node *node, runtime_rt *rt)
1109 {
1110         int i, j, arity, first, n_param, n_res;
1111         long n_proj;
1112         ir_type *mtp;
1113         ir_node *mem, *bl, *call, *addr, *res_proj;
1114         ir_node **in;
1115         bool     throws_exception;
1116         ir_op   *op;
1117         ir_graph *irg;
1118         symconst_symbol sym;
1119         ir_mode *mode = get_irn_mode(node);
1120
1121         if (mode != rt->mode)
1122                 return 0;
1123         /* check if the result modes match */
1124         if (mode == mode_T && rt->res_mode != NULL) {
1125                 mode = get_irn_res_mode(node);
1126                 if (mode != rt->res_mode)
1127                         return 0;
1128         }
1129
1130         arity = get_irn_arity(node);
1131         if (arity <= 0)
1132                 return 0;
1133
1134         mtp     = get_entity_type(rt->ent);
1135         n_param = get_method_n_params(mtp);
1136         irg     = current_ir_graph;
1137
1138         mem = get_irn_n(node, 0);
1139         if (get_irn_mode(mem) != mode_M) {
1140                 mem = new_r_NoMem(irg);
1141                 first = 0;
1142         } else
1143                 first = 1;
1144
1145         /* check if the modes of the predecessors match the parameter modes */
1146         if (arity - first != n_param)
1147                 return 0;
1148
1149         for (i = first, j = 0; i < arity; ++i, ++j) {
1150                 ir_type *param_tp = get_method_param_type(mtp, j);
1151                 ir_node *pred = get_irn_n(node, i);
1152
1153                 if (get_type_mode(param_tp) != get_irn_mode(pred))
1154                         return 0;
1155         }
1156
1157         n_res            = get_method_n_ress(mtp);
1158         throws_exception = ir_throws_exception(node);
1159
1160         /* step 0: calculate the number of needed Proj's */
1161         n_proj = 0;
1162         n_proj = MAX(n_proj, rt->mem_proj_nr + 1);
1163         n_proj = MAX(n_proj, rt->res_proj_nr + 1);
1164         if (throws_exception) {
1165                 n_proj = MAX(n_proj, rt->regular_proj_nr + 1);
1166                 n_proj = MAX(n_proj, rt->exc_proj_nr + 1);
1167         }
1168
1169         if (n_proj > 0) {
1170                 if (rt->mode != mode_T) /* must be mode_T */
1171                         return 0;
1172         } else {
1173                 if (n_res > 0)
1174                         /* must match */
1175                         if (get_type_mode(get_method_res_type(mtp, 0)) != rt->mode)
1176                                 return 0;
1177         }
1178
1179         /* ok, when we are here, the number of predecessors match as well as the parameter modes */
1180         bl = get_nodes_block(node);
1181         op = get_irn_op(node);
1182
1183         in = NULL;
1184         if (n_param > 0) {
1185                 NEW_ARR_A(ir_node *, in, n_param);
1186                 for (i = 0; i < n_param; ++i)
1187                         in[i] = get_irn_n(node, first + i);
1188         }
1189
1190         /* step 1: create the call */
1191         sym.entity_p = rt->ent;
1192         addr = new_r_SymConst(irg, mode_P_code, sym, symconst_addr_ent);
1193         call = new_rd_Call(get_irn_dbg_info(node), bl, mem, addr, n_param, in, mtp);
1194         set_irn_pinned(call, get_irn_pinned(node));
1195
1196         if (n_res > 0)
1197                 res_proj = new_r_Proj(call, mode_T, pn_Call_T_result);
1198         else
1199                 res_proj = NULL;
1200
1201         if (n_proj > 0) {
1202                 n_proj += n_res - 1;
1203
1204                 /* we are ready */
1205                 turn_into_tuple(node, n_proj);
1206
1207                 if (rt->mem_proj_nr >= 0)
1208                         set_Tuple_pred(node, rt->mem_proj_nr, new_r_Proj(call, mode_M, pn_Call_M));
1209                 if (throws_exception) {
1210                         set_Tuple_pred(node, op->pn_x_regular, new_r_Proj(call, mode_X, pn_Call_X_regular));
1211                         set_Tuple_pred(node, op->pn_x_except, new_r_Proj(call, mode_X, pn_Call_X_except));
1212                 }
1213
1214                 if (rt->res_proj_nr >= 0) {
1215                         for (i = 0; i < n_res; ++i) {
1216                                 ir_mode *mode = get_type_mode(get_method_res_type(mtp, i));
1217                                 ir_node *proj = new_r_Proj(res_proj, mode, i);
1218                                 set_Tuple_pred(node, rt->res_proj_nr + i, proj);
1219                         }
1220                 }
1221                 return 1;
1222         } else {
1223                 /* only one return value supported */
1224                 if (n_res > 0) {
1225                         ir_mode *mode = get_type_mode(get_method_res_type(mtp, 0));
1226
1227                         res_proj = new_r_Proj(call, mode_T, pn_Call_T_result);
1228                         res_proj = new_r_Proj(res_proj, mode, 0);
1229
1230                         exchange(node, res_proj);
1231                         return 1;
1232                 }
1233         }
1234         /* should not happen */
1235         return 0;
1236 }