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