PR middle-end/59175
[official-gcc.git] / gcc / tree-ssa-ter.c
blobdf0c458e0195eb6d277b54dfbbadade6e7ad20e6
1 /* Routines for performing Temporary Expression Replacement (TER) in SSA trees.
2 Copyright (C) 2003-2013 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 "tree.h"
27 #include "gimple-pretty-print.h"
28 #include "bitmap.h"
29 #include "gimple.h"
30 #include "gimple-iterator.h"
31 #include "gimple-ssa.h"
32 #include "tree-phinodes.h"
33 #include "ssa-iterators.h"
34 #include "tree-ssanames.h"
35 #include "dumpfile.h"
36 #include "tree-ssa-live.h"
37 #include "tree-ssa-ter.h"
38 #include "tree-outof-ssa.h"
39 #include "flags.h"
42 /* Temporary Expression Replacement (TER)
44 Replace SSA version variables during out-of-ssa with their defining
45 expression if there is only one use of the variable.
47 This pass is required in order for the RTL expansion pass to see larger
48 chunks of code. This allows it to make better choices on RTL pattern
49 selection. When expand is rewritten and merged with out-of-ssa, and
50 understands SSA, this should be eliminated.
52 A pass is made through the function, one block at a time. No cross block
53 information is tracked.
55 Variables which only have one use, and whose defining stmt is considered
56 a replaceable expression (see ssa_is_replaceable_p) are tracked to see whether
57 they can be replaced at their use location.
59 n_12 = C * 10
60 a_2 = b_5 + 6
61 v_9 = a_2 * n_12
63 if there are the only use of n_12 and a_2, TER will substitute in their
64 expressions in v_9, and end up with:
66 v_9 = (b_5 + 6) * (C * 10)
68 which will then have the ssa_name assigned to regular variables, and the
69 resulting code which will be passed to the expander looks something like:
71 v = (b + 6) * (C * 10)
74 This requires ensuring that none of the variables used by the expression
75 change between the def point and where it is used. Furthermore, if any
76 of the ssa_names used in this expression are themselves replaceable, we
77 have to ensure none of that expressions' arguments change either.
78 Although SSA_NAMES themselves don't change, this pass is performed after
79 coalescing has coalesced different SSA_NAMES together, so there could be a
80 definition of an SSA_NAME which is coalesced with a use that causes a
81 problem, i.e.,
83 PHI b_5 = <b_8(2), b_14(1)>
84 <...>
85 a_2 = b_5 + 6
86 b_8 = c_4 + 4
87 v_9 = a_2 * n_12
88 <...>
90 If b_5, b_8 and b_14 are all coalesced together...
91 The expression b_5 + 6 CANNOT replace the use in the statement defining v_9
92 because b_8 is in fact killing the value of b_5 since they share a partition
93 and will be assigned the same memory or register location.
95 TER implements this but stepping through the instructions in a block and
96 tracking potential expressions for replacement, and the partitions they are
97 dependent on. Expressions are represented by the SSA_NAME_VERSION of the
98 DEF on the LHS of a GIMPLE_ASSIGN and the expression is the RHS.
100 When a stmt is determined to be a possible replacement expression, the
101 following steps are taken:
103 EXPR_DECL_UID bitmap is allocated and set to the base variable UID of the
104 def and any uses in the expression. non-NULL means the expression is being
105 tracked. The UID's themselves are used to prevent TER substitution into
106 accumulating sequences, i.e.,
108 x = x + y
109 x = x + z
110 x = x + w
111 etc.
112 this can result in very large expressions which don't accomplish anything
113 see PR tree-optimization/17549.
115 PARTITION_DEPENDENCIES is another bitmap array, and it has a bit set for any
116 partition which is used in the expression. This is primarily used to remove
117 an expression from the partition kill lists when a decision is made whether
118 to replace it or not. This is indexed by ssa version number as well, and
119 indicates a partition number. virtual operands are not tracked individually,
120 but they are summarized by an artificial partition called VIRTUAL_PARTITION.
121 This means a MAY or MUST def will kill *ALL* expressions that are dependent
122 on a virtual operand.
123 Note that the EXPR_DECL_UID and this bitmap represent very similar
124 information, but the info in one is not easy to obtain from the other.
126 KILL_LIST is yet another bitmap array, this time it is indexed by partition
127 number, and represents a list of active expressions which will will no
128 longer be valid if a definition into this partition takes place.
130 PARTITION_IN_USE is simply a bitmap which is used to track which partitions
131 currently have something in their kill list. This is used at the end of
132 a block to clear out the KILL_LIST bitmaps at the end of each block.
134 NEW_REPLACEABLE_DEPENDENCIES is used as a temporary place to store
135 dependencies which will be reused by the current definition. All the uses
136 on an expression are processed before anything else is done. If a use is
137 determined to be a replaceable expression AND the current stmt is also going
138 to be replaceable, all the dependencies of this replaceable use will be
139 picked up by the current stmt's expression. Rather than recreate them, they
140 are simply copied here and then copied into the new expression when it is
141 processed.
143 a_2 = b_5 + 6
144 v_8 = a_2 + c_4
146 a_2's expression 'b_5 + 6' is determined to be replaceable at the use
147 location. It is dependent on the partition 'b_5' is in. This is cached into
148 the NEW_REPLACEABLE_DEPENDENCIES bitmap, and when v_8 is examined for
149 replaceability, it is a candidate, and it is dependent on the partition
150 b_5 is in *NOT* a_2, as well as c_4's partition.
152 if v_8 is also replaceable:
154 x_9 = v_8 * 5
156 x_9 is dependent on partitions b_5, and c_4
158 if a statement is found which has either of those partitions written to
159 before x_9 is used, then x_9 itself is NOT replaceable. */
162 /* Temporary Expression Replacement (TER) table information. */
164 typedef struct temp_expr_table_d
166 var_map map;
167 bitmap *partition_dependencies; /* Partitions expr is dependent on. */
168 bitmap replaceable_expressions; /* Replacement expression table. */
169 bitmap *expr_decl_uids; /* Base uids of exprs. */
170 bitmap *kill_list; /* Expr's killed by a partition. */
171 int virtual_partition; /* Pseudo partition for virtual ops. */
172 bitmap partition_in_use; /* Partitions with kill entries. */
173 bitmap new_replaceable_dependencies; /* Holding place for pending dep's. */
174 int *num_in_part; /* # of ssa_names in a partition. */
175 int *call_cnt; /* Call count at definition. */
176 } *temp_expr_table_p;
178 /* Used to indicate a dependency on VDEFs. */
179 #define VIRTUAL_PARTITION(table) (table->virtual_partition)
181 /* A place for the many, many bitmaps we create. */
182 static bitmap_obstack ter_bitmap_obstack;
184 #ifdef ENABLE_CHECKING
185 extern void debug_ter (FILE *, temp_expr_table_p);
186 #endif
189 /* Create a new TER table for MAP. */
191 static temp_expr_table_p
192 new_temp_expr_table (var_map map)
194 temp_expr_table_p t;
195 unsigned x;
197 t = XNEW (struct temp_expr_table_d);
198 t->map = map;
200 t->partition_dependencies = XCNEWVEC (bitmap, num_ssa_names + 1);
201 t->expr_decl_uids = XCNEWVEC (bitmap, num_ssa_names + 1);
202 t->kill_list = XCNEWVEC (bitmap, num_var_partitions (map) + 1);
204 t->partition_in_use = BITMAP_ALLOC (&ter_bitmap_obstack);
206 t->virtual_partition = num_var_partitions (map);
207 t->new_replaceable_dependencies = BITMAP_ALLOC (&ter_bitmap_obstack);
209 t->replaceable_expressions = NULL;
210 t->num_in_part = XCNEWVEC (int, num_var_partitions (map));
211 for (x = 1; x < num_ssa_names; x++)
213 int p;
214 tree name = ssa_name (x);
215 if (!name)
216 continue;
217 p = var_to_partition (map, name);
218 if (p != NO_PARTITION)
219 t->num_in_part[p]++;
221 t->call_cnt = XCNEWVEC (int, num_ssa_names + 1);
223 return t;
227 /* Free TER table T. If there are valid replacements, return the expression
228 vector. */
230 static bitmap
231 free_temp_expr_table (temp_expr_table_p t)
233 bitmap ret = NULL;
235 #ifdef ENABLE_CHECKING
236 unsigned x;
237 for (x = 0; x <= num_var_partitions (t->map); x++)
238 gcc_assert (!t->kill_list[x]);
239 for (x = 0; x < num_ssa_names; x++)
241 gcc_assert (t->expr_decl_uids[x] == NULL);
242 gcc_assert (t->partition_dependencies[x] == NULL);
244 #endif
246 BITMAP_FREE (t->partition_in_use);
247 BITMAP_FREE (t->new_replaceable_dependencies);
249 free (t->expr_decl_uids);
250 free (t->kill_list);
251 free (t->partition_dependencies);
252 free (t->num_in_part);
253 free (t->call_cnt);
255 if (t->replaceable_expressions)
256 ret = t->replaceable_expressions;
258 free (t);
259 return ret;
263 /* Return TRUE if VERSION is to be replaced by an expression in TAB. */
265 static inline bool
266 version_to_be_replaced_p (temp_expr_table_p tab, int version)
268 if (!tab->replaceable_expressions)
269 return false;
270 return bitmap_bit_p (tab->replaceable_expressions, version);
274 /* Add partition P to the list if partitions VERSION is dependent on. TAB is
275 the expression table */
277 static inline void
278 make_dependent_on_partition (temp_expr_table_p tab, int version, int p)
280 if (!tab->partition_dependencies[version])
281 tab->partition_dependencies[version] = BITMAP_ALLOC (&ter_bitmap_obstack);
283 bitmap_set_bit (tab->partition_dependencies[version], p);
287 /* Add VER to the kill list for P. TAB is the expression table */
289 static inline void
290 add_to_partition_kill_list (temp_expr_table_p tab, int p, int ver)
292 if (!tab->kill_list[p])
294 tab->kill_list[p] = BITMAP_ALLOC (&ter_bitmap_obstack);
295 bitmap_set_bit (tab->partition_in_use, p);
297 bitmap_set_bit (tab->kill_list[p], ver);
301 /* Remove VER from the partition kill list for P. TAB is the expression
302 table. */
304 static inline void
305 remove_from_partition_kill_list (temp_expr_table_p tab, int p, int version)
307 gcc_checking_assert (tab->kill_list[p]);
308 bitmap_clear_bit (tab->kill_list[p], version);
309 if (bitmap_empty_p (tab->kill_list[p]))
311 bitmap_clear_bit (tab->partition_in_use, p);
312 BITMAP_FREE (tab->kill_list[p]);
317 /* Add a dependency between the def of ssa VERSION and VAR. If VAR is
318 replaceable by an expression, add a dependence each of the elements of the
319 expression. These are contained in the new_replaceable list. TAB is the
320 expression table. */
322 static void
323 add_dependence (temp_expr_table_p tab, int version, tree var)
325 int i;
326 bitmap_iterator bi;
327 unsigned x;
329 i = SSA_NAME_VERSION (var);
330 if (version_to_be_replaced_p (tab, i))
332 if (!bitmap_empty_p (tab->new_replaceable_dependencies))
334 /* Version will now be killed by a write to any partition the
335 substituted expression would have been killed by. */
336 EXECUTE_IF_SET_IN_BITMAP (tab->new_replaceable_dependencies, 0, x, bi)
337 add_to_partition_kill_list (tab, x, version);
339 /* Rather than set partition_dependencies and in_use lists bit by
340 bit, simply OR in the new_replaceable_dependencies bits. */
341 if (!tab->partition_dependencies[version])
342 tab->partition_dependencies[version] =
343 BITMAP_ALLOC (&ter_bitmap_obstack);
344 bitmap_ior_into (tab->partition_dependencies[version],
345 tab->new_replaceable_dependencies);
346 bitmap_ior_into (tab->partition_in_use,
347 tab->new_replaceable_dependencies);
348 /* It is only necessary to add these once. */
349 bitmap_clear (tab->new_replaceable_dependencies);
352 else
354 i = var_to_partition (tab->map, var);
355 gcc_checking_assert (i != NO_PARTITION);
356 gcc_checking_assert (tab->num_in_part[i] != 0);
357 /* Only dependencies on ssa_names which are coalesced with something need
358 to be tracked. Partitions with containing only a single SSA_NAME
359 *cannot* have their value changed. */
360 if (tab->num_in_part[i] > 1)
362 add_to_partition_kill_list (tab, i, version);
363 make_dependent_on_partition (tab, version, i);
369 /* This function will remove the expression for VERSION from replacement
370 consideration in table TAB. If FREE_EXPR is true, then remove the
371 expression from consideration as well by freeing the decl uid bitmap. */
373 static void
374 finished_with_expr (temp_expr_table_p tab, int version, bool free_expr)
376 unsigned i;
377 bitmap_iterator bi;
379 /* Remove this expression from its dependent lists. The partition dependence
380 list is retained and transferred later to whomever uses this version. */
381 if (tab->partition_dependencies[version])
383 EXECUTE_IF_SET_IN_BITMAP (tab->partition_dependencies[version], 0, i, bi)
384 remove_from_partition_kill_list (tab, i, version);
385 BITMAP_FREE (tab->partition_dependencies[version]);
387 if (free_expr)
388 BITMAP_FREE (tab->expr_decl_uids[version]);
392 /* Return TRUE if expression STMT is suitable for replacement.
393 In addition to ssa_is_replaceable_p, require the same bb, and for -O0
394 same locus and same BLOCK), Considers memory loads as replaceable if aliasing
395 is available. */
397 static inline bool
398 ter_is_replaceable_p (gimple stmt)
401 if (ssa_is_replaceable_p (stmt))
403 use_operand_p use_p;
404 tree def;
405 gimple use_stmt;
406 location_t locus1, locus2;
407 tree block1, block2;
409 /* Only consider definitions which have a single use. ssa_is_replaceable_p
410 already performed this check, but the use stmt pointer is required for
411 further checks. */
412 def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
413 if (!single_imm_use (def, &use_p, &use_stmt))
414 return false;
416 /* If the use isn't in this block, it wont be replaced either. */
417 if (gimple_bb (use_stmt) != gimple_bb (stmt))
418 return false;
420 locus1 = gimple_location (stmt);
421 block1 = LOCATION_BLOCK (locus1);
422 locus1 = LOCATION_LOCUS (locus1);
424 if (gimple_code (use_stmt) == GIMPLE_PHI)
425 locus2 = gimple_phi_arg_location (use_stmt,
426 PHI_ARG_INDEX_FROM_USE (use_p));
427 else
428 locus2 = gimple_location (use_stmt);
429 block2 = LOCATION_BLOCK (locus2);
430 locus2 = LOCATION_LOCUS (locus2);
432 if ((!optimize || optimize_debug)
433 && ((locus1 != UNKNOWN_LOCATION && locus1 != locus2)
434 || (block1 != NULL_TREE && block1 != block2)))
435 return false;
437 /* Without alias info we can't move around loads. */
438 if (!optimize && gimple_assign_single_p (stmt)
439 && !is_gimple_val (gimple_assign_rhs1 (stmt)))
440 return false;
442 return true;
444 return false;
448 /* Create an expression entry for a replaceable expression. */
450 static void
451 process_replaceable (temp_expr_table_p tab, gimple stmt, int call_cnt)
453 tree var, def, basevar;
454 int version;
455 ssa_op_iter iter;
456 bitmap def_vars, use_vars;
458 gcc_checking_assert (ter_is_replaceable_p (stmt));
460 def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
461 version = SSA_NAME_VERSION (def);
462 def_vars = BITMAP_ALLOC (&ter_bitmap_obstack);
464 basevar = SSA_NAME_VAR (def);
465 if (basevar)
466 bitmap_set_bit (def_vars, DECL_UID (basevar));
468 /* Add this expression to the dependency list for each use partition. */
469 FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
471 int var_version = SSA_NAME_VERSION (var);
473 use_vars = tab->expr_decl_uids[var_version];
474 add_dependence (tab, version, var);
475 if (use_vars)
477 bitmap_ior_into (def_vars, use_vars);
478 BITMAP_FREE (tab->expr_decl_uids[var_version]);
480 else if (SSA_NAME_VAR (var))
481 bitmap_set_bit (def_vars, DECL_UID (SSA_NAME_VAR (var)));
483 tab->expr_decl_uids[version] = def_vars;
485 /* If there are VUSES, add a dependence on virtual defs. */
486 if (gimple_vuse (stmt))
488 make_dependent_on_partition (tab, version, VIRTUAL_PARTITION (tab));
489 add_to_partition_kill_list (tab, VIRTUAL_PARTITION (tab), version);
492 tab->call_cnt[version] = call_cnt;
496 /* This function removes any expression in TAB which is dependent on PARTITION
497 from consideration, making it not replaceable. */
499 static inline void
500 kill_expr (temp_expr_table_p tab, int partition)
502 unsigned version;
504 /* Mark every active expr dependent on this var as not replaceable.
505 finished_with_expr can modify the bitmap, so we can't execute over it. */
506 while (tab->kill_list[partition])
508 version = bitmap_first_set_bit (tab->kill_list[partition]);
509 finished_with_expr (tab, version, true);
512 gcc_checking_assert (!tab->kill_list[partition]);
516 /* This function kills all expressions in TAB which are dependent on virtual
517 partitions. */
519 static inline void
520 kill_virtual_exprs (temp_expr_table_p tab)
522 kill_expr (tab, VIRTUAL_PARTITION (tab));
526 /* Mark the expression associated with VAR as replaceable, and enter
527 the defining stmt into the partition_dependencies table TAB. If
528 MORE_REPLACING is true, accumulate the pending partition dependencies. */
530 static void
531 mark_replaceable (temp_expr_table_p tab, tree var, bool more_replacing)
533 int version = SSA_NAME_VERSION (var);
535 /* Move the dependence list to the pending listpending. */
536 if (more_replacing && tab->partition_dependencies[version])
537 bitmap_ior_into (tab->new_replaceable_dependencies,
538 tab->partition_dependencies[version]);
540 finished_with_expr (tab, version, !more_replacing);
542 /* Set the replaceable expression.
543 The bitmap for this "escapes" from this file so it's allocated
544 on the default obstack. */
545 if (!tab->replaceable_expressions)
546 tab->replaceable_expressions = BITMAP_ALLOC (NULL);
547 bitmap_set_bit (tab->replaceable_expressions, version);
551 /* This function processes basic block BB, and looks for variables which can
552 be replaced by their expressions. Results are stored in the table TAB. */
554 static void
555 find_replaceable_in_bb (temp_expr_table_p tab, basic_block bb)
557 gimple_stmt_iterator bsi;
558 gimple stmt;
559 tree def, use, fndecl;
560 int partition;
561 var_map map = tab->map;
562 ssa_op_iter iter;
563 bool stmt_replaceable;
564 int cur_call_cnt = 0;
566 for (bsi = gsi_start_bb (bb); !gsi_end_p (bsi); gsi_next (&bsi))
568 stmt = gsi_stmt (bsi);
570 if (is_gimple_debug (stmt))
571 continue;
573 stmt_replaceable = ter_is_replaceable_p (stmt);
575 /* Determine if this stmt finishes an existing expression. */
576 FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
578 unsigned ver = SSA_NAME_VERSION (use);
580 /* If this use is a potential replacement variable, process it. */
581 if (tab->expr_decl_uids[ver])
583 bool same_root_var = false;
584 ssa_op_iter iter2;
585 bitmap vars = tab->expr_decl_uids[ver];
587 /* See if the root variables are the same. If they are, we
588 do not want to do the replacement to avoid problems with
589 code size, see PR tree-optimization/17549. */
590 if (!bitmap_empty_p (vars))
591 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter2, SSA_OP_DEF)
593 if (SSA_NAME_VAR (def)
594 && bitmap_bit_p (vars, DECL_UID (SSA_NAME_VAR (def))))
596 same_root_var = true;
597 break;
601 /* If the stmt does a memory store and the replacement
602 is a load aliasing it avoid creating overlapping
603 assignments which we cannot expand correctly. */
604 if (gimple_vdef (stmt)
605 && gimple_assign_single_p (stmt))
607 gimple def_stmt = SSA_NAME_DEF_STMT (use);
608 while (is_gimple_assign (def_stmt)
609 && gimple_assign_rhs_code (def_stmt) == SSA_NAME)
610 def_stmt
611 = SSA_NAME_DEF_STMT (gimple_assign_rhs1 (def_stmt));
612 if (gimple_vuse (def_stmt)
613 && gimple_assign_single_p (def_stmt)
614 && refs_may_alias_p (gimple_assign_lhs (stmt),
615 gimple_assign_rhs1 (def_stmt)))
616 same_root_var = true;
619 /* Mark expression as replaceable unless stmt is volatile, or the
620 def variable has the same root variable as something in the
621 substitution list, or the def and use span a call such that
622 we'll expand lifetimes across a call. */
623 if (gimple_has_volatile_ops (stmt) || same_root_var
624 || (tab->call_cnt[ver] != cur_call_cnt
625 && SINGLE_SSA_USE_OPERAND (SSA_NAME_DEF_STMT (use), SSA_OP_USE)
626 == NULL_USE_OPERAND_P))
627 finished_with_expr (tab, ver, true);
628 else
629 mark_replaceable (tab, use, stmt_replaceable);
633 /* Next, see if this stmt kills off an active expression. */
634 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_DEF)
636 partition = var_to_partition (map, def);
637 if (partition != NO_PARTITION && tab->kill_list[partition])
638 kill_expr (tab, partition);
641 /* Increment counter if this is a non BUILT_IN call. We allow
642 replacement over BUILT_IN calls since many will expand to inline
643 insns instead of a true call. */
644 if (is_gimple_call (stmt)
645 && !((fndecl = gimple_call_fndecl (stmt))
646 && DECL_BUILT_IN (fndecl)))
647 cur_call_cnt++;
649 /* Now see if we are creating a new expression or not. */
650 if (stmt_replaceable)
651 process_replaceable (tab, stmt, cur_call_cnt);
653 /* Free any unused dependency lists. */
654 bitmap_clear (tab->new_replaceable_dependencies);
656 /* A V_{MAY,MUST}_DEF kills any expression using a virtual operand,
657 including the current stmt. */
658 if (gimple_vdef (stmt))
659 kill_virtual_exprs (tab);
664 /* This function is the driver routine for replacement of temporary expressions
665 in the SSA->normal phase, operating on MAP. If there are replaceable
666 expressions, a table is returned which maps SSA versions to the
667 expressions they should be replaced with. A NULL_TREE indicates no
668 replacement should take place. If there are no replacements at all,
669 NULL is returned by the function, otherwise an expression vector indexed
670 by SSA_NAME version numbers. */
672 bitmap
673 find_replaceable_exprs (var_map map)
675 basic_block bb;
676 temp_expr_table_p table;
677 bitmap ret;
679 bitmap_obstack_initialize (&ter_bitmap_obstack);
680 table = new_temp_expr_table (map);
681 FOR_EACH_BB (bb)
683 find_replaceable_in_bb (table, bb);
684 gcc_checking_assert (bitmap_empty_p (table->partition_in_use));
686 ret = free_temp_expr_table (table);
687 bitmap_obstack_release (&ter_bitmap_obstack);
688 return ret;
691 /* Dump TER expression table EXPR to file F. */
693 void
694 dump_replaceable_exprs (FILE *f, bitmap expr)
696 tree var;
697 unsigned x;
699 fprintf (f, "\nReplacing Expressions\n");
700 for (x = 0; x < num_ssa_names; x++)
701 if (bitmap_bit_p (expr, x))
703 var = ssa_name (x);
704 print_generic_expr (f, var, TDF_SLIM);
705 fprintf (f, " replace with --> ");
706 print_gimple_stmt (f, SSA_NAME_DEF_STMT (var), 0, TDF_SLIM);
707 fprintf (f, "\n");
709 fprintf (f, "\n");
713 #ifdef ENABLE_CHECKING
714 /* Dump the status of the various tables in the expression table. This is used
715 exclusively to debug TER. F is the place to send debug info and T is the
716 table being debugged. */
718 DEBUG_FUNCTION void
719 debug_ter (FILE *f, temp_expr_table_p t)
721 unsigned x, y;
722 bitmap_iterator bi;
724 fprintf (f, "\nDumping current state of TER\n virtual partition = %d\n",
725 VIRTUAL_PARTITION (t));
726 if (t->replaceable_expressions)
727 dump_replaceable_exprs (f, t->replaceable_expressions);
728 fprintf (f, "Currently tracking the following expressions:\n");
730 for (x = 1; x < num_ssa_names; x++)
731 if (t->expr_decl_uids[x])
733 print_generic_expr (f, ssa_name (x), TDF_SLIM);
734 fprintf (f, " dep-parts : ");
735 if (t->partition_dependencies[x]
736 && !bitmap_empty_p (t->partition_dependencies[x]))
738 EXECUTE_IF_SET_IN_BITMAP (t->partition_dependencies[x], 0, y, bi)
739 fprintf (f, "P%d ",y);
741 fprintf (f, " basedecls: ");
742 EXECUTE_IF_SET_IN_BITMAP (t->expr_decl_uids[x], 0, y, bi)
743 fprintf (f, "%d ",y);
744 fprintf (f, " call_cnt : %d",t->call_cnt[x]);
745 fprintf (f, "\n");
748 bitmap_print (f, t->partition_in_use, "Partitions in use ",
749 "\npartition KILL lists:\n");
751 for (x = 0; x <= num_var_partitions (t->map); x++)
752 if (t->kill_list[x])
754 fprintf (f, "Partition %d : ", x);
755 EXECUTE_IF_SET_IN_BITMAP (t->kill_list[x], 0, y, bi)
756 fprintf (f, "_%d ",y);
759 fprintf (f, "\n----------\n");
761 #endif