Change "associated type" logic to a single linked list to the "higher type"
[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_higher_type(lowered, mtp);
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 static void add_hidden_param(ir_graph *irg, size_t n_com, ir_node **ins,
475                              cl_entry *entry, wlk_env *env,
476                              ir_type *ctp)
477 {
478         ir_node *p, *n, *mem, *blk;
479         size_t n_args;
480
481         n_args = 0;
482         for (p = entry->copyb; p; p = n) {
483                 ir_node *src = get_CopyB_src(p);
484                 size_t   idx = get_Proj_proj(src);
485                 n = (ir_node*)get_irn_link(p);
486
487                 ins[idx] = get_CopyB_dst(p);
488                 blk      = get_nodes_block(p);
489
490                 /* use the memory output of the call and not the input of the CopyB
491                  * otherwise stuff breaks if the call was mtp_property_const, because
492                  * then the copyb skips the call. But after lowering the call is not
493                  * const anymore, and its memory has to be used */
494                 mem = new_r_Proj(entry->call, mode_M, pn_Call_M);
495
496                 /* get rid of the CopyB */
497                 turn_into_tuple(p, pn_CopyB_max+1);
498                 set_Tuple_pred(p, pn_CopyB_M,         mem);
499                 set_Tuple_pred(p, pn_CopyB_X_regular, new_r_Jmp(blk));
500                 set_Tuple_pred(p, pn_CopyB_X_except,  new_r_Bad(irg, mode_X));
501                 ++n_args;
502         }
503
504         /* now create dummy entities for function with ignored return value */
505         if (n_args < n_com) {
506                 size_t   i;
507                 size_t   j;
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, ctp);
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 }