2015-06-25 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
[official-gcc.git] / gcc / tree-ssa-ter.c
blobed8d4bfd9419046aa4c706ab02ced830c7ca24aa
1 /* Routines for performing Temporary Expression Replacement (TER) in SSA trees.
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tm.h"
26 #include "alias.h"
27 #include "symtab.h"
28 #include "tree.h"
29 #include "fold-const.h"
30 #include "gimple-pretty-print.h"
31 #include "bitmap.h"
32 #include "predict.h"
33 #include "hard-reg-set.h"
34 #include "function.h"
35 #include "dominance.h"
36 #include "cfg.h"
37 #include "basic-block.h"
38 #include "tree-ssa-alias.h"
39 #include "internal-fn.h"
40 #include "gimple-expr.h"
41 #include "gimple.h"
42 #include "gimple-iterator.h"
43 #include "gimple-ssa.h"
44 #include "tree-phinodes.h"
45 #include "ssa-iterators.h"
46 #include "stringpool.h"
47 #include "tree-ssanames.h"
48 #include "dumpfile.h"
49 #include "tree-ssa-live.h"
50 #include "tree-ssa-ter.h"
51 #include "tree-outof-ssa.h"
52 #include "flags.h"
53 #include "gimple-walk.h"
56 /* Temporary Expression Replacement (TER)
58 Replace SSA version variables during out-of-ssa with their defining
59 expression if there is only one use of the variable.
61 This pass is required in order for the RTL expansion pass to see larger
62 chunks of code. This allows it to make better choices on RTL pattern
63 selection. When expand is rewritten and merged with out-of-ssa, and
64 understands SSA, this should be eliminated.
66 A pass is made through the function, one block at a time. No cross block
67 information is tracked.
69 Variables which only have one use, and whose defining stmt is considered
70 a replaceable expression (see ssa_is_replaceable_p) are tracked to see whether
71 they can be replaced at their use location.
73 n_12 = C * 10
74 a_2 = b_5 + 6
75 v_9 = a_2 * n_12
77 if there are the only use of n_12 and a_2, TER will substitute in their
78 expressions in v_9, and end up with:
80 v_9 = (b_5 + 6) * (C * 10)
82 which will then have the ssa_name assigned to regular variables, and the
83 resulting code which will be passed to the expander looks something like:
85 v = (b + 6) * (C * 10)
88 This requires ensuring that none of the variables used by the expression
89 change between the def point and where it is used. Furthermore, if any
90 of the ssa_names used in this expression are themselves replaceable, we
91 have to ensure none of that expressions' arguments change either.
92 Although SSA_NAMES themselves don't change, this pass is performed after
93 coalescing has coalesced different SSA_NAMES together, so there could be a
94 definition of an SSA_NAME which is coalesced with a use that causes a
95 problem, i.e.,
97 PHI b_5 = <b_8(2), b_14(1)>
98 <...>
99 a_2 = b_5 + 6
100 b_8 = c_4 + 4
101 v_9 = a_2 * n_12
102 <...>
104 If b_5, b_8 and b_14 are all coalesced together...
105 The expression b_5 + 6 CANNOT replace the use in the statement defining v_9
106 because b_8 is in fact killing the value of b_5 since they share a partition
107 and will be assigned the same memory or register location.
109 TER implements this but stepping through the instructions in a block and
110 tracking potential expressions for replacement, and the partitions they are
111 dependent on. Expressions are represented by the SSA_NAME_VERSION of the
112 DEF on the LHS of a GIMPLE_ASSIGN and the expression is the RHS.
114 When a stmt is determined to be a possible replacement expression, the
115 following steps are taken:
117 EXPR_DECL_UID bitmap is allocated and set to the base variable UID of the
118 def and any uses in the expression. non-NULL means the expression is being
119 tracked. The UID's themselves are used to prevent TER substitution into
120 accumulating sequences, i.e.,
122 x = x + y
123 x = x + z
124 x = x + w
125 etc.
126 this can result in very large expressions which don't accomplish anything
127 see PR tree-optimization/17549.
129 PARTITION_DEPENDENCIES is another bitmap array, and it has a bit set for any
130 partition which is used in the expression. This is primarily used to remove
131 an expression from the partition kill lists when a decision is made whether
132 to replace it or not. This is indexed by ssa version number as well, and
133 indicates a partition number. virtual operands are not tracked individually,
134 but they are summarized by an artificial partition called VIRTUAL_PARTITION.
135 This means a MAY or MUST def will kill *ALL* expressions that are dependent
136 on a virtual operand.
137 Note that the EXPR_DECL_UID and this bitmap represent very similar
138 information, but the info in one is not easy to obtain from the other.
140 KILL_LIST is yet another bitmap array, this time it is indexed by partition
141 number, and represents a list of active expressions which will will no
142 longer be valid if a definition into this partition takes place.
144 PARTITION_IN_USE is simply a bitmap which is used to track which partitions
145 currently have something in their kill list. This is used at the end of
146 a block to clear out the KILL_LIST bitmaps at the end of each block.
148 NEW_REPLACEABLE_DEPENDENCIES is used as a temporary place to store
149 dependencies which will be reused by the current definition. All the uses
150 on an expression are processed before anything else is done. If a use is
151 determined to be a replaceable expression AND the current stmt is also going
152 to be replaceable, all the dependencies of this replaceable use will be
153 picked up by the current stmt's expression. Rather than recreate them, they
154 are simply copied here and then copied into the new expression when it is
155 processed.
157 a_2 = b_5 + 6
158 v_8 = a_2 + c_4
160 a_2's expression 'b_5 + 6' is determined to be replaceable at the use
161 location. It is dependent on the partition 'b_5' is in. This is cached into
162 the NEW_REPLACEABLE_DEPENDENCIES bitmap, and when v_8 is examined for
163 replaceability, it is a candidate, and it is dependent on the partition
164 b_5 is in *NOT* a_2, as well as c_4's partition.
166 if v_8 is also replaceable:
168 x_9 = v_8 * 5
170 x_9 is dependent on partitions b_5, and c_4
172 if a statement is found which has either of those partitions written to
173 before x_9 is used, then x_9 itself is NOT replaceable. */
176 /* Temporary Expression Replacement (TER) table information. */
178 typedef struct temp_expr_table_d
180 var_map map;
181 bitmap *partition_dependencies; /* Partitions expr is dependent on. */
182 bitmap replaceable_expressions; /* Replacement expression table. */
183 bitmap *expr_decl_uids; /* Base uids of exprs. */
184 bitmap *kill_list; /* Expr's killed by a partition. */
185 int virtual_partition; /* Pseudo partition for virtual ops. */
186 bitmap partition_in_use; /* Partitions with kill entries. */
187 bitmap new_replaceable_dependencies; /* Holding place for pending dep's. */
188 int *num_in_part; /* # of ssa_names in a partition. */
189 int *call_cnt; /* Call count at definition. */
190 } *temp_expr_table_p;
192 /* Used to indicate a dependency on VDEFs. */
193 #define VIRTUAL_PARTITION(table) (table->virtual_partition)
195 /* A place for the many, many bitmaps we create. */
196 static bitmap_obstack ter_bitmap_obstack;
198 #ifdef ENABLE_CHECKING
199 extern void debug_ter (FILE *, temp_expr_table_p);
200 #endif
203 /* Create a new TER table for MAP. */
205 static temp_expr_table_p
206 new_temp_expr_table (var_map map)
208 temp_expr_table_p t;
209 unsigned x;
211 t = XNEW (struct temp_expr_table_d);
212 t->map = map;
214 t->partition_dependencies = XCNEWVEC (bitmap, num_ssa_names + 1);
215 t->expr_decl_uids = XCNEWVEC (bitmap, num_ssa_names + 1);
216 t->kill_list = XCNEWVEC (bitmap, num_var_partitions (map) + 1);
218 t->partition_in_use = BITMAP_ALLOC (&ter_bitmap_obstack);
220 t->virtual_partition = num_var_partitions (map);
221 t->new_replaceable_dependencies = BITMAP_ALLOC (&ter_bitmap_obstack);
223 t->replaceable_expressions = NULL;
224 t->num_in_part = XCNEWVEC (int, num_var_partitions (map));
225 for (x = 1; x < num_ssa_names; x++)
227 int p;
228 tree name = ssa_name (x);
229 if (!name)
230 continue;
231 p = var_to_partition (map, name);
232 if (p != NO_PARTITION)
233 t->num_in_part[p]++;
235 t->call_cnt = XCNEWVEC (int, num_ssa_names + 1);
237 return t;
241 /* Free TER table T. If there are valid replacements, return the expression
242 vector. */
244 static bitmap
245 free_temp_expr_table (temp_expr_table_p t)
247 bitmap ret = NULL;
249 #ifdef ENABLE_CHECKING
250 unsigned x;
251 for (x = 0; x <= num_var_partitions (t->map); x++)
252 gcc_assert (!t->kill_list[x]);
253 for (x = 0; x < num_ssa_names; x++)
255 gcc_assert (t->expr_decl_uids[x] == NULL);
256 gcc_assert (t->partition_dependencies[x] == NULL);
258 #endif
260 BITMAP_FREE (t->partition_in_use);
261 BITMAP_FREE (t->new_replaceable_dependencies);
263 free (t->expr_decl_uids);
264 free (t->kill_list);
265 free (t->partition_dependencies);
266 free (t->num_in_part);
267 free (t->call_cnt);
269 if (t->replaceable_expressions)
270 ret = t->replaceable_expressions;
272 free (t);
273 return ret;
277 /* Return TRUE if VERSION is to be replaced by an expression in TAB. */
279 static inline bool
280 version_to_be_replaced_p (temp_expr_table_p tab, int version)
282 if (!tab->replaceable_expressions)
283 return false;
284 return bitmap_bit_p (tab->replaceable_expressions, version);
288 /* Add partition P to the list if partitions VERSION is dependent on. TAB is
289 the expression table */
291 static inline void
292 make_dependent_on_partition (temp_expr_table_p tab, int version, int p)
294 if (!tab->partition_dependencies[version])
295 tab->partition_dependencies[version] = BITMAP_ALLOC (&ter_bitmap_obstack);
297 bitmap_set_bit (tab->partition_dependencies[version], p);
301 /* Add VER to the kill list for P. TAB is the expression table */
303 static inline void
304 add_to_partition_kill_list (temp_expr_table_p tab, int p, int ver)
306 if (!tab->kill_list[p])
308 tab->kill_list[p] = BITMAP_ALLOC (&ter_bitmap_obstack);
309 bitmap_set_bit (tab->partition_in_use, p);
311 bitmap_set_bit (tab->kill_list[p], ver);
315 /* Remove VER from the partition kill list for P. TAB is the expression
316 table. */
318 static inline void
319 remove_from_partition_kill_list (temp_expr_table_p tab, int p, int version)
321 gcc_checking_assert (tab->kill_list[p]);
322 bitmap_clear_bit (tab->kill_list[p], version);
323 if (bitmap_empty_p (tab->kill_list[p]))
325 bitmap_clear_bit (tab->partition_in_use, p);
326 BITMAP_FREE (tab->kill_list[p]);
331 /* Add a dependency between the def of ssa VERSION and VAR. If VAR is
332 replaceable by an expression, add a dependence each of the elements of the
333 expression. These are contained in the new_replaceable list. TAB is the
334 expression table. */
336 static void
337 add_dependence (temp_expr_table_p tab, int version, tree var)
339 int i;
340 bitmap_iterator bi;
341 unsigned x;
343 i = SSA_NAME_VERSION (var);
344 if (version_to_be_replaced_p (tab, i))
346 if (!bitmap_empty_p (tab->new_replaceable_dependencies))
348 /* Version will now be killed by a write to any partition the
349 substituted expression would have been killed by. */
350 EXECUTE_IF_SET_IN_BITMAP (tab->new_replaceable_dependencies, 0, x, bi)
351 add_to_partition_kill_list (tab, x, version);
353 /* Rather than set partition_dependencies and in_use lists bit by
354 bit, simply OR in the new_replaceable_dependencies bits. */
355 if (!tab->partition_dependencies[version])
356 tab->partition_dependencies[version] =
357 BITMAP_ALLOC (&ter_bitmap_obstack);
358 bitmap_ior_into (tab->partition_dependencies[version],
359 tab->new_replaceable_dependencies);
360 bitmap_ior_into (tab->partition_in_use,
361 tab->new_replaceable_dependencies);
362 /* It is only necessary to add these once. */
363 bitmap_clear (tab->new_replaceable_dependencies);
366 else
368 i = var_to_partition (tab->map, var);
369 gcc_checking_assert (i != NO_PARTITION);
370 gcc_checking_assert (tab->num_in_part[i] != 0);
371 /* Only dependencies on ssa_names which are coalesced with something need
372 to be tracked. Partitions with containing only a single SSA_NAME
373 *cannot* have their value changed. */
374 if (tab->num_in_part[i] > 1)
376 add_to_partition_kill_list (tab, i, version);
377 make_dependent_on_partition (tab, version, i);
383 /* This function will remove the expression for VERSION from replacement
384 consideration in table TAB. If FREE_EXPR is true, then remove the
385 expression from consideration as well by freeing the decl uid bitmap. */
387 static void
388 finished_with_expr (temp_expr_table_p tab, int version, bool free_expr)
390 unsigned i;
391 bitmap_iterator bi;
393 /* Remove this expression from its dependent lists. The partition dependence
394 list is retained and transferred later to whomever uses this version. */
395 if (tab->partition_dependencies[version])
397 EXECUTE_IF_SET_IN_BITMAP (tab->partition_dependencies[version], 0, i, bi)
398 remove_from_partition_kill_list (tab, i, version);
399 BITMAP_FREE (tab->partition_dependencies[version]);
401 if (free_expr)
402 BITMAP_FREE (tab->expr_decl_uids[version]);
406 /* Return TRUE if expression STMT is suitable for replacement.
407 In addition to ssa_is_replaceable_p, require the same bb, and for -O0
408 same locus and same BLOCK), Considers memory loads as replaceable if aliasing
409 is available. */
411 static inline bool
412 ter_is_replaceable_p (gimple stmt)
415 if (ssa_is_replaceable_p (stmt))
417 use_operand_p use_p;
418 tree def;
419 gimple use_stmt;
420 location_t locus1, locus2;
421 tree block1, block2;
423 /* Only consider definitions which have a single use. ssa_is_replaceable_p
424 already performed this check, but the use stmt pointer is required for
425 further checks. */
426 def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
427 if (!single_imm_use (def, &use_p, &use_stmt))
428 return false;
430 /* If the use isn't in this block, it wont be replaced either. */
431 if (gimple_bb (use_stmt) != gimple_bb (stmt))
432 return false;
434 locus1 = gimple_location (stmt);
435 block1 = LOCATION_BLOCK (locus1);
436 locus1 = LOCATION_LOCUS (locus1);
438 if (gphi *phi = dyn_cast <gphi *> (use_stmt))
439 locus2 = gimple_phi_arg_location (phi,
440 PHI_ARG_INDEX_FROM_USE (use_p));
441 else
442 locus2 = gimple_location (use_stmt);
443 block2 = LOCATION_BLOCK (locus2);
444 locus2 = LOCATION_LOCUS (locus2);
446 if ((!optimize || optimize_debug)
447 && ((locus1 != UNKNOWN_LOCATION && locus1 != locus2)
448 || (block1 != NULL_TREE && block1 != block2)))
449 return false;
451 return true;
453 return false;
457 /* Create an expression entry for a replaceable expression. */
459 static void
460 process_replaceable (temp_expr_table_p tab, gimple stmt, int call_cnt)
462 tree var, def, basevar;
463 int version;
464 ssa_op_iter iter;
465 bitmap def_vars, use_vars;
467 gcc_checking_assert (ter_is_replaceable_p (stmt));
469 def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
470 version = SSA_NAME_VERSION (def);
471 def_vars = BITMAP_ALLOC (&ter_bitmap_obstack);
473 basevar = SSA_NAME_VAR (def);
474 if (basevar)
475 bitmap_set_bit (def_vars, DECL_UID (basevar));
477 /* Add this expression to the dependency list for each use partition. */
478 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
480 int var_version = SSA_NAME_VERSION (var);
482 use_vars = tab->expr_decl_uids[var_version];
483 add_dependence (tab, version, var);
484 if (use_vars)
486 bitmap_ior_into (def_vars, use_vars);
487 BITMAP_FREE (tab->expr_decl_uids[var_version]);
489 else if (SSA_NAME_VAR (var))
490 bitmap_set_bit (def_vars, DECL_UID (SSA_NAME_VAR (var)));
492 tab->expr_decl_uids[version] = def_vars;
494 /* If there are VUSES, add a dependence on virtual defs. */
495 if (gimple_vuse (stmt))
497 make_dependent_on_partition (tab, version, VIRTUAL_PARTITION (tab));
498 add_to_partition_kill_list (tab, VIRTUAL_PARTITION (tab), version);
501 tab->call_cnt[version] = call_cnt;
505 /* This function removes any expression in TAB which is dependent on PARTITION
506 from consideration, making it not replaceable. */
508 static inline void
509 kill_expr (temp_expr_table_p tab, int partition)
511 unsigned version;
513 /* Mark every active expr dependent on this var as not replaceable.
514 finished_with_expr can modify the bitmap, so we can't execute over it. */
515 while (tab->kill_list[partition])
517 version = bitmap_first_set_bit (tab->kill_list[partition]);
518 finished_with_expr (tab, version, true);
521 gcc_checking_assert (!tab->kill_list[partition]);
525 /* This function kills all expressions in TAB which are dependent on virtual
526 partitions. */
528 static inline void
529 kill_virtual_exprs (temp_expr_table_p tab)
531 kill_expr (tab, VIRTUAL_PARTITION (tab));
535 /* Mark the expression associated with VAR as replaceable, and enter
536 the defining stmt into the partition_dependencies table TAB. If
537 MORE_REPLACING is true, accumulate the pending partition dependencies. */
539 static void
540 mark_replaceable (temp_expr_table_p tab, tree var, bool more_replacing)
542 int version = SSA_NAME_VERSION (var);
544 /* Move the dependence list to the pending listpending. */
545 if (more_replacing && tab->partition_dependencies[version])
546 bitmap_ior_into (tab->new_replaceable_dependencies,
547 tab->partition_dependencies[version]);
549 finished_with_expr (tab, version, !more_replacing);
551 /* Set the replaceable expression.
552 The bitmap for this "escapes" from this file so it's allocated
553 on the default obstack. */
554 if (!tab->replaceable_expressions)
555 tab->replaceable_expressions = BITMAP_ALLOC (NULL);
556 bitmap_set_bit (tab->replaceable_expressions, version);
560 /* Helper function for find_ssaname_in_stores. Called via walk_tree to
561 find a SSA_NAME DATA somewhere in *TP. */
563 static tree
564 find_ssaname (tree *tp, int *walk_subtrees, void *data)
566 tree var = (tree) data;
567 if (*tp == var)
568 return var;
569 else if (IS_TYPE_OR_DECL_P (*tp))
570 *walk_subtrees = 0;
571 return NULL_TREE;
574 /* Helper function for find_replaceable_in_bb. Return true if SSA_NAME DATA
575 is used somewhere in T, which is a store in the statement. Called via
576 walk_stmt_load_store_addr_ops. */
578 static bool
579 find_ssaname_in_store (gimple, tree, tree t, void *data)
581 return walk_tree (&t, find_ssaname, data, NULL) != NULL_TREE;
584 /* This function processes basic block BB, and looks for variables which can
585 be replaced by their expressions. Results are stored in the table TAB. */
587 static void
588 find_replaceable_in_bb (temp_expr_table_p tab, basic_block bb)
590 gimple_stmt_iterator bsi;
591 gimple stmt;
592 tree def, use, fndecl;
593 int partition;
594 var_map map = tab->map;
595 ssa_op_iter iter;
596 bool stmt_replaceable;
597 int cur_call_cnt = 0;
599 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
601 stmt = gsi_stmt (bsi);
603 if (is_gimple_debug (stmt))
604 continue;
606 stmt_replaceable = ter_is_replaceable_p (stmt);
608 /* Determine if this stmt finishes an existing expression. */
609 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
611 unsigned ver = SSA_NAME_VERSION (use);
613 /* If this use is a potential replacement variable, process it. */
614 if (tab->expr_decl_uids[ver])
616 bool same_root_var = false;
617 ssa_op_iter iter2;
618 bitmap vars = tab->expr_decl_uids[ver];
620 /* See if the root variables are the same. If they are, we
621 do not want to do the replacement to avoid problems with
622 code size, see PR tree-optimization/17549. */
623 if (!bitmap_empty_p (vars))
624 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter2, SSA_OP_DEF)
626 if (SSA_NAME_VAR (def)
627 && bitmap_bit_p (vars, DECL_UID (SSA_NAME_VAR (def))))
629 same_root_var = true;
630 break;
634 /* If the stmt does a memory store and the replacement
635 is a load aliasing it avoid creating overlapping
636 assignments which we cannot expand correctly. */
637 if (gimple_vdef (stmt))
639 gimple def_stmt = SSA_NAME_DEF_STMT (use);
640 while (is_gimple_assign (def_stmt)
641 && gimple_assign_rhs_code (def_stmt) == SSA_NAME)
642 def_stmt
643 = SSA_NAME_DEF_STMT (gimple_assign_rhs1 (def_stmt));
644 if (gimple_vuse (def_stmt)
645 && gimple_assign_single_p (def_stmt)
646 && stmt_may_clobber_ref_p (stmt,
647 gimple_assign_rhs1 (def_stmt)))
649 /* For calls, it is not a problem if USE is among
650 call's arguments or say OBJ_TYPE_REF argument,
651 all those necessarily need to be evaluated before
652 the call that may clobber the memory. But if
653 LHS of the call refers to USE, expansion might
654 evaluate it after the call, prevent TER in that
655 case.
656 For inline asm, allow TER of loads into input
657 arguments, but disallow TER for USEs that occur
658 somewhere in outputs. */
659 if (is_gimple_call (stmt)
660 || gimple_code (stmt) == GIMPLE_ASM)
662 if (walk_stmt_load_store_ops (stmt, use, NULL,
663 find_ssaname_in_store))
664 same_root_var = true;
666 else
667 same_root_var = true;
671 /* Mark expression as replaceable unless stmt is volatile, or the
672 def variable has the same root variable as something in the
673 substitution list, or the def and use span a call such that
674 we'll expand lifetimes across a call. */
675 if (gimple_has_volatile_ops (stmt) || same_root_var
676 || (tab->call_cnt[ver] != cur_call_cnt
677 && SINGLE_SSA_USE_OPERAND (SSA_NAME_DEF_STMT (use), SSA_OP_USE)
678 == NULL_USE_OPERAND_P))
679 finished_with_expr (tab, ver, true);
680 else
681 mark_replaceable (tab, use, stmt_replaceable);
685 /* Next, see if this stmt kills off an active expression. */
686 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_DEF)
688 partition = var_to_partition (map, def);
689 if (partition != NO_PARTITION && tab->kill_list[partition])
690 kill_expr (tab, partition);
693 /* Increment counter if this is a non BUILT_IN call. We allow
694 replacement over BUILT_IN calls since many will expand to inline
695 insns instead of a true call. */
696 if (is_gimple_call (stmt)
697 && !((fndecl = gimple_call_fndecl (stmt))
698 && DECL_BUILT_IN (fndecl)))
699 cur_call_cnt++;
701 /* Now see if we are creating a new expression or not. */
702 if (stmt_replaceable)
703 process_replaceable (tab, stmt, cur_call_cnt);
705 /* Free any unused dependency lists. */
706 bitmap_clear (tab->new_replaceable_dependencies);
708 /* A V_{MAY,MUST}_DEF kills any expression using a virtual operand,
709 including the current stmt. */
710 if (gimple_vdef (stmt))
711 kill_virtual_exprs (tab);
716 /* This function is the driver routine for replacement of temporary expressions
717 in the SSA->normal phase, operating on MAP. If there are replaceable
718 expressions, a table is returned which maps SSA versions to the
719 expressions they should be replaced with. A NULL_TREE indicates no
720 replacement should take place. If there are no replacements at all,
721 NULL is returned by the function, otherwise an expression vector indexed
722 by SSA_NAME version numbers. */
724 bitmap
725 find_replaceable_exprs (var_map map)
727 basic_block bb;
728 temp_expr_table_p table;
729 bitmap ret;
731 bitmap_obstack_initialize (&ter_bitmap_obstack);
732 table = new_temp_expr_table (map);
733 FOR_EACH_BB_FN (bb, cfun)
735 find_replaceable_in_bb (table, bb);
736 gcc_checking_assert (bitmap_empty_p (table->partition_in_use));
738 ret = free_temp_expr_table (table);
739 bitmap_obstack_release (&ter_bitmap_obstack);
740 return ret;
743 /* Dump TER expression table EXPR to file F. */
745 void
746 dump_replaceable_exprs (FILE *f, bitmap expr)
748 tree var;
749 unsigned x;
751 fprintf (f, "\nReplacing Expressions\n");
752 for (x = 0; x < num_ssa_names; x++)
753 if (bitmap_bit_p (expr, x))
755 var = ssa_name (x);
756 print_generic_expr (f, var, TDF_SLIM);
757 fprintf (f, " replace with --> ");
758 print_gimple_stmt (f, SSA_NAME_DEF_STMT (var), 0, TDF_SLIM);
759 fprintf (f, "\n");
761 fprintf (f, "\n");
765 #ifdef ENABLE_CHECKING
766 /* Dump the status of the various tables in the expression table. This is used
767 exclusively to debug TER. F is the place to send debug info and T is the
768 table being debugged. */
770 DEBUG_FUNCTION void
771 debug_ter (FILE *f, temp_expr_table_p t)
773 unsigned x, y;
774 bitmap_iterator bi;
776 fprintf (f, "\nDumping current state of TER\n virtual partition = %d\n",
777 VIRTUAL_PARTITION (t));
778 if (t->replaceable_expressions)
779 dump_replaceable_exprs (f, t->replaceable_expressions);
780 fprintf (f, "Currently tracking the following expressions:\n");
782 for (x = 1; x < num_ssa_names; x++)
783 if (t->expr_decl_uids[x])
785 print_generic_expr (f, ssa_name (x), TDF_SLIM);
786 fprintf (f, " dep-parts : ");
787 if (t->partition_dependencies[x]
788 && !bitmap_empty_p (t->partition_dependencies[x]))
790 EXECUTE_IF_SET_IN_BITMAP (t->partition_dependencies[x], 0, y, bi)
791 fprintf (f, "P%d ",y);
793 fprintf (f, " basedecls: ");
794 EXECUTE_IF_SET_IN_BITMAP (t->expr_decl_uids[x], 0, y, bi)
795 fprintf (f, "%d ",y);
796 fprintf (f, " call_cnt : %d",t->call_cnt[x]);
797 fprintf (f, "\n");
800 bitmap_print (f, t->partition_in_use, "Partitions in use ",
801 "\npartition KILL lists:\n");
803 for (x = 0; x <= num_var_partitions (t->map); x++)
804 if (t->kill_list[x])
806 fprintf (f, "Partition %d : ", x);
807 EXECUTE_IF_SET_IN_BITMAP (t->kill_list[x], 0, y, bi)
808 fprintf (f, "_%d ",y);
811 fprintf (f, "\n----------\n");
813 #endif