Removed unused block parameter from Const constructors
[libfirm] / ir / ana / irconsconfirm.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    Construction of Confirm nodes
23  * @author   Michael Beck
24  * @date     6.2005
25  * @version  $Id$
26  */
27 #include "config.h"
28
29 #include "irgraph_t.h"
30 #include "irnode_t.h"
31 #include "ircons_t.h"
32 #include "irgmod.h"
33 #include "iropt_dbg.h"
34 #include "iredges_t.h"
35 #include "irgwalk.h"
36 #include "irprintf.h"
37 #include "irgopt.h"
38 #include "irtools.h"
39 #include "array_t.h"
40 #include "debug.h"
41 #include "irflag.h"
42
43 /**
44  * Walker environment.
45  */
46 typedef struct _env_t {
47         unsigned num_confirms;  /**< Number of inserted Confirm nodes. */
48         unsigned num_consts;    /**< Number of constants placed. */
49         unsigned num_eq;        /**< Number of equalities placed. */
50         unsigned num_non_null;  /**< Number of non-null Confirms. */
51 } env_t;
52
53 /** The debug handle. */
54 DEBUG_ONLY(static firm_dbg_module_t *dbg;)
55
56 /**
57  * Return the effective use block of a node and it's predecessor on
58  * position pos.
59  *
60  * @param node  the node
61  * @param pos   the position of the used input
62  *
63  * This handles correctly Phi nodes.
64  */
65 static ir_node *get_effective_use_block(ir_node *node, int pos) {
66         if (is_Phi(node)) {
67                 /* the effective use of a Phi argument is in its predecessor block */
68                 node = get_nodes_block(node);
69                 return get_Block_cfgpred_block(node, pos);
70         }
71         return get_nodes_block(node);
72 }
73
74 /**
75  * Handle a CASE-branch.
76  *
77  * @param block   the block which is entered by the branch
78  * @param irn     the node expressing the switch value
79  * @param nr      the branch label
80  * @param env     statistical environment
81  *
82  * Branch labels are a simple case. We can replace the value
83  * by a Const with the branch label.
84  */
85 static void handle_case(ir_node *block, ir_node *irn, long nr, env_t *env) {
86         const ir_edge_t *edge, *next;
87         ir_node *c = NULL;
88
89         if (is_Bad(irn))
90                 return;
91
92         for (edge = get_irn_out_edge_first(irn); edge; edge = next) {
93                 ir_node *succ = get_edge_src_irn(edge);
94                 int     pos   = get_edge_src_pos(edge);
95                 ir_node *blk  = get_effective_use_block(succ, pos);
96
97                 next = get_irn_out_edge_next(irn, edge);
98
99                 if (block_dominates(block, blk)) {
100                         /*
101                          * Ok, we found a user of irn that is placed
102                          * in a block dominated by the branch block.
103                          * We can replace the input with the Constant
104                          * branch label.
105                          */
106
107                         if (! c) {
108                                 ir_mode *mode = get_irn_mode(irn);
109                                 ir_type *tp   = get_irn_type(irn);
110                                 tarval *tv    = new_tarval_from_long(nr, mode);
111                                 c = new_r_Const_type(current_ir_graph, mode, tv, tp);
112                         }
113
114                         set_irn_n(succ, pos, c);
115                         DBG_OPT_CONFIRM_C(irn, c);
116                         DB((dbg, LEVEL_2, "Replacing input %d of node %+F with %+F\n", pos, succ, c));
117
118                         env->num_consts += 1;
119                 }
120         }
121 }  /* handle_case */
122
123 /**
124  * Handle a mode_b input of Cond nodes.
125  *
126  * @param block     the block which is entered by the branch
127  * @param selector  the mode_b node expressing the branch condition
128  * @param pnc       the true/false condition branch
129  * @param env       statistical environment
130  */
131 static void handle_modeb(ir_node *block, ir_node *selector, pn_Cond pnc, env_t *env) {
132         ir_node *cond, *old, *cond_block = NULL, *other_blk = NULL, *con = NULL;
133         ir_node *c_b = NULL, *c_o = NULL;
134         const ir_edge_t *edge, *next;
135
136         for (edge = get_irn_out_edge_first(selector); edge; edge = next) {
137                 ir_node *user     = get_edge_src_irn(edge);
138                 int     pos       = get_edge_src_pos(edge);
139                 ir_node *user_blk = get_effective_use_block(user, pos);
140
141                 next = get_irn_out_edge_next(selector, edge);
142                 if (block_dominates(block, user_blk)) {
143                         /*
144                          * Ok, we found a usage of selector in a block
145                          * dominated by the branch block.
146                          * We can replace the input with true/false.
147                          */
148                         if (con == NULL) {
149                                 con = new_Const(mode_b, pnc == pn_Cond_true ? tarval_b_true : tarval_b_false);
150                         }
151                         old = get_irn_n(user, pos);
152                         set_irn_n(user, pos, con);
153                         DBG_OPT_CONFIRM_C(old, con);
154
155                         DB((dbg, LEVEL_2, "Replacing input %d of node %+F with %+F\n", pos, user, con));
156
157                         env->num_consts += 1;
158                 } else {
159                         int i, n;
160
161                         /* get the other block */
162                         if (other_blk == NULL) {
163                                 /* we have already tested, that block has only ONE Cond predecessor */
164                                 cond = get_Proj_pred(get_Block_cfgpred(block, 0));
165                                 cond_block = get_nodes_block(cond);
166                                 foreach_out_edge(cond, edge) {
167                                         ir_node *proj = get_edge_src_irn(edge);
168                                         if (get_Proj_proj(proj) == (long)pnc)
169                                                 continue;
170                                         edge = get_irn_out_edge_first(proj);
171                                         other_blk = get_edge_src_irn(edge);
172                                         break;
173                                 }
174                                 assert(other_blk);
175
176                                 /*
177                                  * Note the special case here: if block is a then, there might be no else
178                                  * block. In that case the other_block is the user_blk itself and pred_block
179                                  * is the cond_block ...
180                                  *
181                                  * Best would be to introduce a block here, removing this critical edge.
182                                  * For some reasons I cannot repair dominance here, so I have to remove
183                                  * ALL critical edges...
184                                  * FIXME: This should not be needed if we could repair dominance ...
185                                  */
186                         }
187
188                         n = get_Block_n_cfgpreds(user_blk);
189
190                         /*
191                          * We have found a user in a non-dominated block:
192                          * check, if all its block predecessors are dominated.
193                          * If yes, place a Phi.
194                          */
195                         for (i = n - 1; i >= 0; --i) {
196                                 ir_node *pred_blk = get_Block_cfgpred_block(user_blk, i);
197
198                                 if (!block_dominates(block, pred_blk) &&
199                                     !block_dominates(other_blk, pred_blk)) {
200                                         /* can't do anything */
201                                         break;
202                                 }
203                         }
204                         if (i < 0) {
205                                 ir_node *phi, **in;
206
207                                 NEW_ARR_A(ir_node *, in, n);
208                                 /* ok, ALL predecessors are either dominated by block OR other block */
209                                 if (c_b == NULL) {
210                                         ir_node *c_true  = new_Const(mode_b, tarval_b_true);
211                                         ir_node *c_false = new_Const(mode_b, tarval_b_false);
212                                         c_b = new_r_Confirm(current_ir_graph, cond_block, selector,
213                                                 pnc == pn_Cond_true ? c_true : c_false, pn_Cmp_Eq);
214                                         c_o = new_r_Confirm(current_ir_graph, cond_block, selector,
215                                                 pnc == pn_Cond_false ? c_true : c_false, pn_Cmp_Eq);
216                                 }
217                                 for (i = n - 1; i >= 0; --i) {
218                                         ir_node *pred_blk = get_Block_cfgpred_block(user_blk, i);
219
220                                         if (block_dominates(block, pred_blk))
221                                                 in[i] = c_b;
222                                         else
223                                                 in[i] = c_o;
224                                 }
225                                 phi = new_r_Phi(current_ir_graph, user_blk, n, in, mode_b);
226                                 set_irn_n(user, pos, phi);
227                         }
228                 }
229         }
230 }
231
232 /**
233  * Handle an IF-branch.
234  *
235  * @param block   the block which is entered by the branch
236  * @param cmp     the Cmp node expressing the branch condition
237  * @param pnc     the Compare relation for taking this branch
238  * @param env     statistical environment
239  */
240 static void handle_if(ir_node *block, ir_node *cmp, pn_Cmp pnc, env_t *env) {
241         ir_node *left  = get_Cmp_left(cmp);
242         ir_node *right = get_Cmp_right(cmp);
243         ir_node *cond_block;
244         ir_op *op;
245         const ir_edge_t *edge, *next;
246
247         /* Beware of Bads */
248         if (is_Bad(left) || is_Bad(right))
249                 return;
250
251         op = get_irn_op(left);
252
253         /* Do not create Confirm nodes for Cmp(Const, Const) constructs.
254            These are removed anyway */
255         if (op == op_Const && is_Const(right))
256                 return;
257
258         /* try to place the constant on the right side for a Confirm */
259         if (op == op_Const || op == op_SymConst) {
260                 ir_node *t = left;
261
262                 left  = right;
263                 right = t;
264
265                 pnc = get_inversed_pnc(pnc);
266         }
267
268         /*
269          * First case: both values are identical.
270          * replace the left one by the right (potentially const) one.
271          */
272         if (pnc == pn_Cmp_Eq) {
273                 cond_block = get_Block_cfgpred_block(block, 0);
274                 for (edge = get_irn_out_edge_first(left); edge; edge = next) {
275                         ir_node *user = get_edge_src_irn(edge);
276                         int     pos   = get_edge_src_pos(edge);
277                         ir_node *blk  = get_effective_use_block(user, pos);
278
279                         next = get_irn_out_edge_next(left, edge);
280                         if (block_dominates(block, blk)) {
281                                 /*
282                                  * Ok, we found a usage of left in a block
283                                  * dominated by the branch block.
284                                  * We can replace the input with right.
285                                  */
286                                 set_irn_n(user, pos, right);
287                                 DBG_OPT_CONFIRM(left, right);
288
289                                 DB((dbg, LEVEL_2, "Replacing input %d of node %+F with %+F\n", pos, user, right));
290
291                                 env->num_eq += 1;
292                         } else if (block_dominates(blk, cond_block)) {
293                                 if (is_Const(right) && get_irn_pinned(user) == op_pin_state_floats) {
294                                         /*
295                                          * left == Const and we found a movable user of left in a
296                                          * dominator of the Cond block
297                                          */
298                                         const ir_edge_t *edge, *next;
299                                         for (edge = get_irn_out_edge_first(user); edge; edge = next) {
300                                                 ir_node *usr_of_usr = get_edge_src_irn(edge);
301                                                 int      npos = get_edge_src_pos(edge);
302                                                 ir_node *blk  = get_effective_use_block(usr_of_usr, npos);
303
304                                                 next = get_irn_out_edge_next(user, edge);
305                                                 if (block_dominates(block, blk)) {
306                                                         /*
307                                                          * The user of the user is dominated by our true/false
308                                                          * block. So, create a copy of user WITH the constant
309                                                          * replacing it's pos'th input.
310                                                          *
311                                                          * This is always good for unop's and might be good
312                                                          * for binops.
313                                                          *
314                                                          * If user has other user in the false/true block, code
315                                                          * placement will move it down.
316                                                          * If there are users in cond block or upper, we create
317                                                          * "redundant ops", because one will have a const op,
318                                                          * the other no const ...
319                                                          */
320                                                         ir_node *new_op = exact_copy(user);
321                                                         set_nodes_block(new_op, block);
322                                                         set_irn_n(new_op, pos, right);
323                                                         set_irn_n(usr_of_usr, npos, new_op);
324                                                 }
325                                         }
326                                 }
327                         }
328                 }
329         } else { /* not pn_Cmp_Eq cases */
330                 ir_node *c = NULL;
331
332                 for (edge = get_irn_out_edge_first(left); edge; edge = next) {
333                         ir_node *succ = get_edge_src_irn(edge);
334                         int     pos   = get_edge_src_pos(edge);
335                         ir_node *blk  = get_effective_use_block(succ, pos);
336
337                         next = get_irn_out_edge_next(left, edge);
338                         if (block_dominates(block, blk)) {
339                                 /*
340                                  * Ok, we found a usage of left in a block
341                                  * dominated by the branch block.
342                                  * We can replace the input with a Confirm(left, pnc, right).
343                                  */
344                                 if (! c)
345                                         c = new_r_Confirm(current_ir_graph, block, left, right, pnc);
346
347                                 pos = get_edge_src_pos(edge);
348                                 set_irn_n(succ, pos, c);
349                                 DB((dbg, LEVEL_2, "Replacing input %d of node %+F with %+F\n", pos, succ, c));
350
351                                 env->num_confirms += 1;
352                         }
353                 }
354         }
355 }  /* handle_if */
356
357 /**
358  * Pre-block-walker: Called for every block to insert Confirm nodes
359  */
360 static void insert_Confirm_in_block(ir_node *block, void *env) {
361         ir_node *cond, *proj, *selector;
362         ir_mode *mode;
363
364         /*
365          * we can only handle blocks with only ONE control flow
366          * predecessor yet.
367          */
368         if (get_Block_n_cfgpreds(block) != 1)
369                 return;
370
371         proj = get_Block_cfgpred(block, 0);
372         if (! is_Proj(proj))
373                 return;
374
375         cond = get_Proj_pred(proj);
376         if (! is_Cond(cond))
377                 return;
378
379         selector = get_Cond_selector(cond);
380         mode = get_irn_mode(selector);
381
382         if (mode == mode_b) {
383                 ir_node *cmp;
384                 pn_Cmp pnc;
385
386                 handle_modeb(block, selector, get_Proj_proj(proj), env);
387
388                 /* this should be an IF, check this */
389                 if (! is_Proj(selector))
390                         return;
391
392                 cmp = get_Proj_pred(selector);
393                 if (! is_Cmp(cmp))
394                         return;
395
396                 pnc = get_Proj_proj(selector);
397
398                 if (get_Proj_proj(proj) != pn_Cond_true) {
399                         /* it's the false branch */
400                         mode = get_irn_mode(get_Cmp_left(cmp));
401                         pnc = get_negated_pnc(pnc, mode);
402                 }
403                 DB((dbg, LEVEL_2, "At %+F using %+F Confirm %=\n", block, cmp, pnc));
404
405                 handle_if(block, cmp, pnc, env);
406         } else if (mode_is_int(mode)) {
407                 long proj_nr = get_Proj_proj(proj);
408
409                 /* this is a CASE, but we cannot handle the default case */
410                 if (proj_nr == get_Cond_defaultProj(cond))
411                         return;
412
413                 handle_case(block, get_Cond_selector(cond), proj_nr, env);
414         }
415 }  /* insert_Confirm_in_block */
416
417 /**
418  * Checks if a node is a non-null Confirm.
419  */
420 static int is_non_null_Confirm(const ir_node *ptr) {
421         for (;;) {
422                 if (! is_Confirm(ptr))
423                         break;
424                 if (get_Confirm_cmp(ptr) == pn_Cmp_Lg) {
425                         ir_node *bound = get_Confirm_bound(ptr);
426
427                         if (is_Const(bound) && is_Const_null(bound))
428                                 return 1;
429                 }
430                 ptr = get_Confirm_value(ptr);
431         }
432         /*
433          * While a SymConst is not a Confirm, it is non-null
434          * anyway. This helps to reduce the number of
435          * constructed Confirms.
436          */
437         if (is_SymConst_addr_ent(ptr))
438                 return 1;
439         return 0;
440 }  /* is_non_null_Confirm */
441
442 /**
443  * The given pointer will be dereferenced, add non-null Confirms.
444  *
445  * @param ptr    a node representing an address
446  * @param block  the block of the dereferencing instruction
447  * @param env    environment
448  */
449 static void insert_non_null(ir_node *ptr, ir_node *block, env_t *env) {
450         const ir_edge_t *edge, *next;
451         ir_node         *c = NULL;
452
453         foreach_out_edge_safe(ptr, edge, next) {
454                 ir_node *succ = get_edge_src_irn(edge);
455                 int     pos;
456                 ir_node *blk;
457
458
459                 /* for now, we place a Confirm only in front of a Cmp */
460                 if (! is_Cmp(succ))
461                         continue;
462
463                 pos = get_edge_src_pos(edge);
464                 blk = get_effective_use_block(succ, pos);
465
466                 if (block_dominates(block, blk)) {
467                         /*
468                          * Ok, we found a usage of ptr in a block
469                          * dominated by the Load/Store block.
470                          * We can replace the input with a Confirm(ptr, !=, NULL).
471                          */
472                         if (c == NULL) {
473                                 ir_mode *mode = get_irn_mode(ptr);
474                                 c = new_Const(mode, get_mode_null(mode));
475
476                                 c = new_r_Confirm(current_ir_graph, block, ptr, c, pn_Cmp_Lg);
477                         }
478
479                         set_irn_n(succ, pos, c);
480                         DB((dbg, LEVEL_2, "Replacing input %d of node %+F with %+F\n", pos, succ, c));
481
482                         env->num_non_null += 1;
483                         env->num_confirms += 1;
484                 }
485         }
486 }  /* insert_non_null */
487
488 /**
489  * Pre-walker: Called for every node to insert Confirm nodes
490  */
491 static void insert_Confirm(ir_node *node, void *env) {
492         ir_node *ptr;
493
494         switch (get_irn_opcode(node)) {
495         case iro_Block:
496                 insert_Confirm_in_block(node, env);
497                 break;
498         case iro_Load:
499                 ptr = get_Load_ptr(node);
500                 if (! is_non_null_Confirm(ptr))
501                         insert_non_null(ptr, get_nodes_block(node), env);
502                 break;
503         case iro_Store:
504                 ptr = get_Store_ptr(node);
505                 if (! is_non_null_Confirm(ptr))
506                         insert_non_null(ptr, get_nodes_block(node), env);
507                 break;
508         default:
509                 break;
510         }
511 }  /* insert_Confirm */
512
513 /*
514  * Construct Confirm nodes
515  */
516 void construct_confirms(ir_graph *irg) {
517         env_t env;
518         int edges_active = edges_activated(irg);
519
520
521         FIRM_DBG_REGISTER(dbg, "firm.ana.confirm");
522
523         remove_critical_cf_edges(irg);
524
525         /* we need dominance info */
526         assure_doms(irg);
527
528         assert(get_irg_pinned(irg) == op_pin_state_pinned &&
529                "Nodes must be placed to insert Confirms");
530
531         if (! edges_active) {
532                 /* We need edges */
533                 edges_activate(irg);
534         }
535
536         env.num_confirms = 0;
537         env.num_consts   = 0;
538         env.num_eq       = 0;
539         env.num_non_null = 0;
540
541         if (get_opt_global_null_ptr_elimination()) {
542                 /* do global NULL test elimination */
543                 irg_walk_graph(irg, insert_Confirm, NULL, &env);
544         } else {
545                 /* now, visit all blocks and add Confirms where possible */
546                 irg_block_walk_graph(irg, insert_Confirm_in_block, NULL, &env);
547         }
548
549         if (env.num_confirms | env.num_consts | env.num_eq) {
550                 /* we have add nodes or changed DF edges */
551                 set_irg_outs_inconsistent(irg);
552
553                 /* the new nodes are not in the loop info */
554                 set_irg_loopinfo_inconsistent(irg);
555         }
556
557         DB((dbg, LEVEL_1, "# Confirms inserted : %u\n", env.num_confirms));
558         DB((dbg, LEVEL_1, "# Const replacements: %u\n", env.num_consts));
559         DB((dbg, LEVEL_1, "# node equalities   : %u\n", env.num_eq));
560         DB((dbg, LEVEL_1, "# non-null Confirms : %u\n", env.num_non_null));
561
562         /* deactivate edges if they where off */
563         if (! edges_active)
564                 edges_deactivate(irg);
565 }  /* construct_confirms */
566
567 #if 0
568 /**
569  * Post-walker: Remove Confirm nodes
570  */
571 static void rem_Confirm(ir_node *n, void *env) {
572         (void) env;
573         if (is_Confirm(n)) {
574                 ir_node *value = get_Confirm_value(n);
575                 if (value != n)
576                         exchange(n, value);
577                 else {
578                         /*
579                          * Strange: a Confirm is its own bound. This can happen
580                          * in dead blocks when Phi nodes are already removed.
581                          */
582                         exchange(n, new_Bad());
583                 }
584         }
585 }  /* rem_Confirm */
586 #endif
587
588 /*
589  * Remove all Confirm nodes from a graph.
590  */
591 void remove_confirms(ir_graph *irg) {
592         int rem = get_opt_remove_confirm();
593
594         set_opt_remove_confirm(1);
595         optimize_graph_df(irg);
596         set_opt_remove_confirm(rem);
597 }  /* remove_confirms */