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