invalidate analysis info only if graph was changed
[libfirm] / ir / lower / lower_calls.c
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Lowering of Calls with compound parameters and return types.
23  * @author  Michael Beck
24  * @version $Id$
25  */
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "lowering.h"
32 #include "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 "irtools.h"
40 #include "iroptimize.h"
41 #include "array.h"
42 #include "pmap.h"
43 #include "xmalloc.h"
44
45 /** A type map for def_find_pointer_type. */
46 static pmap *type_map;
47
48 /**
49  * Default implementation for finding a pointer type for a given element type.
50  * Simple create a new one.
51  */
52 static ir_type *def_find_pointer_type(ir_type *e_type, ir_mode *mode, int alignment)
53 {
54   ir_type *res;
55   pmap_entry *e;
56
57   /* Mode and alignment are always identical in all calls to def_find_pointer_type(), so
58      we simply can use a map from the element type to the pointer type. */
59   e = pmap_find(type_map, e_type);
60   if (e)
61     res = e->value;
62   else {
63     res = new_type_pointer(mangle_u(get_type_ident(e_type), new_id_from_chars("Ptr", 3)), e_type, mode);
64     set_type_alignment_bytes(res, alignment);
65     pmap_insert(type_map, e_type, res);
66   }
67   return res;
68 }
69
70 /**
71  * Creates a new lowered type for a method type with compound
72  * arguments. The new type is associated to the old one and returned.
73  *
74  * @param lp   parameter struct
75  * @param mtp  the method type to lower
76  *
77  * The current implementation expects that a lowered type already
78  * includes the necessary changes ...
79  */
80 static ir_type *create_modified_mtd_type(const lower_params_t *lp, ir_type *mtp)
81 {
82   ir_type *lowered, *ptr_tp;
83   ir_type **params, **results, *res_tp;
84   ir_mode *modes[MAX_REGISTER_RET_VAL];
85   int n_ress, n_params, nn_ress, nn_params, i, first_variadic;
86   ident *id;
87   add_hidden hidden_params;
88   int        changed = 0;
89   variadicity var;
90
91   if (is_lowered_type(mtp)) {
92     /* the type is already lowered. Not handled yet. */
93     assert(0 && "lowered types NYI");
94   }
95
96   lowered = get_associated_type(mtp);
97   if (lowered)
98     return lowered;
99
100   n_ress   = get_method_n_ress(mtp);
101   NEW_ARR_A(ir_type *, results, n_ress);
102
103   n_params = get_method_n_params(mtp);
104   NEW_ARR_A(ir_type *, params, n_params + n_ress);
105
106   first_variadic = get_method_first_variadic_param_index(mtp);
107
108   hidden_params = lp->hidden_params;
109   if (hidden_params == ADD_HIDDEN_SMART &&
110     get_method_variadicity(mtp) == variadicity_variadic)
111         hidden_params = ADD_HIDDEN_ALWAYS_IN_FRONT;
112
113   if (hidden_params == ADD_HIDDEN_ALWAYS_IN_FRONT) {
114     /* add hidden in front */
115     for (nn_ress = nn_params = i = 0; i < n_ress; ++i) {
116       res_tp = get_method_res_type(mtp, i);
117
118       if (is_compound_type(res_tp)) {
119         int n_regs = 0;
120
121         if (lp->flags & LF_SMALL_CMP_IN_REGS)
122           n_regs = lp->ret_compound_in_regs(res_tp, modes);
123
124         if (n_regs > 0) {
125           /* this compound will be returned solely in registers */
126           assert(0);
127         }
128         else {
129           /* this compound will be allocated on callers stack and its
130              address will be transmitted as a hidden parameter. */
131           ptr_tp = lp->find_pointer_type(res_tp, get_modeP_data(), lp->def_ptr_alignment);
132           params[nn_params++] = ptr_tp;
133           changed++;
134           if (lp->flags & LF_RETURN_HIDDEN)
135             results[nn_ress++] = ptr_tp;
136         }
137       }
138       else
139         results[nn_ress++] = res_tp;
140     }
141
142     /* move the index of the first variadic parameter */
143     first_variadic += nn_params;
144
145     for (i = 0; i < n_params; ++i)
146       params[nn_params++] = get_method_param_type(mtp, i);
147   }
148   else {
149     /* add hidden parameters last */
150     assert(get_method_variadicity(mtp) == variadicity_non_variadic &&
151       "Cannot add hidden parameters at end of variadic function");
152
153     for (nn_params = 0; nn_params < n_params; ++nn_params)
154       params[nn_params] = get_method_param_type(mtp, nn_params);
155
156     for (nn_ress = i = 0; i < n_ress; ++i) {
157       res_tp = get_method_res_type(mtp, i);
158
159       if (is_compound_type(res_tp))
160         params[nn_params++] = lp->find_pointer_type(res_tp, get_modeP_data(), lp->def_ptr_alignment);
161       else
162         results[nn_ress++] = res_tp;
163     }
164   }
165
166   /* create the new type */
167   id = mangle_u(new_id_from_chars("L", 1), get_type_ident(mtp));
168   lowered = new_d_type_method(id, nn_params, nn_ress, get_type_dbg_info(mtp));
169
170   /* fill it */
171   for (i = 0; i < nn_params; ++i)
172     set_method_param_type(lowered, i, params[i]);
173   for (i = 0; i < nn_ress; ++i)
174     set_method_res_type(lowered, i, results[i]);
175
176   var = get_method_variadicity(mtp);
177   set_method_variadicity(lowered, var);
178   if (var == variadicity_variadic)
179     set_method_first_variadic_param_index(lowered, first_variadic);
180
181   /* associate the lowered type with the original one for easier access */
182   if(changed) {
183     set_method_calling_convention(lowered, get_method_calling_convention(mtp) | cc_compound_ret);
184   }
185   set_lowered_type(mtp, lowered);
186
187   return lowered;
188 }
189
190 /**
191  * A call list entry.
192  */
193 typedef struct cl_entry cl_entry;
194 struct cl_entry {
195   cl_entry *next;   /**< Pointer to the next entry. */
196   ir_node  *call;   /**< Pointer to the Call node. */
197   ir_node  *copyb;  /**< List of all CopyB nodes. */
198 };
199
200 /**
201  * Walker environment for fix_args_and_collect_calls().
202  */
203 typedef struct _wlk_env_t {
204   int                  arg_shift;     /**< The Argument index shift for parameters. */
205   int                  first_hidden;  /**< The index of the first hidden argument. */
206   struct obstack       obst;          /**< An obstack to allocate the data on. */
207   cl_entry             *cl_list;      /**< The call list. */
208   pmap                 *dummy_map;    /**< A map for finding the dummy arguments. */
209   unsigned             dnr;           /**< The dummy index number. */
210   const lower_params_t *params;       /**< lowering parameters */
211   int                  changed;       /**< set if the current graph was changed */
212 } wlk_env;
213
214 /**
215  * Return the call list entry of a call node.
216  * If no entry exists yet, allocate one and enter the node into
217  * the call list of the environment.
218  *
219  * @param call   A Call node.
220  * @param env    The environment.
221  */
222 static cl_entry *get_Call_entry(ir_node *call, wlk_env *env) {
223   cl_entry *res = get_irn_link(call);
224   if (res == NULL) {
225     cl_entry *res = obstack_alloc(&env->obst, sizeof(*res));
226     res->next  = env->cl_list;
227     res->call  = call;
228     res->copyb = NULL;
229     set_irn_link(call, res);
230     env->cl_list = res;
231   }
232   return res;
233 }
234
235 /**
236  * Post walker: shift all parameter indeces
237  * and collect Calls with compound returns in the call list.
238  */
239 static void fix_args_and_collect_calls(ir_node *n, void *ctx) {
240   wlk_env *env = ctx;
241   int i;
242   ir_type *ctp;
243   ir_op *op = get_irn_op(n);
244
245   if (env->arg_shift > 0 && op == op_Proj) {
246     ir_node *pred = get_Proj_pred(n);
247
248     /* Fix the argument numbers */
249     if (pred == get_irg_args(current_ir_graph)) {
250       long pnr = get_Proj_proj(n);
251       set_Proj_proj(n, pnr + env->arg_shift);
252       env->changed = 1;
253     }
254   }
255   else if (op == op_Call) {
256     ctp = get_Call_type(n);
257     if (env->params->flags & LF_COMPOUND_RETURN) {
258       /* check for compound returns */
259       for (i = get_method_n_ress(ctp) -1; i >= 0; --i) {
260         if (is_compound_type(get_method_res_type(ctp, i))) {
261           /*
262            * This is a call with a compound return. As the result
263            * might be ignored, we must put it in the list.
264            */
265           (void)get_Call_entry(n, env);
266           break;
267         }
268       }
269     }
270   }
271   else if (op == op_CopyB && env->params->flags & LF_COMPOUND_RETURN) {
272     /* check for compound returns */
273     ir_node *src = get_CopyB_src(n);
274     /* older scheme using value_res_ent */
275     if (is_Sel(src)) {
276       ir_node *proj = get_Sel_ptr(src);
277       if (is_Proj(proj) && get_Proj_proj(proj) == pn_Call_P_value_res_base) {
278         ir_node *call = get_Proj_pred(proj);
279         if (is_Call(call)) {
280           /* found a CopyB from compound Call result */
281           cl_entry *e = get_Call_entry(call, env);
282           set_irn_link(n, e->copyb);
283           e->copyb = n;
284         }
285       }
286     } else
287     /* new scheme: compound results are determined by the call type only */
288     if (is_Proj(src)) {
289       ir_node *proj = get_Proj_pred(src);
290       if (is_Proj(proj) && get_Proj_proj(proj) == pn_Call_T_result) {
291         ir_node *call = get_Proj_pred(proj);
292         if (is_Call(call)) {
293           ctp = get_Call_type(call);
294           if (is_compound_type(get_method_res_type(ctp, get_Proj_proj(src)))) {
295             /* found a CopyB from compound Call result */
296             cl_entry *e = get_Call_entry(call, env);
297             set_irn_link(n, e->copyb);
298             e->copyb = n;
299           }
300         }
301       }
302     }
303   }
304 }
305
306 /**
307  * Returns non-zero if a node is a compound address
308  * of a frame-type entity.
309  *
310  * @param ft   the frame type
311  * @param adr  the node
312  */
313 static int is_compound_address(ir_type *ft, ir_node *adr)
314 {
315   ir_entity *ent;
316
317   if (! is_Sel(adr))
318     return 0;
319   if (get_Sel_n_indexs(adr) != 0)
320     return 0;
321   ent = get_Sel_entity(adr);
322   return get_entity_owner(ent) == ft;
323 }
324
325 /** A pair for the copy-return-optimization. */
326 typedef struct cr_pair {
327   ir_entity *ent; /**< the entity than can be removed from the frame */
328   ir_node *arg;   /**< the argument that replaces the entities address */
329 } cr_pair;
330
331 /**
332  * Post walker: fixes all entities addresses for the copy-return
333  * optimization.
334  *
335  * Note: We expect the length of the cr_pair array (ie number of compound
336  * return values) to be 1 (C, C++) in almost all cases, so ignore the
337  * linear search complexity here.
338  */
339 static void do_copy_return_opt(ir_node *n, void *ctx) {
340   cr_pair *arr = ctx;
341   int i;
342
343   if (is_Sel(n)) {
344     ir_entity *ent = get_Sel_entity(n);
345
346     for (i = ARR_LEN(arr) - 1; i >= 0; --i) {
347       if (ent == arr[i].ent) {
348         exchange(n, arr[i].arg);
349         break;
350       }
351     }
352   }
353 }
354
355 /**
356  * Return a Sel node that selects a dummy argument of type tp.
357  * Dummy arguments are only needed once and we use a map
358  * to store them.
359  * We could even assign all dummy arguments the same offset
360  * in the frame type ...
361  *
362  * @param irg    the graph
363  * @param block  the block where a newly create Sel should be placed
364  * @param tp     the type of the dummy entity that should be create
365  * @param env    the environment
366  */
367 static ir_node *get_dummy_sel(ir_graph *irg, ir_node *block, ir_type *tp, wlk_env *env)
368 {
369   ir_entity *ent;
370   pmap_entry *e;
371
372   /* use a map the check if we already create such an entity */
373   e = pmap_find(env->dummy_map, tp);
374   if (e)
375     ent = e->value;
376   else {
377     ir_type *ft = get_irg_frame_type(irg);
378     char buf[16];
379
380     snprintf(buf, sizeof(buf), "dummy.%u", env->dnr++);
381     ent = new_entity(ft, new_id_from_str(buf), tp);
382     pmap_insert(env->dummy_map, tp, ent);
383
384     if (get_type_state(ft) == layout_fixed) {
385       /* Fix the layout again */
386       assert(0 && "Fixed layout not implemented");
387     }
388   }
389   return new_r_simpleSel(
390     irg,
391     block,
392     get_irg_no_mem(irg),
393     get_irg_frame(irg),
394     ent);
395 }
396
397 /**
398  * Add the hidden parameter from the CopyB node to the Call node.
399  *
400  * @param irg    the graph
401  * @param n_com  number of compound results (will be number of hidden parameters)
402  * @param ins    in array to store the hidden parameters into
403  * @param entry  the call list
404  * @param env    the environment
405  */
406 static void add_hidden_param(ir_graph *irg, int n_com, ir_node **ins, cl_entry *entry, wlk_env *env)
407 {
408   ir_node *p, *n, *src, *mem, *blk;
409   ir_entity *ent;
410   ir_type *owner;
411   int idx, n_args;
412
413   n_args = 0;
414   for (p = entry->copyb; p; p = n) {
415     n   = get_irn_link(p);
416     src = get_CopyB_src(p);
417
418     /* old scheme using value_res_ent */
419     if (is_Sel(src)) {
420       ent = get_Sel_entity(src);
421       owner = get_entity_owner(ent);
422
423       /* find the hidden parameter index */
424       for (idx = 0; idx < get_struct_n_members(owner); ++idx)
425         if (get_struct_member(owner, idx) == ent)
426           break;
427       assert(idx < get_struct_n_members(owner));
428     }
429     else
430
431     /* new scheme: compound returns are determined by the call type and are Proj's */
432     idx = get_Proj_proj(src);
433
434     ins[idx] = get_CopyB_dst(p);
435     mem      = get_CopyB_mem(p);
436     blk      = get_nodes_block(p);
437
438     /* get rid of the CopyB */
439     turn_into_tuple(p, pn_CopyB_max);
440     set_Tuple_pred(p, pn_CopyB_M_regular, mem);
441     set_Tuple_pred(p, pn_CopyB_M_except,  get_irg_bad(irg));
442     set_Tuple_pred(p, pn_CopyB_X_regular, new_r_Jmp(irg, blk));
443     set_Tuple_pred(p, pn_CopyB_X_except,  get_irg_bad(irg));
444     ++n_args;
445   }
446
447   /* now create dummy entities for function with ignored return value */
448   if (n_args < n_com) {
449     ir_type *ctp = get_Call_type(entry->call);
450     int i, j;
451
452     if (is_lowered_type(ctp))
453       ctp = get_associated_type(ctp);
454
455     for (j = i = 0; i < get_method_n_ress(ctp); ++i) {
456       ir_type *rtp = get_method_res_type(ctp, i);
457       if (is_compound_type(rtp)) {
458         if (ins[j] == NULL)
459           ins[j] = get_dummy_sel(irg, get_nodes_block(entry->call), rtp, env);
460         ++j;
461       }
462     }
463   }
464 }
465
466 /**
467  * Fix all calls on a call list by adding hidden parameters.
468  *
469  * @param irg  the graph
470  * @param env  the environment
471  */
472 static void fix_call_list(ir_graph *irg, wlk_env *env) {
473   const lower_params_t *lp = env->params;
474   cl_entry *p;
475   ir_node *call, **new_in;
476   ir_type *ctp, *lowered_mtp;
477   add_hidden hidden_params;
478   int i, n_params, n_com, pos;
479
480   new_in = NEW_ARR_F(ir_node *, 0);
481   for (p = env->cl_list; p; p = p->next) {
482     call = p->call;
483     ctp = get_Call_type(call);
484     lowered_mtp = create_modified_mtd_type(lp, ctp);
485     set_Call_type(call, lowered_mtp);
486
487     hidden_params = lp->hidden_params;
488     if (hidden_params == ADD_HIDDEN_SMART &&
489       get_method_variadicity(ctp) == variadicity_variadic)
490       hidden_params = ADD_HIDDEN_ALWAYS_IN_FRONT;
491
492     n_params = get_Call_n_params(call);
493
494     n_com = 0;
495     for (i = get_method_n_ress(ctp) - 1; i >= 0; --i) {
496       if (is_compound_type(get_method_res_type(ctp, i)))
497         ++n_com;
498     }
499     pos = 2;
500     ARR_RESIZE(ir_node *, new_in, n_params + n_com + pos);
501     memset(new_in, 0, sizeof(*new_in) * (n_params + n_com + pos));
502     if (hidden_params == ADD_HIDDEN_ALWAYS_IN_FRONT) {
503       add_hidden_param(irg, n_com, &new_in[pos], p, env);
504       pos += n_com;
505     }
506     /* copy all other parameters */
507     for (i = 0; i < n_params; ++i)
508       new_in[pos++] = get_Call_param(call, i);
509     if (hidden_params == ADD_HIDDEN_ALWAYS_LAST) {
510       add_hidden_param(irg, n_com, &new_in[pos], p, env);
511       pos += n_com;
512     }
513     new_in[0] = get_Call_mem(call);
514     new_in[1] = get_Call_ptr(call);
515
516     set_irn_in(call, n_params + n_com + 2, new_in);
517   }
518 }
519
520 /**
521  * Transform a graph. If it has compound parameter returns,
522  * remove them and use the hidden parameter instead.
523  * If it calls methods with compound parameter returns, add hidden
524  * parameters.
525  *
526  * @param lp   parameter struct
527  * @param irg  the graph to transform
528  */
529 static void transform_irg(const lower_params_t *lp, ir_graph *irg)
530 {
531   ir_entity *ent = get_irg_entity(irg);
532   ir_type *mtp, *lowered_mtp, *tp, *ft;
533   int i, j, k, n_ress = 0, n_ret_com = 0, n_cr_opt;
534   ir_node **new_in, *ret, *endbl, *bl, *mem, *copy;
535   cr_pair *cr_opt;
536   wlk_env env;
537   add_hidden hidden_params;
538
539   assert(ent && "Cannot tranform graph without an entity");
540   assert(get_irg_phase_state(irg) == phase_high && "call lowering must be done in phase high");
541
542   mtp = get_entity_type(ent);
543
544   if (lp->flags & LF_COMPOUND_RETURN) {
545     /* calculate the number of compound returns */
546     n_ress = get_method_n_ress(mtp);
547     for (n_ret_com = i = 0; i < n_ress; ++i) {
548       tp = get_method_res_type(mtp, i);
549
550       if (is_compound_type(tp))
551         ++n_ret_com;
552     }
553   }
554
555   if (n_ret_com) {
556     /* much easier if we have only one return */
557     normalize_one_return(irg);
558
559     /* This graph has a compound argument. Create a new type */
560     lowered_mtp = create_modified_mtd_type(lp, mtp);
561     set_entity_type(ent, lowered_mtp);
562
563     hidden_params = lp->hidden_params;
564     if (hidden_params == ADD_HIDDEN_SMART &&
565       get_method_variadicity(mtp) == variadicity_variadic)
566       hidden_params = ADD_HIDDEN_ALWAYS_IN_FRONT;
567
568     if (hidden_params == ADD_HIDDEN_ALWAYS_IN_FRONT) {
569       /* hidden arguments are added first */
570       env.arg_shift    = n_ret_com;
571       env.first_hidden = 0;
572     }
573     else {
574       /* hidden arguments are added last */
575       env.arg_shift    = 0;
576       env.first_hidden = get_method_n_params(mtp);
577     }
578   }
579   else {
580     /* we must only search for calls */
581     env.arg_shift = 0;
582   }
583   obstack_init(&env.obst);
584   env.cl_list   = NULL;
585   env.dummy_map = pmap_create_ex(8);
586   env.dnr       = 0;
587   env.params    = lp;
588   env.changed   = 0;
589
590   /* scan the code, fix argument numbers and collect calls. */
591   irg_walk_graph(irg, firm_clear_link, fix_args_and_collect_calls, &env);
592
593   /* fix all calls */
594   if (env.cl_list) {
595     fix_call_list(irg, &env);
596     env.changed = 1;
597   }
598
599   if (n_ret_com) {
600     /*
601      * Now fix the Return node of the current graph.
602      */
603     env.changed = 1;
604
605     /* STEP 1: find the return. This is simple, we have normalized the graph. */
606     endbl = get_irg_end_block(irg);
607     ret = NULL;
608     for (i = get_Block_n_cfgpreds(endbl) - 1; i >= 0; --i) {
609       ir_node *pred = get_Block_cfgpred(endbl, i);
610
611       if (is_Return(pred)) {
612         ret = pred;
613         break;
614       }
615     }
616     /* there should always be a return */
617     assert(ret);
618
619     /*
620      * STEP 2: fix it. For all compound return values add a CopyB,
621      * all others are copied.
622      */
623     NEW_ARR_A(ir_node *, new_in, n_ress + 1);
624
625     bl  = get_nodes_block(ret);
626     mem = get_Return_mem(ret);
627
628     ft = get_irg_frame_type(irg);
629     NEW_ARR_A(cr_pair, cr_opt, n_ret_com);
630     n_cr_opt = 0;
631     for (j = 1, i = k = 0; i < n_ress; ++i) {
632       ir_node *pred = get_Return_res(ret, i);
633       tp = get_method_res_type(mtp, i);
634
635       if (is_compound_type(tp)) {
636         ir_node *arg = get_irg_args(irg);
637         arg = new_r_Proj(irg, get_nodes_block(arg), arg, mode_P_data, env.first_hidden + k);
638         ++k;
639
640         if (is_compound_address(ft, pred)) {
641           /* we can do the copy-return optimization here */
642           cr_opt[n_cr_opt].ent = get_Sel_entity(pred);
643           cr_opt[n_cr_opt].arg = arg;
644           ++n_cr_opt;
645         }
646         else { /* copy-return optimization is impossible, do the copy. */
647           copy = new_r_CopyB(
648                   irg, bl,
649                   mem,
650                   arg,
651                   pred,
652                   tp
653                  );
654           mem = new_r_Proj(irg, bl, copy, mode_M, pn_CopyB_M_regular);
655         }
656         if (lp->flags & LF_RETURN_HIDDEN) {
657           new_in[j] = arg;
658           ++j;
659         }
660       }
661       else { /* scalar return value */
662         new_in[j] = pred;
663         ++j;
664       }
665     }
666     /* replace the in of the Return */
667     new_in[0] = mem;
668     set_irn_in(ret, j, new_in);
669
670     if (n_cr_opt > 0) {
671       irg_walk_graph(irg, NULL, do_copy_return_opt, cr_opt);
672
673       for (i = ARR_LEN(cr_opt) - 1; i >= 0; --i) {
674         remove_class_member(ft, cr_opt[i].ent);
675       }
676     }
677   } /* if (n_ret_com) */
678
679   pmap_destroy(env.dummy_map);
680   obstack_free(&env.obst, NULL);
681
682   if (env.changed) {
683     /* invalidate the analysis info */
684     set_irg_outs_inconsistent(irg);
685   }
686 }
687
688 /**
689  * Returns non-zero if the given type is a method
690  * type that must be lowered.
691  *
692  * @param lp  lowering parameters
693  * @param tp  The type.
694  */
695 static int must_be_lowered(const lower_params_t *lp, ir_type *tp) {
696   int i, n_ress;
697   ir_type *res_tp;
698
699   if (is_Method_type(tp)) {
700     if (lp->flags & LF_COMPOUND_RETURN) {
701       /* check for compound returns */
702       n_ress = get_method_n_ress(tp);
703       for (i = 0; i < n_ress; ++i) {
704         res_tp = get_method_res_type(tp, i);
705
706         if (is_compound_type(res_tp))
707           return 1;
708       }
709     }
710   }
711   return 0;
712 }
713
714 /**
715  * type-walker: lower all method types of entities
716  * and points-to types.
717  */
718 static void lower_method_types(type_or_ent *tore, void *env)
719 {
720   const lower_params_t *lp = env;
721   ir_type *tp;
722
723   /* fix method entities */
724   if (is_entity(tore)) {
725     ir_entity *ent = (ir_entity *)tore;
726     tp = get_entity_type(ent);
727
728     if (must_be_lowered(lp, tp)) {
729       tp = create_modified_mtd_type(lp, tp);
730       set_entity_type(ent, tp);
731     }
732   }
733   else {
734     tp = (ir_type *)tore;
735
736     /* fix pointer to methods */
737     if (is_Pointer_type(tp)) {
738       ir_type *etp = get_pointer_points_to_type(tp);
739       if (must_be_lowered(lp, etp)) {
740         etp = create_modified_mtd_type(lp, etp);
741         set_pointer_points_to_type(tp, etp);
742       }
743     }
744   }
745 }
746
747 /*
748  * Lower calls with compound parameters and return types.
749  * This function does the following transformations:
750  *
751  * - Adds a new (hidden) pointer parameter for
752  *   any return compound type.
753  *
754  * - Use of the hidden parameters in the function code.
755  *
756  * - Change all calls to functions with compound return
757  *   by providing space for the hidden parameter on the callers
758  *   stack.
759  *
760  * - Replace a possible block copy after the function call.
761  */
762 void lower_calls_with_compounds(const lower_params_t *params)
763 {
764   int i;
765   ir_graph *irg;
766   lower_params_t param = *params;
767
768   if (param.find_pointer_type == NULL) {
769     param.find_pointer_type = def_find_pointer_type;
770     type_map = pmap_create_ex(8);
771   }
772   else
773     type_map = NULL;
774
775   /* first step: Transform all graphs */
776   for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
777     irg = get_irp_irg(i);
778
779     if (irg == get_const_code_irg())
780       continue;
781
782     transform_irg(&param, irg);
783   }
784
785   /* second step: Lower all method types of visible entities */
786   type_walk(NULL, lower_method_types, &param);
787
788   if (type_map)
789     pmap_destroy(type_map);
790 }