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