more debug info
[libfirm] / ir / opt / scalar_replace.c
1 /*
2  * Copyright (C) 1995-2008 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   Scalar replacement of compounds.
23  * @author  Beyhan Veliev, Michael Beck
24  * @version $Id$
25  */
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <string.h>
31
32 #include "iroptimize.h"
33 #include "scalar_replace.h"
34 #include "irflag_t.h"
35 #include "irouts.h"
36 #include "set.h"
37 #include "pset.h"
38 #include "array.h"
39 #include "tv.h"
40 #include "ircons_t.h"
41 #include "hashptr.h"
42 #include "irgwalk.h"
43 #include "irgmod.h"
44 #include "irnode_t.h"
45 #include "irtools.h"
46 #include "xmalloc.h"
47 #include "debug.h"
48 #include "error.h"
49
50 #define SET_VNUM(node, vnum) set_irn_link(node, INT_TO_PTR(vnum))
51 #define GET_VNUM(node)       (unsigned)PTR_TO_INT(get_irn_link(node))
52
53 /**
54  * A path element entry: it is either an entity
55  * or a tarval, because we evaluate only constant array
56  * accesses like a.b.c[8].d
57  */
58 typedef union {
59         ir_entity *ent;
60         tarval *tv;
61 } path_elem_t;
62
63 /**
64  * An access path, used to assign value numbers
65  * to variables that will be scalar replaced.
66  */
67 typedef struct _path_t {
68         unsigned    vnum;      /**< The value number. */
69         unsigned    path_len;  /**< The length of the access path. */
70         path_elem_t path[1];   /**< The path. */
71 } path_t;
72
73 /** The size of a path in bytes. */
74 #define PATH_SIZE(p)  (sizeof(*(p)) + sizeof((p)->path[0]) * ((p)->path_len - 1))
75
76 typedef struct _scalars_t {
77         ir_entity *ent;              /**< A entity for scalar replacement. */
78         ir_type *ent_owner;          /**< The owner of this entity. */
79 } scalars_t;
80
81 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
82
83 /**
84  * Compare two pathes.
85  *
86  * @return 0 if they are identically
87  */
88 static int path_cmp(const void *elt, const void *key, size_t size) {
89         const path_t *p1 = elt;
90         const path_t *p2 = key;
91         (void) size;
92
93         /* we can use memcmp here, because identical tarvals should have identical addresses */
94         return memcmp(p1->path, p2->path, p1->path_len * sizeof(p1->path[0]));
95 }
96
97 /**
98  * Compare two elements of the scalars_t set.
99  *
100  * @return 0 if they are identically
101  */
102 static int ent_cmp(const void *elt, const void *key, size_t size) {
103         const scalars_t *c1 = elt;
104         const scalars_t *c2 = key;
105         (void) size;
106
107         return c1->ent != c2->ent;
108 }
109
110 /**
111  * Calculate a hash value for a path.
112  */
113 static unsigned path_hash(const path_t *path) {
114         unsigned hash = 0;
115         unsigned i;
116
117         for (i = 0; i < path->path_len; ++i)
118                 hash ^= (unsigned)PTR_TO_INT(path->path[i].ent);
119
120         return hash >> 4;
121 }
122
123 /**
124  * Returns non-zero, if all indeces of a Sel node are constants.
125  *
126  * @param sel  the Sel node that will be checked
127  */
128 static int is_const_sel(ir_node *sel) {
129         int i, n = get_Sel_n_indexs(sel);
130
131         for (i = 0; i < n; ++i) {
132                 ir_node *idx = get_Sel_index(sel, i);
133
134                 if (!is_Const(idx))
135                         return 0;
136         }
137         return 1;
138 }
139
140 /**
141  * Check the mode of a Load/Store with the mode of the entity
142  * that is accessed.
143  * If the mode of the entity and the Load/Store mode do not match, we
144  * have the bad reinterpret case:
145  *
146  * int i;
147  * char b = *(char *)&i;
148  *
149  * We do NOT count this as one value and return address_taken
150  * in that case.
151  * However, we support an often used case. If the mode is two-complement
152  * we allow casts between signed/unsigned.
153  *
154  * @param mode     the mode of the Load/Store
155  * @param ent_mode the mode of the accessed entity
156  */
157 static int check_load_store_mode(ir_mode *mode, ir_mode *ent_mode) {
158         if (ent_mode != mode) {
159                 if (ent_mode == NULL ||
160                     get_mode_size_bits(ent_mode) != get_mode_size_bits(mode) ||
161                     get_mode_sort(ent_mode) != get_mode_sort(mode) ||
162                     get_mode_arithmetic(ent_mode) != irma_twos_complement ||
163                     get_mode_arithmetic(mode) != irma_twos_complement)
164                         return 0;
165         }
166         return 1;
167 }
168
169 /*
170  * Returns non-zero, if the address of an entity
171  * represented by a Sel node (or it's successor Sels) is taken.
172  */
173 int is_address_taken(ir_node *sel)
174 {
175         int       i, input_nr, k;
176         ir_mode   *emode, *mode;
177         ir_node   *value;
178         ir_entity *ent;
179
180         if (! is_const_sel(sel))
181                 return 1;
182
183         for (i = get_irn_n_outs(sel) - 1; i >= 0; --i) {
184                 ir_node *succ = get_irn_out(sel, i);
185
186                 switch (get_irn_opcode(succ)) {
187                 case iro_Load:
188                         /* do not remove volatile variables */
189                         if (get_Load_volatility(succ) == volatility_is_volatile)
190                                 return 1;
191                         /* check if this load is not a hidden conversion */
192                         mode = get_Load_mode(succ);
193                         ent = get_Sel_entity(sel);
194                         emode = get_type_mode(get_entity_type(ent));
195                         if (! check_load_store_mode(mode, emode))
196                                 return 1;
197                         break;
198
199                 case iro_Store:
200                         /* check that Sel is not the Store's value */
201                         value = get_Store_value(succ);
202                         if (value == sel)
203                                 return 1;
204                         /* do not remove volatile variables */
205                         if (get_Store_volatility(succ) == volatility_is_volatile)
206                                 return 1;
207                         /* check if this Store is not a hidden conversion */
208                         mode = get_irn_mode(value);
209                         ent = get_Sel_entity(sel);
210                         emode = get_type_mode(get_entity_type(ent));
211                         if (! check_load_store_mode(mode, emode))
212                                 return 1;
213                         break;
214
215                 case iro_Sel: {
216                         /* Check the Sel successor of Sel */
217                         int res = is_address_taken(succ);
218
219                         if (res)
220                                 return 1;
221                         break;
222                 }
223
224                 case iro_Call:
225                         /* The address of an entity is given as a parameter.
226                          * As long as we do not have analyses that can tell what
227                          * is done with parameters, think is taken.
228                          * One special case: If the Call type tells that it's a
229                          * value parameter, the address is NOT taken.
230                          */
231                         return 1;
232
233                 case iro_Id: {
234                         int res = is_address_taken(succ);
235                         if (res)
236                                 return 1;
237                         break;
238                 }
239
240                 case iro_Tuple:
241                         /* Non-optimized Tuple, happens in inlining */
242                         for (input_nr = get_Tuple_n_preds(succ) - 1; input_nr >= 0; --input_nr) {
243                                 ir_node *pred = get_Tuple_pred(succ, input_nr);
244
245                                 if (pred == sel) {
246                                         /* we found one input */
247                                         for (k = get_irn_n_outs(succ) - 1; k >= 0; --k) {
248                                                 ir_node *proj = get_irn_out(succ, k);
249
250                                                 if (is_Proj(proj) && get_Proj_proj(proj) == input_nr) {
251                                                         int res = is_address_taken(proj);
252                                                         if (res)
253                                                                 return 1;
254                                                 }
255                                         }
256                                 }
257                         }
258                         break;
259
260                 default:
261                         /* another op, the address is taken */
262                         return 1;
263                 }
264         }
265         return 0;
266 }
267
268 /**
269  * Link all leave Sels with the entity.
270  *
271  * @param ent  the entity that will be scalar replaced
272  * @param sel  a Sel node that selects some fields of this entity
273  *
274  * Uses the visited flag to mark already linked Sel nodes.
275  */
276 static void link_all_leave_sels(ir_entity *ent, ir_node *sel) {
277         int i, flag = 1;
278
279         for (i = get_irn_n_outs(sel) - 1; i >= 0; --i) {
280                 ir_node *succ = get_irn_out(sel, i);
281
282                 if (is_Sel(succ)) {
283                         link_all_leave_sels(ent, succ);
284                         flag = 0;
285                 }
286         }
287
288         if (flag) {
289                 /* if Sel nodes with memory inputs are used, a entity can be
290                  * visited more than once causing a ring here, so we use the
291                  * node flag to mark linked nodes
292                  */
293                 if (irn_visited(sel))
294                         return;
295
296                 /* we know we are at a leave, because this function is only
297                  * called if the address is NOT taken, so succ must be a Load
298                  * or a Store node
299                  */
300                 set_irn_link(sel, get_entity_link(ent));
301                 set_entity_link(ent, sel);
302
303                 mark_irn_visited(sel);
304         }
305 }
306
307 /* we need a special address that serves as an address taken marker */
308 static char _x;
309 static void *ADDRESS_TAKEN = &_x;
310
311 /**
312  * Find possible scalar replacements.
313  *
314  * @param irg  an IR graph
315  *
316  * This function finds variables on the (members of the) frame type
317  * that can be scalar replaced, because their address is never taken.
318  * If such a variable is found, it's entity link will hold a list of all
319  * Sel nodes, that selects the atomic fields of this entity.
320  * Otherwise, the link will be ADDRESS_TAKEN or NULL.
321  *
322  * @return  non-zero if at least one entity could be replaced
323  *          potentially
324  */
325 static int find_possible_replacements(ir_graph *irg) {
326         ir_node *irg_frame;
327         ir_type *frame_tp;
328         int     i;
329         int     res = 0;
330
331         ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
332         inc_irg_visited(irg);
333
334         /*
335          * First, clear the link field of all interesting entities.
336          */
337         frame_tp = get_irg_frame_type(irg);
338         for (i = get_class_n_members(frame_tp) - 1; i >= 0; --i) {
339                 ir_entity *ent = get_class_member(frame_tp, i);
340                 set_entity_link(ent, NULL);
341         }
342
343         /*
344          * Check the ir_graph for Sel nodes. If the entity of Sel
345          * isn't a scalar replacement set the link of this entity
346          * equal ADDRESS_TAKEN.
347          */
348         irg_frame = get_irg_frame(irg);
349         for (i = get_irn_n_outs(irg_frame) - 1; i >= 0; --i) {
350                 ir_node *succ = get_irn_out(irg_frame, i);
351
352                 if (is_Sel(succ)) {
353                         ir_entity *ent = get_Sel_entity(succ);
354                         ir_type *ent_type;
355
356                         if (get_entity_link(ent) == ADDRESS_TAKEN)
357                                 continue;
358
359                         /*
360                          * Beware: in rare cases even entities on the frame might be
361                          * volatile. This might happen if the entity serves as a store
362                          * to a value that must survive a exception. Do not optimize
363                          * such entities away.
364                          */
365                         if (get_entity_volatility(ent) == volatility_is_volatile) {
366                                 set_entity_link(ent, ADDRESS_TAKEN);
367                                 continue;
368                         }
369
370                         ent_type = get_entity_type(ent);
371
372                         /* we can handle arrays, structs and atomic types yet */
373                         if (is_Array_type(ent_type) || is_Struct_type(ent_type) || is_atomic_type(ent_type)) {
374                                 if (is_address_taken(succ)) {
375                                         if (get_entity_link(ent)) /* killing one */
376                                                 --res;
377                                         set_entity_link(ent, ADDRESS_TAKEN);
378                                 } else {
379                                         /* possible found one */
380                                         if (get_entity_link(ent) == NULL)
381                                                 ++res;
382                                         link_all_leave_sels(ent, succ);
383                                 }
384                         }
385                 }
386         }
387
388         ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
389         return res;
390 }
391
392 /**
393  * Return a path from the Sel node sel to it's root.
394  *
395  * @param sel  the Sel node
396  * @param len  the length of the path so far
397  */
398 static path_t *find_path(ir_node *sel, unsigned len) {
399         int pos, i, n;
400         path_t *res;
401         ir_node *pred = get_Sel_ptr(sel);
402
403         /* the current Sel node will add some path elements */
404         n    = get_Sel_n_indexs(sel);
405         len += n + 1;
406
407         if (! is_Sel(pred)) {
408                 /* we found the root */
409                 res = XMALLOCF(path_t, path, len);
410                 res->path_len = len;
411         } else
412                 res = find_path(pred, len);
413
414         pos = res->path_len - len;
415
416         res->path[pos++].ent = get_Sel_entity(sel);
417         for (i = 0; i < n; ++i) {
418                 ir_node *index = get_Sel_index(sel, i);
419
420                 res->path[pos++].tv = get_Const_tarval(index);
421         }
422         return res;
423 }
424
425
426 /**
427  * Allocate value numbers for the leaves
428  * in our found entities.
429  *
430  * @param sels  a set that will contain all Sels that have a value number
431  * @param ent   the entity that will be scalar replaced
432  * @param vnum  the first value number we can assign
433  * @param modes a flexible array, containing all the modes of
434  *              the value numbers.
435  *
436  * @return the next free value number
437  */
438 static unsigned allocate_value_numbers(pset *sels, ir_entity *ent, unsigned vnum, ir_mode ***modes)
439 {
440         ir_node *sel, *next;
441         path_t *key, *path;
442         set *pathes = new_set(path_cmp, 8);
443
444         DB((dbg, SET_LEVEL_3, "  Visiting Sel nodes of entity %+F\n", ent));
445         /* visit all Sel nodes in the chain of the entity */
446         for (sel = get_entity_link(ent); sel; sel = next) {
447                 next = get_irn_link(sel);
448
449                 /* we must mark this sel for later */
450                 pset_insert_ptr(sels, sel);
451
452                 key  = find_path(sel, 0);
453                 path = set_find(pathes, key, PATH_SIZE(key), path_hash(key));
454
455                 if (path) {
456                         SET_VNUM(sel, path->vnum);
457                         DB((dbg, SET_LEVEL_3, "  %+F represents value %u\n", sel, path->vnum));
458                 } else {
459                         key->vnum = vnum++;
460
461                         set_insert(pathes, key, PATH_SIZE(key), path_hash(key));
462
463                         SET_VNUM(sel, key->vnum);
464                         DB((dbg, SET_LEVEL_3, "  %+F represents value %u\n", sel, key->vnum));
465
466                         ARR_EXTO(ir_mode *, *modes, (int)((key->vnum + 15) & ~15));
467
468                         (*modes)[key->vnum] = get_type_mode(get_entity_type(get_Sel_entity(sel)));
469
470                         assert((*modes)[key->vnum] && "Value is not atomic");
471
472 #ifdef DEBUG_libfirm
473                         /* Debug output */
474                         {
475                                 unsigned i;
476                                 DB((dbg, SET_LEVEL_2, "  %s", get_entity_name(key->path[0].ent)));
477                                 for (i = 1; i < key->path_len; ++i) {
478                                         if (is_entity(key->path[i].ent))
479                                                 DB((dbg, SET_LEVEL_2, ".%s", get_entity_name(key->path[i].ent)));
480                                         else
481                                                 DB((dbg, SET_LEVEL_2, "[%ld]", get_tarval_long(key->path[i].tv)));
482                                 }
483                                 DB((dbg, SET_LEVEL_2, " = %u (%s)\n", PTR_TO_INT(get_irn_link(sel)), get_mode_name((*modes)[key->vnum])));
484                         }
485 #endif /* DEBUG_libfirm */
486                 }
487                 free(key);
488         }
489
490         del_set(pathes);
491         set_entity_link(ent, NULL);
492         return vnum;
493 }
494
495 /**
496  * A list entry for the fixing lists
497  */
498 typedef struct _list_entry_t {
499         ir_node  *node;   /**< the node that must be fixed */
500         unsigned vnum;    /**< the value number of this node */
501 } list_entry_t;
502
503 /**
504  * environment for memory walker
505  */
506 typedef struct _env_t {
507         int          nvals;       /**< number of values */
508         ir_mode      **modes;     /**< the modes of the values */
509         pset         *sels;       /**< A set of all Sel nodes that have a value number */
510 } env_t;
511
512 /**
513  * topological post-walker.
514  */
515 static void topologic_walker(ir_node *node, void *ctx) {
516         env_t        *env = ctx;
517         ir_node      *adr, *block, *mem, *val;
518         ir_mode      *mode;
519         unsigned     vnum;
520
521         if (is_Load(node)) {
522                 /* a load, check if we can resolve it */
523                 adr = get_Load_ptr(node);
524
525                 DB((dbg, SET_LEVEL_3, "  checking %+F for replacement ", node));
526                 if (! is_Sel(adr)) {
527                         DB((dbg, SET_LEVEL_3, "no Sel input (%+F)\n", adr));
528                         return;
529                 }
530
531                 if (! pset_find_ptr(env->sels, adr)) {
532                         DB((dbg, SET_LEVEL_3, "Sel %+F has no VNUM\n", adr));
533                         return;
534                 }
535
536                 /* ok, we have a Load that will be replaced */
537                 vnum = GET_VNUM(adr);
538                 assert(vnum < (unsigned)env->nvals);
539
540                 DB((dbg, SET_LEVEL_3, "replacing by value %u\n", vnum));
541
542                 block = get_nodes_block(node);
543                 set_cur_block(block);
544
545                 /* check, if we can replace this Load */
546                 val = get_value(vnum, env->modes[vnum]);
547
548                 /* Beware: A Load can contain a hidden conversion in Firm.
549                 This happens for instance in the following code:
550
551                  int i;
552                  unsigned j = *(unsigned *)&i;
553
554                 Handle this here. */
555                 mode = get_Load_mode(node);
556                 if (mode != get_irn_mode(val))
557                         val = new_d_Conv(get_irn_dbg_info(node), val, mode);
558
559                 mem = get_Load_mem(node);
560                 turn_into_tuple(node, pn_Load_max);
561                 set_Tuple_pred(node, pn_Load_M,         mem);
562                 set_Tuple_pred(node, pn_Load_res,       val);
563                 set_Tuple_pred(node, pn_Load_X_regular, new_Jmp());
564                 set_Tuple_pred(node, pn_Load_X_except,  new_Bad());
565         } else if (is_Store(node)) {
566                 DB((dbg, SET_LEVEL_3, "  checking %+F for replacement ", node));
567
568                 /* a Store always can be replaced */
569                 adr = get_Store_ptr(node);
570
571                 if (! is_Sel(adr)) {
572                         DB((dbg, SET_LEVEL_3, "no Sel input (%+F)\n", adr));
573                         return;
574                 }
575
576                 if (! pset_find_ptr(env->sels, adr)) {
577                         DB((dbg, SET_LEVEL_3, "Sel %+F has no VNUM\n", adr));
578                         return;
579                 }
580
581                 vnum = GET_VNUM(adr);
582                 assert(vnum < (unsigned)env->nvals);
583
584                 DB((dbg, SET_LEVEL_3, "replacing by value %u\n", vnum));
585
586                 /* Beware: A Store can contain a hidden conversion in Firm. */
587                 val = get_Store_value(node);
588                 if (get_irn_mode(val) != env->modes[vnum])
589                         val = new_d_Conv(get_irn_dbg_info(node), val, env->modes[vnum]);
590
591                 block = get_nodes_block(node);
592                 set_cur_block(block);
593                 set_value(vnum, val);
594
595                 mem = get_Store_mem(node);
596                 turn_into_tuple(node, pn_Store_max);
597                 set_Tuple_pred(node, pn_Store_M,         mem);
598                 set_Tuple_pred(node, pn_Store_X_regular, new_Jmp());
599                 set_Tuple_pred(node, pn_Store_X_except,  new_Bad());
600         }
601 }
602
603 /**
604  * Make scalar replacement.
605  *
606  * @param sels    A set containing all Sel nodes that have a value number
607  * @param nvals   The number of scalars.
608  * @param modes   A flexible array, containing all the modes of
609  *                the value numbers.
610  */
611 static void do_scalar_replacements(pset *sels, int nvals, ir_mode **modes) {
612         env_t env;
613
614         ssa_cons_start(current_ir_graph, nvals);
615
616         env.nvals     = nvals;
617         env.modes     = modes;
618         env.sels      = sels;
619
620         /*
621          * second step: walk over the graph blockwise in topological order
622          * and fill the array as much as possible.
623          */
624         DB((dbg, SET_LEVEL_3, "Substituting Loads and Stores in %+F\n", current_ir_graph));
625         irg_walk_blkwise_graph(current_ir_graph, NULL, topologic_walker, &env);
626
627         ssa_cons_finish(current_ir_graph);
628 }
629
630 /*
631  * Find possible scalar replacements
632  *
633  * @param irg  The current ir graph.
634  */
635 int scalar_replacement_opt(ir_graph *irg) {
636         unsigned  nvals;
637         int       i;
638         scalars_t key, *value;
639         ir_node   *irg_frame;
640         ir_mode   **modes;
641         set       *set_ent;
642         pset      *sels;
643         ir_type   *ent_type;
644         ir_graph  *rem;
645         int       res = 0;
646
647         if (! get_opt_scalar_replacement())
648                 return 0;
649
650         rem = current_ir_graph;
651         current_ir_graph = irg;
652
653         /* Call algorithm that computes the out edges */
654         assure_irg_outs(irg);
655
656         /* Find possible scalar replacements */
657         if (find_possible_replacements(irg)) {
658                 DB((dbg, SET_LEVEL_1, "Scalar Replacement: %s\n", get_entity_name(get_irg_entity(irg))));
659
660                 /* Insert in set the scalar replacements. */
661                 irg_frame = get_irg_frame(irg);
662                 nvals = 0;
663                 modes = NEW_ARR_F(ir_mode *, 16);
664                 set_ent = new_set(ent_cmp, 8);
665                 sels    = pset_new_ptr(8);
666
667                 for (i = get_irn_n_outs(irg_frame) - 1; i >= 0; --i) {
668                         ir_node *succ = get_irn_out(irg_frame, i);
669
670                         if (is_Sel(succ)) {
671                                 ir_entity *ent = get_Sel_entity(succ);
672
673                                 if (get_entity_link(ent) == NULL || get_entity_link(ent) == ADDRESS_TAKEN)
674                                         continue;
675
676                                 ent_type = get_entity_type(ent);
677
678                                 key.ent       = ent;
679                                 key.ent_owner = get_entity_owner(ent);
680                                 set_insert(set_ent, &key, sizeof(key), HASH_PTR(key.ent));
681
682 #ifdef DEBUG_libfirm
683                                 if (is_Array_type(ent_type)) {
684                                         DB((dbg, SET_LEVEL_1, "  found array %s\n", get_entity_name(ent)));
685                                 } else if (is_Struct_type(ent_type)) {
686                                         DB((dbg, SET_LEVEL_1, "  found struct %s\n", get_entity_name(ent)));
687                                 } else if (is_atomic_type(ent_type))
688                                         DB((dbg, SET_LEVEL_1, "  found atomic value %s\n", get_entity_name(ent)));
689                                 else {
690                                         panic("Neither an array nor a struct or atomic value found in scalar replace");
691                                 }
692 #endif /* DEBUG_libfirm */
693
694                                 nvals = allocate_value_numbers(sels, ent, nvals, &modes);
695                         }
696                 }
697
698                 DB((dbg, SET_LEVEL_1, "  %u values will be needed\n", nvals));
699
700                 /* If scalars were found. */
701                 if (nvals > 0) {
702                         do_scalar_replacements(sels, nvals, modes);
703
704                         foreach_set(set_ent, value) {
705                                 remove_class_member(value->ent_owner, value->ent);
706                         }
707
708                         /*
709                          * We changed the graph, but did NOT introduce new blocks
710                          * neither changed control flow, cf-backedges should be still
711                          * consistent.
712                          */
713                         set_irg_outs_inconsistent(irg);
714                         set_irg_loopinfo_inconsistent(irg);
715
716                         res = 1;
717                 }
718                 del_pset(sels);
719                 del_set(set_ent);
720                 DEL_ARR_F(modes);
721         }
722
723         current_ir_graph = rem;
724         return res;
725 }
726
727 void firm_init_scalar_replace(void) {
728         FIRM_DBG_REGISTER(dbg, "firm.opt.scalar_replace");
729 }