4cf72337152e1e21db4cbd5cd9e90d35383dee9e
[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                         collect_phiprojs(irg);
124
125                 wenv.nr_of_intrinsics = 0;
126                 irg_walk_graph(irg, NULL, call_mapper, &wenv);
127
128                 if (wenv.nr_of_intrinsics > 0) {
129                         /* Changes detected: we might have added/removed nodes. */
130                         set_irg_outs_inconsistent(irg);
131                         set_irg_callee_info_state(irg, irg_callee_info_inconsistent);
132
133                         /* Exception control flow might have changed / new block might have added. */
134                         set_irg_doms_inconsistent(irg);
135                         set_irg_extblk_inconsistent(irg);
136                         set_irg_loopinfo_inconsistent(irg);
137
138                         /* Calls might be removed/added. */
139                         set_trouts_inconsistent();
140
141                         /* verify here */
142                         irg_verify(irg, VRFY_NORMAL);
143
144                         /* Optimize it, tuple might be created. */
145                         optimize_graph_df(irg);
146
147                         nr_of_intrinsics += wenv.nr_of_intrinsics;
148                 }
149         }
150         pmap_destroy(c_map);
151
152         return nr_of_intrinsics;
153 }  /* lower_intrinsics */
154
155 /**
156  * Helper function, replace the call by the given node.
157  *
158  * @param irn      the result node
159  * @param call     the call to replace
160  * @param mem      the new mem result
161  * @param reg_jmp  new regular control flow, if NULL, a Jmp will be used
162  * @param exc_jmp  new exception control flow, if reg_jmp == NULL, a Bad will be used
163  */
164 static void replace_call(ir_node *irn, ir_node *call, ir_node *mem, ir_node *reg_jmp, ir_node *exc_jmp) {
165         ir_node *block = get_nodes_block(call);
166
167         if (reg_jmp == NULL) {
168
169                 /* Beware: do we need here a protection against CSE? Better we do it. */
170                 int old_cse = get_opt_cse();
171                 set_opt_cse(0);
172                 reg_jmp = new_r_Jmp(current_ir_graph, block);
173                 set_opt_cse(old_cse);
174                 exc_jmp = new_Bad();
175         }
176         irn = new_r_Tuple(current_ir_graph, block, 1, &irn);
177
178         turn_into_tuple(call, pn_Call_max);
179         set_Tuple_pred(call, pn_Call_M_regular, mem);
180         set_Tuple_pred(call, pn_Call_X_regular, reg_jmp);
181         set_Tuple_pred(call, pn_Call_X_except, exc_jmp);
182         set_Tuple_pred(call, pn_Call_T_result, irn);
183         set_Tuple_pred(call, pn_Call_M_except, mem);
184         set_Tuple_pred(call, pn_Call_P_value_res_base, new_Bad());
185 }  /* replace_call */
186
187 /* A mapper for the integer abs. */
188 int i_mapper_abs(ir_node *call, void *ctx) {
189         ir_node *mem   = get_Call_mem(call);
190         ir_node *block = get_nodes_block(call);
191         ir_node *op    = get_Call_param(call, 0);
192         ir_node *irn;
193         dbg_info *dbg  = get_irn_dbg_info(call);
194         (void) ctx;
195
196         irn = new_rd_Abs(dbg, current_ir_graph, block, op, get_irn_mode(op));
197         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ABS);
198         replace_call(irn, call, mem, NULL, NULL);
199         return 1;
200 }  /* i_mapper_abs */
201
202 /* A mapper for the alloca() function. */
203 int i_mapper_alloca(ir_node *call, void *ctx) {
204         ir_node *mem   = get_Call_mem(call);
205         ir_node *block = get_nodes_block(call);
206         ir_node *op    = get_Call_param(call, 0);
207         ir_node *irn, *exc, *no_exc;
208         dbg_info *dbg  = get_irn_dbg_info(call);
209         (void) ctx;
210
211         if (mode_is_signed(get_irn_mode(op))) {
212                 op = new_rd_Conv(dbg, current_ir_graph, block, op, mode_Iu);
213         }
214
215         irn    = new_rd_Alloc(dbg, current_ir_graph, block, mem, op, firm_unknown_type, stack_alloc);
216         mem    = new_rd_Proj(dbg, current_ir_graph, block, irn, mode_M, pn_Alloc_M);
217         no_exc = new_rd_Proj(dbg, current_ir_graph, block, irn, mode_X, pn_Alloc_X_regular);
218         exc    = new_rd_Proj(dbg, current_ir_graph, block, irn, mode_X, pn_Alloc_X_except);
219         irn    = new_rd_Proj(dbg, current_ir_graph, block, irn, get_modeP_data(), pn_Alloc_res);
220
221         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ALLOCA);
222         replace_call(irn, call, mem, no_exc, exc);
223         return 1;
224 }  /* i_mapper_alloca */
225
226 /* A mapper for the floating point sqrt. */
227 int i_mapper_sqrt(ir_node *call, void *ctx) {
228         ir_node *mem;
229         tarval *tv;
230         ir_node *op = get_Call_param(call, 0);
231         (void) ctx;
232
233         if (!is_Const(op))
234                 return 0;
235
236         tv = get_Const_tarval(op);
237         if (! tarval_is_null(tv) && !tarval_is_one(tv))
238                 return 0;
239
240         mem = get_Call_mem(call);
241
242         /* sqrt(0) = 0, sqrt(1) = 1 */
243         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_SQRT);
244         replace_call(op, call, mem, NULL, NULL);
245         return 1;
246 }  /* i_mapper_sqrt */
247
248 /* A mapper for the floating point cbrt. */
249 int i_mapper_cbrt(ir_node *call, void *ctx) {
250         ir_node *mem;
251         tarval *tv;
252         ir_node *op = get_Call_param(call, 0);
253         (void) ctx;
254
255         if (!is_Const(op))
256                 return 0;
257
258         tv = get_Const_tarval(op);
259         if (! tarval_is_null(tv) && !tarval_is_one(tv) && !tarval_is_minus_one(tv))
260                 return 0;
261
262         mem = get_Call_mem(call);
263
264         /* cbrt(0) = 0, cbrt(1) = 1, cbrt(-1) = -1 */
265         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_CBRT);
266         replace_call(op, call, mem, NULL, NULL);
267         return 1;
268 }  /* i_mapper_cbrt */
269
270 /* A mapper for the floating point pow. */
271 int i_mapper_pow(ir_node *call, void *ctx) {
272         dbg_info *dbg;
273         ir_node *mem;
274         ir_node *left  = get_Call_param(call, 0);
275         ir_node *right = get_Call_param(call, 1);
276         ir_node *block = get_nodes_block(call);
277         ir_node *irn, *reg_jmp = NULL, *exc_jmp = NULL;
278         (void) ctx;
279
280         if (is_Const(left) && is_Const_one(left)) {
281                 /* pow (1.0, x) = 1.0 */
282                 irn = left;
283         } else if (is_Const(right)) {
284                 tarval *tv = get_Const_tarval(right);
285                 if (tarval_is_null(tv)) {
286                         /* pow(x, 0.0) = 1.0 */
287                         ir_mode *mode = get_tarval_mode(tv);
288                         irn = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
289                 } else if (tarval_is_one(tv)) {
290                         /* pow(x, 1.0) = x */
291                         irn = left;
292                 } else if (tarval_is_minus_one(tv)) {
293                         /* pow(x, -1.0) = 1/x */
294                         irn = NULL;
295                 } else
296                         return 0;
297         } else {
298                 return 0;
299         }
300
301         mem = get_Call_mem(call);
302         dbg = get_irn_dbg_info(call);
303
304         if (irn == NULL) {
305                 ir_mode *mode = get_irn_mode(left);
306                 ir_node *quot;
307
308                 irn  = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
309                 quot = new_rd_Quot(dbg, current_ir_graph, block, mem, irn, left, mode, op_pin_state_pinned);
310                 mem  = new_r_Proj(current_ir_graph, block, quot, mode_M, pn_Quot_M);
311                 irn  = new_r_Proj(current_ir_graph, block, quot, mode, pn_Quot_res);
312                 reg_jmp = new_r_Proj(current_ir_graph, block, quot, mode_X, pn_Quot_X_regular);
313                 exc_jmp = new_r_Proj(current_ir_graph, block, quot, mode_X, pn_Quot_X_except);
314         }
315         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_POW);
316         replace_call(irn, call, mem, reg_jmp, exc_jmp);
317         return 1;
318 }  /* i_mapper_pow */
319
320 /* A mapper for the floating point exp. */
321 int i_mapper_exp(ir_node *call, void *ctx) {
322         ir_node *val  = get_Call_param(call, 0);
323         (void) ctx;
324
325         if (is_Const(val) && is_Const_null(val)) {
326                 /* exp(0.0) = 1.0 */
327                 ir_node *block = get_nodes_block(call);
328                 ir_mode *mode  = get_irn_mode(val);
329                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
330                 ir_node *mem   = get_Call_mem(call);
331                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_EXP);
332                 replace_call(irn, call, mem, NULL, NULL);
333                 return 1;
334         }
335         return 0;
336 }  /* i_mapper_exp */
337
338 /**
339  * A mapper for mapping f(0.0) to 0.0.
340  */
341 static int i_mapper_zero_to_zero(ir_node *call, void *ctx, int reason) {
342         ir_node *val  = get_Call_param(call, 0);
343         (void) ctx;
344
345         if (is_Const(val) && is_Const_null(val)) {
346                 /* f(0.0) = 0.0 */
347                 ir_node *mem = get_Call_mem(call);
348                 DBG_OPT_ALGSIM0(call, val, reason);
349                 replace_call(val, call, mem, NULL, NULL);
350                 return 1;
351         }
352         return 0;
353 }  /* i_mapper_zero_to_zero */
354
355 /**
356  * A mapper for mapping f(1.0) to 0.0.
357  */
358 static int i_mapper_one_to_zero(ir_node *call, void *ctx, int reason) {
359         ir_node *val  = get_Call_param(call, 0);
360         (void) ctx;
361
362         if (is_Const(val) && is_Const_one(val)) {
363                 /* acos(1.0) = 0.0 */
364                 ir_node *block = get_nodes_block(call);
365                 ir_mode *mode  = get_irn_mode(val);
366                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
367                 ir_node *mem   = get_Call_mem(call);
368                 DBG_OPT_ALGSIM0(call, irn, reason);
369                 replace_call(irn, call, mem, NULL, NULL);
370                 return 1;
371         }
372         return 0;
373 }  /* i_mapper_one_to_zero */
374
375 /**
376  * A mapper for mapping a functions with the following characteristics:
377  * f(-x)  = f(x).
378  * f(0.0) = 1.0
379  */
380 static int i_mapper_symmetric_zero_to_one(ir_node *call, void *ctx, int reason) {
381         ir_node *val  = get_Call_param(call, 0);
382         (void) ctx;
383
384         if (is_strictConv(val)) {
385                 ir_node *op = get_Conv_op(val);
386                 if (is_Minus(op)) {
387                         /* f(-x) = f(x) with strictConv */
388                         ir_node *block = get_nodes_block(call);
389                         ir_mode *mode  = get_irn_mode(val);
390                         dbg_info *dbg  = get_irn_dbg_info(val);
391
392                         op = get_Minus_op(op);
393                         val = new_rd_Conv(dbg, current_ir_graph, block, op, mode);
394                         if (is_Conv(val)) {
395                                 /* still a Conv ? */
396                                 set_Conv_strict(val, 1);
397                         }
398                         DBG_OPT_ALGSIM2(call, op, call, FS_OPT_RTS_SYMMETRIC);
399                         set_Call_param(call, 0, val);
400                 }
401         } else if (is_Minus(val)) {
402                 /* f(-x) = f(x) */
403                 val = get_Minus_op(val);
404                 DBG_OPT_ALGSIM2(call, val, call, FS_OPT_RTS_SYMMETRIC);
405                 set_Call_param(call, 0, val);
406         }
407
408         if (is_Const(val) && is_Const_null(val)) {
409                 /* f(0.0) = 1.0 */
410                 ir_node *block = get_nodes_block(call);
411                 ir_mode *mode  = get_irn_mode(val);
412                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
413                 ir_node *mem   = get_Call_mem(call);
414                 DBG_OPT_ALGSIM0(call, irn, reason);
415                 replace_call(irn, call, mem, NULL, NULL);
416                 return 1;
417         }
418         return 0;
419 }  /* i_mapper_symmetric_zero_to_one */
420
421 /* A mapper for the floating point log. */
422 int i_mapper_log(ir_node *call, void *ctx) {
423         /* log(1.0) = 0.0 */
424         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_LOG);
425 }  /* i_mapper_log */
426
427 /* A mapper for the floating point sin. */
428 int i_mapper_sin(ir_node *call, void *ctx) {
429         /* sin(0.0) = 0.0 */
430         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SIN);
431 }  /* i_mapper_sin */
432
433 /* A mapper for the floating point cos. */
434 int i_mapper_cos(ir_node *call, void *ctx) {
435         /* cos(0.0) = 1.0, cos(-x) = x */
436         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COS);
437 }  /* i_mapper_cos */
438
439 /* A mapper for the floating point tan. */
440 int i_mapper_tan(ir_node *call, void *ctx) {
441         /* tan(0.0) = 0.0 */
442         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TAN);
443 }  /* i_mapper_tan */
444
445 /* A mapper for the floating point asin. */
446 int i_mapper_asin(ir_node *call, void *ctx) {
447         /* asin(0.0) = 0.0 */
448         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ASIN);
449 }  /* i_mapper_asin */
450
451 /* A mapper for the floating point acos. */
452 int i_mapper_acos(ir_node *call, void *ctx) {
453         /* acos(1.0) = 0.0 */
454         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_ACOS);
455 }  /* i_mapper_acos */
456
457 /* A mapper for the floating point atan. */
458 int i_mapper_atan(ir_node *call, void *ctx) {
459         /* atan(0.0) = 0.0 */
460         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ATAN);
461 }  /* i_mapper_atan */
462
463 /* A mapper for the floating point sinh. */
464 int i_mapper_sinh(ir_node *call, void *ctx) {
465         /* sinh(0.0) = 0.0 */
466         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SINH);
467 }  /* i_mapper_sinh */
468
469 /* A mapper for the floating point cosh. */
470 int i_mapper_cosh(ir_node *call, void *ctx) {
471         /* cosh(0.0) = 1.0, cosh(-x) = x */
472         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COSH);
473 }  /* i_mapper_cosh */
474
475 /* A mapper for the floating point tanh. */
476 int i_mapper_tanh(ir_node *call, void *ctx) {
477         /* tanh(0.0) = 0.0 */
478         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TANH);
479 }  /* i_mapper_tanh */
480
481 /**
482  * Return the const entity that is accessed through the pointer ptr or
483  * NULL if there is no entity (or the entity is not constant).
484  *
485  * @param ptr  the pointer
486  */
487 static ir_entity *get_const_entity(ir_node *ptr) {
488         /* FIXME: this cannot handle constant strings inside struct initializers yet */
489         if (is_Global(ptr)) {
490                 ir_entity *ent = get_Global_entity(ptr);
491
492                 if (get_entity_variability(ent) == variability_constant) {
493                         /* a constant entity */
494                         return ent;
495                 }
496         }
497         return NULL;
498 }  /* get_const_entity */
499
500 /**
501  * Calculate the value of strlen if possible.
502  *
503  * @param ent     the entity
504  * @param res_tp  the result type
505  *
506  * @return a Const node containing the strlen() result or NULL
507  *         if the evaluation fails
508  */
509 static ir_node *eval_strlen(ir_entity *ent, ir_type *res_tp) {
510         ir_type *tp = get_entity_type(ent);
511         ir_mode *mode;
512         int     i, n, len = -1;
513
514         if (! is_Array_type(tp))
515                 return NULL;
516         tp = get_array_element_type(tp);
517         if (! is_Primitive_type(tp))
518                 return NULL;
519         mode = get_type_mode(tp);
520
521         /* FIXME: This is too restrict, as the type char might be more the 8bits */
522         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
523                 return NULL;
524
525         n = get_compound_ent_n_values(ent);
526         for (i = 0; i < n; ++i) {
527                 ir_node *irn = get_compound_ent_value(ent, i);
528
529                 if (! is_Const(irn))
530                         return NULL;
531
532                 if (is_Const_null(irn)) {
533                         /* found the length */
534                         len = i;
535                         break;
536                 }
537         }
538         if (len >= 0) {
539                 tarval *tv = new_tarval_from_long(len, get_type_mode(res_tp));
540                 return new_Const_type(tv, res_tp);
541         }
542         return NULL;
543 }  /* eval_strlen */
544
545 /* A mapper for strlen */
546 int i_mapper_strlen(ir_node *call, void *ctx) {
547         ir_node *s     = get_Call_param(call, 0);
548         ir_entity *ent = get_const_entity(s);
549
550         (void) ctx;
551
552         /* FIXME: this cannot handle constant strings inside struct initializers yet */
553         if (ent != NULL) {
554                 /* a constant entity */
555                 ir_type *tp = get_Call_type(call);
556                 ir_node *irn;
557
558                 tp  = get_method_res_type(tp, 0);
559                 irn = eval_strlen(ent, tp);
560
561                 if (irn) {
562                         ir_node *mem = get_Call_mem(call);
563                         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRLEN);
564                         replace_call(irn, call, mem, NULL, NULL);
565                         return 1;
566                 }
567         }
568         return 0;
569 }  /* i_mapper_strlen */
570
571 /**
572  * Calculate the value of strlen if possible.
573  *
574  * @param left    the left entity
575  * @param right   the right entity
576  * @param res_tp  the result type
577  *
578  * @return a Const node containing the strcmp() result or NULL
579  *         if the evaluation fails
580  */
581 static ir_node *eval_strcmp(ir_entity *left, ir_entity *right, ir_type *res_tp) {
582         ir_type *tp;
583         ir_mode *mode;
584         int     i, n, n_r, res;
585
586         tp = get_entity_type(left);
587         if (! is_Array_type(tp))
588                 return NULL;
589         tp = get_array_element_type(tp);
590         if (! is_Primitive_type(tp))
591                 return NULL;
592         mode = get_type_mode(tp);
593
594         /* FIXME: This is too restrict, as the type char might be more the 8bits */
595         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
596                 return NULL;
597
598         tp = get_entity_type(right);
599         if (! is_Array_type(tp))
600                 return NULL;
601         tp = get_array_element_type(tp);
602         if (! is_Primitive_type(tp))
603                 return NULL;
604         mode = get_type_mode(tp);
605
606         /* FIXME: This is too restrict, as the type char might be more the 8bits */
607         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
608                 return NULL;
609
610         n   = get_compound_ent_n_values(left);
611         n_r = get_compound_ent_n_values(right);
612         if (n_r < n)
613                 n = n_r;
614         for (i = 0; i < n; ++i) {
615                 ir_node *irn;
616                 long v_l, v_r;
617                 tarval *tv;
618
619                 irn = get_compound_ent_value(left, i);
620                 if (! is_Const(irn))
621                         return NULL;
622                 tv = get_Const_tarval(irn);
623                 v_l = get_tarval_long(tv);
624
625                 irn = get_compound_ent_value(right, i);
626                 if (! is_Const(irn))
627                         return NULL;
628                 tv = get_Const_tarval(irn);
629                 v_r = get_tarval_long(tv);
630
631                 if (v_l < v_r) {
632                         res = -1;
633                         break;
634                 }
635                 if (v_l > v_r) {
636                         res = +1;
637                         break;
638                 }
639
640                 if (v_l == 0) {
641                         res = 0;
642                         break;
643                 }
644         }
645         if (i < n) {
646                 /* we found an end */
647                 tarval *tv = new_tarval_from_long(res, get_type_mode(res_tp));
648                 return new_Const_type(tv, res_tp);
649         }
650         return NULL;
651 }  /* eval_strcmp */
652
653 /**
654  * Checks if an entity represents the empty string.
655  *
656  * @param ent     the entity
657  *
658  * @return non-zero if ent represents the empty string
659  */
660 static int is_empty_string(ir_entity *ent) {
661         ir_type *tp = get_entity_type(ent);
662         ir_mode *mode;
663         int     n;
664         ir_node *irn;
665
666         if (! is_Array_type(tp))
667                 return 0;
668         tp = get_array_element_type(tp);
669         if (! is_Primitive_type(tp))
670                 return 0;
671         mode = get_type_mode(tp);
672
673         /* FIXME: This is too restrict, as the type char might be more the 8bits */
674         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
675                 return 0;
676
677         n = get_compound_ent_n_values(ent);
678         if (n < 1)
679                 return 0;
680         irn = get_compound_ent_value(ent, 0);
681
682         return is_Const(irn) && is_Const_null(irn);
683 }  /* is_empty_string */
684
685 /* A mapper for strcmp */
686 int i_mapper_strcmp(ir_node *call, void *ctx) {
687         ir_node   *left    = get_Call_param(call, 0);
688         ir_node   *right   = get_Call_param(call, 1);
689         ir_node   *irn     = NULL;
690         ir_node   *exc     = NULL;
691         ir_node   *reg     = NULL;
692         ir_type   *call_tp = get_Call_type(call);
693         ir_type   *res_tp  = get_method_res_type(call_tp, 0);
694         ir_entity *ent_l, *ent_r;
695         ir_type   *char_tp;
696         ir_node   *v;
697
698         (void) ctx;
699
700         /* do some type checks first */
701         if (! is_Primitive_type(res_tp))
702                 return 0;
703         char_tp = get_method_param_type(call_tp, 0);
704         if (char_tp != get_method_param_type(call_tp, 1))
705                 return 0;
706         if (! is_Pointer_type(char_tp))
707                 return 0;
708         char_tp = get_pointer_points_to_type(char_tp);
709
710         if (left == right) {
711                 /* a strcmp(s, s) ==> 0 */
712                 ir_node *mem   = get_Call_mem(call);
713                 ir_mode *mode  = get_type_mode(res_tp);
714                 ir_node *block = get_nodes_block(call);
715
716                 irn = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
717                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
718                 replace_call(irn, call, mem, NULL, NULL);
719                 return 1;
720         }
721         ent_l = get_const_entity(left);
722         ent_r = get_const_entity(right);
723
724         if (ent_l != NULL && ent_r != NULL) {
725                 /* both entities are const, try to evaluate */
726                 irn = eval_strcmp(ent_l, ent_r, res_tp);
727         } else if (ent_l != NULL) {
728                 if (is_empty_string(ent_l)) {
729                         /* s strcmp("", s) ==> -(*s)*/
730                         v = right;
731                         goto replace_by_call;
732                 }
733         } else if (ent_r != NULL) {
734                 if (is_empty_string(ent_r)) {
735                         /* s strcmp(s, "") ==> (*s) */
736                         ir_node  *mem, *block;
737                         dbg_info *dbg;
738                         ir_mode  *mode;
739
740                         v = left;
741 replace_by_call:
742                         mem   = get_Call_mem(call);
743                         block = get_nodes_block(call);
744                         dbg   = get_irn_dbg_info(call);
745                         mode  = get_type_mode(char_tp);
746
747                         /* replace the strcmp by (*x) */
748                         irn = new_rd_Load(dbg, current_ir_graph, block, mem, v, mode);
749                         mem = new_r_Proj(current_ir_graph, block, irn, mode_M, pn_Load_M);
750                         exc = new_r_Proj(current_ir_graph, block, irn, mode_X, pn_Load_X_except);
751                         reg = new_r_Proj(current_ir_graph, block, irn, mode_X, pn_Load_X_regular);
752                         irn = new_r_Proj(current_ir_graph, block, irn, mode, pn_Load_res);
753
754                         /* conv to the result mode */
755                         mode = get_type_mode(res_tp);
756                         irn  = new_rd_Conv(dbg, current_ir_graph, block, irn, mode);
757
758                         if (v == right) {
759                                 /* negate in the ("", s) case */
760                                 irn = new_rd_Minus(dbg, current_ir_graph, block, irn, mode);
761                         }
762                 }
763         }
764
765         if (irn != NULL) {
766                 ir_node *mem = get_Call_mem(call);
767                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
768                 replace_call(irn, call, mem, reg, exc);
769                 return 1;
770         }
771
772         return 0;
773 }  /* i_mapper_strcmp */
774
775 /* A mapper for strncmp */
776 int i_mapper_strncmp(ir_node *call, void *ctx) {
777         ir_node *left  = get_Call_param(call, 0);
778         ir_node *right = get_Call_param(call, 1);
779         ir_node *len   = get_Call_param(call, 2);
780         ir_node *irn;
781         (void) ctx;
782
783         if (left == right || (is_Const(len) && is_Const_null(len))) {
784                 /* a strncmp(s, s, len) ==> 0 OR
785                    a strncmp(a, b, 0) ==> 0 */
786                 ir_node   *mem     = get_Call_mem(call);
787                 ir_node   *adr     = get_Call_ptr(call);
788                 ir_entity *ent     = get_SymConst_entity(adr);
789                 ir_type   *call_tp = get_entity_type(ent);
790                 ir_type   *res_tp  = get_method_res_type(call_tp, 0);
791                 ir_mode   *mode    = get_type_mode(res_tp);
792                 ir_node   *block   = get_nodes_block(call);
793
794                 irn = new_r_Const(current_ir_graph, block, 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 */