d7e746e86ce86647c229235605164c39c1e3e667
[libfirm] / ir / lower / lower_intrinsics.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   lowering of Calls of intrinsic functions
23  * @author  Michael Beck
24  * @version $Id$
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "lowering.h"
32 #include "irop_t.h"
33 #include "irprog_t.h"
34 #include "irnode_t.h"
35 #include "irprog_t.h"
36 #include "irgwalk.h"
37 #include "ircons.h"
38 #include "irgmod.h"
39 #include "irgopt.h"
40 #include "trouts.h"
41 #include "pmap.h"
42 #include "xmalloc.h"
43 #include "iropt_dbg.h"
44
45 /** Walker environment */
46 typedef struct _walker_env {
47         pmap     *c_map;              /**< The intrinsic call map. */
48         unsigned nr_of_intrinsics;    /**< statistics */
49         i_instr_record **i_map;       /**< The intrinsic instruction map. */
50 } walker_env_t;
51
52 /**
53  * walker: call all mapper functions
54  */
55 static void call_mapper(ir_node *node, void *env) {
56         walker_env_t *wenv = env;
57         ir_op *op = get_irn_op(node);
58
59         if (op == op_Call) {
60                 ir_node *symconst;
61                 pmap_entry *p;
62                 const i_call_record *r;
63                 ir_entity *ent;
64
65                 symconst = get_Call_ptr(node);
66                 if (get_irn_op(symconst) != op_SymConst ||
67                         get_SymConst_kind(symconst) != symconst_addr_ent)
68                         return;
69
70                 ent = get_SymConst_entity(symconst);
71                 p   = pmap_find(wenv->c_map, ent);
72
73                 if (p) {
74                         r = p->value;
75                         wenv->nr_of_intrinsics += r->i_mapper(node, r->ctx) ? 1 : 0;
76                 }
77         } else {
78                 if (op->code < (unsigned) ARR_LEN(wenv->i_map)) {
79                         const i_instr_record *r = wenv->i_map[op->code];
80                         /* run all possible mapper */
81                         while (r) {
82                                 if (r->i_mapper(node, r->ctx)) {
83                                         ++wenv->nr_of_intrinsics;
84                                         break;
85                                 }
86                                 r = r->link;
87                         }
88                 }
89         }
90 }  /* call_mapper */
91
92 /* Go through all graphs and map calls to intrinsic functions. */
93 unsigned lower_intrinsics(i_record *list, int length, int part_block_used) {
94         int            i, n_ops = get_irp_n_opcodes();
95         ir_graph       *irg;
96         pmap           *c_map = pmap_create_ex(length);
97         i_instr_record **i_map;
98         unsigned       nr_of_intrinsics = 0;
99         walker_env_t   wenv;
100
101         /* we use the ir_op generic pointers here */
102         NEW_ARR_A(const i_instr_record *, i_map, n_ops);
103         memset((void *)i_map, 0, sizeof(*i_map) * n_ops);
104
105         /* fill a map for faster search */
106         for (i = length - 1; i >= 0; --i) {
107                 if (list[i].i_call.kind == INTRINSIC_CALL) {
108                         pmap_insert(c_map, list[i].i_call.i_ent, (void *)&list[i].i_call);
109                 } else {
110                         ir_op *op = list[i].i_instr.op;
111                         assert(op->code < (unsigned) ARR_LEN(i_map));
112
113                         list[i].i_instr.link = i_map[op->code];
114                         i_map[op->code] = &list[i].i_instr;
115                 }
116         }
117
118         wenv.c_map = c_map;
119         wenv.i_map = i_map;
120
121         for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
122                 irg = get_irp_irg(i);
123
124                 if (part_block_used)
125                         collect_phiprojs(irg);
126
127                 wenv.nr_of_intrinsics = 0;
128                 irg_walk_graph(irg, NULL, call_mapper, &wenv);
129
130                 if (wenv.nr_of_intrinsics) {
131                         /* changes detected */
132                         set_irg_outs_inconsistent(irg);
133                         set_irg_callee_info_state(irg, irg_callee_info_inconsistent);
134
135                         /* exception control flow might have changed */
136                         set_irg_doms_inconsistent(irg);
137                         set_irg_extblk_inconsistent(irg);
138                         set_irg_loopinfo_inconsistent(irg);
139
140                         /* calls might be removed/added */
141                         set_trouts_inconsistent();
142
143                         /* optimize it, tuple might be created */
144                         local_optimize_graph(irg);
145
146                         nr_of_intrinsics += wenv.nr_of_intrinsics;
147                 }
148         }
149         pmap_destroy(c_map);
150
151         return nr_of_intrinsics;
152 }  /* lower_intrinsics */
153
154 /**
155  * Helper function, replace the call by the given node.
156  *
157  * @param irn      the result node
158  * @param call     the call to replace
159  * @param mem      the new mem result
160  * @param reg_jmp  new regular control flow, if NULL, a Jmp will be used
161  * @param exc_jmp  new exception control flow, if reg_jmp == NULL, a Bad will be used
162  */
163 static void replace_call(ir_node *irn, ir_node *call, ir_node *mem, ir_node *reg_jmp, ir_node *exc_jmp) {
164         if (reg_jmp == NULL) {
165                 ir_node *block = get_nodes_block(call);
166
167                 /* Beware: do we need here a protection against CSE? Better we do it. */
168                 int old_cse = get_opt_cse();
169                 set_opt_cse(0);
170                 reg_jmp = new_r_Jmp(current_ir_graph, block);
171                 set_opt_cse(old_cse);
172                 exc_jmp = new_Bad();
173         }
174         irn = new_Tuple(1, &irn);
175
176         turn_into_tuple(call, pn_Call_max);
177         set_Tuple_pred(call, pn_Call_M_regular, mem);
178         set_Tuple_pred(call, pn_Call_X_regular, reg_jmp);
179         set_Tuple_pred(call, pn_Call_X_except, exc_jmp);
180         set_Tuple_pred(call, pn_Call_T_result, irn);
181         set_Tuple_pred(call, pn_Call_M_except, mem);
182         set_Tuple_pred(call, pn_Call_P_value_res_base, new_Bad());
183 }  /* replace_call */
184
185 /* A mapper for the integer abs. */
186 int i_mapper_abs(ir_node *call, void *ctx) {
187         ir_node *mem   = get_Call_mem(call);
188         ir_node *block = get_nodes_block(call);
189         ir_node *op    = get_Call_param(call, 0);
190         ir_node *irn;
191         dbg_info *dbg  = get_irn_dbg_info(call);
192         (void) ctx;
193
194         irn = new_rd_Abs(dbg, current_ir_graph, block, op, get_irn_mode(op));
195         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ABS);
196         replace_call(irn, call, mem, NULL, NULL);
197         return 1;
198 }  /* i_mapper_abs */
199
200 /* A mapper for the alloca() function. */
201 int i_mapper_alloca(ir_node *call, void *ctx) {
202         ir_node *mem   = get_Call_mem(call);
203         ir_node *block = get_nodes_block(call);
204         ir_node *op    = get_Call_param(call, 0);
205         ir_node *irn, *exc, *no_exc;
206         dbg_info *dbg  = get_irn_dbg_info(call);
207         (void) ctx;
208
209         irn    = new_rd_Alloc(dbg, current_ir_graph, block, mem, op, firm_unknown_type, stack_alloc);
210         mem    = new_Proj(irn, mode_M, pn_Alloc_M);
211         no_exc = new_Proj(irn, mode_X, pn_Alloc_X_regular);
212         exc    = new_Proj(irn, mode_X, pn_Alloc_X_except);
213         irn    = new_Proj(irn, get_modeP_data(), pn_Alloc_res);
214
215         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_ALLOCA);
216         replace_call(irn, call, mem, no_exc, exc);
217         return 1;
218 }  /* i_mapper_alloca */
219
220 /* A mapper for the floating point sqrt. */
221 int i_mapper_sqrt(ir_node *call, void *ctx) {
222         ir_node *mem;
223         tarval *tv;
224         ir_node *op = get_Call_param(call, 0);
225         (void) ctx;
226
227         if (!is_Const(op))
228                 return 0;
229
230         tv = get_Const_tarval(op);
231         if (! tarval_is_null(tv) && !tarval_is_one(tv))
232                 return 0;
233
234         mem = get_Call_mem(call);
235
236         /* sqrt(0) = 0, sqrt(1) = 1 */
237         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_SQRT);
238         replace_call(op, call, mem, NULL, NULL);
239         return 1;
240 }  /* i_mapper_sqrt */
241
242 /* A mapper for the floating point cbrt. */
243 int i_mapper_cbrt(ir_node *call, void *ctx) {
244         ir_node *mem;
245         tarval *tv;
246         ir_node *op = get_Call_param(call, 0);
247         (void) ctx;
248
249         if (!is_Const(op))
250                 return 0;
251
252         tv = get_Const_tarval(op);
253         if (! tarval_is_null(tv) && !tarval_is_one(tv) && !tarval_is_minus_one(tv))
254                 return 0;
255
256         mem = get_Call_mem(call);
257
258         /* cbrt(0) = 0, cbrt(1) = 1, cbrt(-1) = -1 */
259         DBG_OPT_ALGSIM0(call, op, FS_OPT_RTS_CBRT);
260         replace_call(op, call, mem, NULL, NULL);
261         return 1;
262 }  /* i_mapper_cbrt */
263
264 /* A mapper for the floating point pow. */
265 int i_mapper_pow(ir_node *call, void *ctx) {
266         dbg_info *dbg;
267         ir_node *mem;
268         ir_node *left  = get_Call_param(call, 0);
269         ir_node *right = get_Call_param(call, 1);
270         ir_node *block = get_nodes_block(call);
271         ir_node *irn, *reg_jmp = NULL, *exc_jmp = NULL;
272         (void) ctx;
273
274         if (is_Const(left) && is_Const_one(left)) {
275                 /* pow (1.0, x) = 1.0 */
276                 irn = left;
277         } else if (is_Const(right)) {
278                 tarval *tv = get_Const_tarval(right);
279                 if (tarval_is_null(tv)) {
280                         /* pow(x, 0.0) = 1.0 */
281                         ir_mode *mode = get_tarval_mode(tv);
282                         irn = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
283                 } else if (tarval_is_one(tv)) {
284                         /* pow(x, 1.0) = x */
285                         irn = left;
286                 } else if (tarval_is_minus_one(tv)) {
287                         /* pow(x, -1.0) = 1/x */
288                         irn = NULL;
289                 } else
290                         return 0;
291         } else {
292                 return 0;
293         }
294
295         mem = get_Call_mem(call);
296         dbg = get_irn_dbg_info(call);
297
298         if (irn == NULL) {
299                 ir_mode *mode = get_irn_mode(left);
300                 ir_node *quot;
301
302                 irn  = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
303                 quot = new_rd_Quot(dbg, current_ir_graph, block, mem, irn, left, mode, op_pin_state_pinned);
304                 mem  = new_r_Proj(current_ir_graph, block, quot, mode_M, pn_Quot_M);
305                 irn  = new_r_Proj(current_ir_graph, block, quot, mode, pn_Quot_res);
306                 reg_jmp = new_r_Proj(current_ir_graph, block, quot, mode_X, pn_Quot_X_regular);
307                 exc_jmp = new_r_Proj(current_ir_graph, block, quot, mode_X, pn_Quot_X_except);
308         }
309         DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_POW);
310         replace_call(irn, call, mem, reg_jmp, exc_jmp);
311         return 1;
312 }  /* i_mapper_pow */
313
314 /* A mapper for the floating point exp. */
315 int i_mapper_exp(ir_node *call, void *ctx) {
316         ir_node *val  = get_Call_param(call, 0);
317         (void) ctx;
318
319         if (is_Const(val) && is_Const_null(val)) {
320                 /* exp(0.0) = 1.0 */
321                 ir_node *block = get_nodes_block(call);
322                 ir_mode *mode  = get_irn_mode(val);
323                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
324                 ir_node *mem   = get_Call_mem(call);
325                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_EXP);
326                 replace_call(irn, call, mem, NULL, NULL);
327                 return 1;
328         }
329         return 0;
330 }  /* i_mapper_exp */
331
332 /* A mapper for the floating point log. */
333 int i_mapper_log(ir_node *call, void *ctx) {
334         ir_node *val  = get_Call_param(call, 0);
335         (void) ctx;
336
337         if (is_Const(val) && is_Const_one(val)) {
338                 /* log(1.0) = 0.0 */
339                 ir_node *block = get_nodes_block(call);
340                 ir_mode *mode  = get_irn_mode(val);
341                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
342                 ir_node *mem   = get_Call_mem(call);
343                 DBG_OPT_ALGSIM0(call, val, FS_OPT_RTS_LOG);
344                 replace_call(val, call, mem, NULL, NULL);
345                 return 1;
346         }
347         return 0;
348 }  /* i_mapper_log */
349
350 /**
351  * A mapper for mapping f(0.0) to 0.0.
352  */
353 static int i_mapper_zero_to_zero(ir_node *call, void *ctx, int reason) {
354         ir_node *val  = get_Call_param(call, 0);
355         (void) ctx;
356
357         if (is_Const(val) && is_Const_null(val)) {
358                 /* f(0.0) = 0.0 */
359                 ir_node *mem = get_Call_mem(call);
360                 DBG_OPT_ALGSIM0(call, val, reason);
361                 replace_call(val, call, mem, NULL, NULL);
362                 return 1;
363         }
364         return 0;
365 }  /* i_mapper_zero_to_zero */
366
367 /**
368  * A mapper for mapping f(1.0) to 0.0.
369  */
370 static int i_mapper_one_to_zero(ir_node *call, void *ctx, int reason) {
371         ir_node *val  = get_Call_param(call, 0);
372         (void) ctx;
373
374         if (is_Const(val) && is_Const_one(val)) {
375                 /* acos(1.0) = 0.0 */
376                 ir_node *block = get_nodes_block(call);
377                 ir_mode *mode  = get_irn_mode(val);
378                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
379                 ir_node *mem   = get_Call_mem(call);
380                 DBG_OPT_ALGSIM0(call, irn, reason);
381                 replace_call(irn, call, mem, NULL, NULL);
382                 return 1;
383         }
384         return 0;
385 }  /* i_mapper_one_to_zero */
386
387 /**
388  * A mapper for mapping a functions with the following characteristics:
389  * f(-x)  = f(x).
390  * f(0.0) = 1.0
391  */
392 static int i_mapper_symmetric_zero_to_one(ir_node *call, void *ctx, int reason) {
393         ir_node *val  = get_Call_param(call, 0);
394         (void) ctx;
395
396         if (is_strictConv(val)) {
397                 ir_node *op = get_Conv_op(val);
398                 if (is_Minus(op)) {
399                         /* f(-x) = f(x) with strictConv */
400                         ir_node *block = get_nodes_block(call);
401                         ir_mode *mode  = get_irn_mode(val);
402                         dbg_info *dbg  = get_irn_dbg_info(val);
403
404                         op = get_Minus_op(op);
405                         val = new_rd_Conv(dbg, current_ir_graph, block, op, mode);
406                         if (is_Conv(val)) {
407                                 /* still a Conv ? */
408                                 set_Conv_strict(val, 1);
409                         }
410                         DBG_OPT_ALGSIM2(call, op, call, FS_OPT_RTS_SYMMETRIC);
411                         set_Call_param(call, 0, val);
412                 }
413         } else if (is_Minus(val)) {
414                 /* f(-x) = f(x) */
415                 val = get_Minus_op(val);
416                 DBG_OPT_ALGSIM2(call, val, call, FS_OPT_RTS_SYMMETRIC);
417                 set_Call_param(call, 0, val);
418         }
419
420         if (is_Const(val) && is_Const_null(val)) {
421                 /* f(0.0) = 1.0 */
422                 ir_node *block = get_nodes_block(call);
423                 ir_mode *mode  = get_irn_mode(val);
424                 ir_node *irn   = new_r_Const(current_ir_graph, block, mode, get_mode_one(mode));
425                 ir_node *mem   = get_Call_mem(call);
426                 DBG_OPT_ALGSIM0(call, irn, reason);
427                 replace_call(irn, call, mem, NULL, NULL);
428                 return 1;
429         }
430         return 0;
431 }  /* i_mapper_symmetric_zero_to_one */
432
433 /* A mapper for the floating point sin. */
434 int i_mapper_sin(ir_node *call, void *ctx) {
435         /* sin(0.0) = 0.0 */
436         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SIN);
437 }  /* i_mapper_sin */
438
439 /* A mapper for the floating point cos. */
440 int i_mapper_cos(ir_node *call, void *ctx) {
441         /* cos(0.0) = 1.0, cos(-x) = x */
442         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COS);
443 }  /* i_mapper_cos */
444
445 /* A mapper for the floating point tan. */
446 int i_mapper_tan(ir_node *call, void *ctx) {
447         /* tan(0.0) = 0.0 */
448         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TAN);
449 }  /* i_mapper_tan */
450
451 /* A mapper for the floating point asin. */
452 int i_mapper_asin(ir_node *call, void *ctx) {
453         /* asin(0.0) = 0.0 */
454         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ASIN);
455 }  /* i_mapper_asin */
456
457 /* A mapper for the floating point acos. */
458 int i_mapper_acos(ir_node *call, void *ctx) {
459         /* acos(1.0) = 0.0 */
460         return i_mapper_one_to_zero(call, ctx, FS_OPT_RTS_ACOS);
461 }  /* i_mapper_acos */
462
463 /* A mapper for the floating point atan. */
464 int i_mapper_atan(ir_node *call, void *ctx) {
465         /* atan(0.0) = 0.0 */
466         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_ATAN);
467 }  /* i_mapper_atan */
468
469 /* A mapper for the floating point sinh. */
470 int i_mapper_sinh(ir_node *call, void *ctx) {
471         /* sinh(0.0) = 0.0 */
472         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_SINH);
473 }  /* i_mapper_sinh */
474
475 /* A mapper for the floating point cosh. */
476 int i_mapper_cosh(ir_node *call, void *ctx) {
477         /* cosh(0.0) = 1.0, cosh(-x) = x */
478         return i_mapper_symmetric_zero_to_one(call, ctx, FS_OPT_RTS_COSH);
479 }  /* i_mapper_cosh */
480
481 /* A mapper for the floating point tanh. */
482 int i_mapper_tanh(ir_node *call, void *ctx) {
483         /* tanh(0.0) = 0.0 */
484         return i_mapper_zero_to_zero(call, ctx, FS_OPT_RTS_TANH);
485 }  /* i_mapper_tanh */
486
487 /* A mapper for strcmp */
488 int i_mapper_strcmp(ir_node *call, void *ctx) {
489         ir_node *left  = get_Call_param(call, 0);
490         ir_node *right = get_Call_param(call, 1);
491         ir_node *irn;
492         (void) ctx;
493
494         if (left == right) {
495                 /* a strcmp(s, s) ==> 0 */
496                 ir_node   *mem     = get_Call_mem(call);
497                 ir_node   *adr     = get_Call_ptr(call);
498                 ir_entity *ent     = get_SymConst_entity(adr);
499                 ir_type   *call_tp = get_entity_type(ent);
500                 ir_type   *res_tp  = get_method_res_type(call_tp, 0);
501                 ir_mode   *mode    = get_type_mode(res_tp);
502                 ir_node   *block   = get_nodes_block(call);
503
504                 irn = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
505                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRCMP);
506                 replace_call(irn, call, mem, NULL, NULL);
507                 return 1;
508         }
509         return 0;
510 }  /* i_mapper_strcmp */
511
512 /* A mapper for strncmp */
513 int i_mapper_strncmp(ir_node *call, void *ctx) {
514         ir_node *left  = get_Call_param(call, 0);
515         ir_node *right = get_Call_param(call, 1);
516         ir_node *len   = get_Call_param(call, 2);
517         ir_node *irn;
518         (void) ctx;
519
520         if (left == right || (is_Const(len) && is_Const_null(len))) {
521                 /* a strncmp(s, s, len) ==> 0 OR
522                    a strncmp(a, b, 0) ==> 0 */
523                 ir_node   *mem     = get_Call_mem(call);
524                 ir_node   *adr     = get_Call_ptr(call);
525                 ir_entity *ent     = get_SymConst_entity(adr);
526                 ir_type   *call_tp = get_entity_type(ent);
527                 ir_type   *res_tp  = get_method_res_type(call_tp, 0);
528                 ir_mode   *mode    = get_type_mode(res_tp);
529                 ir_node   *block   = get_nodes_block(call);
530
531                 irn = new_r_Const(current_ir_graph, block, mode, get_mode_null(mode));
532                 DBG_OPT_ALGSIM0(call, irn, FS_OPT_RTS_STRNCMP);
533                 replace_call(irn, call, mem, NULL, NULL);
534                 return 1;
535         }
536         return 0;
537 }  /* i_mapper_strncmp */
538
539 /* A mapper for memcpy */
540 int i_mapper_memcpy(ir_node *call, void *ctx) {
541         ir_node *len = get_Call_param(call, 2);
542         (void) ctx;
543
544         if (is_Const(len) && is_Const_null(len)) {
545                 /* a memcpy(d, s, 0) ==> d */
546                 ir_node *mem = get_Call_mem(call);
547                 ir_node *dst = get_Call_param(call, 0);
548
549                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMCPY);
550                 replace_call(dst, call, mem, NULL, NULL);
551                 return 1;
552         }
553         return 0;
554 }  /* i_mapper_memcpy */
555
556 /* A mapper for memset */
557 int i_mapper_memset(ir_node *call, void *ctx) {
558         ir_node *len = get_Call_param(call, 2);
559         (void) ctx;
560
561         if (is_Const(len) && is_Const_null(len)) {
562                 /* a memset(d, C, 0) ==> d */
563                 ir_node *mem = get_Call_mem(call);
564                 ir_node *dst = get_Call_param(call, 0);
565
566                 DBG_OPT_ALGSIM0(call, dst, FS_OPT_RTS_MEMSET);
567                 replace_call(dst, call, mem, NULL, NULL);
568                 return 1;
569         }
570         return 0;
571 }  /* i_mapper_memset */
572
573 /**
574  * Returns the result mode of a node.
575  */
576 static ir_mode *get_irn_res_mode(ir_node *node) {
577         switch (get_irn_opcode(node)) {
578         case iro_Load:   return get_Load_mode(node);
579         case iro_Quot:   return get_Quot_resmode(node);
580         case iro_Div:    return get_Div_resmode(node);
581         case iro_Mod:    return get_Mod_resmode(node);
582         case iro_DivMod: return get_DivMod_resmode(node);
583         default: return NULL;
584         }
585 }  /* get_irn_res_mode */
586
587 #define LMAX(a, b) ((a) > (b) ? (a) : (b))
588
589 /* A mapper for mapping unsupported instructions to runtime calls. */
590 int i_mapper_RuntimeCall(ir_node *node, runtime_rt *rt) {
591         int i, j, arity, first, n_param, n_res;
592         long n_proj;
593         ir_type *mtp;
594         ir_node *mem, *bl, *call, *addr, *res_proj;
595         ir_node **in;
596         ir_graph *irg;
597         symconst_symbol sym;
598         ir_mode *mode = get_irn_mode(node);
599
600         if (mode != rt->mode)
601                 return 0;
602         /* check if the result modes match */
603         if (mode == mode_T && rt->res_mode != NULL) {
604                 mode = get_irn_res_mode(node);
605                 if (mode != rt->res_mode)
606                         return 0;
607         }
608
609         arity = get_irn_arity(node);
610         if (arity <= 0)
611                 return 0;
612
613         mtp     = get_entity_type(rt->ent);
614         n_param = get_method_n_params(mtp);
615         irg     = current_ir_graph;
616
617         mem = get_irn_n(node, 0);
618         if (get_irn_mode(mem) != mode_M) {
619                 mem = new_r_NoMem(irg);
620                 first = 0;
621         } else
622                 first = 1;
623
624         /* check if the modes of the predecessors match the parameter modes */
625         if (arity - first != n_param)
626                 return 0;
627
628         for (i = first, j = 0; i < arity; ++i, ++j) {
629                 ir_type *param_tp = get_method_param_type(mtp, j);
630                 ir_node *pred = get_irn_n(node, i);
631
632                 if (get_type_mode(param_tp) != get_irn_mode(pred))
633                         return 0;
634         }
635
636         n_res = get_method_n_ress(mtp);
637
638         /* step 0: calculate the number of needed Proj's */
639         n_proj = 0;
640         n_proj = LMAX(n_proj, rt->mem_proj_nr + 1);
641         n_proj = LMAX(n_proj, rt->regular_proj_nr + 1);
642         n_proj = LMAX(n_proj, rt->exc_proj_nr + 1);
643         n_proj = LMAX(n_proj, rt->exc_mem_proj_nr + 1);
644         n_proj = LMAX(n_proj, rt->res_proj_nr + 1);
645
646         if (n_proj > 0) {
647                 if (rt->mode != mode_T) /* must be mode_T */
648                         return 0;
649         } else {
650                 if (n_res > 0)
651                         /* must match */
652                         if (get_type_mode(get_method_res_type(mtp, 0)) != rt->mode)
653                                 return 0;
654         }
655
656         /* ok, when we are here, the number of predecessors match as well as the parameter modes */
657         bl = get_nodes_block(node);
658
659         in = NULL;
660         if (n_param > 0) {
661                 NEW_ARR_A(ir_node *, in, n_param);
662                 for (i = 0; i < n_param; ++i)
663                         in[i] = get_irn_n(node, first + i);
664         }
665
666         /* step 1: create the call */
667         sym.entity_p = rt->ent;
668         addr = new_r_SymConst(irg, bl, sym, symconst_addr_ent);
669         call = new_rd_Call(get_irn_dbg_info(node), irg, bl, mem, addr, n_param, in, mtp);
670         set_irn_pinned(call, get_irn_pinned(node));
671
672         if (n_res > 0)
673                 res_proj = new_r_Proj(irg, bl, call, mode_T, pn_Call_T_result);
674         else
675                 res_proj = NULL;
676
677         if (n_proj > 0) {
678                 n_proj += n_res - 1;
679
680                 /* we are ready */
681                 turn_into_tuple(node, n_proj);
682
683                 for (i = 0; i < n_proj; ++i)
684                         set_Tuple_pred(node, i, new_r_Bad(irg));
685                 if (rt->mem_proj_nr >= 0)
686                         set_Tuple_pred(node, rt->mem_proj_nr, new_r_Proj(irg, bl, call, mode_M, pn_Call_M_regular));
687                 if (get_irn_op(mem) != op_NoMem) {
688                         /* Exceptions can only be handled with real memory */
689                         if (rt->regular_proj_nr >= 0)
690                                 set_Tuple_pred(node, rt->regular_proj_nr, new_r_Proj(irg, bl, call, mode_X, pn_Call_X_regular));
691                         if (rt->exc_proj_nr >= 0)
692                                 set_Tuple_pred(node, rt->exc_proj_nr, new_r_Proj(irg, bl, call, mode_X, pn_Call_X_except));
693                         if (rt->exc_mem_proj_nr >= 0)
694                                 set_Tuple_pred(node, rt->mem_proj_nr, new_r_Proj(irg, bl, call, mode_M, pn_Call_M_except));
695                 }
696
697                 if (rt->res_proj_nr >= 0)
698                         for (i = 0; i < n_res; ++i)
699                                 set_Tuple_pred(node, rt->res_proj_nr + i,
700                                 new_r_Proj(irg, bl, res_proj, get_type_mode(get_method_res_type(mtp, i)), i));
701                         return 1;
702         } else {
703                 /* only one return value supported */
704                 if (n_res > 0) {
705                         ir_mode *mode = get_type_mode(get_method_res_type(mtp, 0));
706
707                         res_proj = new_r_Proj(irg, bl, call, mode_T, pn_Call_T_result);
708                         res_proj = new_r_Proj(irg, bl, res_proj, mode, 0);
709
710                         exchange(node, res_proj);
711                         return 1;
712                 }
713         }
714         /* should not happen */
715         return 0;
716 }  /* i_mapper_RuntimeCall */