- reserve the IR_RESOURCE_PHI_LIST resource
[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_r_Const(current_ir_graph, block, 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_r_Const(current_ir_graph, block, 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_node *block = get_nodes_block(call);
333                 ir_mode *mode  = get_irn_mode(val);
334                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
335                 ir_node *mem   = get_Call_mem(call);
336                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_EXP);
337                 replace_call(irn, call, mem, NULL, NULL);
338                 return 1;
339         }
340         return 0;
341 }  /* i_mapper_exp */
342
343 /**
344  * A mapper for mapping f(0.0) to 0.0.
345  */
346 static int i_mapper_zero_to_zero(ir_node *call, void *ctx, int reason) {
347         ir_node *val  = get_Call_param(call, 0);
348         (void) ctx;
349
350         if (is_Const(val) && is_Const_null(val)) {
351                 /* f(0.0) = 0.0 */
352                 ir_node *mem = get_Call_mem(call);
353                 DBG_OPT_ALGSIM0(call, val, reason);
354                 replace_call(val, call, mem, NULL, NULL);
355                 return 1;
356         }
357         return 0;
358 }  /* i_mapper_zero_to_zero */
359
360 /**
361  * A mapper for mapping f(1.0) to 0.0.
362  */
363 static int i_mapper_one_to_zero(ir_node *call, void *ctx, int reason) {
364         ir_node *val  = get_Call_param(call, 0);
365         (void) ctx;
366
367         if (is_Const(val) && is_Const_one(val)) {
368                 /* acos(1.0) = 0.0 */
369                 ir_node *block = get_nodes_block(call);
370                 ir_mode *mode  = get_irn_mode(val);
371                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
372                 ir_node *mem   = get_Call_mem(call);
373                 DBG_OPT_ALGSIM0(call, irn, reason);
374                 replace_call(irn, call, mem, NULL, NULL);
375                 return 1;
376         }
377         return 0;
378 }  /* i_mapper_one_to_zero */
379
380 /**
381  * A mapper for mapping a functions with the following characteristics:
382  * f(-x)  = f(x).
383  * f(0.0) = 1.0
384  */
385 static int i_mapper_symmetric_zero_to_one(ir_node *call, void *ctx, int reason) {
386         ir_node *val  = get_Call_param(call, 0);
387         (void) ctx;
388
389         if (is_strictConv(val)) {
390                 ir_node *op = get_Conv_op(val);
391                 if (is_Minus(op)) {
392                         /* f(-x) = f(x) with strictConv */
393                         ir_node *block = get_nodes_block(call);
394                         ir_mode *mode  = get_irn_mode(val);
395                         dbg_info *dbg  = get_irn_dbg_info(val);
396
397                         op = get_Minus_op(op);
398                         val = new_rd_Conv(dbg, current_ir_graph, block, op, mode);
399                         if (is_Conv(val)) {
400                                 /* still a Conv ? */
401                                 set_Conv_strict(val, 1);
402                         }
403                         DBG_OPT_ALGSIM2(call, op, call, FS_OPT_RTS_SYMMETRIC);
404                         set_Call_param(call, 0, val);
405                 }
406         } else if (is_Minus(val)) {
407                 /* f(-x) = f(x) */
408                 val = get_Minus_op(val);
409                 DBG_OPT_ALGSIM2(call, val, call, FS_OPT_RTS_SYMMETRIC);
410                 set_Call_param(call, 0, val);
411         }
412
413         if (is_Const(val) && is_Const_null(val)) {
414                 /* f(0.0) = 1.0 */
415                 ir_node *block = get_nodes_block(call);
416                 ir_mode *mode  = get_irn_mode(val);
417                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
418                 ir_node *mem   = get_Call_mem(call);
419                 DBG_OPT_ALGSIM0(call, irn, reason);
420                 replace_call(irn, call, mem, NULL, NULL);
421                 return 1;
422         }
423         return 0;
424 }  /* i_mapper_symmetric_zero_to_one */
425
426 /* A mapper for the floating point log. */
427 int i_mapper_log(ir_node *call, void *ctx) {
428         /* log(1.0) = 0.0 */
429         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_LOG);
430 }  /* i_mapper_log */
431
432 /* A mapper for the floating point sin. */
433 int i_mapper_sin(ir_node *call, void *ctx) {
434         /* sin(0.0) = 0.0 */
435         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SIN);
436 }  /* i_mapper_sin */
437
438 /* A mapper for the floating point cos. */
439 int i_mapper_cos(ir_node *call, void *ctx) {
440         /* cos(0.0) = 1.0, cos(-x) = x */
441         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COS);
442 }  /* i_mapper_cos */
443
444 /* A mapper for the floating point tan. */
445 int i_mapper_tan(ir_node *call, void *ctx) {
446         /* tan(0.0) = 0.0 */
447         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TAN);
448 }  /* i_mapper_tan */
449
450 /* A mapper for the floating point asin. */
451 int i_mapper_asin(ir_node *call, void *ctx) {
452         /* asin(0.0) = 0.0 */
453         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ASIN);
454 }  /* i_mapper_asin */
455
456 /* A mapper for the floating point acos. */
457 int i_mapper_acos(ir_node *call, void *ctx) {
458         /* acos(1.0) = 0.0 */
459         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_ACOS);
460 }  /* i_mapper_acos */
461
462 /* A mapper for the floating point atan. */
463 int i_mapper_atan(ir_node *call, void *ctx) {
464         /* atan(0.0) = 0.0 */
465         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ATAN);
466 }  /* i_mapper_atan */
467
468 /* A mapper for the floating point sinh. */
469 int i_mapper_sinh(ir_node *call, void *ctx) {
470         /* sinh(0.0) = 0.0 */
471         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SINH);
472 }  /* i_mapper_sinh */
473
474 /* A mapper for the floating point cosh. */
475 int i_mapper_cosh(ir_node *call, void *ctx) {
476         /* cosh(0.0) = 1.0, cosh(-x) = x */
477         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COSH);
478 }  /* i_mapper_cosh */
479
480 /* A mapper for the floating point tanh. */
481 int i_mapper_tanh(ir_node *call, void *ctx) {
482         /* tanh(0.0) = 0.0 */
483         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TANH);
484 }  /* i_mapper_tanh */
485
486 /**
487  * Return the const entity that is accessed through the pointer ptr or
488  * NULL if there is no entity (or the entity is not constant).
489  *
490  * @param ptr  the pointer
491  */
492 static ir_entity *get_const_entity(ir_node *ptr) {
493         /* FIXME: this cannot handle constant strings inside struct initializers yet */
494         if (is_Global(ptr)) {
495                 ir_entity *ent = get_Global_entity(ptr);
496
497                 if (get_entity_variability(ent) == variability_constant) {
498                         /* a constant entity */
499                         return ent;
500                 }
501         }
502         return NULL;
503 }  /* get_const_entity */
504
505 /**
506  * Calculate the value of strlen if possible.
507  *
508  * @param ent     the entity
509  * @param res_tp  the result type
510  *
511  * @return a Const node containing the strlen() result or NULL
512  *         if the evaluation fails
513  */
514 static ir_node *eval_strlen(ir_entity *ent, ir_type *res_tp) {
515         ir_type *tp = get_entity_type(ent);
516         ir_mode *mode;
517         int     i, n, len = -1;
518
519         if (! is_Array_type(tp))
520                 return NULL;
521         tp = get_array_element_type(tp);
522         if (! is_Primitive_type(tp))
523                 return NULL;
524         mode = get_type_mode(tp);
525
526         /* FIXME: This is too restrict, as the type char might be more the 8bits */
527         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
528                 return NULL;
529
530         n = get_compound_ent_n_values(ent);
531         for (i = 0; i < n; ++i) {
532                 ir_node *irn = get_compound_ent_value(ent, i);
533
534                 if (! is_Const(irn))
535                         return NULL;
536
537                 if (is_Const_null(irn)) {
538                         /* found the length */
539                         len = i;
540                         break;
541                 }
542         }
543         if (len >= 0) {
544                 tarval *tv = new_tarval_from_long(len, get_type_mode(res_tp));
545                 return new_Const_type(tv, res_tp);
546         }
547         return NULL;
548 }  /* eval_strlen */
549
550 /* A mapper for strlen */
551 int i_mapper_strlen(ir_node *call, void *ctx) {
552         ir_node *s     = get_Call_param(call, 0);
553         ir_entity *ent = get_const_entity(s);
554
555         (void) ctx;
556
557         /* FIXME: this cannot handle constant strings inside struct initializers yet */
558         if (ent != NULL) {
559                 /* a constant entity */
560                 ir_type *tp = get_Call_type(call);
561                 ir_node *irn;
562
563                 tp  = get_method_res_type(tp, 0);
564                 irn = eval_strlen(ent, tp);
565
566                 if (irn) {
567                         ir_node *mem = get_Call_mem(call);
568                         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRLEN);
569                         replace_call(irn, call, mem, NULL, NULL);
570                         return 1;
571                 }
572         }
573         return 0;
574 }  /* i_mapper_strlen */
575
576 /**
577  * Calculate the value of strlen if possible.
578  *
579  * @param left    the left entity
580  * @param right   the right entity
581  * @param res_tp  the result type
582  *
583  * @return a Const node containing the strcmp() result or NULL
584  *         if the evaluation fails
585  */
586 static ir_node *eval_strcmp(ir_entity *left, ir_entity *right, ir_type *res_tp) {
587         ir_type *tp;
588         ir_mode *mode;
589         int     i, n, n_r, res;
590
591         tp = get_entity_type(left);
592         if (! is_Array_type(tp))
593                 return NULL;
594         tp = get_array_element_type(tp);
595         if (! is_Primitive_type(tp))
596                 return NULL;
597         mode = get_type_mode(tp);
598
599         /* FIXME: This is too restrict, as the type char might be more the 8bits */
600         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
601                 return NULL;
602
603         tp = get_entity_type(right);
604         if (! is_Array_type(tp))
605                 return NULL;
606         tp = get_array_element_type(tp);
607         if (! is_Primitive_type(tp))
608                 return NULL;
609         mode = get_type_mode(tp);
610
611         /* FIXME: This is too restrict, as the type char might be more the 8bits */
612         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
613                 return NULL;
614
615         n   = get_compound_ent_n_values(left);
616         n_r = get_compound_ent_n_values(right);
617         if (n_r < n)
618                 n = n_r;
619         for (i = 0; i < n; ++i) {
620                 ir_node *irn;
621                 long v_l, v_r;
622                 tarval *tv;
623
624                 irn = get_compound_ent_value(left, i);
625                 if (! is_Const(irn))
626                         return NULL;
627                 tv = get_Const_tarval(irn);
628                 v_l = get_tarval_long(tv);
629
630                 irn = get_compound_ent_value(right, i);
631                 if (! is_Const(irn))
632                         return NULL;
633                 tv = get_Const_tarval(irn);
634                 v_r = get_tarval_long(tv);
635
636                 if (v_l < v_r) {
637                         res = -1;
638                         break;
639                 }
640                 if (v_l > v_r) {
641                         res = +1;
642                         break;
643                 }
644
645                 if (v_l == 0) {
646                         res = 0;
647                         break;
648                 }
649         }
650         if (i < n) {
651                 /* we found an end */
652                 tarval *tv = new_tarval_from_long(res, get_type_mode(res_tp));
653                 return new_Const_type(tv, res_tp);
654         }
655         return NULL;
656 }  /* eval_strcmp */
657
658 /**
659  * Checks if an entity represents the empty string.
660  *
661  * @param ent     the entity
662  *
663  * @return non-zero if ent represents the empty string
664  */
665 static int is_empty_string(ir_entity *ent) {
666         ir_type *tp = get_entity_type(ent);
667         ir_mode *mode;
668         int     n;
669         ir_node *irn;
670
671         if (! is_Array_type(tp))
672                 return 0;
673         tp = get_array_element_type(tp);
674         if (! is_Primitive_type(tp))
675                 return 0;
676         mode = get_type_mode(tp);
677
678         /* FIXME: This is too restrict, as the type char might be more the 8bits */
679         if (!mode_is_int(mode) || get_mode_size_bits(mode) != get_mode_size_bits(mode_Bs))
680                 return 0;
681
682         n = get_compound_ent_n_values(ent);
683         if (n < 1)
684                 return 0;
685         irn = get_compound_ent_value(ent, 0);
686
687         return is_Const(irn) && is_Const_null(irn);
688 }  /* is_empty_string */
689
690 /* A mapper for strcmp */
691 int i_mapper_strcmp(ir_node *call, void *ctx) {
692         ir_node   *left    = get_Call_param(call, 0);
693         ir_node   *right   = get_Call_param(call, 1);
694         ir_node   *irn     = NULL;
695         ir_node   *exc     = NULL;
696         ir_node   *reg     = NULL;
697         ir_type   *call_tp = get_Call_type(call);
698         ir_type   *res_tp  = get_method_res_type(call_tp, 0);
699         ir_entity *ent_l, *ent_r;
700         ir_type   *char_tp;
701         ir_node   *v;
702
703         (void) ctx;
704
705         /* do some type checks first */
706         if (! is_Primitive_type(res_tp))
707                 return 0;
708         char_tp = get_method_param_type(call_tp, 0);
709         if (char_tp != get_method_param_type(call_tp, 1))
710                 return 0;
711         if (! is_Pointer_type(char_tp))
712                 return 0;
713         char_tp = get_pointer_points_to_type(char_tp);
714
715         if (left == right) {
716                 /* a strcmp(s, s) ==> 0 */
717                 ir_node *mem   = get_Call_mem(call);
718                 ir_mode *mode  = get_type_mode(res_tp);
719                 ir_node *block = get_nodes_block(call);
720
721                 irn = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
722                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
723                 replace_call(irn, call, mem, NULL, NULL);
724                 return 1;
725         }
726         ent_l = get_const_entity(left);
727         ent_r = get_const_entity(right);
728
729         if (ent_l != NULL && ent_r != NULL) {
730                 /* both entities are const, try to evaluate */
731                 irn = eval_strcmp(ent_l, ent_r, res_tp);
732         } else if (ent_l != NULL) {
733                 if (is_empty_string(ent_l)) {
734                         /* s strcmp("", s) ==> -(*s)*/
735                         v = right;
736                         goto replace_by_call;
737                 }
738         } else if (ent_r != NULL) {
739                 if (is_empty_string(ent_r)) {
740                         /* s strcmp(s, "") ==> (*s) */
741                         ir_node  *mem, *block;
742                         dbg_info *dbg;
743                         ir_mode  *mode;
744
745                         v = left;
746 replace_by_call:
747                         mem   = get_Call_mem(call);
748                         block = get_nodes_block(call);
749                         dbg   = get_irn_dbg_info(call);
750                         mode  = get_type_mode(char_tp);
751
752                         /* replace the strcmp by (*x) */
753                         irn = new_rd_Load(dbg, current_ir_graph, block, mem, v, mode);
754                         mem = new_r_Proj(current_ir_graph, block, irn, mode_M, pn_Load_M);
755                         exc = new_r_Proj(current_ir_graph, block, irn, mode_X, pn_Load_X_except);
756                         reg = new_r_Proj(current_ir_graph, block, irn, mode_X, pn_Load_X_regular);
757                         irn = new_r_Proj(current_ir_graph, block, irn, mode, pn_Load_res);
758
759                         /* conv to the result mode */
760                         mode = get_type_mode(res_tp);
761                         irn  = new_rd_Conv(dbg, current_ir_graph, block, irn, mode);
762
763                         if (v == right) {
764                                 /* negate in the ("", s) case */
765                                 irn = new_rd_Minus(dbg, current_ir_graph, block, irn, mode);
766                         }
767                 }
768         }
769
770         if (irn != NULL) {
771                 ir_node *mem = get_Call_mem(call);
772                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
773                 replace_call(irn, call, mem, reg, exc);
774                 return 1;
775         }
776
777         return 0;
778 }  /* i_mapper_strcmp */
779
780 /* A mapper for strncmp */
781 int i_mapper_strncmp(ir_node *call, void *ctx) {
782         ir_node *left  = get_Call_param(call, 0);
783         ir_node *right = get_Call_param(call, 1);
784         ir_node *len   = get_Call_param(call, 2);
785         ir_node *irn;
786         (void) ctx;
787
788         if (left == right || (is_Const(len) && is_Const_null(len))) {
789                 /* a strncmp(s, s, len) ==> 0 OR
790                    a strncmp(a, b, 0) ==> 0 */
791                 ir_node   *mem     = get_Call_mem(call);
792                 ir_node   *adr     = get_Call_ptr(call);
793                 ir_entity *ent     = get_SymConst_entity(adr);
794                 ir_type   *call_tp = get_entity_type(ent);
795                 ir_type   *res_tp  = get_method_res_type(call_tp, 0);
796                 ir_mode   *mode    = get_type_mode(res_tp);
797                 ir_node   *block   = get_nodes_block(call);
798
799                 irn = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
800                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRNCMP);
801                 replace_call(irn, call, mem, NULL, NULL);
802                 return 1;
803         }
804         return 0;
805 }  /* i_mapper_strncmp */
806
807 /* A mapper for memcpy */
808 int i_mapper_memcpy(ir_node *call, void *ctx) {
809         ir_node *len = get_Call_param(call, 2);
810         (void) ctx;
811
812         if (is_Const(len) && is_Const_null(len)) {
813                 /* a memcpy(d, s, 0) ==> d */
814                 ir_node *mem = get_Call_mem(call);
815                 ir_node *dst = get_Call_param(call, 0);
816
817                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMCPY);
818                 replace_call(dst, call, mem, NULL, NULL);
819                 return 1;
820         }
821         return 0;
822 }  /* i_mapper_memcpy */
823
824 /* A mapper for memset */
825 int i_mapper_memset(ir_node *call, void *ctx) {
826         ir_node *len = get_Call_param(call, 2);
827         (void) ctx;
828
829         if (is_Const(len) && is_Const_null(len)) {
830                 /* a memset(d, C, 0) ==> d */
831                 ir_node *mem = get_Call_mem(call);
832                 ir_node *dst = get_Call_param(call, 0);
833
834                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMSET);
835                 replace_call(dst, call, mem, NULL, NULL);
836                 return 1;
837         }
838         return 0;
839 }  /* i_mapper_memset */
840
841 /**
842  * Returns the result mode of a node.
843  */
844 static ir_mode *get_irn_res_mode(ir_node *node) {
845         switch (get_irn_opcode(node)) {
846         case iro_Load:   return get_Load_mode(node);
847         case iro_Quot:   return get_Quot_resmode(node);
848         case iro_Div:    return get_Div_resmode(node);
849         case iro_Mod:    return get_Mod_resmode(node);
850         case iro_DivMod: return get_DivMod_resmode(node);
851         default: return NULL;
852         }
853 }  /* get_irn_res_mode */
854
855 #define LMAX(a, b) ((a) > (b) ? (a) : (b))
856
857 /* A mapper for mapping unsupported instructions to runtime calls. */
858 int i_mapper_RuntimeCall(ir_node *node, runtime_rt *rt) {
859         int i, j, arity, first, n_param, n_res;
860         long n_proj;
861         ir_type *mtp;
862         ir_node *mem, *bl, *call, *addr, *res_proj;
863         ir_node **in;
864         ir_graph *irg;
865         symconst_symbol sym;
866         ir_mode *mode = get_irn_mode(node);
867
868         if (mode != rt->mode)
869                 return 0;
870         /* check if the result modes match */
871         if (mode == mode_T && rt->res_mode != NULL) {
872                 mode = get_irn_res_mode(node);
873                 if (mode != rt->res_mode)
874                         return 0;
875         }
876
877         arity = get_irn_arity(node);
878         if (arity <= 0)
879                 return 0;
880
881         mtp     = get_entity_type(rt->ent);
882         n_param = get_method_n_params(mtp);
883         irg     = current_ir_graph;
884
885         mem = get_irn_n(node, 0);
886         if (get_irn_mode(mem) != mode_M) {
887                 mem = new_r_NoMem(irg);
888                 first = 0;
889         } else
890                 first = 1;
891
892         /* check if the modes of the predecessors match the parameter modes */
893         if (arity - first != n_param)
894                 return 0;
895
896         for (i = first, j = 0; i < arity; ++i, ++j) {
897                 ir_type *param_tp = get_method_param_type(mtp, j);
898                 ir_node *pred = get_irn_n(node, i);
899
900                 if (get_type_mode(param_tp) != get_irn_mode(pred))
901                         return 0;
902         }
903
904         n_res = get_method_n_ress(mtp);
905
906         /* step 0: calculate the number of needed Proj's */
907         n_proj = 0;
908         n_proj = LMAX(n_proj, rt->mem_proj_nr + 1);
909         n_proj = LMAX(n_proj, rt->regular_proj_nr + 1);
910         n_proj = LMAX(n_proj, rt->exc_proj_nr + 1);
911         n_proj = LMAX(n_proj, rt->exc_mem_proj_nr + 1);
912         n_proj = LMAX(n_proj, rt->res_proj_nr + 1);
913
914         if (n_proj > 0) {
915                 if (rt->mode != mode_T) /* must be mode_T */
916                         return 0;
917         } else {
918                 if (n_res > 0)
919                         /* must match */
920                         if (get_type_mode(get_method_res_type(mtp, 0)) != rt->mode)
921                                 return 0;
922         }
923
924         /* ok, when we are here, the number of predecessors match as well as the parameter modes */
925         bl = get_nodes_block(node);
926
927         in = NULL;
928         if (n_param > 0) {
929                 NEW_ARR_A(ir_node *, in, n_param);
930                 for (i = 0; i < n_param; ++i)
931                         in[i] = get_irn_n(node, first + i);
932         }
933
934         /* step 1: create the call */
935         sym.entity_p = rt->ent;
936         addr = new_r_SymConst(irg, bl, mode_P_code, sym, symconst_addr_ent);
937         call = new_rd_Call(get_irn_dbg_info(node), irg, bl, mem, addr, n_param, in, mtp);
938         set_irn_pinned(call, get_irn_pinned(node));
939
940         if (n_res > 0)
941                 res_proj = new_r_Proj(irg, bl, call, mode_T, pn_Call_T_result);
942         else
943                 res_proj = NULL;
944
945         if (n_proj > 0) {
946                 n_proj += n_res - 1;
947
948                 /* we are ready */
949                 turn_into_tuple(node, n_proj);
950
951                 for (i = 0; i < n_proj; ++i)
952                         set_Tuple_pred(node, i, new_r_Bad(irg));
953                 if (rt->mem_proj_nr >= 0)
954                         set_Tuple_pred(node, rt->mem_proj_nr, new_r_Proj(irg, bl, call, mode_M, pn_Call_M_regular));
955                 if (!is_NoMem(mem)) {
956                         /* Exceptions can only be handled with real memory */
957                         if (rt->regular_proj_nr >= 0)
958                                 set_Tuple_pred(node, rt->regular_proj_nr, new_r_Proj(irg, bl, call, mode_X, pn_Call_X_regular));
959                         if (rt->exc_proj_nr >= 0)
960                                 set_Tuple_pred(node, rt->exc_proj_nr, new_r_Proj(irg, bl, call, mode_X, pn_Call_X_except));
961                         if (rt->exc_mem_proj_nr >= 0)
962                                 set_Tuple_pred(node, rt->mem_proj_nr, new_r_Proj(irg, bl, call, mode_M, pn_Call_M_except));
963                 }
964
965                 if (rt->res_proj_nr >= 0)
966                         for (i = 0; i < n_res; ++i)
967                                 set_Tuple_pred(node, rt->res_proj_nr + i,
968                                 new_r_Proj(irg, bl, res_proj, get_type_mode(get_method_res_type(mtp, i)), i));
969                         return 1;
970         } else {
971                 /* only one return value supported */
972                 if (n_res > 0) {
973                         ir_mode *mode = get_type_mode(get_method_res_type(mtp, 0));
974
975                         res_proj = new_r_Proj(irg, bl, call, mode_T, pn_Call_T_result);
976                         res_proj = new_r_Proj(irg, bl, res_proj, mode, 0);
977
978                         exchange(node, res_proj);
979                         return 1;
980                 }
981         }
982         /* should not happen */
983         return 0;
984 }  /* i_mapper_RuntimeCall */