We may return a parameter and thus need to copy them.
[libfirm] / ir / lower / lower_calls.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 with compound parameters and return types.
23  * @author  Michael Beck
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include <stdbool.h>
29
30 #include "lower_calls.h"
31 #include "lowering.h"
32 #include "irprog_t.h"
33 #include "irnode_t.h"
34 #include "type_t.h"
35 #include "irmode_t.h"
36 #include "ircons.h"
37 #include "irgmod.h"
38 #include "irgwalk.h"
39 #include "irmemory.h"
40 #include "irtools.h"
41 #include "iroptimize.h"
42 #include "array_t.h"
43 #include "pmap.h"
44 #include "error.h"
45
46 static pmap *pointer_types;
47 static pmap *lowered_mtps;
48
49 /**
50  * Default implementation for finding a pointer type for a given element type.
51  * Simple create a new one.
52  */
53 static ir_type *get_pointer_type(ir_type *dest_type)
54 {
55         ir_type *res = (ir_type*)pmap_get(pointer_types, dest_type);
56         if (res == NULL) {
57                 res = new_type_pointer(dest_type);
58                 pmap_insert(pointer_types, dest_type, res);
59         }
60         return res;
61 }
62
63 static void fix_parameter_entities(ir_graph *irg, size_t n_compound_ret)
64 {
65         ir_type *frame_type = get_irg_frame_type(irg);
66         size_t   n_compound = get_compound_n_members(frame_type);
67         size_t   i;
68
69         if (n_compound_ret == 0)
70                 return;
71
72         for (i = 0; i < n_compound; ++i) {
73                 ir_entity *member = get_compound_member(frame_type, i);
74                 size_t     num;
75                 if (!is_parameter_entity(member))
76                         continue;
77
78                 /* increase parameter number since we added a new parameter in front */
79                 num = get_entity_parameter_number(member);
80                 if (num == IR_VA_START_PARAMETER_NUMBER)
81                         continue;
82                 set_entity_parameter_number(member, num + n_compound_ret);
83         }
84 }
85
86 /**
87  * Creates a new lowered type for a method type with compound
88  * arguments. The new type is associated to the old one and returned.
89  */
90 static ir_type *lower_mtp(compound_call_lowering_flags flags, ir_type *mtp)
91 {
92         bool      must_be_lowered = false;
93         ir_type  *lowered;
94         ir_type **params;
95         ir_type **results;
96         size_t    n_ress;
97         size_t    n_params;
98         size_t    nn_ress;
99         size_t    nn_params;
100         size_t    i;
101
102         if (!is_Method_type(mtp))
103                 return mtp;
104
105         lowered = (ir_type*)pmap_get(lowered_mtps, mtp);
106         if (lowered != NULL)
107                 return lowered;
108
109         /* check if the type has to be lowered at all */
110         n_ress = get_method_n_ress(mtp);
111         for (i = 0; i < n_ress; ++i) {
112                 ir_type *res_tp = get_method_res_type(mtp, i);
113                 if (is_compound_type(res_tp)) {
114                         must_be_lowered = true;
115                         break;
116                 }
117         }
118         if (!must_be_lowered)
119                 return mtp;
120
121         n_params  = get_method_n_params(mtp);
122         results   = ALLOCANZ(ir_type*, n_ress);
123         params    = ALLOCANZ(ir_type*, n_params + n_ress);
124         nn_ress   = 0;
125         nn_params = 0;
126
127         /* add a hidden parameter in front for every compound result */
128         for (i = 0; i < n_ress; ++i) {
129                 ir_type *res_tp = get_method_res_type(mtp, i);
130
131                 if (is_compound_type(res_tp)) {
132                         /* this compound will be allocated on callers stack and its
133                            address will be transmitted as a hidden parameter. */
134                         ir_type *ptr_tp = get_pointer_type(res_tp);
135                         params[nn_params++] = ptr_tp;
136                         if (flags & LF_RETURN_HIDDEN)
137                                 results[nn_ress++] = ptr_tp;
138                 } else {
139                         /* scalar result */
140                         results[nn_ress++] = res_tp;
141                 }
142         }
143         /* copy over parameter types */
144         for (i = 0; i < n_params; ++i) {
145                 params[nn_params++] = get_method_param_type(mtp, i);
146         }
147         assert(nn_ress <= n_ress);
148         assert(nn_params <= n_params + n_ress);
149
150         /* create the new type */
151         lowered = new_d_type_method(nn_params, nn_ress, get_type_dbg_info(mtp));
152         lowered->attr.ma.has_compound_ret_parameter = true;
153
154         /* fill it */
155         for (i = 0; i < nn_params; ++i)
156                 set_method_param_type(lowered, i, params[i]);
157         for (i = 0; i < nn_ress; ++i)
158                 set_method_res_type(lowered, i, results[i]);
159
160         set_method_variadicity(lowered, get_method_variadicity(mtp));
161
162         /* associate the lowered type with the original one for easier access */
163         set_method_calling_convention(lowered, get_method_calling_convention(mtp) | cc_compound_ret);
164         set_method_additional_properties(lowered, get_method_additional_properties(mtp));
165
166         set_lowered_type(mtp, lowered);
167         pmap_insert(lowered_mtps, mtp, lowered);
168
169         return lowered;
170 }
171
172 /**
173  * A call list entry.
174  */
175 typedef struct cl_entry cl_entry;
176 struct cl_entry {
177         cl_entry *next;   /**< Pointer to the next entry. */
178         ir_node  *call;   /**< Pointer to the Call node. */
179         ir_node  *copyb;  /**< List of all CopyB nodes. */
180 };
181
182 /**
183  * Walker environment for fix_args_and_collect_calls().
184  */
185 typedef struct wlk_env_t {
186         size_t               arg_shift;        /**< The Argument index shift for parameters. */
187         struct obstack       obst;             /**< An obstack to allocate the data on. */
188         cl_entry             *cl_list;         /**< The call list. */
189         pmap                 *dummy_map;       /**< A map for finding the dummy arguments. */
190         compound_call_lowering_flags flags;
191         ir_type              *lowered_mtp;     /**< The lowered method type of the current irg if any. */
192         unsigned             only_local_mem:1; /**< Set if only local memory access was found. */
193         unsigned             changed:1;        /**< Set if the current graph was changed. */
194 } wlk_env;
195
196 /**
197  * Return the call list entry of a call node.
198  * If no entry exists yet, allocate one and enter the node into
199  * the call list of the environment.
200  *
201  * @param call   A Call node.
202  * @param env    The environment.
203  */
204 static cl_entry *get_Call_entry(ir_node *call, wlk_env *env)
205 {
206         cl_entry *res = (cl_entry*)get_irn_link(call);
207         if (res == NULL) {
208                 res = OALLOC(&env->obst, cl_entry);
209                 res->next  = env->cl_list;
210                 res->call  = call;
211                 res->copyb = NULL;
212                 set_irn_link(call, res);
213                 env->cl_list = res;
214         }
215         return res;
216 }
217
218 /**
219  * Finds the base address of an address by skipping Sel's and address
220  * calculation.
221  *
222  * @param adr   the address
223  * @param pEnt  points to the base entity if any
224  */
225 static ir_node *find_base_adr(ir_node *ptr, ir_entity **pEnt)
226 {
227         ir_entity *ent = NULL;
228         assert(mode_is_reference(get_irn_mode(ptr)));
229
230         for (;;) {
231                 if (is_Sel(ptr)) {
232                         ent = get_Sel_entity(ptr);
233                         ptr = get_Sel_ptr(ptr);
234                 }
235                 else if (is_Add(ptr)) {
236                         ir_node *left = get_Add_left(ptr);
237                         if (mode_is_reference(get_irn_mode(left)))
238                                 ptr = left;
239                         else
240                                 ptr = get_Add_right(ptr);
241                         ent = NULL;
242                 } else if (is_Sub(ptr)) {
243                         ptr = get_Sub_left(ptr);
244                         ent = NULL;
245                 } else {
246                         *pEnt = ent;
247                         return ptr;
248                 }
249         }
250 }
251
252 /**
253  * Check if a given pointer represents non-local memory.
254  */
255 static void check_ptr(ir_node *ptr, wlk_env *env)
256 {
257         ir_storage_class_class_t sc;
258         ir_entity                *ent;
259
260         /* still alias free */
261         ptr = find_base_adr(ptr, &ent);
262         sc  = get_base_sc(classify_pointer(ptr, ent));
263         if (sc != ir_sc_localvar && sc != ir_sc_malloced) {
264                 /* non-local memory access */
265                 env->only_local_mem = 0;
266         }
267 }
268
269 /*
270  * Returns non-zero if a Call is surely a self-recursive Call.
271  * Beware: if this functions returns 0, the call might be self-recursive!
272  */
273 static bool is_self_recursive_Call(const ir_node *call)
274 {
275         const ir_node *callee = get_Call_ptr(call);
276
277         if (is_SymConst_addr_ent(callee)) {
278                 const ir_entity *ent = get_SymConst_entity(callee);
279                 const ir_graph  *irg = get_entity_irg(ent);
280                 if (irg == get_irn_irg(call))
281                         return 1;
282         }
283         return 0;
284 }
285
286 /**
287  * Post walker: shift all parameter indexes
288  * and collect Calls with compound returns in the call list.
289  * If a non-alias free memory access is found, reset the alias free
290  * flag.
291  */
292 static void fix_args_and_collect_calls(ir_node *n, void *ctx)
293 {
294         wlk_env *env = (wlk_env*)ctx;
295         ir_type *ctp;
296         ir_node *ptr;
297
298         switch (get_irn_opcode(n)) {
299         case iro_Load:
300         case iro_Store:
301                 if (env->only_local_mem) {
302                         ptr = get_irn_n(n, 1);
303                         check_ptr(ptr, env);
304                 }
305                 break;
306         case iro_Proj:
307                 if (env->arg_shift > 0) {
308                         ir_node *pred = get_Proj_pred(n);
309                         ir_graph *irg = get_irn_irg(n);
310
311                         /* Fix the argument numbers */
312                         if (pred == get_irg_args(irg)) {
313                                 long pnr = get_Proj_proj(n);
314                                 set_Proj_proj(n, pnr + env->arg_shift);
315                                 env->changed = 1;
316                         }
317                 }
318                 break;
319         case iro_Call: {
320                 size_t i;
321                 size_t n_res;
322                 if (! is_self_recursive_Call(n)) {
323                         /* any non self recursive call might access global memory */
324                         env->only_local_mem = 0;
325                 }
326
327                 ctp = get_Call_type(n);
328                 /* check for compound returns */
329                 for (i = 0, n_res = get_method_n_ress(ctp); i < n_res; ++i) {
330                         if (is_compound_type(get_method_res_type(ctp, i))) {
331                                 /*
332                                  * This is a call with a compound return. As the result
333                                  * might be ignored, we must put it in the list.
334                                  */
335                                 (void)get_Call_entry(n, env);
336                                 break;
337                         }
338                 }
339                 break;
340         }
341         case iro_CopyB: {
342                 ir_node *src = get_CopyB_src(n);
343                 if (env->only_local_mem) {
344                         check_ptr(get_CopyB_src(n), env);
345                         if (env->only_local_mem)
346                                 check_ptr(get_CopyB_dst(n), env);
347                 }
348                 /* check for compound returns */
349                 if (is_Proj(src)) {
350                         ir_node *proj = get_Proj_pred(src);
351                         if (is_Proj(proj) && get_Proj_proj(proj) == pn_Call_T_result) {
352                                 ir_node *call = get_Proj_pred(proj);
353                                 if (is_Call(call)) {
354                                         ctp = get_Call_type(call);
355                                         if (is_compound_type(get_method_res_type(ctp, get_Proj_proj(src)))) {
356                                                 /* found a CopyB from compound Call result */
357                                                 cl_entry *e = get_Call_entry(call, env);
358                                                 set_irn_link(n, e->copyb);
359                                                 e->copyb = n;
360                                         }
361                                 }
362                         }
363                 }
364                 break;
365         }
366         case iro_Sel: {
367                 ir_entity *ent  = get_Sel_entity(n);
368                 ir_type   *type = get_entity_type(ent);
369
370                 /* we need to copy compound parameters */
371                 if (is_parameter_entity(ent) && is_compound_type(type)) {
372                         env->only_local_mem = 0;
373                 }
374                 break;
375         }
376         default:
377                 /* do nothing */
378                 break;
379         }
380 }
381
382 /**
383  * Returns non-zero if a node is a compound address
384  * of a frame-type entity.
385  *
386  * @param ft   the frame type
387  * @param adr  the node
388  */
389 static bool is_compound_address(ir_type *ft, ir_node *adr)
390 {
391         ir_entity *ent;
392
393         if (! is_Sel(adr))
394                 return false;
395         if (get_Sel_n_indexs(adr) != 0)
396                 return false;
397         ent = get_Sel_entity(adr);
398         return get_entity_owner(ent) == ft;
399 }
400
401 /** A pair for the copy-return-optimization. */
402 typedef struct cr_pair {
403         ir_entity *ent; /**< the entity than can be removed from the frame */
404         ir_node *arg;   /**< the argument that replaces the entities address */
405 } cr_pair;
406
407 /**
408  * Post walker: fixes all entities addresses for the copy-return
409  * optimization.
410  *
411  * Note: We expect the length of the cr_pair array (i.e. number of compound
412  * return values) to be 1 (C, C++) in almost all cases, so ignore the
413  * linear search complexity here.
414  */
415 static void do_copy_return_opt(ir_node *n, void *ctx)
416 {
417         if (is_Sel(n)) {
418                 ir_entity *ent = get_Sel_entity(n);
419                 cr_pair   *arr = (cr_pair*)ctx;
420                 size_t    i, l;
421
422                 for (i = 0, l = ARR_LEN(arr); i < l; ++i) {
423                         if (ent == arr[i].ent) {
424                                 exchange(n, arr[i].arg);
425                                 break;
426                         }
427                 }
428         }
429 }
430
431 /**
432  * Return a Sel node that selects a dummy argument of type tp.
433  * Dummy arguments are only needed once and we use a map
434  * to store them.
435  * We could even assign all dummy arguments the same offset
436  * in the frame type ...
437  *
438  * @param irg    the graph
439  * @param block  the block where a newly create Sel should be placed
440  * @param tp     the type of the dummy entity that should be create
441  * @param env    the environment
442  */
443 static ir_node *get_dummy_sel(ir_graph *irg, ir_node *block, ir_type *tp,
444                               wlk_env *env)
445 {
446         ir_entity *ent;
447         pmap_entry *e;
448
449         /* use a map the check if we already create such an entity */
450         e = pmap_find(env->dummy_map, tp);
451         if (e) {
452                 ent = (ir_entity*)e->value;
453         } else {
454                 ir_type *ft = get_irg_frame_type(irg);
455                 ident   *dummy_id = id_unique("dummy.%u");
456                 ent = new_entity(ft, dummy_id, tp);
457                 pmap_insert(env->dummy_map, tp, ent);
458
459                 if (get_type_state(ft) == layout_fixed) {
460                         /* Fix the layout again */
461                         panic("Fixed layout not implemented");
462                 }
463         }
464         return new_r_simpleSel(block, get_irg_no_mem(irg), get_irg_frame(irg), ent);
465 }
466
467 /**
468  * Add the hidden parameter from the CopyB node to the Call node.
469  *
470  * @param irg    the graph
471  * @param n_com  number of compound results (will be number of hidden parameters)
472  * @param ins    in array to store the hidden parameters into
473  * @param entry  the call list
474  * @param env    the environment
475  */
476 static void add_hidden_param(ir_graph *irg, size_t n_com, ir_node **ins,
477                              cl_entry *entry, wlk_env *env)
478 {
479         ir_node *p, *n, *mem, *blk;
480         size_t n_args;
481
482         n_args = 0;
483         for (p = entry->copyb; p; p = n) {
484                 ir_node *src = get_CopyB_src(p);
485                 size_t   idx = get_Proj_proj(src);
486                 n = (ir_node*)get_irn_link(p);
487
488                 ins[idx] = get_CopyB_dst(p);
489                 mem      = get_CopyB_mem(p);
490                 blk      = get_nodes_block(p);
491
492                 /* get rid of the CopyB */
493                 turn_into_tuple(p, pn_CopyB_max+1);
494                 set_Tuple_pred(p, pn_CopyB_M,         mem);
495                 set_Tuple_pred(p, pn_CopyB_X_regular, new_r_Jmp(blk));
496                 set_Tuple_pred(p, pn_CopyB_X_except,  new_r_Bad(irg, mode_X));
497                 ++n_args;
498         }
499
500         /* now create dummy entities for function with ignored return value */
501         if (n_args < n_com) {
502                 ir_type *ctp = get_Call_type(entry->call);
503                 size_t   i;
504                 size_t   j;
505
506                 if (is_lowered_type(ctp))
507                         ctp = get_associated_type(ctp);
508
509                 for (j = i = 0; i < get_method_n_ress(ctp); ++i) {
510                         ir_type *rtp = get_method_res_type(ctp, i);
511                         if (is_compound_type(rtp)) {
512                                 if (ins[j] == NULL)
513                                         ins[j] = get_dummy_sel(irg, get_nodes_block(entry->call), rtp, env);
514                                 ++j;
515                         }
516                 }
517         }
518 }
519
520 /**
521  * Fix all calls on a call list by adding hidden parameters.
522  *
523  * @param irg  the graph
524  * @param env  the environment
525  */
526 static void fix_call_list(ir_graph *irg, wlk_env *env)
527 {
528         cl_entry *p;
529         ir_node *call, **new_in;
530         ir_type *ctp, *lowered_mtp;
531         size_t i, n_res, n_params, n_com, pos;
532
533         new_in = NEW_ARR_F(ir_node *, 0);
534         for (p = env->cl_list; p; p = p->next) {
535                 call = p->call;
536                 ctp = get_Call_type(call);
537                 lowered_mtp = lower_mtp(env->flags, ctp);
538                 set_Call_type(call, lowered_mtp);
539
540                 n_params = get_Call_n_params(call);
541
542                 n_com = 0;
543                 for (i = 0, n_res = get_method_n_ress(ctp); i < n_res; ++i) {
544                         if (is_compound_type(get_method_res_type(ctp, i)))
545                                 ++n_com;
546                 }
547                 pos = 2;
548                 ARR_RESIZE(ir_node *, new_in, n_params + n_com + pos);
549                 memset(new_in, 0, sizeof(*new_in) * (n_params + n_com + pos));
550                 add_hidden_param(irg, n_com, &new_in[pos], p, env);
551                 pos += n_com;
552                 /* copy all other parameters */
553                 for (i = 0; i < n_params; ++i)
554                         new_in[pos++] = get_Call_param(call, i);
555                 new_in[0] = get_Call_mem(call);
556                 new_in[1] = get_Call_ptr(call);
557
558                 set_irn_in(call, n_params + n_com + 2, new_in);
559         }
560 }
561
562 /**
563  * Transform a graph. If it has compound parameter returns,
564  * remove them and use the hidden parameter instead.
565  * If it calls methods with compound parameter returns, add hidden
566  * parameters.
567  *
568  * @param irg  the graph to transform
569  */
570 static void transform_irg(compound_call_lowering_flags flags, ir_graph *irg)
571 {
572         ir_entity  *ent = get_irg_entity(irg);
573         ir_type    *mtp, *lowered_mtp, *tp, *ft;
574         size_t     i, j, k, n_ress = 0, n_ret_com = 0;
575         size_t     n_cr_opt;
576         ir_node    **new_in, *ret, *endbl, *bl, *mem, *copy;
577         cr_pair    *cr_opt;
578         wlk_env    env;
579
580         mtp = get_entity_type(ent);
581
582         /* calculate the number of compound returns */
583         n_ress = get_method_n_ress(mtp);
584         for (n_ret_com = i = 0; i < n_ress; ++i) {
585                 tp = get_method_res_type(mtp, i);
586
587                 if (is_compound_type(tp))
588                         ++n_ret_com;
589         }
590
591         fix_parameter_entities(irg, n_ret_com);
592
593         if (n_ret_com) {
594                 /* much easier if we have only one return */
595                 normalize_one_return(irg);
596
597                 /* This graph has a compound argument. Create a new type */
598                 lowered_mtp = lower_mtp(flags, mtp);
599                 set_entity_type(ent, lowered_mtp);
600
601                 /* hidden arguments are added first */
602                 env.arg_shift    = n_ret_com;
603         } else {
604                 /* we must only search for calls */
605                 env.arg_shift = 0;
606                 lowered_mtp   = NULL;
607         }
608         obstack_init(&env.obst);
609         env.cl_list        = NULL;
610         env.dummy_map      = pmap_create_ex(8);
611         env.flags          = flags;
612         env.lowered_mtp    = lowered_mtp;
613         env.only_local_mem = 1;
614         env.changed        = 0;
615
616         /* scan the code, fix argument numbers and collect calls. */
617         irg_walk_graph(irg, firm_clear_link, fix_args_and_collect_calls, &env);
618
619         /* fix all calls */
620         if (env.cl_list) {
621                 fix_call_list(irg, &env);
622                 env.changed = 1;
623         }
624
625         if (n_ret_com) {
626                 int idx;
627
628                 /* STEP 1: find the return. This is simple, we have normalized the graph. */
629                 endbl = get_irg_end_block(irg);
630                 ret = NULL;
631                 for (idx = get_Block_n_cfgpreds(endbl) - 1; idx >= 0; --idx) {
632                         ir_node *pred = get_Block_cfgpred(endbl, idx);
633
634                         if (is_Return(pred)) {
635                                 ret = pred;
636                                 break;
637                         }
638                 }
639
640                 /* in case of infinite loops, there might be no return */
641                 if (ret != NULL) {
642                         /*
643                          * Now fix the Return node of the current graph.
644                          */
645                         env.changed = 1;
646
647                         /*
648                          * STEP 2: fix it. For all compound return values add a CopyB,
649                          * all others are copied.
650                          */
651                         NEW_ARR_A(ir_node *, new_in, n_ress + 1);
652
653                         bl  = get_nodes_block(ret);
654                         mem = get_Return_mem(ret);
655
656                         ft = get_irg_frame_type(irg);
657                         NEW_ARR_A(cr_pair, cr_opt, n_ret_com);
658                         n_cr_opt = 0;
659                         for (j = 1, i = k = 0; i < n_ress; ++i) {
660                                 ir_node *pred = get_Return_res(ret, i);
661                                 tp = get_method_res_type(mtp, i);
662
663                                 if (is_compound_type(tp)) {
664                                         ir_node *arg = get_irg_args(irg);
665                                         arg = new_r_Proj(arg, mode_P_data, k);
666                                         ++k;
667
668                                         if (is_Unknown(pred)) {
669                                                 /* The Return(Unknown) is the Firm construct for a
670                                                  * missing return. Do nothing. */
671                                         } else {
672                                                 /**
673                                                  * Sorrily detecting that copy-return is possible isn't
674                                                  * that simple. We must check, that the hidden address
675                                                  * is alias free during the whole function.
676                                                  * A simple heuristic: all Loads/Stores inside
677                                                  * the function access only local frame.
678                                                  */
679                                                 if (env.only_local_mem && is_compound_address(ft, pred)) {
680                                                         /* we can do the copy-return optimization here */
681                                                         cr_opt[n_cr_opt].ent = get_Sel_entity(pred);
682                                                         cr_opt[n_cr_opt].arg = arg;
683                                                         ++n_cr_opt;
684                                                 } else { /* copy-return optimization is impossible, do the copy. */
685                                                         copy = new_r_CopyB(
686                                                                         bl,
687                                                                         mem,
688                                                                         arg,
689                                                                         pred,
690                                                                         tp
691                                                                         );
692                                                         mem = new_r_Proj(copy, mode_M, pn_CopyB_M);
693                                                 }
694                                         }
695                                         if (flags & LF_RETURN_HIDDEN) {
696                                                 new_in[j] = arg;
697                                                 ++j;
698                                         }
699                                 } else { /* scalar return value */
700                                         new_in[j] = pred;
701                                         ++j;
702                                 }
703                         }
704                         /* replace the in of the Return */
705                         new_in[0] = mem;
706                         set_irn_in(ret, j, new_in);
707
708                         if (n_cr_opt > 0) {
709                                 size_t c;
710                                 size_t n;
711
712                                 irg_walk_graph(irg, NULL, do_copy_return_opt, cr_opt);
713
714                                 for (c = 0, n = ARR_LEN(cr_opt); c < n; ++c) {
715                                         free_entity(cr_opt[c].ent);
716                                 }
717                         }
718                 }
719         }
720
721         pmap_destroy(env.dummy_map);
722         obstack_free(&env.obst, NULL);
723 }
724
725 static void lower_method_types(type_or_ent tore, void *env)
726 {
727         const compound_call_lowering_flags *flags
728                 = (const compound_call_lowering_flags*)env;
729
730         /* fix method entities */
731         if (is_entity(tore.ent)) {
732                 ir_entity *ent     = tore.ent;
733                 ir_type   *tp      = get_entity_type(ent);
734                 ir_type   *lowered = lower_mtp(*flags, tp);
735                 set_entity_type(ent, lowered);
736         } else {
737                 ir_type *tp = tore.typ;
738
739                 /* fix pointer to methods */
740                 if (is_Pointer_type(tp)) {
741                         ir_type *points_to         = get_pointer_points_to_type(tp);
742                         ir_type *lowered_points_to = lower_mtp(*flags, points_to);
743                         set_pointer_points_to_type(tp, lowered_points_to);
744                 }
745         }
746 }
747
748 void lower_calls_with_compounds(compound_call_lowering_flags flags)
749 {
750         size_t i, n;
751
752         pointer_types = pmap_create();
753         lowered_mtps = pmap_create();
754
755         /* first step: Transform all graphs */
756         for (i = 0, n = get_irp_n_irgs(); i < n; ++i) {
757                 ir_graph *irg = get_irp_irg(i);
758                 transform_irg(flags, irg);
759         }
760
761         /* second step: Lower all method types of visible entities */
762         type_walk(NULL, lower_method_types, &flags);
763
764         pmap_destroy(lowered_mtps);
765         pmap_destroy(pointer_types);
766 }