OSDN Git Service

* cgraphunit.c, config/i386/i386.c, config/ia64/ia64.c, cse.c,
[pf3gnuchains/gcc-fork.git] / gcc / tree-ssa-ter.c
1 /* Routines for performing Temporary Expression Replacement (TER) in SSA trees.
2    Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3    Contributed by Andrew MacLeod  <amacleod@redhat.com>
4
5 This file is part of GCC.
6
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 2, or (at your option)
10 any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.  */
21
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "diagnostic.h"
29 #include "bitmap.h"
30 #include "tree-flow.h"
31 #include "tree-dump.h"
32 #include "tree-ssa-live.h"
33
34
35 /* Temporary Expression Replacement (TER)
36
37    Replace SSA version variables during out-of-ssa with their defining
38    expression if there is only one use of the variable.  
39
40    This pass is required in order for the RTL expansion pass to see larger
41    chunks of code.  This allows it to make better choices on RTL pattern
42    selection.  When expand is rewritten and merged with out-of-ssa, and
43    understands SSA, this should be eliminated.  
44
45    A pass is made through the function, one block at a time.  No cross block
46    information is tracked.
47
48    Variables which only have one use, and whose defining stmt is considered
49    a replaceable expression (see is_replaceable_p) are tracked to see whether
50    they can be replaced at their use location.  
51    
52    n_12 = C * 10
53    a_2 = b_5 + 6
54    v_9 = a_2 * n_12
55
56    if there are the only use of n_12 and a_2, TER will substitute in their
57    expressions in v_9, and end up with:
58
59    v_9 = (b_5 + 6) * (C * 10)
60
61    which will then have the ssa_name assigned to regular variables, and the
62    resulting code which will be passed ot the expander looks something like:
63
64    v = (b + 6) * (C * 10)
65
66    
67    This requires ensuring that none of the variables used by the expression 
68    change between the def point and where it is used.  Furthermore, if any 
69    of the ssa_names used in this expression are themselves replaceable, we 
70    have to ensure none of that expressions' arguments change either.  
71    Although SSA_NAMES themselves don't change, this pass is performed after 
72    coalescing has coalesced different SSA_NAMES together, so there could be a 
73    definition of an SSA_NAME which is coalesced with a use that causes a
74    problem.  ie
75    
76    PHI b_5 = <b_8(2), b_14(1)>
77    <...>
78    a_2 = b_5 + 6
79    b_8 = c_4 + 4
80    v_9 = a_2 * n_12
81    <...>
82
83    If b_5, b_8 and b_14 are all coalesced together...
84    The expression b_5 + 6 CANNOT replace the use in the statement defining v_9
85    because b_8 is in fact killing the value of b_5 since they share a partition
86    and will be assigned the same memory or register location.
87    
88    TER implements this but stepping through the instructions in a block and
89    tracking potential expressions for replacement, and the partitions they are
90    dependent on.  Expressions are represented by the SSA_NAME_VERSION of the
91    DEF on the LHS of a GIMPLE_MODIFY_STMT and the expression is the RHS.
92
93    When a stmt is determined to be a possible replacement expression, the
94    following steps are taken:
95
96    EXPR_DECL_UID bitmap is allocated and set to the base variable UID of the 
97    def and any uses in the expression.  non-NULL means the expression is being 
98    tracked.  The UID's themselves are used to prevent TER substitution into
99    accumulating sequences.
100    ie
101    x = x + y
102    x = x + z
103    x = x + w
104    etc.
105    this can result in very large expressions which don't accomplish anything
106    see PR tree-optimization/17549.  
107
108    PARTITION_DEPENDENCIES is another bitmap array, and it has a bit set for any 
109    partition which is used in the expression.  This is primarily used to remove
110    an expression from the partition kill lists when a decision is made whether
111    to replace it or not.  This is indexed by ssa version number as well, and
112    indicates a partition number.  virtual operands are not tracked individually,
113    but they are summarized by an artificial partition called VIRTUAL_PARTITION.
114    This means a MAY or MUST def will kill *ALL* expressions that are dependent
115    on a virtual operand.
116    Note that the EXPR_DECL_UID and this bitmap represent very similar 
117    information, but the info in one is not easy to obtain from the other.
118
119    KILL_LIST is yet another bitmap array, this time it is indexed by partition
120    number, and represents a list of active expressions which will will no 
121    longer be valid if a definition into this partition takes place.
122
123    PARTITION_IN_USE is simply a bitmap which is used to track which partitions
124    currently have something in their kill list.  This is used at the end of 
125    a block to clear out the KILL_LIST bitmaps at the end of each block.
126
127    NEW_REPLACEABLE_DEPENDENCIES is used as a temporary place to store 
128    dependencies which will be reused by the current definition. ALl the uses
129    on an expression are processed before anything else is done. If a use is
130    determined to be a replaceable expression AND the current stmt is also going
131    to be replaceable, all the dependencies of this replaceable use will be
132    picked up by the current stmt's expression. Rather than recreate them, they
133    are simply copied here and then copied into the new expression when it is
134    processed.
135
136    a_2 = b_5 + 6
137    v_8 = a_2 + c_4
138
139    a_2's expression 'b_5 + 6' is determined to be replaceable at the use 
140    location. It is dependent on the partition 'b_5' is in. This is cached into
141    the NEW_REPLACEABLE_DEPENDENCIES bitmap. and when v_8 is examined for
142    replaceablility, it is a candidate, and it is dependent on the partition 
143    b_5 is in *NOT* a_2, as well as c_4's partition.
144
145    if v_8 is also replaceable:
146
147    x_9 = v_8 * 5
148
149    x_9 is dependent on partitions b_5, and c_4
150    
151    if a statement is found which has either of those partitions written to 
152    before x_9 is used, then x_9 itself is NOT replaceable.  */
153
154
155 /* Temporary Expression Replacement (TER) table information.  */
156
157 typedef struct temp_expr_table_d 
158 {
159   var_map map;
160   bitmap *partition_dependencies;       /* Partitions expr is dependent on.  */
161   tree *replaceable_expressions;        /* Replacement expression table.  */
162   bitmap *expr_decl_uids;               /* Base uids of exprs.  */
163   bitmap *kill_list;                    /* Expr's killed by a partition.  */
164   int virtual_partition;                /* Pseudo partition for virtual ops.  */
165   bitmap partition_in_use;              /* Partitions with kill entries.  */
166   bitmap new_replaceable_dependencies;  /* Holding place for pending dep's.  */
167   int *num_in_part;                     /* # of ssa_names in a partition.  */
168 } *temp_expr_table_p;
169
170 /* Used to indicate a dependency on VDEFs.  */
171 #define VIRTUAL_PARTITION(table)        (table->virtual_partition)
172
173 #ifdef ENABLE_CHECKING
174 extern void debug_ter (FILE *, temp_expr_table_p);
175 #endif
176
177
178 /* Create a new TER table for MAP.  */
179
180 static temp_expr_table_p
181 new_temp_expr_table (var_map map)
182 {
183   temp_expr_table_p t;
184   unsigned x;
185
186   t = XNEW (struct temp_expr_table_d);
187   t->map = map;
188
189   t->partition_dependencies = XCNEWVEC (bitmap, num_ssa_names + 1);
190   t->expr_decl_uids = XCNEWVEC (bitmap, num_ssa_names + 1);
191   t->kill_list = XCNEWVEC (bitmap, num_var_partitions (map) + 1);
192
193   t->partition_in_use = BITMAP_ALLOC (NULL);
194
195   t->virtual_partition = num_var_partitions (map);
196   t->new_replaceable_dependencies = BITMAP_ALLOC (NULL);
197
198   t->replaceable_expressions = NULL;
199   t->num_in_part = XCNEWVEC (int, num_var_partitions (map));
200   for (x = 1; x < num_ssa_names; x++)
201     {
202       int p;
203       tree name = ssa_name (x);
204       if (!name)
205         continue;
206       p = var_to_partition (map, name);
207       if (p != NO_PARTITION)
208         t->num_in_part[p]++;
209     }
210
211   return t;
212 }
213
214
215 /* Free TER table T.  If there are valid replacements, return the expression 
216    vector.  */
217
218 static tree *
219 free_temp_expr_table (temp_expr_table_p t)
220 {
221   tree *ret = NULL;
222   unsigned i;
223
224 #ifdef ENABLE_CHECKING
225   unsigned x;
226   for (x = 0; x <= num_var_partitions (t->map); x++)
227     gcc_assert (!t->kill_list[x]);
228 #endif
229
230   BITMAP_FREE (t->partition_in_use);
231
232   for (i = 0; i <= num_ssa_names; i++)
233     if (t->expr_decl_uids[i])
234       BITMAP_FREE (t->expr_decl_uids[i]);
235   free (t->expr_decl_uids);
236
237   free (t->kill_list);
238   free (t->partition_dependencies);
239
240   if (t->replaceable_expressions)
241     ret = t->replaceable_expressions;
242
243   free (t);
244   return ret;
245 }
246
247
248 /* Return TRUE if VERSION is to be replaced by an expression in TAB.  */
249
250 static inline bool
251 version_to_be_replaced_p (temp_expr_table_p tab, int version)
252 {
253   if (!tab->replaceable_expressions)
254     return false;
255   return tab->replaceable_expressions[version] != NULL_TREE;
256 }
257
258
259 /* Add partition P to the list if partitions VERSION is dependent on.  TAB is 
260    the expression table */
261
262 static inline void
263 make_dependent_on_partition (temp_expr_table_p tab, int version, int p)
264 {
265   if (!tab->partition_dependencies[version])
266     tab->partition_dependencies[version] = BITMAP_ALLOC (NULL);
267
268   bitmap_set_bit (tab->partition_dependencies[version], p);
269 }
270
271
272 /* Add VER to the kill list for P.  TAB is the expression table */
273
274 static inline void
275 add_to_partition_kill_list (temp_expr_table_p tab, int p, int ver)
276 {
277   if (!tab->kill_list[p])
278     {
279       tab->kill_list[p] = BITMAP_ALLOC (NULL);
280       bitmap_set_bit (tab->partition_in_use, p);
281     }
282   bitmap_set_bit (tab->kill_list[p], ver);
283 }
284
285
286 /* Remove VER from the partition kill list for P.  TAB is the expression 
287    table.  */
288
289 static inline void 
290 remove_from_partition_kill_list (temp_expr_table_p tab, int p, int version)
291 {
292 #ifdef ENABLE_CHECKING
293   gcc_assert (tab->kill_list[p]);
294 #endif
295   bitmap_clear_bit (tab->kill_list[p], version);
296   if (bitmap_empty_p (tab->kill_list[p]))
297     {
298       bitmap_clear_bit (tab->partition_in_use, p);
299       BITMAP_FREE (tab->kill_list[p]);
300     }
301 }
302
303
304 /* Add a dependency between the def of ssa VERSION and VAR.  If VAR is 
305    replaceable by an expression, add a dependence each of the elements of the 
306    expression.  These are contained in the new_replaceable list.  TAB is the
307    expression table.  */
308
309 static void
310 add_dependence (temp_expr_table_p tab, int version, tree var)
311 {
312   int i;
313   bitmap_iterator bi;
314   unsigned x;
315
316   i = SSA_NAME_VERSION (var);
317   if (version_to_be_replaced_p (tab, i))
318     {
319       if (!bitmap_empty_p (tab->new_replaceable_dependencies))
320         {
321           /* Version will now be killed by a write to any partition the 
322              substituted expression would have been killed by.  */
323           EXECUTE_IF_SET_IN_BITMAP (tab->new_replaceable_dependencies, 0, x, bi)
324             add_to_partition_kill_list (tab, x, version);
325
326           /* Rather than set partition_dependencies and in_use lists bit by 
327              bit, simply OR in the new_replaceable_dependencies bits.  */
328           if (!tab->partition_dependencies[version])
329             tab->partition_dependencies[version] = BITMAP_ALLOC (NULL);
330           bitmap_ior_into (tab->partition_dependencies[version], 
331                            tab->new_replaceable_dependencies);
332           bitmap_ior_into (tab->partition_in_use, 
333                            tab->new_replaceable_dependencies);
334           /* It is only necessary to add these once.  */
335           bitmap_clear (tab->new_replaceable_dependencies);
336         }
337     }
338   else
339     {
340       i = var_to_partition (tab->map, var);
341 #ifdef ENABLE_CHECKING
342       gcc_assert (i != NO_PARTITION);
343       gcc_assert (tab->num_in_part[i] != 0);
344 #endif
345       /* Only dependencies on ssa_names which are coalesced with something need
346          to be tracked.  Partitions with containing only a single SSA_NAME
347          *cannot* have their value changed.  */
348       if (tab->num_in_part[i] > 1)
349         {
350           add_to_partition_kill_list (tab, i, version);
351           make_dependent_on_partition (tab, version, i);
352         }
353     }
354 }
355
356
357 /* Return TRUE if expression STMT is suitable for replacement.  */
358
359 static inline bool
360 is_replaceable_p (tree stmt)
361 {
362   tree call_expr;
363   use_operand_p use_p;
364   tree def, use_stmt;
365
366   /* Only consider modify stmts.  */
367   if (TREE_CODE (stmt) != GIMPLE_MODIFY_STMT)
368     return false;
369
370   /* Punt if there is more than 1 def.  */
371   def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
372   if (!def)
373     return false;
374
375   /* Only consider definitions which have a single use.  */
376   if (!single_imm_use (def, &use_p, &use_stmt))
377     return false;
378
379   /* If the use isn't in this block, it wont be replaced either.  */
380   if (bb_for_stmt (use_stmt) != bb_for_stmt (stmt))
381     return false;
382
383   /* Used in this block, but at the TOP of the block, not the end.  */
384   if (TREE_CODE (use_stmt) == PHI_NODE)
385     return false;
386
387   /* There must be no VDEFs.  */
388   if (!(ZERO_SSA_OPERANDS (stmt, SSA_OP_VDEF)))
389     return false;
390
391   /* Float expressions must go through memory if float-store is on.  */
392   if (flag_float_store 
393       && FLOAT_TYPE_P (TREE_TYPE (GENERIC_TREE_OPERAND (stmt, 1))))
394     return false;
395
396   /* Calls to functions with side-effects cannot be replaced.  */
397   if ((call_expr = get_call_expr_in (stmt)) != NULL_TREE)
398     {
399       int call_flags = call_expr_flags (call_expr);
400       if (TREE_SIDE_EFFECTS (call_expr)
401           && !(call_flags & (ECF_PURE | ECF_CONST | ECF_NORETURN)))
402         return false;
403     }
404
405   /* Leave any stmt with voltile operands alone as well.  */
406   if (stmt_ann (stmt)->has_volatile_ops)
407     return false;
408   
409
410   return true;
411 }
412
413
414 /* This function will remove the expression for VERSION from replacement 
415    consideration in table TAB.  If FREE_EXPR is true, then remove the 
416    expression from consideration as well by freeing the decl uid bitmap.  */
417
418 static void
419 finished_with_expr (temp_expr_table_p tab, int version, bool free_expr)
420 {
421   unsigned i;
422   bitmap_iterator bi;
423
424   /* Remove this expression from its dependent lists.  The partition dependence
425      list is retained and transfered later to whomever uses this version.  */
426   if (tab->partition_dependencies[version])
427     {
428       EXECUTE_IF_SET_IN_BITMAP (tab->partition_dependencies[version], 0, i, bi)
429         remove_from_partition_kill_list (tab, i, version);
430       BITMAP_FREE (tab->partition_dependencies[version]);
431     }
432   if (free_expr)
433     BITMAP_FREE (tab->expr_decl_uids[version]);
434 }
435
436
437 /* Create an expression entry fora replaceable expression.  */
438
439 static void 
440 process_replaceable (temp_expr_table_p tab, tree stmt)
441 {
442   tree var, def, basevar;
443   int version;
444   ssa_op_iter iter;
445   bitmap def_vars, use_vars;
446
447 #ifdef ENABLE_CHECKING
448   gcc_assert (is_replaceable_p (stmt));
449 #endif
450
451   def = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
452   version = SSA_NAME_VERSION (def);
453   basevar = SSA_NAME_VAR (def);
454   def_vars = BITMAP_ALLOC (NULL);
455
456   bitmap_set_bit (def_vars, DECL_UID (basevar));
457
458   /* Add this expression to the dependency list for each use partition.  */
459   FOR_EACH_SSA_TREE_OPERAND (var, stmt, iter, SSA_OP_USE)
460     {
461       int var_version = SSA_NAME_VERSION (var);
462
463       use_vars = tab->expr_decl_uids[var_version];
464       add_dependence (tab, version, var);
465       if (use_vars)
466         {
467           bitmap_ior_into (def_vars, use_vars);
468           BITMAP_FREE (tab->expr_decl_uids[var_version]);
469         }
470       else
471         bitmap_set_bit (def_vars, DECL_UID (SSA_NAME_VAR (var)));
472     }
473   tab->expr_decl_uids[version] = def_vars;
474
475   /* If there are VUSES, add a dependence on virtual defs.  */
476   if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_VUSE))
477     {
478       make_dependent_on_partition (tab, version, VIRTUAL_PARTITION (tab));
479       add_to_partition_kill_list (tab, VIRTUAL_PARTITION (tab), version);
480     }
481 }
482
483
484 /* This function removes any expression in TAB which is dependent on PARTITION
485    from consideration, making it not replaceable.  */
486
487 static inline void
488 kill_expr (temp_expr_table_p tab, int partition)
489 {
490   unsigned version;
491
492   /* Mark every active expr dependent on this var as not replaceable.  
493      finished_with_expr can modify the bitmap, so we can't execute over it.  */
494   while (tab->kill_list[partition])
495     {
496       version = bitmap_first_set_bit (tab->kill_list[partition]);
497       finished_with_expr (tab, version, true);
498     }
499
500 #ifdef ENABLE_CHECKING
501   gcc_assert (!tab->kill_list[partition]);
502 #endif
503 }
504
505
506 /* This function kills all expressions in TAB which are dependent on virtual 
507    partitions.  */
508
509 static inline void
510 kill_virtual_exprs (temp_expr_table_p tab)
511 {
512   kill_expr (tab, VIRTUAL_PARTITION (tab));
513 }
514
515
516 /* Mark the expression associated with VAR as replaceable, and enter
517    the defining stmt into the partition_dependencies table TAB.  if
518    MORE_REPLACING is true, accumulate the pending partition dependencies.  */
519
520 static void
521 mark_replaceable (temp_expr_table_p tab, tree var, bool more_replacing)
522 {
523   int version = SSA_NAME_VERSION (var);
524
525   /* Move the dependence list to the pending listpending.  */
526   if (more_replacing && tab->partition_dependencies[version])
527     bitmap_ior_into (tab->new_replaceable_dependencies, 
528                      tab->partition_dependencies[version]);
529
530   finished_with_expr (tab, version, !more_replacing);
531
532   /* Set the replaceable expression.  */
533   if (!tab->replaceable_expressions)
534     tab->replaceable_expressions = XCNEWVEC (tree, num_ssa_names + 1);
535   tab->replaceable_expressions[version] = SSA_NAME_DEF_STMT (var);
536 }
537
538
539 /* This function processes basic block BB, and looks for variables which can
540    be replaced by their expressions.  Results are stored in the table TAB.  */
541
542 static void
543 find_replaceable_in_bb (temp_expr_table_p tab, basic_block bb)
544 {
545   block_stmt_iterator bsi;
546   tree stmt, def, use;
547   stmt_ann_t ann;
548   int partition;
549   var_map map = tab->map;
550   ssa_op_iter iter;
551   bool stmt_replaceable;
552
553   for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
554     {
555       stmt = bsi_stmt (bsi);
556       ann = stmt_ann (stmt);
557
558       stmt_replaceable = is_replaceable_p (stmt);
559       /* Determine if this stmt finishes an existing expression.  */
560       FOR_EACH_SSA_TREE_OPERAND (use, stmt, iter, SSA_OP_USE)
561         {
562           unsigned ver = SSA_NAME_VERSION (use);
563
564           /* If this use is a potential replacement variable, process it.  */
565           if (tab->expr_decl_uids[ver])
566             {
567               bool same_root_var = false;
568               ssa_op_iter iter2;
569               bitmap vars = tab->expr_decl_uids[ver];
570
571               /* See if the root variables are the same.  If they are, we
572                  do not want to do the replacement to avoid problems with
573                  code size, see PR tree-optimization/17549.  */
574               if (!bitmap_empty_p (vars))
575                 FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter2, SSA_OP_DEF)
576                   {
577                     if (bitmap_bit_p (vars, DECL_UID (SSA_NAME_VAR (def))))
578                       {
579                         same_root_var = true;
580                         break;
581                       }
582                   }
583
584               /* Mark expression as replaceable unless stmt is volatile or the 
585                  def variable has the same root variable as something in the 
586                  substitution list.  */
587               if (ann->has_volatile_ops || same_root_var)
588                 finished_with_expr (tab, ver, true);
589               else
590                 mark_replaceable (tab, use, stmt_replaceable);
591             }
592         }
593       
594       /* Next, see if this stmt kills off an active expression.  */
595       FOR_EACH_SSA_TREE_OPERAND (def, stmt, iter, SSA_OP_DEF)
596         {
597           partition = var_to_partition (map, def);
598           if (partition != NO_PARTITION && tab->kill_list[partition])
599             kill_expr (tab, partition);
600         }
601
602       /* Now see if we are creating a new expression or not.  */
603       if (stmt_replaceable)
604         process_replaceable (tab, stmt);
605
606       /* Free any unused dependency lists.  */
607       bitmap_clear (tab->new_replaceable_dependencies);
608
609       /* A V_{MAY,MUST}_DEF kills any expression using a virtual operand,
610          including the current stmt.  */
611       if (!ZERO_SSA_OPERANDS (stmt, SSA_OP_VIRTUAL_DEFS))
612         kill_virtual_exprs (tab);
613     }
614 }
615
616
617 /* This function is the driver routine for replacement of temporary expressions
618    in the SSA->normal phase, operating on MAP.  If there are replaceable 
619    expressions, a table is returned which maps SSA versions to the 
620    expressions they should be replaced with.  A NULL_TREE indicates no 
621    replacement should take place.  If there are no replacements at all, 
622    NULL is returned by the function, otherwise an expression vector indexed
623    by SSA_NAME version numbers.  */
624
625 extern tree *
626 find_replaceable_exprs (var_map map)
627 {
628   basic_block bb;
629   temp_expr_table_p table;
630   tree *ret;
631
632   table = new_temp_expr_table (map);
633   FOR_EACH_BB (bb)
634     {
635       find_replaceable_in_bb (table, bb);
636       gcc_assert (bitmap_empty_p (table->partition_in_use));
637
638 #ifdef ENABLE_CHECKING
639       {
640         unsigned i;
641         /* Make sure all the tables have been cleared out.  */
642         for (i = 0; i < num_ssa_names + 1; i++)
643           {
644             gcc_assert (table->partition_dependencies[i] == NULL);
645             gcc_assert (table->expr_decl_uids[i] == NULL);
646             if (i < num_var_partitions (map))
647               gcc_assert (table->kill_list[i] == NULL);
648           }
649       }
650 #endif
651     }
652
653   ret = free_temp_expr_table (table);
654   return ret;
655 }
656
657
658 /* Dump TER expression table EXPR to file F.  */
659
660 extern void
661 dump_replaceable_exprs (FILE *f, tree *expr)
662 {
663   tree stmt, var;
664   int x;
665
666   fprintf (f, "\nReplacing Expressions\n");
667   for (x = 0; x < (int)num_ssa_names; x++)
668     if (expr[x])
669       {
670         stmt = expr[x];
671         var = SINGLE_SSA_TREE_OPERAND (stmt, SSA_OP_DEF);
672         gcc_assert (var != NULL_TREE);
673         print_generic_expr (f, var, TDF_SLIM);
674         fprintf (f, " replace with --> ");
675         print_generic_expr (f, GENERIC_TREE_OPERAND (stmt, 1),
676                             TDF_SLIM);
677         fprintf (f, "\n");
678       }
679   fprintf (f, "\n");
680 }
681
682
683 #ifdef ENABLE_CHECKING
684 /* Dump the status of the various tables in the expression table.  This is used
685    exclusively to debug TER.  F is the place to send debug info and T is the
686    table being debugged.  */
687
688 extern void
689 debug_ter (FILE *f, temp_expr_table_p t)
690 {
691   unsigned x, y;
692   bitmap_iterator bi;
693
694   fprintf (f, "\nDumping current state of TER\n virtual partition = %d\n", 
695            VIRTUAL_PARTITION (t));
696   if (t->replaceable_expressions)
697     dump_replaceable_exprs (f, t->replaceable_expressions);
698   fprintf (f, "Currently tracking the following expressions:\n");
699
700   for (x = 1; x < num_ssa_names; x++)
701     if (t->expr_decl_uids[x])
702       {
703         print_generic_expr (stderr, ssa_name (x), TDF_SLIM);
704         fprintf (f, " dep-parts : ");
705         if (t->partition_dependencies[x] 
706             && !bitmap_empty_p (t->partition_dependencies[x]))
707           {
708             EXECUTE_IF_SET_IN_BITMAP (t->partition_dependencies[x], 0, y, bi)
709               fprintf (f, "P%d ",y);
710           }
711         fprintf (stderr, "   basedecls: ");
712         EXECUTE_IF_SET_IN_BITMAP (t->expr_decl_uids[x], 0, y, bi)
713           fprintf (f, "%d ",y);
714         fprintf (stderr, "\n");
715       }
716
717   bitmap_print (f, t->partition_in_use, "Partitions in use ", 
718                 "\npartition KILL lists:\n");
719
720   for (x = 0; x <= num_var_partitions (t->map); x++)
721     if (t->kill_list[x])
722       {
723         fprintf (f, "Partition %d : ", x);
724         EXECUTE_IF_SET_IN_BITMAP (t->kill_list[x], 0, y, bi)
725           fprintf (f, "_%d ",y);
726       }
727
728   fprintf (f, "\n----------\n");
729 }
730 #endif