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