OSDN Git Service

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