- Phi nodes are now collected by collect_phiprojs() and stored into a phi-list attrib...
[libfirm] / ir / lower / lower_intrinsics.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   lowering of Calls of intrinsic functions
23  * @author  Michael Beck
24  * @version $Id$
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "lowering.h"
32 #include "irop_t.h"
33 #include "irprog_t.h"
34 #include "irnode_t.h"
35 #include "irprog_t.h"
36 #include "irgwalk.h"
37 #include "ircons.h"
38 #include "irgmod.h"
39 #include "irgopt.h"
40 #include "trouts.h"
41 #include "pmap.h"
42 #include "xmalloc.h"
43 #include "iropt_dbg.h"
44
45 /** Walker environment */
46 typedef struct _walker_env {
47         pmap     *c_map;              /**< The intrinsic call map. */
48         unsigned nr_of_intrinsics;    /**< statistics */
49         i_instr_record **i_map;       /**< The intrinsic instruction map. */
50 } walker_env_t;
51
52 /**
53  * walker: call all mapper functions
54  */
55 static void call_mapper(ir_node *node, void *env) {
56         walker_env_t *wenv = env;
57         ir_op *op = get_irn_op(node);
58
59         if (op == op_Call) {
60                 ir_node *symconst;
61                 pmap_entry *p;
62                 const i_call_record *r;
63                 ir_entity *ent;
64
65                 symconst = get_Call_ptr(node);
66                 if (! is_SymConst_addr_ent(symconst))
67                         return;
68
69                 ent = get_SymConst_entity(symconst);
70                 p   = pmap_find(wenv->c_map, ent);
71
72                 if (p) {
73                         r = p->value;
74                         wenv->nr_of_intrinsics += r->i_mapper(node, r->ctx) ? 1 : 0;
75                 }
76         } else {
77                 if (op->code < (unsigned) ARR_LEN(wenv->i_map)) {
78                         const i_instr_record *r = wenv->i_map[op->code];
79                         /* run all possible mapper */
80                         while (r) {
81                                 if (r->i_mapper(node, r->ctx)) {
82                                         ++wenv->nr_of_intrinsics;
83                                         break;
84                                 }
85                                 r = r->link;
86                         }
87                 }
88         }
89 }  /* call_mapper */
90
91 /* Go through all graphs and map calls to intrinsic functions. */
92 unsigned lower_intrinsics(i_record *list, int length, int part_block_used) {
93         int            i, n_ops = get_irp_n_opcodes();
94         ir_graph       *irg;
95         pmap           *c_map = pmap_create_ex(length);
96         i_instr_record **i_map;
97         unsigned       nr_of_intrinsics = 0;
98         walker_env_t   wenv;
99
100         /* we use the ir_op generic pointers here */
101         NEW_ARR_A(const i_instr_record *, i_map, n_ops);
102         memset((void *)i_map, 0, sizeof(*i_map) * n_ops);
103
104         /* fill a map for faster search */
105         for (i = length - 1; i >= 0; --i) {
106                 if (list[i].i_call.kind == INTRINSIC_CALL) {
107                         pmap_insert(c_map, list[i].i_call.i_ent, (void *)&list[i].i_call);
108                 } else {
109                         ir_op *op = list[i].i_instr.op;
110                         assert(op->code < (unsigned) ARR_LEN(i_map));
111
112                         list[i].i_instr.link = i_map[op->code];
113                         i_map[op->code] = &list[i].i_instr;
114                 }
115         }
116
117         wenv.c_map = c_map;
118         wenv.i_map = i_map;
119
120         for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
121                 irg = get_irp_irg(i);
122
123                 if (part_block_used)
124                         collect_phiprojs(irg);
125
126                 wenv.nr_of_intrinsics = 0;
127                 irg_walk_graph(irg, NULL, call_mapper, &wenv);
128
129                 if (wenv.nr_of_intrinsics) {
130                         /* changes detected */
131                         set_irg_outs_inconsistent(irg);
132                         set_irg_callee_info_state(irg, irg_callee_info_inconsistent);
133
134                         /* exception control flow might have changed */
135                         set_irg_doms_inconsistent(irg);
136                         set_irg_extblk_inconsistent(irg);
137                         set_irg_loopinfo_inconsistent(irg);
138
139                         /* calls might be removed/added */
140                         set_trouts_inconsistent();
141
142                         /* optimize it, tuple might be created */
143                         local_optimize_graph(irg);
144
145                         nr_of_intrinsics += wenv.nr_of_intrinsics;
146                 }
147         }
148         pmap_destroy(c_map);
149
150         return nr_of_intrinsics;
151 }  /* lower_intrinsics */
152
153 /**
154  * Helper function, replace the call by the given node.
155  *
156  * @param irn      the result node
157  * @param call     the call to replace
158  * @param mem      the new mem result
159  * @param reg_jmp  new regular control flow, if NULL, a Jmp will be used
160  * @param exc_jmp  new exception control flow, if reg_jmp == NULL, a Bad will be used
161  */
162 static void replace_call(ir_node *irn, ir_node *call, ir_node *mem, ir_node *reg_jmp, ir_node *exc_jmp) {
163         ir_node *block = get_nodes_block(call);
164
165         if (reg_jmp == NULL) {
166
167                 /* Beware: do we need here a protection against CSE? Better we do it. */
168                 int old_cse = get_opt_cse();
169                 set_opt_cse(0);
170                 reg_jmp = new_r_Jmp(current_ir_graph, block);
171                 set_opt_cse(old_cse);
172                 exc_jmp = new_Bad();
173         }
174         irn = new_r_Tuple(current_ir_graph, block, 1, &irn);
175
176         turn_into_tuple(call, pn_Call_max);
177         set_Tuple_pred(call, pn_Call_M_regular, mem);
178         set_Tuple_pred(call, pn_Call_X_regular, reg_jmp);
179         set_Tuple_pred(call, pn_Call_X_except, exc_jmp);
180         set_Tuple_pred(call, pn_Call_T_result, irn);
181         set_Tuple_pred(call, pn_Call_M_except, mem);
182         set_Tuple_pred(call, pn_Call_P_value_res_base, new_Bad());
183 }  /* replace_call */
184
185 /* A mapper for the integer abs. */
186 int i_mapper_abs(ir_node *call, void *ctx) {
187         ir_node *mem   = get_Call_mem(call);
188         ir_node *block = get_nodes_block(call);
189         ir_node *op    = get_Call_param(call, 0);
190         ir_node *irn;
191         dbg_info *dbg  = get_irn_dbg_info(call);
192         (void) ctx;
193
194         irn = new_rd_Abs(dbg, current_ir_graph, block, op, get_irn_mode(op));
195         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ABS);
196         replace_call(irn, call, mem, NULL, NULL);
197         return 1;
198 }  /* i_mapper_abs */
199
200 /* A mapper for the alloca() function. */
201 int i_mapper_alloca(ir_node *call, void *ctx) {
202         ir_node *mem   = get_Call_mem(call);
203         ir_node *block = get_nodes_block(call);
204         ir_node *op    = get_Call_param(call, 0);
205         ir_node *irn, *exc, *no_exc;
206         dbg_info *dbg  = get_irn_dbg_info(call);
207         (void) ctx;
208
209         irn    = new_rd_Alloc(dbg, current_ir_graph, block, mem, op, firm_unknown_type, stack_alloc);
210         mem    = new_Proj(irn, mode_M, pn_Alloc_M);
211         no_exc = new_Proj(irn, mode_X, pn_Alloc_X_regular);
212         exc    = new_Proj(irn, mode_X, pn_Alloc_X_except);
213         irn    = new_Proj(irn, get_modeP_data(), pn_Alloc_res);
214
215         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ALLOCA);
216         replace_call(irn, call, mem, no_exc, exc);
217         return 1;
218 }  /* i_mapper_alloca */
219
220 /* A mapper for the floating point sqrt. */
221 int i_mapper_sqrt(ir_node *call, void *ctx) {
222         ir_node *mem;
223         tarval *tv;
224         ir_node *op = get_Call_param(call, 0);
225         (void) ctx;
226
227         if (!is_Const(op))
228                 return 0;
229
230         tv = get_Const_tarval(op);
231         if (! tarval_is_null(tv) && !tarval_is_one(tv))
232                 return 0;
233
234         mem = get_Call_mem(call);
235
236         /* sqrt(0) = 0, sqrt(1) = 1 */
237         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_SQRT);
238         replace_call(op, call, mem, NULL, NULL);
239         return 1;
240 }  /* i_mapper_sqrt */
241
242 /* A mapper for the floating point cbrt. */
243 int i_mapper_cbrt(ir_node *call, void *ctx) {
244         ir_node *mem;
245         tarval *tv;
246         ir_node *op = get_Call_param(call, 0);
247         (void) ctx;
248
249         if (!is_Const(op))
250                 return 0;
251
252         tv = get_Const_tarval(op);
253         if (! tarval_is_null(tv) && !tarval_is_one(tv) && !tarval_is_minus_one(tv))
254                 return 0;
255
256         mem = get_Call_mem(call);
257
258         /* cbrt(0) = 0, cbrt(1) = 1, cbrt(-1) = -1 */
259         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_CBRT);
260         replace_call(op, call, mem, NULL, NULL);
261         return 1;
262 }  /* i_mapper_cbrt */
263
264 /* A mapper for the floating point pow. */
265 int i_mapper_pow(ir_node *call, void *ctx) {
266         dbg_info *dbg;
267         ir_node *mem;
268         ir_node *left  = get_Call_param(call, 0);
269         ir_node *right = get_Call_param(call, 1);
270         ir_node *block = get_nodes_block(call);
271         ir_node *irn, *reg_jmp = NULL, *exc_jmp = NULL;
272         (void) ctx;
273
274         if (is_Const(left) && is_Const_one(left)) {
275                 /* pow (1.0, x) = 1.0 */
276                 irn = left;
277         } else if (is_Const(right)) {
278                 tarval *tv = get_Const_tarval(right);
279                 if (tarval_is_null(tv)) {
280                         /* pow(x, 0.0) = 1.0 */
281                         ir_mode *mode = get_tarval_mode(tv);
282                         irn = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
283                 } else if (tarval_is_one(tv)) {
284                         /* pow(x, 1.0) = x */
285                         irn = left;
286                 } else if (tarval_is_minus_one(tv)) {
287                         /* pow(x, -1.0) = 1/x */
288                         irn = NULL;
289                 } else
290                         return 0;
291         } else {
292                 return 0;
293         }
294
295         mem = get_Call_mem(call);
296         dbg = get_irn_dbg_info(call);
297
298         if (irn == NULL) {
299                 ir_mode *mode = get_irn_mode(left);
300                 ir_node *quot;
301
302                 irn  = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
303                 quot = new_rd_Quot(dbg, current_ir_graph, block, mem, irn, left, mode, op_pin_state_pinned);
304                 mem  = new_r_Proj(current_ir_graph, block, quot, mode_M, pn_Quot_M);
305                 irn  = new_r_Proj(current_ir_graph, block, quot, mode, pn_Quot_res);
306                 reg_jmp = new_r_Proj(current_ir_graph, block, quot, mode_X, pn_Quot_X_regular);
307                 exc_jmp = new_r_Proj(current_ir_graph, block, quot, mode_X, pn_Quot_X_except);
308         }
309         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_POW);
310         replace_call(irn, call, mem, reg_jmp, exc_jmp);
311         return 1;
312 }  /* i_mapper_pow */
313
314 /* A mapper for the floating point exp. */
315 int i_mapper_exp(ir_node *call, void *ctx) {
316         ir_node *val  = get_Call_param(call, 0);
317         (void) ctx;
318
319         if (is_Const(val) && is_Const_null(val)) {
320                 /* exp(0.0) = 1.0 */
321                 ir_node *block = get_nodes_block(call);
322                 ir_mode *mode  = get_irn_mode(val);
323                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
324                 ir_node *mem   = get_Call_mem(call);
325                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_EXP);
326                 replace_call(irn, call, mem, NULL, NULL);
327                 return 1;
328         }
329         return 0;
330 }  /* i_mapper_exp */
331
332 /**
333  * A mapper for mapping f(0.0) to 0.0.
334  */
335 static int i_mapper_zero_to_zero(ir_node *call, void *ctx, int reason) {
336         ir_node *val  = get_Call_param(call, 0);
337         (void) ctx;
338
339         if (is_Const(val) && is_Const_null(val)) {
340                 /* f(0.0) = 0.0 */
341                 ir_node *mem = get_Call_mem(call);
342                 DBG_OPT_ALGSIM0(call, val, reason);
343                 replace_call(val, call, mem, NULL, NULL);
344                 return 1;
345         }
346         return 0;
347 }  /* i_mapper_zero_to_zero */
348
349 /**
350  * A mapper for mapping f(1.0) to 0.0.
351  */
352 static int i_mapper_one_to_zero(ir_node *call, void *ctx, int reason) {
353         ir_node *val  = get_Call_param(call, 0);
354         (void) ctx;
355
356         if (is_Const(val) && is_Const_one(val)) {
357                 /* acos(1.0) = 0.0 */
358                 ir_node *block = get_nodes_block(call);
359                 ir_mode *mode  = get_irn_mode(val);
360                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
361                 ir_node *mem   = get_Call_mem(call);
362                 DBG_OPT_ALGSIM0(call, irn, reason);
363                 replace_call(irn, call, mem, NULL, NULL);
364                 return 1;
365         }
366         return 0;
367 }  /* i_mapper_one_to_zero */
368
369 /**
370  * A mapper for mapping a functions with the following characteristics:
371  * f(-x)  = f(x).
372  * f(0.0) = 1.0
373  */
374 static int i_mapper_symmetric_zero_to_one(ir_node *call, void *ctx, int reason) {
375         ir_node *val  = get_Call_param(call, 0);
376         (void) ctx;
377
378         if (is_strictConv(val)) {
379                 ir_node *op = get_Conv_op(val);
380                 if (is_Minus(op)) {
381                         /* f(-x) = f(x) with strictConv */
382                         ir_node *block = get_nodes_block(call);
383                         ir_mode *mode  = get_irn_mode(val);
384                         dbg_info *dbg  = get_irn_dbg_info(val);
385
386                         op = get_Minus_op(op);
387                         val = new_rd_Conv(dbg, current_ir_graph, block, op, mode);
388                         if (is_Conv(val)) {
389                                 /* still a Conv ? */
390                                 set_Conv_strict(val, 1);
391                         }
392                         DBG_OPT_ALGSIM2(call, op, call, FS_OPT_RTS_SYMMETRIC);
393                         set_Call_param(call, 0, val);
394                 }
395         } else if (is_Minus(val)) {
396                 /* f(-x) = f(x) */
397                 val = get_Minus_op(val);
398                 DBG_OPT_ALGSIM2(call, val, call, FS_OPT_RTS_SYMMETRIC);
399                 set_Call_param(call, 0, val);
400         }
401
402         if (is_Const(val) && is_Const_null(val)) {
403                 /* f(0.0) = 1.0 */
404                 ir_node *block = get_nodes_block(call);
405                 ir_mode *mode  = get_irn_mode(val);
406                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
407                 ir_node *mem   = get_Call_mem(call);
408                 DBG_OPT_ALGSIM0(call, irn, reason);
409                 replace_call(irn, call, mem, NULL, NULL);
410                 return 1;
411         }
412         return 0;
413 }  /* i_mapper_symmetric_zero_to_one */
414
415 /* A mapper for the floating point log. */
416 int i_mapper_log(ir_node *call, void *ctx) {
417         /* log(1.0) = 0.0 */
418         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_LOG);
419 }  /* i_mapper_log */
420
421 /* A mapper for the floating point sin. */
422 int i_mapper_sin(ir_node *call, void *ctx) {
423         /* sin(0.0) = 0.0 */
424         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SIN);
425 }  /* i_mapper_sin */
426
427 /* A mapper for the floating point cos. */
428 int i_mapper_cos(ir_node *call, void *ctx) {
429         /* cos(0.0) = 1.0, cos(-x) = x */
430         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COS);
431 }  /* i_mapper_cos */
432
433 /* A mapper for the floating point tan. */
434 int i_mapper_tan(ir_node *call, void *ctx) {
435         /* tan(0.0) = 0.0 */
436         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TAN);
437 }  /* i_mapper_tan */
438
439 /* A mapper for the floating point asin. */
440 int i_mapper_asin(ir_node *call, void *ctx) {
441         /* asin(0.0) = 0.0 */
442         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ASIN);
443 }  /* i_mapper_asin */
444
445 /* A mapper for the floating point acos. */
446 int i_mapper_acos(ir_node *call, void *ctx) {
447         /* acos(1.0) = 0.0 */
448         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_ACOS);
449 }  /* i_mapper_acos */
450
451 /* A mapper for the floating point atan. */
452 int i_mapper_atan(ir_node *call, void *ctx) {
453         /* atan(0.0) = 0.0 */
454         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ATAN);
455 }  /* i_mapper_atan */
456
457 /* A mapper for the floating point sinh. */
458 int i_mapper_sinh(ir_node *call, void *ctx) {
459         /* sinh(0.0) = 0.0 */
460         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SINH);
461 }  /* i_mapper_sinh */
462
463 /* A mapper for the floating point cosh. */
464 int i_mapper_cosh(ir_node *call, void *ctx) {
465         /* cosh(0.0) = 1.0, cosh(-x) = x */
466         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COSH);
467 }  /* i_mapper_cosh */
468
469 /* A mapper for the floating point tanh. */
470 int i_mapper_tanh(ir_node *call, void *ctx) {
471         /* tanh(0.0) = 0.0 */
472         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TANH);
473 }  /* i_mapper_tanh */
474
475 /**
476  * Return the const entity that is accessed through the pointer ptr or
477  * NULL if there is no entity (or the entity is not constant).
478  *
479  * @param ptr  the pointer
480  */
481 static ir_entity *get_const_entity(ir_node *ptr) {
482         /* FIXME: this cannot handle constant strings inside struct initializers yet */
483         if (is_SymConst_addr_ent(ptr)) {
484                 ir_entity *ent = get_SymConst_entity(ptr);
485
486                 if (get_entity_variability(ent) == variability_constant) {
487                         /* a constant entity */
488                         return ent;
489                 }
490         }
491         return NULL;
492 }  /* get_const_entity */
493
494 /**
495  * Calculate the value of strlen if possible.
496  *
497  * @param ent     the entity
498  * @param res_tp  the result type
499  *
500  * @return a Const node containing the strlen() result or NULL
501  *         if the evaluation fails
502  */
503 static ir_node *eval_strlen(ir_entity *ent, ir_type *res_tp) {
504         ir_type *tp = get_entity_type(ent);
505         ir_mode *mode;
506         int     i, n, len = -1;
507
508         if (! is_Array_type(tp))
509                 return NULL;
510         tp = get_array_element_type(tp);
511         if (! is_Primitive_type(tp))
512                 return NULL;
513         mode = get_type_mode(tp);
514
515         /* FIXME: This is too restrict, as the type char might be more the 8bits */
516         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
517                 return NULL;
518
519         n = get_compound_ent_n_values(ent);
520         for (i = 0; i < n; ++i) {
521                 ir_node *irn = get_compound_ent_value(ent, i);
522
523                 if (! is_Const(irn))
524                         return NULL;
525
526                 if (is_Const_null(irn)) {
527                         /* found the length */
528                         len = i;
529                         break;
530                 }
531         }
532         if (len >= 0) {
533                 tarval *tv = new_tarval_from_long(len, get_type_mode(res_tp));
534                 return new_Const_type(tv, res_tp);
535         }
536         return NULL;
537 }  /* eval_strlen */
538
539 /* A mapper for strlen */
540 int i_mapper_strlen(ir_node *call, void *ctx) {
541         ir_node *s     = get_Call_param(call, 0);
542         ir_entity *ent = get_const_entity(s);
543
544         (void) ctx;
545
546         /* FIXME: this cannot handle constant strings inside struct initializers yet */
547         if (ent != NULL) {
548                 /* a constant entity */
549                 ir_type *tp = get_Call_type(call);
550                 ir_node *irn;
551
552                 tp  = get_method_res_type(tp, 0);
553                 irn = eval_strlen(ent, tp);
554
555                 if (irn) {
556                         ir_node *mem = get_Call_mem(call);
557                         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRLEN);
558                         replace_call(irn, call, mem, NULL, NULL);
559                         return 1;
560                 }
561         }
562         return 0;
563 }  /* i_mapper_strlen */
564
565 /**
566  * Calculate the value of strlen if possible.
567  *
568  * @param left    the left entity
569  * @param right   the right entity
570  * @param res_tp  the result type
571  *
572  * @return a Const node containing the strcmp() result or NULL
573  *         if the evaluation fails
574  */
575 static ir_node *eval_strcmp(ir_entity *left, ir_entity *right, ir_type *res_tp) {
576         ir_type *tp;
577         ir_mode *mode;
578         int     i, n, n_r, res;
579
580         tp = get_entity_type(left);
581         if (! is_Array_type(tp))
582                 return NULL;
583         tp = get_array_element_type(tp);
584         if (! is_Primitive_type(tp))
585                 return NULL;
586         mode = get_type_mode(tp);
587
588         /* FIXME: This is too restrict, as the type char might be more the 8bits */
589         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
590                 return NULL;
591
592         tp = get_entity_type(right);
593         if (! is_Array_type(tp))
594                 return NULL;
595         tp = get_array_element_type(tp);
596         if (! is_Primitive_type(tp))
597                 return NULL;
598         mode = get_type_mode(tp);
599
600         /* FIXME: This is too restrict, as the type char might be more the 8bits */
601         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
602                 return NULL;
603
604         n   = get_compound_ent_n_values(left);
605         n_r = get_compound_ent_n_values(right);
606         if (n_r < n)
607                 n = n_r;
608         for (i = 0; i < n; ++i) {
609                 ir_node *irn;
610                 long v_l, v_r;
611                 tarval *tv;
612
613                 irn = get_compound_ent_value(left, i);
614                 if (! is_Const(irn))
615                         return NULL;
616                 tv = get_Const_tarval(irn);
617                 v_l = get_tarval_long(tv);
618
619                 irn = get_compound_ent_value(right, i);
620                 if (! is_Const(irn))
621                         return NULL;
622                 tv = get_Const_tarval(irn);
623                 v_r = get_tarval_long(tv);
624
625                 if (v_l < v_r) {
626                         res = -1;
627                         break;
628                 }
629                 if (v_l > v_r) {
630                         res = +1;
631                         break;
632                 }
633
634                 if (v_l == 0) {
635                         res = 0;
636                         break;
637                 }
638         }
639         if (i < n) {
640                 /* we found an end */
641                 tarval *tv = new_tarval_from_long(res, get_type_mode(res_tp));
642                 return new_Const_type(tv, res_tp);
643         }
644         return NULL;
645 }  /* eval_strcmp */
646
647 /**
648  * Checks if an entity represents the empty string.
649  *
650  * @param ent     the entity
651  *
652  * @return non-zero if ent represents the empty string
653  */
654 static int is_empty_string(ir_entity *ent) {
655         ir_type *tp = get_entity_type(ent);
656         ir_mode *mode;
657         int     n;
658         ir_node *irn;
659
660         if (! is_Array_type(tp))
661                 return 0;
662         tp = get_array_element_type(tp);
663         if (! is_Primitive_type(tp))
664                 return 0;
665         mode = get_type_mode(tp);
666
667         /* FIXME: This is too restrict, as the type char might be more the 8bits */
668         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
669                 return 0;
670
671         n = get_compound_ent_n_values(ent);
672         if (n < 1)
673                 return 0;
674         irn = get_compound_ent_value(ent, 0);
675
676         return is_Const(irn) && is_Const_null(irn);
677 }  /* is_empty_string */
678
679 /* A mapper for strcmp */
680 int i_mapper_strcmp(ir_node *call, void *ctx) {
681         ir_node   *left    = get_Call_param(call, 0);
682         ir_node   *right   = get_Call_param(call, 1);
683         ir_node   *irn     = NULL;
684         ir_node   *exc     = NULL;
685         ir_node   *reg     = NULL;
686         ir_node   *adr     = get_Call_ptr(call);
687         ir_entity *ent     = get_SymConst_entity(adr);
688         ir_type   *call_tp = get_entity_type(ent);
689         ir_type   *res_tp  = get_method_res_type(call_tp, 0);
690         ir_entity *ent_l, *ent_r;
691         ir_type   *char_tp;
692         ir_node   *v;
693
694         (void) ctx;
695
696         /* do some type checks first */
697         if (! is_Primitive_type(res_tp))
698                 return 0;
699         char_tp = get_method_param_type(call_tp, 0);
700         if (char_tp != get_method_param_type(call_tp, 1))
701                 return 0;
702         if (! is_Pointer_type(char_tp))
703                 return 0;
704         char_tp = get_pointer_points_to_type(char_tp);
705
706         if (left == right) {
707                 /* a strcmp(s, s) ==> 0 */
708                 ir_node *mem   = get_Call_mem(call);
709                 ir_mode *mode  = get_type_mode(res_tp);
710                 ir_node *block = get_nodes_block(call);
711
712                 irn = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
713                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
714                 replace_call(irn, call, mem, NULL, NULL);
715                 return 1;
716         }
717         ent_l = get_const_entity(left);
718         ent_r = get_const_entity(right);
719
720         if (ent_l != NULL && ent_r != NULL) {
721                 /* both entities are const, try to evaluate */
722                 irn = eval_strcmp(ent_l, ent_r, res_tp);
723         } else if (ent_l != NULL) {
724                 if (is_empty_string(ent_l)) {
725                         /* s strcmp("", s) ==> -(*s)*/
726                         v = right;
727                         goto replace_by_call;
728                 }
729         } else if (ent_r != NULL) {
730                 if (is_empty_string(ent_r)) {
731                         /* s strcmp(s, "") ==> (*s) */
732                         ir_node  *mem, *block;
733                         dbg_info *dbg;
734                         ir_mode  *mode;
735
736                         v = left;
737 replace_by_call:
738                         mem   = get_Call_mem(call);
739                         block = get_nodes_block(call);
740                         dbg   = get_irn_dbg_info(call);
741                         mode  = get_type_mode(char_tp);
742
743                         /* replace the strcmp by (*x) */
744                         irn = new_rd_Load(dbg, current_ir_graph, block, mem, v, mode);
745                         mem = new_r_Proj(current_ir_graph, block, irn, mode_M, pn_Load_M);
746                         exc = new_r_Proj(current_ir_graph, block, irn, mode_X, pn_Load_X_except);
747                         reg = new_r_Proj(current_ir_graph, block, irn, mode_X, pn_Load_X_regular);
748                         irn = new_r_Proj(current_ir_graph, block, irn, mode, pn_Load_res);
749
750                         /* conv to the result mode */
751                         mode = get_type_mode(res_tp);
752                         irn  = new_rd_Conv(dbg, current_ir_graph, block, irn, mode);
753
754                         if (v == right) {
755                                 /* negate in the ("", s) case */
756                                 irn = new_rd_Minus(dbg, current_ir_graph, block, irn, mode);
757                         }
758                 }
759         }
760
761         if (irn != NULL) {
762                 ir_node *mem = get_Call_mem(call);
763                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
764                 replace_call(irn, call, mem, reg, exc);
765                 return 1;
766         }
767
768         return 0;
769 }  /* i_mapper_strcmp */
770
771 /* A mapper for strncmp */
772 int i_mapper_strncmp(ir_node *call, void *ctx) {
773         ir_node *left  = get_Call_param(call, 0);
774         ir_node *right = get_Call_param(call, 1);
775         ir_node *len   = get_Call_param(call, 2);
776         ir_node *irn;
777         (void) ctx;
778
779         if (left == right || (is_Const(len) && is_Const_null(len))) {
780                 /* a strncmp(s, s, len) ==> 0 OR
781                    a strncmp(a, b, 0) ==> 0 */
782                 ir_node   *mem     = get_Call_mem(call);
783                 ir_node   *adr     = get_Call_ptr(call);
784                 ir_entity *ent     = get_SymConst_entity(adr);
785                 ir_type   *call_tp = get_entity_type(ent);
786                 ir_type   *res_tp  = get_method_res_type(call_tp, 0);
787                 ir_mode   *mode    = get_type_mode(res_tp);
788                 ir_node   *block   = get_nodes_block(call);
789
790                 irn = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
791                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRNCMP);
792                 replace_call(irn, call, mem, NULL, NULL);
793                 return 1;
794         }
795         return 0;
796 }  /* i_mapper_strncmp */
797
798 /* A mapper for memcpy */
799 int i_mapper_memcpy(ir_node *call, void *ctx) {
800         ir_node *len = get_Call_param(call, 2);
801         (void) ctx;
802
803         if (is_Const(len) && is_Const_null(len)) {
804                 /* a memcpy(d, s, 0) ==> d */
805                 ir_node *mem = get_Call_mem(call);
806                 ir_node *dst = get_Call_param(call, 0);
807
808                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMCPY);
809                 replace_call(dst, call, mem, NULL, NULL);
810                 return 1;
811         }
812         return 0;
813 }  /* i_mapper_memcpy */
814
815 /* A mapper for memset */
816 int i_mapper_memset(ir_node *call, void *ctx) {
817         ir_node *len = get_Call_param(call, 2);
818         (void) ctx;
819
820         if (is_Const(len) && is_Const_null(len)) {
821                 /* a memset(d, C, 0) ==> d */
822                 ir_node *mem = get_Call_mem(call);
823                 ir_node *dst = get_Call_param(call, 0);
824
825                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMSET);
826                 replace_call(dst, call, mem, NULL, NULL);
827                 return 1;
828         }
829         return 0;
830 }  /* i_mapper_memset */
831
832 /**
833  * Returns the result mode of a node.
834  */
835 static ir_mode *get_irn_res_mode(ir_node *node) {
836         switch (get_irn_opcode(node)) {
837         case iro_Load:   return get_Load_mode(node);
838         case iro_Quot:   return get_Quot_resmode(node);
839         case iro_Div:    return get_Div_resmode(node);
840         case iro_Mod:    return get_Mod_resmode(node);
841         case iro_DivMod: return get_DivMod_resmode(node);
842         default: return NULL;
843         }
844 }  /* get_irn_res_mode */
845
846 #define LMAX(a, b) ((a) > (b) ? (a) : (b))
847
848 /* A mapper for mapping unsupported instructions to runtime calls. */
849 int i_mapper_RuntimeCall(ir_node *node, runtime_rt *rt) {
850         int i, j, arity, first, n_param, n_res;
851         long n_proj;
852         ir_type *mtp;
853         ir_node *mem, *bl, *call, *addr, *res_proj;
854         ir_node **in;
855         ir_graph *irg;
856         symconst_symbol sym;
857         ir_mode *mode = get_irn_mode(node);
858
859         if (mode != rt->mode)
860                 return 0;
861         /* check if the result modes match */
862         if (mode == mode_T && rt->res_mode != NULL) {
863                 mode = get_irn_res_mode(node);
864                 if (mode != rt->res_mode)
865                         return 0;
866         }
867
868         arity = get_irn_arity(node);
869         if (arity <= 0)
870                 return 0;
871
872         mtp     = get_entity_type(rt->ent);
873         n_param = get_method_n_params(mtp);
874         irg     = current_ir_graph;
875
876         mem = get_irn_n(node, 0);
877         if (get_irn_mode(mem) != mode_M) {
878                 mem = new_r_NoMem(irg);
879                 first = 0;
880         } else
881                 first = 1;
882
883         /* check if the modes of the predecessors match the parameter modes */
884         if (arity - first != n_param)
885                 return 0;
886
887         for (i = first, j = 0; i < arity; ++i, ++j) {
888                 ir_type *param_tp = get_method_param_type(mtp, j);
889                 ir_node *pred = get_irn_n(node, i);
890
891                 if (get_type_mode(param_tp) != get_irn_mode(pred))
892                         return 0;
893         }
894
895         n_res = get_method_n_ress(mtp);
896
897         /* step 0: calculate the number of needed Proj's */
898         n_proj = 0;
899         n_proj = LMAX(n_proj, rt->mem_proj_nr + 1);
900         n_proj = LMAX(n_proj, rt->regular_proj_nr + 1);
901         n_proj = LMAX(n_proj, rt->exc_proj_nr + 1);
902         n_proj = LMAX(n_proj, rt->exc_mem_proj_nr + 1);
903         n_proj = LMAX(n_proj, rt->res_proj_nr + 1);
904
905         if (n_proj > 0) {
906                 if (rt->mode != mode_T) /* must be mode_T */
907                         return 0;
908         } else {
909                 if (n_res > 0)
910                         /* must match */
911                         if (get_type_mode(get_method_res_type(mtp, 0)) != rt->mode)
912                                 return 0;
913         }
914
915         /* ok, when we are here, the number of predecessors match as well as the parameter modes */
916         bl = get_nodes_block(node);
917
918         in = NULL;
919         if (n_param > 0) {
920                 NEW_ARR_A(ir_node *, in, n_param);
921                 for (i = 0; i < n_param; ++i)
922                         in[i] = get_irn_n(node, first + i);
923         }
924
925         /* step 1: create the call */
926         sym.entity_p = rt->ent;
927         addr = new_r_SymConst(irg, bl, mode_P_code, sym, symconst_addr_ent);
928         call = new_rd_Call(get_irn_dbg_info(node), irg, bl, mem, addr, n_param, in, mtp);
929         set_irn_pinned(call, get_irn_pinned(node));
930
931         if (n_res > 0)
932                 res_proj = new_r_Proj(irg, bl, call, mode_T, pn_Call_T_result);
933         else
934                 res_proj = NULL;
935
936         if (n_proj > 0) {
937                 n_proj += n_res - 1;
938
939                 /* we are ready */
940                 turn_into_tuple(node, n_proj);
941
942                 for (i = 0; i < n_proj; ++i)
943                         set_Tuple_pred(node, i, new_r_Bad(irg));
944                 if (rt->mem_proj_nr >= 0)
945                         set_Tuple_pred(node, rt->mem_proj_nr, new_r_Proj(irg, bl, call, mode_M, pn_Call_M_regular));
946                 if (get_irn_op(mem) != op_NoMem) {
947                         /* Exceptions can only be handled with real memory */
948                         if (rt->regular_proj_nr >= 0)
949                                 set_Tuple_pred(node, rt->regular_proj_nr, new_r_Proj(irg, bl, call, mode_X, pn_Call_X_regular));
950                         if (rt->exc_proj_nr >= 0)
951                                 set_Tuple_pred(node, rt->exc_proj_nr, new_r_Proj(irg, bl, call, mode_X, pn_Call_X_except));
952                         if (rt->exc_mem_proj_nr >= 0)
953                                 set_Tuple_pred(node, rt->mem_proj_nr, new_r_Proj(irg, bl, call, mode_M, pn_Call_M_except));
954                 }
955
956                 if (rt->res_proj_nr >= 0)
957                         for (i = 0; i < n_res; ++i)
958                                 set_Tuple_pred(node, rt->res_proj_nr + i,
959                                 new_r_Proj(irg, bl, res_proj, get_type_mode(get_method_res_type(mtp, i)), i));
960                         return 1;
961         } else {
962                 /* only one return value supported */
963                 if (n_res > 0) {
964                         ir_mode *mode = get_type_mode(get_method_res_type(mtp, 0));
965
966                         res_proj = new_r_Proj(irg, bl, call, mode_T, pn_Call_T_result);
967                         res_proj = new_r_Proj(irg, bl, res_proj, mode, 0);
968
969                         exchange(node, res_proj);
970                         return 1;
971                 }
972         }
973         /* should not happen */
974         return 0;
975 }  /* i_mapper_RuntimeCall */