Remove the unused attribute const arch_env_t *arch_env from struct dump_env and also...
[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_else_mark(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 }
304
305 /* we need a special address that serves as an address taken marker */
306 static char _x;
307 static void *ADDRESS_TAKEN = &_x;
308
309 /**
310  * Find possible scalar replacements.
311  *
312  * @param irg  an IR graph
313  *
314  * This function finds variables on the (members of the) frame type
315  * that can be scalar replaced, because their address is never taken.
316  * If such a variable is found, it's entity link will hold a list of all
317  * Sel nodes, that selects the atomic fields of this entity.
318  * Otherwise, the link will be ADDRESS_TAKEN or NULL.
319  *
320  * @return  non-zero if at least one entity could be replaced
321  *          potentially
322  */
323 static int find_possible_replacements(ir_graph *irg) {
324         ir_node *irg_frame;
325         ir_type *frame_tp;
326         int     i;
327         int     res = 0;
328
329         ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
330         inc_irg_visited(irg);
331
332         /*
333          * First, clear the link field of all interesting entities.
334          */
335         frame_tp = get_irg_frame_type(irg);
336         for (i = get_class_n_members(frame_tp) - 1; i >= 0; --i) {
337                 ir_entity *ent = get_class_member(frame_tp, i);
338                 set_entity_link(ent, NULL);
339         }
340
341         /*
342          * Check the ir_graph for Sel nodes. If the entity of Sel
343          * isn't a scalar replacement set the link of this entity
344          * equal ADDRESS_TAKEN.
345          */
346         irg_frame = get_irg_frame(irg);
347         for (i = get_irn_n_outs(irg_frame) - 1; i >= 0; --i) {
348                 ir_node *succ = get_irn_out(irg_frame, i);
349
350                 if (is_Sel(succ)) {
351                         ir_entity *ent = get_Sel_entity(succ);
352                         ir_type *ent_type;
353
354                         if (get_entity_link(ent) == ADDRESS_TAKEN)
355                                 continue;
356
357                         /*
358                          * Beware: in rare cases even entities on the frame might be
359                          * volatile. This might happen if the entity serves as a store
360                          * to a value that must survive a exception. Do not optimize
361                          * such entities away.
362                          */
363                         if (get_entity_volatility(ent) == volatility_is_volatile) {
364                                 set_entity_link(ent, ADDRESS_TAKEN);
365                                 continue;
366                         }
367
368                         ent_type = get_entity_type(ent);
369
370                         /* we can handle arrays, structs and atomic types yet */
371                         if (is_Array_type(ent_type) || is_Struct_type(ent_type) || is_atomic_type(ent_type)) {
372                                 if (is_address_taken(succ)) {
373                                         if (get_entity_link(ent)) /* killing one */
374                                                 --res;
375                                         set_entity_link(ent, ADDRESS_TAKEN);
376                                 } else {
377                                         /* possible found one */
378                                         if (get_entity_link(ent) == NULL)
379                                                 ++res;
380                                         link_all_leave_sels(ent, succ);
381                                 }
382                         }
383                 }
384         }
385
386         ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
387         return res;
388 }
389
390 /**
391  * Return a path from the Sel node sel to it's root.
392  *
393  * @param sel  the Sel node
394  * @param len  the length of the path so far
395  */
396 static path_t *find_path(ir_node *sel, unsigned len) {
397         int pos, i, n;
398         path_t *res;
399         ir_node *pred = get_Sel_ptr(sel);
400
401         /* the current Sel node will add some path elements */
402         n    = get_Sel_n_indexs(sel);
403         len += n + 1;
404
405         if (! is_Sel(pred)) {
406                 /* we found the root */
407                 res = XMALLOCF(path_t, path, len);
408                 res->path_len = len;
409         } else
410                 res = find_path(pred, len);
411
412         pos = res->path_len - len;
413
414         res->path[pos++].ent = get_Sel_entity(sel);
415         for (i = 0; i < n; ++i) {
416                 ir_node *index = get_Sel_index(sel, i);
417
418                 res->path[pos++].tv = get_Const_tarval(index);
419         }
420         return res;
421 }
422
423
424 /**
425  * Allocate value numbers for the leaves
426  * in our found entities.
427  *
428  * @param sels  a set that will contain all Sels that have a value number
429  * @param ent   the entity that will be scalar replaced
430  * @param vnum  the first value number we can assign
431  * @param modes a flexible array, containing all the modes of
432  *              the value numbers.
433  *
434  * @return the next free value number
435  */
436 static unsigned allocate_value_numbers(pset *sels, ir_entity *ent, unsigned vnum, ir_mode ***modes)
437 {
438         ir_node *sel, *next;
439         path_t *key, *path;
440         set *pathes = new_set(path_cmp, 8);
441
442         DB((dbg, SET_LEVEL_3, "  Visiting Sel nodes of entity %+F\n", ent));
443         /* visit all Sel nodes in the chain of the entity */
444         for (sel = get_entity_link(ent); sel; sel = next) {
445                 next = get_irn_link(sel);
446
447                 /* we must mark this sel for later */
448                 pset_insert_ptr(sels, sel);
449
450                 key  = find_path(sel, 0);
451                 path = set_find(pathes, key, PATH_SIZE(key), path_hash(key));
452
453                 if (path) {
454                         SET_VNUM(sel, path->vnum);
455                         DB((dbg, SET_LEVEL_3, "  %+F represents value %u\n", sel, path->vnum));
456                 } else {
457                         key->vnum = vnum++;
458
459                         set_insert(pathes, key, PATH_SIZE(key), path_hash(key));
460
461                         SET_VNUM(sel, key->vnum);
462                         DB((dbg, SET_LEVEL_3, "  %+F represents value %u\n", sel, key->vnum));
463
464                         ARR_EXTO(ir_mode *, *modes, (int)((key->vnum + 15) & ~15));
465
466                         (*modes)[key->vnum] = get_type_mode(get_entity_type(get_Sel_entity(sel)));
467
468                         assert((*modes)[key->vnum] && "Value is not atomic");
469
470 #ifdef DEBUG_libfirm
471                         /* Debug output */
472                         {
473                                 unsigned i;
474                                 DB((dbg, SET_LEVEL_2, "  %s", get_entity_name(key->path[0].ent)));
475                                 for (i = 1; i < key->path_len; ++i) {
476                                         if (is_entity(key->path[i].ent))
477                                                 DB((dbg, SET_LEVEL_2, ".%s", get_entity_name(key->path[i].ent)));
478                                         else
479                                                 DB((dbg, SET_LEVEL_2, "[%ld]", get_tarval_long(key->path[i].tv)));
480                                 }
481                                 DB((dbg, SET_LEVEL_2, " = %u (%s)\n", PTR_TO_INT(get_irn_link(sel)), get_mode_name((*modes)[key->vnum])));
482                         }
483 #endif /* DEBUG_libfirm */
484                 }
485                 free(key);
486         }
487
488         del_set(pathes);
489         set_entity_link(ent, NULL);
490         return vnum;
491 }
492
493 /**
494  * A list entry for the fixing lists
495  */
496 typedef struct _list_entry_t {
497         ir_node  *node;   /**< the node that must be fixed */
498         unsigned vnum;    /**< the value number of this node */
499 } list_entry_t;
500
501 /**
502  * environment for memory walker
503  */
504 typedef struct _env_t {
505         int          nvals;       /**< number of values */
506         ir_mode      **modes;     /**< the modes of the values */
507         pset         *sels;       /**< A set of all Sel nodes that have a value number */
508 } env_t;
509
510 /**
511  * topological post-walker.
512  */
513 static void topologic_walker(ir_node *node, void *ctx) {
514         env_t        *env = ctx;
515         ir_node      *adr, *block, *mem, *val;
516         ir_mode      *mode;
517         unsigned     vnum;
518
519         if (is_Load(node)) {
520                 /* a load, check if we can resolve it */
521                 adr = get_Load_ptr(node);
522
523                 DB((dbg, SET_LEVEL_3, "  checking %+F for replacement ", node));
524                 if (! is_Sel(adr)) {
525                         DB((dbg, SET_LEVEL_3, "no Sel input (%+F)\n", adr));
526                         return;
527                 }
528
529                 if (! pset_find_ptr(env->sels, adr)) {
530                         DB((dbg, SET_LEVEL_3, "Sel %+F has no VNUM\n", adr));
531                         return;
532                 }
533
534                 /* ok, we have a Load that will be replaced */
535                 vnum = GET_VNUM(adr);
536                 assert(vnum < (unsigned)env->nvals);
537
538                 DB((dbg, SET_LEVEL_3, "replacing by value %u\n", vnum));
539
540                 block = get_nodes_block(node);
541                 set_cur_block(block);
542
543                 /* check, if we can replace this Load */
544                 val = get_value(vnum, env->modes[vnum]);
545
546                 /* Beware: A Load can contain a hidden conversion in Firm.
547                 This happens for instance in the following code:
548
549                  int i;
550                  unsigned j = *(unsigned *)&i;
551
552                 Handle this here. */
553                 mode = get_Load_mode(node);
554                 if (mode != get_irn_mode(val))
555                         val = new_d_Conv(get_irn_dbg_info(node), val, mode);
556
557                 mem = get_Load_mem(node);
558                 turn_into_tuple(node, pn_Load_max);
559                 set_Tuple_pred(node, pn_Load_M,         mem);
560                 set_Tuple_pred(node, pn_Load_res,       val);
561                 set_Tuple_pred(node, pn_Load_X_regular, new_Jmp());
562                 set_Tuple_pred(node, pn_Load_X_except,  new_Bad());
563         } else if (is_Store(node)) {
564                 DB((dbg, SET_LEVEL_3, "  checking %+F for replacement ", node));
565
566                 /* a Store always can be replaced */
567                 adr = get_Store_ptr(node);
568
569                 if (! is_Sel(adr)) {
570                         DB((dbg, SET_LEVEL_3, "no Sel input (%+F)\n", adr));
571                         return;
572                 }
573
574                 if (! pset_find_ptr(env->sels, adr)) {
575                         DB((dbg, SET_LEVEL_3, "Sel %+F has no VNUM\n", adr));
576                         return;
577                 }
578
579                 vnum = GET_VNUM(adr);
580                 assert(vnum < (unsigned)env->nvals);
581
582                 DB((dbg, SET_LEVEL_3, "replacing by value %u\n", vnum));
583
584                 /* Beware: A Store can contain a hidden conversion in Firm. */
585                 val = get_Store_value(node);
586                 if (get_irn_mode(val) != env->modes[vnum])
587                         val = new_d_Conv(get_irn_dbg_info(node), val, env->modes[vnum]);
588
589                 block = get_nodes_block(node);
590                 set_cur_block(block);
591                 set_value(vnum, val);
592
593                 mem = get_Store_mem(node);
594                 turn_into_tuple(node, pn_Store_max);
595                 set_Tuple_pred(node, pn_Store_M,         mem);
596                 set_Tuple_pred(node, pn_Store_X_regular, new_Jmp());
597                 set_Tuple_pred(node, pn_Store_X_except,  new_Bad());
598         }
599 }
600
601 /**
602  * Make scalar replacement.
603  *
604  * @param sels    A set containing all Sel nodes that have a value number
605  * @param nvals   The number of scalars.
606  * @param modes   A flexible array, containing all the modes of
607  *                the value numbers.
608  */
609 static void do_scalar_replacements(pset *sels, int nvals, ir_mode **modes) {
610         env_t env;
611
612         ssa_cons_start(current_ir_graph, nvals);
613
614         env.nvals     = nvals;
615         env.modes     = modes;
616         env.sels      = sels;
617
618         /*
619          * second step: walk over the graph blockwise in topological order
620          * and fill the array as much as possible.
621          */
622         DB((dbg, SET_LEVEL_3, "Substituting Loads and Stores in %+F\n", current_ir_graph));
623         irg_walk_blkwise_graph(current_ir_graph, NULL, topologic_walker, &env);
624
625         ssa_cons_finish(current_ir_graph);
626 }
627
628 /*
629  * Find possible scalar replacements
630  *
631  * @param irg  The current ir graph.
632  */
633 int scalar_replacement_opt(ir_graph *irg) {
634         unsigned  nvals;
635         int       i;
636         scalars_t key, *value;
637         ir_node   *irg_frame;
638         ir_mode   **modes;
639         set       *set_ent;
640         pset      *sels;
641         ir_type   *ent_type;
642         ir_graph  *rem;
643         int       res = 0;
644
645         if (! get_opt_scalar_replacement())
646                 return 0;
647
648         rem = current_ir_graph;
649         current_ir_graph = irg;
650
651         /* Call algorithm that computes the out edges */
652         assure_irg_outs(irg);
653
654         /* Find possible scalar replacements */
655         if (find_possible_replacements(irg)) {
656                 DB((dbg, SET_LEVEL_1, "Scalar Replacement: %s\n", get_entity_name(get_irg_entity(irg))));
657
658                 /* Insert in set the scalar replacements. */
659                 irg_frame = get_irg_frame(irg);
660                 nvals = 0;
661                 modes = NEW_ARR_F(ir_mode *, 16);
662                 set_ent = new_set(ent_cmp, 8);
663                 sels    = pset_new_ptr(8);
664
665                 for (i = get_irn_n_outs(irg_frame) - 1; i >= 0; --i) {
666                         ir_node *succ = get_irn_out(irg_frame, i);
667
668                         if (is_Sel(succ)) {
669                                 ir_entity *ent = get_Sel_entity(succ);
670
671                                 if (get_entity_link(ent) == NULL || get_entity_link(ent) == ADDRESS_TAKEN)
672                                         continue;
673
674                                 ent_type = get_entity_type(ent);
675
676                                 key.ent       = ent;
677                                 key.ent_owner = get_entity_owner(ent);
678                                 set_insert(set_ent, &key, sizeof(key), HASH_PTR(key.ent));
679
680 #ifdef DEBUG_libfirm
681                                 if (is_Array_type(ent_type)) {
682                                         DB((dbg, SET_LEVEL_1, "  found array %s\n", get_entity_name(ent)));
683                                 } else if (is_Struct_type(ent_type)) {
684                                         DB((dbg, SET_LEVEL_1, "  found struct %s\n", get_entity_name(ent)));
685                                 } else if (is_atomic_type(ent_type))
686                                         DB((dbg, SET_LEVEL_1, "  found atomic value %s\n", get_entity_name(ent)));
687                                 else {
688                                         panic("Neither an array nor a struct or atomic value found in scalar replace");
689                                 }
690 #endif /* DEBUG_libfirm */
691
692                                 nvals = allocate_value_numbers(sels, ent, nvals, &modes);
693                         }
694                 }
695
696                 DB((dbg, SET_LEVEL_1, "  %u values will be needed\n", nvals));
697
698                 /* If scalars were found. */
699                 if (nvals > 0) {
700                         do_scalar_replacements(sels, nvals, modes);
701
702                         foreach_set(set_ent, value) {
703                                 remove_class_member(value->ent_owner, value->ent);
704                         }
705
706                         /*
707                          * We changed the graph, but did NOT introduce new blocks
708                          * neither changed control flow, cf-backedges should be still
709                          * consistent.
710                          */
711                         set_irg_outs_inconsistent(irg);
712                         set_irg_loopinfo_inconsistent(irg);
713
714                         res = 1;
715                 }
716                 del_pset(sels);
717                 del_set(set_ent);
718                 DEL_ARR_F(modes);
719         }
720
721         current_ir_graph = rem;
722         return res;
723 }
724
725 void firm_init_scalar_replace(void) {
726         FIRM_DBG_REGISTER(dbg, "firm.opt.scalar_replace");
727 }