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