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