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