1 /* SSA Dominator optimizations for trees
2 Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
24 #include "coretypes.h"
31 #include "basic-block.h"
36 #include "diagnostic.h"
38 #include "tree-dump.h"
39 #include "tree-flow.h"
42 #include "tree-pass.h"
43 #include "tree-ssa-propagate.h"
44 #include "langhooks.h"
46 /* This file implements optimizations on the dominator tree. */
48 /* Hash table with expressions made available during the renaming process.
49 When an assignment of the form X_i = EXPR is found, the statement is
50 stored in this table. If the same expression EXPR is later found on the
51 RHS of another statement, it is replaced with X_i (thus performing
52 global redundancy elimination). Similarly as we pass through conditionals
53 we record the conditional itself as having either a true or false value
55 static htab_t avail_exprs
;
57 /* Stack of available expressions in AVAIL_EXPRs. Each block pushes any
58 expressions it enters into the hash table along with a marker entry
59 (null). When we finish processing the block, we pop off entries and
60 remove the expressions from the global hash table until we hit the
62 static varray_type avail_exprs_stack
;
64 /* Stack of trees used to restore the global currdefs to its original
65 state after completing optimization of a block and its dominator children.
67 An SSA_NAME indicates that the current definition of the underlying
68 variable should be set to the given SSA_NAME.
70 A _DECL node indicates that the underlying variable has no current
73 A NULL node is used to mark the last node associated with the
75 varray_type block_defs_stack
;
77 /* Stack of statements we need to rescan during finalization for newly
80 Statement rescanning must occur after the current block's available
81 expressions are removed from AVAIL_EXPRS. Else we may change the
82 hash code for an expression and be unable to find/remove it from
84 varray_type stmts_to_rescan
;
86 /* Structure for entries in the expression hash table.
88 This requires more memory for the hash table entries, but allows us
89 to avoid creating silly tree nodes and annotations for conditionals,
90 eliminates 2 global hash tables and two block local varrays.
92 It also allows us to reduce the number of hash table lookups we
93 have to perform in lookup_avail_expr and finally it allows us to
94 significantly reduce the number of calls into the hashing routine
99 /* The value (lhs) of this expression. */
102 /* The expression (rhs) we want to record. */
105 /* The annotation if this element corresponds to a statement. */
108 /* The hash value for RHS/ann. */
112 /* Stack of dest,src pairs that need to be restored during finalization.
114 A NULL entry is used to mark the end of pairs which need to be
115 restored during finalization of this block. */
116 static varray_type const_and_copies_stack
;
118 /* Bitmap of SSA_NAMEs known to have a nonzero value, even if we do not
119 know their exact value. */
120 static bitmap nonzero_vars
;
122 /* Stack of SSA_NAMEs which need their NONZERO_VARS property cleared
123 when the current block is finalized.
125 A NULL entry is used to mark the end of names needing their
126 entry in NONZERO_VARS cleared during finalization of this block. */
127 static varray_type nonzero_vars_stack
;
129 /* Track whether or not we have changed the control flow graph. */
130 static bool cfg_altered
;
132 /* Bitmap of blocks that have had EH statements cleaned. We should
133 remove their dead edges eventually. */
134 static bitmap need_eh_cleanup
;
136 /* Statistics for dominator optimizations. */
140 long num_exprs_considered
;
144 static struct opt_stats_d opt_stats
;
146 /* Value range propagation record. Each time we encounter a conditional
147 of the form SSA_NAME COND CONST we create a new vrp_element to record
148 how the condition affects the possible values SSA_NAME may have.
150 Each record contains the condition tested (COND), and the the range of
151 values the variable may legitimately have if COND is true. Note the
152 range of values may be a smaller range than COND specifies if we have
153 recorded other ranges for this variable. Each record also contains the
154 block in which the range was recorded for invalidation purposes.
156 Note that the current known range is computed lazily. This allows us
157 to avoid the overhead of computing ranges which are never queried.
159 When we encounter a conditional, we look for records which constrain
160 the SSA_NAME used in the condition. In some cases those records allow
161 us to determine the condition's result at compile time. In other cases
162 they may allow us to simplify the condition.
164 We also use value ranges to do things like transform signed div/mod
165 operations into unsigned div/mod or to simplify ABS_EXPRs.
167 Simple experiments have shown these optimizations to not be all that
168 useful on switch statements (much to my surprise). So switch statement
169 optimizations are not performed.
171 Note carefully we do not propagate information through each statement
172 in the block. i.e., if we know variable X has a value defined of
173 [0, 25] and we encounter Y = X + 1, we do not track a value range
174 for Y (which would be [1, 26] if we cared). Similarly we do not
175 constrain values as we encounter narrowing typecasts, etc. */
179 /* The highest and lowest values the variable in COND may contain when
180 COND is true. Note this may not necessarily be the same values
181 tested by COND if the same variable was used in earlier conditionals.
183 Note this is computed lazily and thus can be NULL indicating that
184 the values have not been computed yet. */
188 /* The actual conditional we recorded. This is needed since we compute
192 /* The basic block where this record was created. We use this to determine
193 when to remove records. */
197 /* A hash table holding value range records (VRP_ELEMENTs) for a given
198 SSA_NAME. We used to use a varray indexed by SSA_NAME_VERSION, but
199 that gets awful wasteful, particularly since the density objects
200 with useful information is very low. */
201 static htab_t vrp_data
;
203 /* An entry in the VRP_DATA hash table. We record the variable and a
204 varray of VRP_ELEMENT records associated with that variable. */
212 /* Array of variables which have their values constrained by operations
213 in this basic block. We use this during finalization to know
214 which variables need their VRP data updated. */
216 /* Stack of SSA_NAMEs which had their values constrainted by operations
217 in this basic block. During finalization of this block we use this
218 list to determine which variables need their VRP data updated.
220 A NULL entry marks the end of the SSA_NAMEs associated with this block. */
221 static varray_type vrp_variables_stack
;
229 /* Local functions. */
230 static void optimize_stmt (struct dom_walk_data
*,
232 block_stmt_iterator
);
233 static tree
lookup_avail_expr (tree
, bool);
234 static struct eq_expr_value
get_eq_expr_value (tree
, int, basic_block
);
235 static hashval_t
vrp_hash (const void *);
236 static int vrp_eq (const void *, const void *);
237 static hashval_t
avail_expr_hash (const void *);
238 static hashval_t
real_avail_expr_hash (const void *);
239 static int avail_expr_eq (const void *, const void *);
240 static void htab_statistics (FILE *, htab_t
);
241 static void record_cond (tree
, tree
);
242 static void record_dominating_conditions (tree
);
243 static void record_const_or_copy (tree
, tree
);
244 static void record_equality (tree
, tree
);
245 static tree
update_rhs_and_lookup_avail_expr (tree
, tree
, bool);
246 static tree
simplify_rhs_and_lookup_avail_expr (struct dom_walk_data
*,
248 static tree
simplify_cond_and_lookup_avail_expr (tree
, stmt_ann_t
, int);
249 static tree
simplify_switch_and_lookup_avail_expr (tree
, int);
250 static tree
find_equivalent_equality_comparison (tree
);
251 static void record_range (tree
, basic_block
);
252 static bool extract_range_from_cond (tree
, tree
*, tree
*, int *);
253 static void record_equivalences_from_phis (struct dom_walk_data
*, basic_block
);
254 static void record_equivalences_from_incoming_edge (struct dom_walk_data
*,
256 static bool eliminate_redundant_computations (struct dom_walk_data
*,
258 static void record_equivalences_from_stmt (tree
, int, stmt_ann_t
);
259 static void thread_across_edge (struct dom_walk_data
*, edge
);
260 static void dom_opt_finalize_block (struct dom_walk_data
*, basic_block
);
261 static void dom_opt_initialize_block (struct dom_walk_data
*, basic_block
);
262 static void cprop_into_phis (struct dom_walk_data
*, basic_block
);
263 static void remove_local_expressions_from_table (void);
264 static void restore_vars_to_original_value (void);
265 static void restore_currdefs_to_original_value (void);
266 static void register_definitions_for_stmt (tree
);
267 static edge
single_incoming_edge_ignoring_loop_edges (basic_block
);
268 static void restore_nonzero_vars_to_original_value (void);
270 /* Local version of fold that doesn't introduce cruft. */
277 /* Strip away useless type conversions. Both the NON_LVALUE_EXPR that
278 may have been added by fold, and "useless" type conversions that might
279 now be apparent due to propagation. */
280 STRIP_USELESS_TYPE_CONVERSION (t
);
285 /* Jump threading, redundancy elimination and const/copy propagation.
287 This pass may expose new symbols that need to be renamed into SSA. For
288 every new symbol exposed, its corresponding bit will be set in
292 tree_ssa_dominator_optimize (void)
294 struct dom_walk_data walk_data
;
297 memset (&opt_stats
, 0, sizeof (opt_stats
));
299 for (i
= 0; i
< num_referenced_vars
; i
++)
300 var_ann (referenced_var (i
))->current_def
= NULL
;
302 /* Mark loop edges so we avoid threading across loop boundaries.
303 This may result in transforming natural loop into irreducible
305 mark_dfs_back_edges ();
307 /* Create our hash tables. */
308 avail_exprs
= htab_create (1024, real_avail_expr_hash
, avail_expr_eq
, free
);
309 vrp_data
= htab_create (ceil_log2 (num_ssa_names
), vrp_hash
, vrp_eq
, free
);
310 VARRAY_TREE_INIT (avail_exprs_stack
, 20, "Available expression stack");
311 VARRAY_TREE_INIT (block_defs_stack
, 20, "Block DEFS stack");
312 VARRAY_TREE_INIT (const_and_copies_stack
, 20, "Block const_and_copies stack");
313 VARRAY_TREE_INIT (nonzero_vars_stack
, 20, "Block nonzero_vars stack");
314 VARRAY_TREE_INIT (vrp_variables_stack
, 20, "Block vrp_variables stack");
315 VARRAY_TREE_INIT (stmts_to_rescan
, 20, "Statements to rescan");
316 nonzero_vars
= BITMAP_XMALLOC ();
317 need_eh_cleanup
= BITMAP_XMALLOC ();
319 /* Setup callbacks for the generic dominator tree walker. */
320 walk_data
.walk_stmts_backward
= false;
321 walk_data
.dom_direction
= CDI_DOMINATORS
;
322 walk_data
.initialize_block_local_data
= NULL
;
323 walk_data
.before_dom_children_before_stmts
= dom_opt_initialize_block
;
324 walk_data
.before_dom_children_walk_stmts
= optimize_stmt
;
325 walk_data
.before_dom_children_after_stmts
= cprop_into_phis
;
326 walk_data
.after_dom_children_before_stmts
= NULL
;
327 walk_data
.after_dom_children_walk_stmts
= NULL
;
328 walk_data
.after_dom_children_after_stmts
= dom_opt_finalize_block
;
329 /* Right now we only attach a dummy COND_EXPR to the global data pointer.
330 When we attach more stuff we'll need to fill this out with a real
332 walk_data
.global_data
= NULL
;
333 walk_data
.block_local_data_size
= 0;
335 /* Now initialize the dominator walker. */
336 init_walk_dominator_tree (&walk_data
);
338 calculate_dominance_info (CDI_DOMINATORS
);
340 /* If we prove certain blocks are unreachable, then we want to
341 repeat the dominator optimization process as PHI nodes may
342 have turned into copies which allows better propagation of
343 values. So we repeat until we do not identify any new unreachable
347 /* Optimize the dominator tree. */
350 /* Recursively walk the dominator tree optimizing statements. */
351 walk_dominator_tree (&walk_data
, ENTRY_BLOCK_PTR
);
353 /* If we exposed any new variables, go ahead and put them into
354 SSA form now, before we handle jump threading. This simplifies
355 interactions between rewriting of _DECL nodes into SSA form
356 and rewriting SSA_NAME nodes into SSA form after block
357 duplication and CFG manipulation. */
358 if (bitmap_first_set_bit (vars_to_rename
) >= 0)
360 rewrite_into_ssa (false);
361 bitmap_clear (vars_to_rename
);
364 /* Thread jumps, creating duplicate blocks as needed. */
365 cfg_altered
= thread_through_all_blocks ();
367 /* Removal of statements may make some EH edges dead. Purge
368 such edges from the CFG as needed. */
369 if (bitmap_first_set_bit (need_eh_cleanup
) >= 0)
371 cfg_altered
|= tree_purge_all_dead_eh_edges (need_eh_cleanup
);
372 bitmap_zero (need_eh_cleanup
);
375 free_dominance_info (CDI_DOMINATORS
);
376 cfg_altered
= cleanup_tree_cfg ();
377 calculate_dominance_info (CDI_DOMINATORS
);
379 rewrite_ssa_into_ssa ();
381 /* Reinitialize the various tables. */
382 bitmap_clear (nonzero_vars
);
383 htab_empty (avail_exprs
);
384 htab_empty (vrp_data
);
386 for (i
= 0; i
< num_referenced_vars
; i
++)
387 var_ann (referenced_var (i
))->current_def
= NULL
;
391 /* Debugging dumps. */
392 if (dump_file
&& (dump_flags
& TDF_STATS
))
393 dump_dominator_optimization_stats (dump_file
);
395 /* We emptied the hash table earlier, now delete it completely. */
396 htab_delete (avail_exprs
);
397 htab_delete (vrp_data
);
399 /* It is not necessary to clear CURRDEFS, REDIRECTION_EDGES, VRP_DATA,
400 CONST_AND_COPIES, and NONZERO_VARS as they all get cleared at the bottom
401 of the do-while loop above. */
403 /* And finalize the dominator walker. */
404 fini_walk_dominator_tree (&walk_data
);
406 /* Free nonzero_vars. */
407 BITMAP_XFREE (nonzero_vars
);
408 BITMAP_XFREE (need_eh_cleanup
);
410 /* Finally, remove everything except invariants in SSA_NAME_VALUE.
412 Long term we will be able to let everything in SSA_NAME_VALUE
413 persist. However, for now, we know this is the safe thing to
415 for (i
= 0; i
< num_ssa_names
; i
++)
417 tree name
= ssa_name (i
);
423 value
= SSA_NAME_VALUE (name
);
424 if (value
&& !is_gimple_min_invariant (value
))
425 SSA_NAME_VALUE (name
) = NULL
;
430 gate_dominator (void)
432 return flag_tree_dom
!= 0;
435 struct tree_opt_pass pass_dominator
=
438 gate_dominator
, /* gate */
439 tree_ssa_dominator_optimize
, /* execute */
442 0, /* static_pass_number */
443 TV_TREE_SSA_DOMINATOR_OPTS
, /* tv_id */
444 PROP_cfg
| PROP_ssa
| PROP_alias
, /* properties_required */
445 0, /* properties_provided */
446 0, /* properties_destroyed */
447 0, /* todo_flags_start */
448 TODO_dump_func
| TODO_rename_vars
449 | TODO_verify_ssa
, /* todo_flags_finish */
454 /* We are exiting BB, see if the target block begins with a conditional
455 jump which has a known value when reached via BB. */
458 thread_across_edge (struct dom_walk_data
*walk_data
, edge e
)
460 block_stmt_iterator bsi
;
464 /* Each PHI creates a temporary equivalence, record them. */
465 for (phi
= phi_nodes (e
->dest
); phi
; phi
= PHI_CHAIN (phi
))
467 tree src
= PHI_ARG_DEF_FROM_EDGE (phi
, e
);
468 tree dst
= PHI_RESULT (phi
);
469 record_const_or_copy (dst
, src
);
470 register_new_def (dst
, &block_defs_stack
);
473 for (bsi
= bsi_start (e
->dest
); ! bsi_end_p (bsi
); bsi_next (&bsi
))
475 tree lhs
, cached_lhs
;
477 stmt
= bsi_stmt (bsi
);
479 /* Ignore empty statements and labels. */
480 if (IS_EMPTY_STMT (stmt
) || TREE_CODE (stmt
) == LABEL_EXPR
)
483 /* If this is not a MODIFY_EXPR which sets an SSA_NAME to a new
484 value, then stop our search here. Ideally when we stop a
485 search we stop on a COND_EXPR or SWITCH_EXPR. */
486 if (TREE_CODE (stmt
) != MODIFY_EXPR
487 || TREE_CODE (TREE_OPERAND (stmt
, 0)) != SSA_NAME
)
490 /* At this point we have a statement which assigns an RHS to an
491 SSA_VAR on the LHS. We want to prove that the RHS is already
492 available and that its value is held in the current definition
493 of the LHS -- meaning that this assignment is a NOP when
494 reached via edge E. */
495 if (TREE_CODE (TREE_OPERAND (stmt
, 1)) == SSA_NAME
)
496 cached_lhs
= TREE_OPERAND (stmt
, 1);
498 cached_lhs
= lookup_avail_expr (stmt
, false);
500 lhs
= TREE_OPERAND (stmt
, 0);
502 /* This can happen if we thread around to the start of a loop. */
503 if (lhs
== cached_lhs
)
506 /* If we did not find RHS in the hash table, then try again after
507 temporarily const/copy propagating the operands. */
510 /* Copy the operands. */
511 stmt_ann_t ann
= stmt_ann (stmt
);
512 use_optype uses
= USE_OPS (ann
);
513 vuse_optype vuses
= VUSE_OPS (ann
);
514 tree
*uses_copy
= xcalloc (NUM_USES (uses
), sizeof (tree
));
515 tree
*vuses_copy
= xcalloc (NUM_VUSES (vuses
), sizeof (tree
));
518 /* Make a copy of the uses into USES_COPY, then cprop into
520 for (i
= 0; i
< NUM_USES (uses
); i
++)
524 uses_copy
[i
] = USE_OP (uses
, i
);
525 if (TREE_CODE (USE_OP (uses
, i
)) == SSA_NAME
)
526 tmp
= SSA_NAME_VALUE (USE_OP (uses
, i
));
527 if (tmp
&& TREE_CODE (tmp
) != VALUE_HANDLE
)
528 SET_USE_OP (uses
, i
, tmp
);
531 /* Similarly for virtual uses. */
532 for (i
= 0; i
< NUM_VUSES (vuses
); i
++)
536 vuses_copy
[i
] = VUSE_OP (vuses
, i
);
537 if (TREE_CODE (VUSE_OP (vuses
, i
)) == SSA_NAME
)
538 tmp
= SSA_NAME_VALUE (VUSE_OP (vuses
, i
));
539 if (tmp
&& TREE_CODE (tmp
) != VALUE_HANDLE
)
540 SET_VUSE_OP (vuses
, i
, tmp
);
543 /* Try to lookup the new expression. */
544 cached_lhs
= lookup_avail_expr (stmt
, false);
546 /* Restore the statement's original uses/defs. */
547 for (i
= 0; i
< NUM_USES (uses
); i
++)
548 SET_USE_OP (uses
, i
, uses_copy
[i
]);
550 for (i
= 0; i
< NUM_VUSES (vuses
); i
++)
551 SET_VUSE_OP (vuses
, i
, vuses_copy
[i
]);
556 /* If we still did not find the expression in the hash table,
557 then we can not ignore this statement. */
562 /* If the expression in the hash table was not assigned to an
563 SSA_NAME, then we can not ignore this statement. */
564 if (TREE_CODE (cached_lhs
) != SSA_NAME
)
567 /* If we have different underlying variables, then we can not
568 ignore this statement. */
569 if (SSA_NAME_VAR (cached_lhs
) != SSA_NAME_VAR (lhs
))
572 /* If CACHED_LHS does not represent the current value of the undering
573 variable in CACHED_LHS/LHS, then we can not ignore this statement. */
574 if (var_ann (SSA_NAME_VAR (lhs
))->current_def
!= cached_lhs
)
577 /* If we got here, then we can ignore this statement and continue
578 walking through the statements in the block looking for a threadable
581 We want to record an equivalence lhs = cache_lhs so that if
582 the result of this statement is used later we can copy propagate
584 record_const_or_copy (lhs
, cached_lhs
);
585 register_new_def (lhs
, &block_defs_stack
);
588 /* If we stopped at a COND_EXPR or SWITCH_EXPR, then see if we know which
589 arm will be taken. */
591 && (TREE_CODE (stmt
) == COND_EXPR
592 || TREE_CODE (stmt
) == SWITCH_EXPR
))
594 tree cond
, cached_lhs
;
598 /* Do not forward entry edges into the loop. In the case loop
599 has multiple entry edges we may end up in constructing irreducible
601 ??? We may consider forwarding the edges in the case all incoming
602 edges forward to the same destination block. */
603 if (!e
->flags
& EDGE_DFS_BACK
)
605 FOR_EACH_EDGE (e1
, ei
, e
->dest
->preds
)
606 if (e1
->flags
& EDGE_DFS_BACK
)
612 /* Now temporarily cprop the operands and try to find the resulting
613 expression in the hash tables. */
614 if (TREE_CODE (stmt
) == COND_EXPR
)
615 cond
= COND_EXPR_COND (stmt
);
617 cond
= SWITCH_COND (stmt
);
619 if (COMPARISON_CLASS_P (cond
))
621 tree dummy_cond
, op0
, op1
;
622 enum tree_code cond_code
;
624 op0
= TREE_OPERAND (cond
, 0);
625 op1
= TREE_OPERAND (cond
, 1);
626 cond_code
= TREE_CODE (cond
);
628 /* Get the current value of both operands. */
629 if (TREE_CODE (op0
) == SSA_NAME
)
631 tree tmp
= SSA_NAME_VALUE (op0
);
632 if (tmp
&& TREE_CODE (tmp
) != VALUE_HANDLE
)
636 if (TREE_CODE (op1
) == SSA_NAME
)
638 tree tmp
= SSA_NAME_VALUE (op1
);
639 if (tmp
&& TREE_CODE (tmp
) != VALUE_HANDLE
)
643 /* Stuff the operator and operands into our dummy conditional
644 expression, creating the dummy conditional if necessary. */
645 dummy_cond
= walk_data
->global_data
;
648 dummy_cond
= build (cond_code
, boolean_type_node
, op0
, op1
);
649 dummy_cond
= build (COND_EXPR
, void_type_node
,
650 dummy_cond
, NULL
, NULL
);
651 walk_data
->global_data
= dummy_cond
;
655 TREE_SET_CODE (TREE_OPERAND (dummy_cond
, 0), cond_code
);
656 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 0) = op0
;
657 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 1) = op1
;
660 /* If the conditional folds to an invariant, then we are done,
661 otherwise look it up in the hash tables. */
662 cached_lhs
= local_fold (COND_EXPR_COND (dummy_cond
));
663 if (! is_gimple_min_invariant (cached_lhs
))
664 cached_lhs
= lookup_avail_expr (dummy_cond
, false);
665 if (!cached_lhs
|| ! is_gimple_min_invariant (cached_lhs
))
667 cached_lhs
= simplify_cond_and_lookup_avail_expr (dummy_cond
,
672 /* We can have conditionals which just test the state of a
673 variable rather than use a relational operator. These are
674 simpler to handle. */
675 else if (TREE_CODE (cond
) == SSA_NAME
)
678 cached_lhs
= SSA_NAME_VALUE (cached_lhs
);
679 if (cached_lhs
&& ! is_gimple_min_invariant (cached_lhs
))
683 cached_lhs
= lookup_avail_expr (stmt
, false);
687 edge taken_edge
= find_taken_edge (e
->dest
, cached_lhs
);
688 basic_block dest
= (taken_edge
? taken_edge
->dest
: NULL
);
693 /* If we have a known destination for the conditional, then
694 we can perform this optimization, which saves at least one
695 conditional jump each time it applies since we get to
696 bypass the conditional at our original destination. */
699 update_bb_profile_for_threading (e
->dest
, EDGE_FREQUENCY (e
),
700 e
->count
, taken_edge
);
702 bb_ann (e
->dest
)->incoming_edge_threaded
= true;
709 /* Initialize local stacks for this optimizer and record equivalences
710 upon entry to BB. Equivalences can come from the edge traversed to
711 reach BB or they may come from PHI nodes at the start of BB. */
714 dom_opt_initialize_block (struct dom_walk_data
*walk_data
, basic_block bb
)
716 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
717 fprintf (dump_file
, "\n\nOptimizing block #%d\n\n", bb
->index
);
719 /* Push a marker on the stacks of local information so that we know how
720 far to unwind when we finalize this block. */
721 VARRAY_PUSH_TREE (avail_exprs_stack
, NULL_TREE
);
722 VARRAY_PUSH_TREE (block_defs_stack
, NULL_TREE
);
723 VARRAY_PUSH_TREE (const_and_copies_stack
, NULL_TREE
);
724 VARRAY_PUSH_TREE (nonzero_vars_stack
, NULL_TREE
);
725 VARRAY_PUSH_TREE (vrp_variables_stack
, NULL_TREE
);
727 record_equivalences_from_incoming_edge (walk_data
, bb
);
729 /* PHI nodes can create equivalences too. */
730 record_equivalences_from_phis (walk_data
, bb
);
733 /* Given an expression EXPR (a relational expression or a statement),
734 initialize the hash table element pointed by by ELEMENT. */
737 initialize_hash_element (tree expr
, tree lhs
, struct expr_hash_elt
*element
)
739 /* Hash table elements may be based on conditional expressions or statements.
741 For the former case, we have no annotation and we want to hash the
742 conditional expression. In the latter case we have an annotation and
743 we want to record the expression the statement evaluates. */
744 if (COMPARISON_CLASS_P (expr
) || TREE_CODE (expr
) == TRUTH_NOT_EXPR
)
749 else if (TREE_CODE (expr
) == COND_EXPR
)
751 element
->ann
= stmt_ann (expr
);
752 element
->rhs
= COND_EXPR_COND (expr
);
754 else if (TREE_CODE (expr
) == SWITCH_EXPR
)
756 element
->ann
= stmt_ann (expr
);
757 element
->rhs
= SWITCH_COND (expr
);
759 else if (TREE_CODE (expr
) == RETURN_EXPR
&& TREE_OPERAND (expr
, 0))
761 element
->ann
= stmt_ann (expr
);
762 element
->rhs
= TREE_OPERAND (TREE_OPERAND (expr
, 0), 1);
766 element
->ann
= stmt_ann (expr
);
767 element
->rhs
= TREE_OPERAND (expr
, 1);
771 element
->hash
= avail_expr_hash (element
);
774 /* Remove all the expressions in LOCALS from TABLE, stopping when there are
775 LIMIT entries left in LOCALs. */
778 remove_local_expressions_from_table (void)
780 /* Remove all the expressions made available in this block. */
781 while (VARRAY_ACTIVE_SIZE (avail_exprs_stack
) > 0)
783 struct expr_hash_elt element
;
784 tree expr
= VARRAY_TOP_TREE (avail_exprs_stack
);
785 VARRAY_POP (avail_exprs_stack
);
787 if (expr
== NULL_TREE
)
790 initialize_hash_element (expr
, NULL
, &element
);
791 htab_remove_elt_with_hash (avail_exprs
, &element
, element
.hash
);
795 /* Use the SSA_NAMES in LOCALS to restore TABLE to its original
796 state, stopping when there are LIMIT entries left in LOCALs. */
799 restore_nonzero_vars_to_original_value (void)
801 while (VARRAY_ACTIVE_SIZE (nonzero_vars_stack
) > 0)
803 tree name
= VARRAY_TOP_TREE (nonzero_vars_stack
);
804 VARRAY_POP (nonzero_vars_stack
);
809 bitmap_clear_bit (nonzero_vars
, SSA_NAME_VERSION (name
));
813 /* Use the source/dest pairs in CONST_AND_COPIES_STACK to restore
814 CONST_AND_COPIES to its original state, stopping when we hit a
818 restore_vars_to_original_value (void)
820 while (VARRAY_ACTIVE_SIZE (const_and_copies_stack
) > 0)
822 tree prev_value
, dest
;
824 dest
= VARRAY_TOP_TREE (const_and_copies_stack
);
825 VARRAY_POP (const_and_copies_stack
);
830 prev_value
= VARRAY_TOP_TREE (const_and_copies_stack
);
831 VARRAY_POP (const_and_copies_stack
);
833 SSA_NAME_VALUE (dest
) = prev_value
;
837 /* Similar to restore_vars_to_original_value, except that it restores
838 CURRDEFS to its original value. */
840 restore_currdefs_to_original_value (void)
842 /* Restore CURRDEFS to its original state. */
843 while (VARRAY_ACTIVE_SIZE (block_defs_stack
) > 0)
845 tree tmp
= VARRAY_TOP_TREE (block_defs_stack
);
848 VARRAY_POP (block_defs_stack
);
850 if (tmp
== NULL_TREE
)
853 /* If we recorded an SSA_NAME, then make the SSA_NAME the current
854 definition of its underlying variable. If we recorded anything
855 else, it must have been an _DECL node and its current reaching
856 definition must have been NULL. */
857 if (TREE_CODE (tmp
) == SSA_NAME
)
860 var
= SSA_NAME_VAR (saved_def
);
868 var_ann (var
)->current_def
= saved_def
;
872 /* We have finished processing the dominator children of BB, perform
873 any finalization actions in preparation for leaving this node in
874 the dominator tree. */
877 dom_opt_finalize_block (struct dom_walk_data
*walk_data
, basic_block bb
)
881 /* If we are at a leaf node in the dominator graph, see if we can thread
882 the edge from BB through its successor.
884 Do this before we remove entries from our equivalence tables. */
885 if (EDGE_COUNT (bb
->succs
) == 1
886 && (EDGE_SUCC (bb
, 0)->flags
& EDGE_ABNORMAL
) == 0
887 && (get_immediate_dominator (CDI_DOMINATORS
, EDGE_SUCC (bb
, 0)->dest
) != bb
888 || phi_nodes (EDGE_SUCC (bb
, 0)->dest
)))
891 thread_across_edge (walk_data
, EDGE_SUCC (bb
, 0));
893 else if ((last
= last_stmt (bb
))
894 && TREE_CODE (last
) == COND_EXPR
895 && (COMPARISON_CLASS_P (COND_EXPR_COND (last
))
896 || TREE_CODE (COND_EXPR_COND (last
)) == SSA_NAME
)
897 && EDGE_COUNT (bb
->succs
) == 2
898 && (EDGE_SUCC (bb
, 0)->flags
& EDGE_ABNORMAL
) == 0
899 && (EDGE_SUCC (bb
, 1)->flags
& EDGE_ABNORMAL
) == 0)
901 edge true_edge
, false_edge
;
902 tree cond
, inverted
= NULL
;
903 enum tree_code cond_code
;
905 extract_true_false_edges_from_block (bb
, &true_edge
, &false_edge
);
907 cond
= COND_EXPR_COND (last
);
908 cond_code
= TREE_CODE (cond
);
910 if (TREE_CODE_CLASS (cond_code
) == tcc_comparison
)
911 inverted
= invert_truthvalue (cond
);
913 /* If the THEN arm is the end of a dominator tree or has PHI nodes,
914 then try to thread through its edge. */
915 if (get_immediate_dominator (CDI_DOMINATORS
, true_edge
->dest
) != bb
916 || phi_nodes (true_edge
->dest
))
918 /* Push a marker onto the available expression stack so that we
919 unwind any expressions related to the TRUE arm before processing
920 the false arm below. */
921 VARRAY_PUSH_TREE (avail_exprs_stack
, NULL_TREE
);
922 VARRAY_PUSH_TREE (block_defs_stack
, NULL_TREE
);
923 VARRAY_PUSH_TREE (const_and_copies_stack
, NULL_TREE
);
925 /* Record any equivalences created by following this edge. */
926 if (TREE_CODE_CLASS (cond_code
) == tcc_comparison
)
928 record_cond (cond
, boolean_true_node
);
929 record_dominating_conditions (cond
);
930 record_cond (inverted
, boolean_false_node
);
932 else if (cond_code
== SSA_NAME
)
933 record_const_or_copy (cond
, boolean_true_node
);
935 /* Now thread the edge. */
936 thread_across_edge (walk_data
, true_edge
);
938 /* And restore the various tables to their state before
939 we threaded this edge. */
940 remove_local_expressions_from_table ();
941 restore_vars_to_original_value ();
942 restore_currdefs_to_original_value ();
945 /* Similarly for the ELSE arm. */
946 if (get_immediate_dominator (CDI_DOMINATORS
, false_edge
->dest
) != bb
947 || phi_nodes (false_edge
->dest
))
949 /* Record any equivalences created by following this edge. */
950 if (TREE_CODE_CLASS (cond_code
) == tcc_comparison
)
952 record_cond (cond
, boolean_false_node
);
953 record_cond (inverted
, boolean_true_node
);
954 record_dominating_conditions (inverted
);
956 else if (cond_code
== SSA_NAME
)
957 record_const_or_copy (cond
, boolean_false_node
);
959 thread_across_edge (walk_data
, false_edge
);
961 /* No need to remove local expressions from our tables
962 or restore vars to their original value as that will
963 be done immediately below. */
967 remove_local_expressions_from_table ();
968 restore_nonzero_vars_to_original_value ();
969 restore_vars_to_original_value ();
970 restore_currdefs_to_original_value ();
972 /* Remove VRP records associated with this basic block. They are no
975 To be efficient, we note which variables have had their values
976 constrained in this block. So walk over each variable in the
977 VRP_VARIABLEs array. */
978 while (VARRAY_ACTIVE_SIZE (vrp_variables_stack
) > 0)
980 tree var
= VARRAY_TOP_TREE (vrp_variables_stack
);
981 struct vrp_hash_elt vrp_hash_elt
, *vrp_hash_elt_p
;
984 /* Each variable has a stack of value range records. We want to
985 invalidate those associated with our basic block. So we walk
986 the array backwards popping off records associated with our
987 block. Once we hit a record not associated with our block
989 varray_type var_vrp_records
;
991 VARRAY_POP (vrp_variables_stack
);
996 vrp_hash_elt
.var
= var
;
997 vrp_hash_elt
.records
= NULL
;
999 slot
= htab_find_slot (vrp_data
, &vrp_hash_elt
, NO_INSERT
);
1001 vrp_hash_elt_p
= (struct vrp_hash_elt
*) *slot
;
1002 var_vrp_records
= vrp_hash_elt_p
->records
;
1004 while (VARRAY_ACTIVE_SIZE (var_vrp_records
) > 0)
1006 struct vrp_element
*element
1007 = (struct vrp_element
*)VARRAY_TOP_GENERIC_PTR (var_vrp_records
);
1009 if (element
->bb
!= bb
)
1012 VARRAY_POP (var_vrp_records
);
1016 /* If we queued any statements to rescan in this block, then
1017 go ahead and rescan them now. */
1018 while (VARRAY_ACTIVE_SIZE (stmts_to_rescan
) > 0)
1020 tree stmt
= VARRAY_TOP_TREE (stmts_to_rescan
);
1021 basic_block stmt_bb
= bb_for_stmt (stmt
);
1026 VARRAY_POP (stmts_to_rescan
);
1027 mark_new_vars_to_rename (stmt
, vars_to_rename
);
1031 /* PHI nodes can create equivalences too.
1033 Ignoring any alternatives which are the same as the result, if
1034 all the alternatives are equal, then the PHI node creates an
1037 Additionally, if all the PHI alternatives are known to have a nonzero
1038 value, then the result of this PHI is known to have a nonzero value,
1039 even if we do not know its exact value. */
1042 record_equivalences_from_phis (struct dom_walk_data
*walk_data ATTRIBUTE_UNUSED
,
1047 for (phi
= phi_nodes (bb
); phi
; phi
= PHI_CHAIN (phi
))
1049 tree lhs
= PHI_RESULT (phi
);
1053 for (i
= 0; i
< PHI_NUM_ARGS (phi
); i
++)
1055 tree t
= PHI_ARG_DEF (phi
, i
);
1057 if (TREE_CODE (t
) == SSA_NAME
|| is_gimple_min_invariant (t
))
1059 /* Ignore alternatives which are the same as our LHS. */
1060 if (operand_equal_p (lhs
, t
, 0))
1063 /* If we have not processed an alternative yet, then set
1064 RHS to this alternative. */
1067 /* If we have processed an alternative (stored in RHS), then
1068 see if it is equal to this one. If it isn't, then stop
1070 else if (! operand_equal_p (rhs
, t
, 0))
1077 /* If we had no interesting alternatives, then all the RHS alternatives
1078 must have been the same as LHS. */
1082 /* If we managed to iterate through each PHI alternative without
1083 breaking out of the loop, then we have a PHI which may create
1084 a useful equivalence. We do not need to record unwind data for
1085 this, since this is a true assignment and not an equivalence
1086 inferred from a comparison. All uses of this ssa name are dominated
1087 by this assignment, so unwinding just costs time and space. */
1088 if (i
== PHI_NUM_ARGS (phi
)
1089 && may_propagate_copy (lhs
, rhs
))
1090 SSA_NAME_VALUE (lhs
) = rhs
;
1092 /* Now see if we know anything about the nonzero property for the
1093 result of this PHI. */
1094 for (i
= 0; i
< PHI_NUM_ARGS (phi
); i
++)
1096 if (!PHI_ARG_NONZERO (phi
, i
))
1100 if (i
== PHI_NUM_ARGS (phi
))
1101 bitmap_set_bit (nonzero_vars
, SSA_NAME_VERSION (PHI_RESULT (phi
)));
1103 register_new_def (lhs
, &block_defs_stack
);
1107 /* Ignoring loop backedges, if BB has precisely one incoming edge then
1108 return that edge. Otherwise return NULL. */
1110 single_incoming_edge_ignoring_loop_edges (basic_block bb
)
1116 FOR_EACH_EDGE (e
, ei
, bb
->preds
)
1118 /* A loop back edge can be identified by the destination of
1119 the edge dominating the source of the edge. */
1120 if (dominated_by_p (CDI_DOMINATORS
, e
->src
, e
->dest
))
1123 /* If we have already seen a non-loop edge, then we must have
1124 multiple incoming non-loop edges and thus we return NULL. */
1128 /* This is the first non-loop incoming edge we have found. Record
1136 /* Record any equivalences created by the incoming edge to BB. If BB
1137 has more than one incoming edge, then no equivalence is created. */
1140 record_equivalences_from_incoming_edge (struct dom_walk_data
*walk_data ATTRIBUTE_UNUSED
,
1145 struct eq_expr_value eq_expr_value
;
1146 tree parent_block_last_stmt
= NULL
;
1148 /* If our parent block ended with a control statment, then we may be
1149 able to record some equivalences based on which outgoing edge from
1150 the parent was followed. */
1151 parent
= get_immediate_dominator (CDI_DOMINATORS
, bb
);
1154 parent_block_last_stmt
= last_stmt (parent
);
1155 if (parent_block_last_stmt
&& !is_ctrl_stmt (parent_block_last_stmt
))
1156 parent_block_last_stmt
= NULL
;
1159 eq_expr_value
.src
= NULL
;
1160 eq_expr_value
.dst
= NULL
;
1162 /* If we have a single predecessor (ignoring loop backedges), then extract
1163 EDGE_FLAGS from the single incoming edge. Otherwise just return as
1164 there is nothing to do. */
1165 if (EDGE_COUNT (bb
->preds
) >= 1
1166 && parent_block_last_stmt
)
1168 edge e
= single_incoming_edge_ignoring_loop_edges (bb
);
1169 if (e
&& bb_for_stmt (parent_block_last_stmt
) == e
->src
)
1170 edge_flags
= e
->flags
;
1177 /* If our parent block ended in a COND_EXPR, add any equivalences
1178 created by the COND_EXPR to the hash table and initialize
1179 EQ_EXPR_VALUE appropriately.
1181 EQ_EXPR_VALUE is an assignment expression created when BB's immediate
1182 dominator ends in a COND_EXPR statement whose predicate is of the form
1183 'VAR == VALUE', where VALUE may be another variable or a constant.
1184 This is used to propagate VALUE on the THEN_CLAUSE of that
1185 conditional. This assignment is inserted in CONST_AND_COPIES so that
1186 the copy and constant propagator can find more propagation
1188 if (TREE_CODE (parent_block_last_stmt
) == COND_EXPR
1189 && (edge_flags
& (EDGE_TRUE_VALUE
| EDGE_FALSE_VALUE
)))
1190 eq_expr_value
= get_eq_expr_value (parent_block_last_stmt
,
1191 (edge_flags
& EDGE_TRUE_VALUE
) != 0,
1193 /* Similarly when the parent block ended in a SWITCH_EXPR.
1194 We can only know the value of the switch's condition if the dominator
1195 parent is also the only predecessor of this block. */
1196 else if (EDGE_PRED (bb
, 0)->src
== parent
1197 && TREE_CODE (parent_block_last_stmt
) == SWITCH_EXPR
)
1199 tree switch_cond
= SWITCH_COND (parent_block_last_stmt
);
1201 /* If the switch's condition is an SSA variable, then we may
1202 know its value at each of the case labels. */
1203 if (TREE_CODE (switch_cond
) == SSA_NAME
)
1205 tree switch_vec
= SWITCH_LABELS (parent_block_last_stmt
);
1206 size_t i
, n
= TREE_VEC_LENGTH (switch_vec
);
1208 tree match_case
= NULL_TREE
;
1210 /* Search the case labels for those whose destination is
1211 the current basic block. */
1212 for (i
= 0; i
< n
; ++i
)
1214 tree elt
= TREE_VEC_ELT (switch_vec
, i
);
1215 if (label_to_block (CASE_LABEL (elt
)) == bb
)
1217 if (++case_count
> 1 || CASE_HIGH (elt
))
1223 /* If we encountered precisely one CASE_LABEL_EXPR and it
1224 was not the default case, or a case range, then we know
1225 the exact value of SWITCH_COND which caused us to get to
1226 this block. Record that equivalence in EQ_EXPR_VALUE. */
1229 && CASE_LOW (match_case
)
1230 && !CASE_HIGH (match_case
))
1232 eq_expr_value
.dst
= switch_cond
;
1233 eq_expr_value
.src
= fold_convert (TREE_TYPE (switch_cond
),
1234 CASE_LOW (match_case
));
1239 /* If EQ_EXPR_VALUE (VAR == VALUE) is given, register the VALUE as a
1240 new value for VAR, so that occurrences of VAR can be replaced with
1241 VALUE while re-writing the THEN arm of a COND_EXPR. */
1242 if (eq_expr_value
.src
&& eq_expr_value
.dst
)
1243 record_equality (eq_expr_value
.dst
, eq_expr_value
.src
);
1246 /* Dump SSA statistics on FILE. */
1249 dump_dominator_optimization_stats (FILE *file
)
1253 fprintf (file
, "Total number of statements: %6ld\n\n",
1254 opt_stats
.num_stmts
);
1255 fprintf (file
, "Exprs considered for dominator optimizations: %6ld\n",
1256 opt_stats
.num_exprs_considered
);
1258 n_exprs
= opt_stats
.num_exprs_considered
;
1262 fprintf (file
, " Redundant expressions eliminated: %6ld (%.0f%%)\n",
1263 opt_stats
.num_re
, PERCENT (opt_stats
.num_re
,
1266 fprintf (file
, "\nHash table statistics:\n");
1268 fprintf (file
, " avail_exprs: ");
1269 htab_statistics (file
, avail_exprs
);
1273 /* Dump SSA statistics on stderr. */
1276 debug_dominator_optimization_stats (void)
1278 dump_dominator_optimization_stats (stderr
);
1282 /* Dump statistics for the hash table HTAB. */
1285 htab_statistics (FILE *file
, htab_t htab
)
1287 fprintf (file
, "size %ld, %ld elements, %f collision/search ratio\n",
1288 (long) htab_size (htab
),
1289 (long) htab_elements (htab
),
1290 htab_collisions (htab
));
1293 /* Record the fact that VAR has a nonzero value, though we may not know
1294 its exact value. Note that if VAR is already known to have a nonzero
1295 value, then we do nothing. */
1298 record_var_is_nonzero (tree var
)
1300 int indx
= SSA_NAME_VERSION (var
);
1302 if (bitmap_bit_p (nonzero_vars
, indx
))
1305 /* Mark it in the global table. */
1306 bitmap_set_bit (nonzero_vars
, indx
);
1308 /* Record this SSA_NAME so that we can reset the global table
1309 when we leave this block. */
1310 VARRAY_PUSH_TREE (nonzero_vars_stack
, var
);
1313 /* Enter a statement into the true/false expression hash table indicating
1314 that the condition COND has the value VALUE. */
1317 record_cond (tree cond
, tree value
)
1319 struct expr_hash_elt
*element
= xmalloc (sizeof (struct expr_hash_elt
));
1322 initialize_hash_element (cond
, value
, element
);
1324 slot
= htab_find_slot_with_hash (avail_exprs
, (void *)element
,
1325 element
->hash
, true);
1328 *slot
= (void *) element
;
1329 VARRAY_PUSH_TREE (avail_exprs_stack
, cond
);
1335 /* COND is a condition which is known to be true. Record variants of
1336 COND which must also be true.
1338 For example, if a < b is true, then a <= b must also be true. */
1341 record_dominating_conditions (tree cond
)
1343 switch (TREE_CODE (cond
))
1346 record_cond (build2 (LE_EXPR
, boolean_type_node
,
1347 TREE_OPERAND (cond
, 0),
1348 TREE_OPERAND (cond
, 1)),
1350 record_cond (build2 (ORDERED_EXPR
, boolean_type_node
,
1351 TREE_OPERAND (cond
, 0),
1352 TREE_OPERAND (cond
, 1)),
1354 record_cond (build2 (NE_EXPR
, boolean_type_node
,
1355 TREE_OPERAND (cond
, 0),
1356 TREE_OPERAND (cond
, 1)),
1358 record_cond (build2 (LTGT_EXPR
, boolean_type_node
,
1359 TREE_OPERAND (cond
, 0),
1360 TREE_OPERAND (cond
, 1)),
1365 record_cond (build2 (GE_EXPR
, boolean_type_node
,
1366 TREE_OPERAND (cond
, 0),
1367 TREE_OPERAND (cond
, 1)),
1369 record_cond (build2 (ORDERED_EXPR
, boolean_type_node
,
1370 TREE_OPERAND (cond
, 0),
1371 TREE_OPERAND (cond
, 1)),
1373 record_cond (build2 (NE_EXPR
, boolean_type_node
,
1374 TREE_OPERAND (cond
, 0),
1375 TREE_OPERAND (cond
, 1)),
1377 record_cond (build2 (LTGT_EXPR
, boolean_type_node
,
1378 TREE_OPERAND (cond
, 0),
1379 TREE_OPERAND (cond
, 1)),
1385 record_cond (build2 (ORDERED_EXPR
, boolean_type_node
,
1386 TREE_OPERAND (cond
, 0),
1387 TREE_OPERAND (cond
, 1)),
1392 record_cond (build2 (ORDERED_EXPR
, boolean_type_node
,
1393 TREE_OPERAND (cond
, 0),
1394 TREE_OPERAND (cond
, 1)),
1396 record_cond (build2 (LE_EXPR
, boolean_type_node
,
1397 TREE_OPERAND (cond
, 0),
1398 TREE_OPERAND (cond
, 1)),
1400 record_cond (build2 (GE_EXPR
, boolean_type_node
,
1401 TREE_OPERAND (cond
, 0),
1402 TREE_OPERAND (cond
, 1)),
1406 case UNORDERED_EXPR
:
1407 record_cond (build2 (NE_EXPR
, boolean_type_node
,
1408 TREE_OPERAND (cond
, 0),
1409 TREE_OPERAND (cond
, 1)),
1411 record_cond (build2 (UNLE_EXPR
, boolean_type_node
,
1412 TREE_OPERAND (cond
, 0),
1413 TREE_OPERAND (cond
, 1)),
1415 record_cond (build2 (UNGE_EXPR
, boolean_type_node
,
1416 TREE_OPERAND (cond
, 0),
1417 TREE_OPERAND (cond
, 1)),
1419 record_cond (build2 (UNEQ_EXPR
, boolean_type_node
,
1420 TREE_OPERAND (cond
, 0),
1421 TREE_OPERAND (cond
, 1)),
1423 record_cond (build2 (UNLT_EXPR
, boolean_type_node
,
1424 TREE_OPERAND (cond
, 0),
1425 TREE_OPERAND (cond
, 1)),
1427 record_cond (build2 (UNGT_EXPR
, boolean_type_node
,
1428 TREE_OPERAND (cond
, 0),
1429 TREE_OPERAND (cond
, 1)),
1434 record_cond (build2 (UNLE_EXPR
, boolean_type_node
,
1435 TREE_OPERAND (cond
, 0),
1436 TREE_OPERAND (cond
, 1)),
1438 record_cond (build2 (NE_EXPR
, boolean_type_node
,
1439 TREE_OPERAND (cond
, 0),
1440 TREE_OPERAND (cond
, 1)),
1445 record_cond (build2 (UNGE_EXPR
, boolean_type_node
,
1446 TREE_OPERAND (cond
, 0),
1447 TREE_OPERAND (cond
, 1)),
1449 record_cond (build2 (NE_EXPR
, boolean_type_node
,
1450 TREE_OPERAND (cond
, 0),
1451 TREE_OPERAND (cond
, 1)),
1456 record_cond (build2 (UNLE_EXPR
, boolean_type_node
,
1457 TREE_OPERAND (cond
, 0),
1458 TREE_OPERAND (cond
, 1)),
1460 record_cond (build2 (UNGE_EXPR
, boolean_type_node
,
1461 TREE_OPERAND (cond
, 0),
1462 TREE_OPERAND (cond
, 1)),
1467 record_cond (build2 (NE_EXPR
, boolean_type_node
,
1468 TREE_OPERAND (cond
, 0),
1469 TREE_OPERAND (cond
, 1)),
1471 record_cond (build2 (ORDERED_EXPR
, boolean_type_node
,
1472 TREE_OPERAND (cond
, 0),
1473 TREE_OPERAND (cond
, 1)),
1481 /* A helper function for record_const_or_copy and record_equality.
1482 Do the work of recording the value and undo info. */
1485 record_const_or_copy_1 (tree x
, tree y
, tree prev_x
)
1487 SSA_NAME_VALUE (x
) = y
;
1489 VARRAY_PUSH_TREE (const_and_copies_stack
, prev_x
);
1490 VARRAY_PUSH_TREE (const_and_copies_stack
, x
);
1493 /* Record that X is equal to Y in const_and_copies. Record undo
1494 information in the block-local varray. */
1497 record_const_or_copy (tree x
, tree y
)
1499 tree prev_x
= SSA_NAME_VALUE (x
);
1501 if (TREE_CODE (y
) == SSA_NAME
)
1503 tree tmp
= SSA_NAME_VALUE (y
);
1508 record_const_or_copy_1 (x
, y
, prev_x
);
1511 /* Similarly, but assume that X and Y are the two operands of an EQ_EXPR.
1512 This constrains the cases in which we may treat this as assignment. */
1515 record_equality (tree x
, tree y
)
1517 tree prev_x
= NULL
, prev_y
= NULL
;
1519 if (TREE_CODE (x
) == SSA_NAME
)
1520 prev_x
= SSA_NAME_VALUE (x
);
1521 if (TREE_CODE (y
) == SSA_NAME
)
1522 prev_y
= SSA_NAME_VALUE (y
);
1524 /* If one of the previous values is invariant, then use that.
1525 Otherwise it doesn't matter which value we choose, just so
1526 long as we canonicalize on one value. */
1527 if (TREE_INVARIANT (y
))
1529 else if (TREE_INVARIANT (x
))
1530 prev_x
= x
, x
= y
, y
= prev_x
, prev_x
= prev_y
;
1531 else if (prev_x
&& TREE_INVARIANT (prev_x
))
1532 x
= y
, y
= prev_x
, prev_x
= prev_y
;
1533 else if (prev_y
&& TREE_CODE (prev_y
) != VALUE_HANDLE
)
1536 /* After the swapping, we must have one SSA_NAME. */
1537 if (TREE_CODE (x
) != SSA_NAME
)
1540 /* For IEEE, -0.0 == 0.0, so we don't necessarily know the sign of a
1541 variable compared against zero. If we're honoring signed zeros,
1542 then we cannot record this value unless we know that the value is
1544 if (HONOR_SIGNED_ZEROS (TYPE_MODE (TREE_TYPE (x
)))
1545 && (TREE_CODE (y
) != REAL_CST
1546 || REAL_VALUES_EQUAL (dconst0
, TREE_REAL_CST (y
))))
1549 record_const_or_copy_1 (x
, y
, prev_x
);
1552 /* STMT is a MODIFY_EXPR for which we were unable to find RHS in the
1553 hash tables. Try to simplify the RHS using whatever equivalences
1554 we may have recorded.
1556 If we are able to simplify the RHS, then lookup the simplified form in
1557 the hash table and return the result. Otherwise return NULL. */
1560 simplify_rhs_and_lookup_avail_expr (struct dom_walk_data
*walk_data
,
1561 tree stmt
, int insert
)
1563 tree rhs
= TREE_OPERAND (stmt
, 1);
1564 enum tree_code rhs_code
= TREE_CODE (rhs
);
1567 /* If we have lhs = ~x, look and see if we earlier had x = ~y.
1568 In which case we can change this statement to be lhs = y.
1569 Which can then be copy propagated.
1571 Similarly for negation. */
1572 if ((rhs_code
== BIT_NOT_EXPR
|| rhs_code
== NEGATE_EXPR
)
1573 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == SSA_NAME
)
1575 /* Get the definition statement for our RHS. */
1576 tree rhs_def_stmt
= SSA_NAME_DEF_STMT (TREE_OPERAND (rhs
, 0));
1578 /* See if the RHS_DEF_STMT has the same form as our statement. */
1579 if (TREE_CODE (rhs_def_stmt
) == MODIFY_EXPR
1580 && TREE_CODE (TREE_OPERAND (rhs_def_stmt
, 1)) == rhs_code
)
1582 tree rhs_def_operand
;
1584 rhs_def_operand
= TREE_OPERAND (TREE_OPERAND (rhs_def_stmt
, 1), 0);
1586 /* Verify that RHS_DEF_OPERAND is a suitable SSA variable. */
1587 if (TREE_CODE (rhs_def_operand
) == SSA_NAME
1588 && ! SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs_def_operand
))
1589 result
= update_rhs_and_lookup_avail_expr (stmt
,
1595 /* If we have z = (x OP C1), see if we earlier had x = y OP C2.
1596 If OP is associative, create and fold (y OP C2) OP C1 which
1597 should result in (y OP C3), use that as the RHS for the
1598 assignment. Add minus to this, as we handle it specially below. */
1599 if ((associative_tree_code (rhs_code
) || rhs_code
== MINUS_EXPR
)
1600 && TREE_CODE (TREE_OPERAND (rhs
, 0)) == SSA_NAME
1601 && is_gimple_min_invariant (TREE_OPERAND (rhs
, 1)))
1603 tree rhs_def_stmt
= SSA_NAME_DEF_STMT (TREE_OPERAND (rhs
, 0));
1605 /* See if the RHS_DEF_STMT has the same form as our statement. */
1606 if (TREE_CODE (rhs_def_stmt
) == MODIFY_EXPR
)
1608 tree rhs_def_rhs
= TREE_OPERAND (rhs_def_stmt
, 1);
1609 enum tree_code rhs_def_code
= TREE_CODE (rhs_def_rhs
);
1611 if (rhs_code
== rhs_def_code
1612 || (rhs_code
== PLUS_EXPR
&& rhs_def_code
== MINUS_EXPR
)
1613 || (rhs_code
== MINUS_EXPR
&& rhs_def_code
== PLUS_EXPR
))
1615 tree def_stmt_op0
= TREE_OPERAND (rhs_def_rhs
, 0);
1616 tree def_stmt_op1
= TREE_OPERAND (rhs_def_rhs
, 1);
1618 if (TREE_CODE (def_stmt_op0
) == SSA_NAME
1619 && ! SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def_stmt_op0
)
1620 && is_gimple_min_invariant (def_stmt_op1
))
1622 tree outer_const
= TREE_OPERAND (rhs
, 1);
1623 tree type
= TREE_TYPE (TREE_OPERAND (stmt
, 0));
1626 /* If we care about correct floating point results, then
1627 don't fold x + c1 - c2. Note that we need to take both
1628 the codes and the signs to figure this out. */
1629 if (FLOAT_TYPE_P (type
)
1630 && !flag_unsafe_math_optimizations
1631 && (rhs_def_code
== PLUS_EXPR
1632 || rhs_def_code
== MINUS_EXPR
))
1636 neg
^= (rhs_code
== MINUS_EXPR
);
1637 neg
^= (rhs_def_code
== MINUS_EXPR
);
1638 neg
^= real_isneg (TREE_REAL_CST_PTR (outer_const
));
1639 neg
^= real_isneg (TREE_REAL_CST_PTR (def_stmt_op1
));
1642 goto dont_fold_assoc
;
1645 /* Ho hum. So fold will only operate on the outermost
1646 thingy that we give it, so we have to build the new
1647 expression in two pieces. This requires that we handle
1648 combinations of plus and minus. */
1649 if (rhs_def_code
!= rhs_code
)
1651 if (rhs_def_code
== MINUS_EXPR
)
1652 t
= build (MINUS_EXPR
, type
, outer_const
, def_stmt_op1
);
1654 t
= build (MINUS_EXPR
, type
, def_stmt_op1
, outer_const
);
1655 rhs_code
= PLUS_EXPR
;
1657 else if (rhs_def_code
== MINUS_EXPR
)
1658 t
= build (PLUS_EXPR
, type
, def_stmt_op1
, outer_const
);
1660 t
= build (rhs_def_code
, type
, def_stmt_op1
, outer_const
);
1662 t
= build (rhs_code
, type
, def_stmt_op0
, t
);
1665 /* If the result is a suitable looking gimple expression,
1666 then use it instead of the original for STMT. */
1667 if (TREE_CODE (t
) == SSA_NAME
1668 || (UNARY_CLASS_P (t
)
1669 && TREE_CODE (TREE_OPERAND (t
, 0)) == SSA_NAME
)
1670 || ((BINARY_CLASS_P (t
) || COMPARISON_CLASS_P (t
))
1671 && TREE_CODE (TREE_OPERAND (t
, 0)) == SSA_NAME
1672 && is_gimple_val (TREE_OPERAND (t
, 1))))
1673 result
= update_rhs_and_lookup_avail_expr (stmt
, t
, insert
);
1680 /* Transform TRUNC_DIV_EXPR and TRUNC_MOD_EXPR into RSHIFT_EXPR
1681 and BIT_AND_EXPR respectively if the first operand is greater
1682 than zero and the second operand is an exact power of two. */
1683 if ((rhs_code
== TRUNC_DIV_EXPR
|| rhs_code
== TRUNC_MOD_EXPR
)
1684 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (rhs
, 0)))
1685 && integer_pow2p (TREE_OPERAND (rhs
, 1)))
1688 tree op
= TREE_OPERAND (rhs
, 0);
1690 if (TYPE_UNSIGNED (TREE_TYPE (op
)))
1692 val
= integer_one_node
;
1696 tree dummy_cond
= walk_data
->global_data
;
1700 dummy_cond
= build (GT_EXPR
, boolean_type_node
,
1701 op
, integer_zero_node
);
1702 dummy_cond
= build (COND_EXPR
, void_type_node
,
1703 dummy_cond
, NULL
, NULL
);
1704 walk_data
->global_data
= dummy_cond
;
1708 TREE_SET_CODE (TREE_OPERAND (dummy_cond
, 0), GT_EXPR
);
1709 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 0) = op
;
1710 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 1)
1711 = integer_zero_node
;
1713 val
= simplify_cond_and_lookup_avail_expr (dummy_cond
, NULL
, false);
1716 if (val
&& integer_onep (val
))
1719 tree op0
= TREE_OPERAND (rhs
, 0);
1720 tree op1
= TREE_OPERAND (rhs
, 1);
1722 if (rhs_code
== TRUNC_DIV_EXPR
)
1723 t
= build (RSHIFT_EXPR
, TREE_TYPE (op0
), op0
,
1724 build_int_cst (NULL_TREE
, tree_log2 (op1
)));
1726 t
= build (BIT_AND_EXPR
, TREE_TYPE (op0
), op0
,
1727 local_fold (build (MINUS_EXPR
, TREE_TYPE (op1
),
1728 op1
, integer_one_node
)));
1730 result
= update_rhs_and_lookup_avail_expr (stmt
, t
, insert
);
1734 /* Transform ABS (X) into X or -X as appropriate. */
1735 if (rhs_code
== ABS_EXPR
1736 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (rhs
, 0))))
1739 tree op
= TREE_OPERAND (rhs
, 0);
1740 tree type
= TREE_TYPE (op
);
1742 if (TYPE_UNSIGNED (type
))
1744 val
= integer_zero_node
;
1748 tree dummy_cond
= walk_data
->global_data
;
1752 dummy_cond
= build (LE_EXPR
, boolean_type_node
,
1753 op
, integer_zero_node
);
1754 dummy_cond
= build (COND_EXPR
, void_type_node
,
1755 dummy_cond
, NULL
, NULL
);
1756 walk_data
->global_data
= dummy_cond
;
1760 TREE_SET_CODE (TREE_OPERAND (dummy_cond
, 0), LE_EXPR
);
1761 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 0) = op
;
1762 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 1)
1763 = build_int_cst (type
, 0);
1765 val
= simplify_cond_and_lookup_avail_expr (dummy_cond
, NULL
, false);
1769 TREE_SET_CODE (TREE_OPERAND (dummy_cond
, 0), GE_EXPR
);
1770 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 0) = op
;
1771 TREE_OPERAND (TREE_OPERAND (dummy_cond
, 0), 1)
1772 = build_int_cst (type
, 0);
1774 val
= simplify_cond_and_lookup_avail_expr (dummy_cond
,
1779 if (integer_zerop (val
))
1780 val
= integer_one_node
;
1781 else if (integer_onep (val
))
1782 val
= integer_zero_node
;
1788 && (integer_onep (val
) || integer_zerop (val
)))
1792 if (integer_onep (val
))
1793 t
= build1 (NEGATE_EXPR
, TREE_TYPE (op
), op
);
1797 result
= update_rhs_and_lookup_avail_expr (stmt
, t
, insert
);
1801 /* Optimize *"foo" into 'f'. This is done here rather than
1802 in fold to avoid problems with stuff like &*"foo". */
1803 if (TREE_CODE (rhs
) == INDIRECT_REF
|| TREE_CODE (rhs
) == ARRAY_REF
)
1805 tree t
= fold_read_from_constant_string (rhs
);
1808 result
= update_rhs_and_lookup_avail_expr (stmt
, t
, insert
);
1814 /* COND is a condition of the form:
1816 x == const or x != const
1818 Look back to x's defining statement and see if x is defined as
1822 If const is unchanged if we convert it to type, then we can build
1823 the equivalent expression:
1826 y == const or y != const
1828 Which may allow further optimizations.
1830 Return the equivalent comparison or NULL if no such equivalent comparison
1834 find_equivalent_equality_comparison (tree cond
)
1836 tree op0
= TREE_OPERAND (cond
, 0);
1837 tree op1
= TREE_OPERAND (cond
, 1);
1838 tree def_stmt
= SSA_NAME_DEF_STMT (op0
);
1840 /* OP0 might have been a parameter, so first make sure it
1841 was defined by a MODIFY_EXPR. */
1842 if (def_stmt
&& TREE_CODE (def_stmt
) == MODIFY_EXPR
)
1844 tree def_rhs
= TREE_OPERAND (def_stmt
, 1);
1846 /* Now make sure the RHS of the MODIFY_EXPR is a typecast. */
1847 if ((TREE_CODE (def_rhs
) == NOP_EXPR
1848 || TREE_CODE (def_rhs
) == CONVERT_EXPR
)
1849 && TREE_CODE (TREE_OPERAND (def_rhs
, 0)) == SSA_NAME
)
1851 tree def_rhs_inner
= TREE_OPERAND (def_rhs
, 0);
1852 tree def_rhs_inner_type
= TREE_TYPE (def_rhs_inner
);
1855 if (TYPE_PRECISION (def_rhs_inner_type
)
1856 > TYPE_PRECISION (TREE_TYPE (def_rhs
)))
1859 /* What we want to prove is that if we convert OP1 to
1860 the type of the object inside the NOP_EXPR that the
1861 result is still equivalent to SRC.
1863 If that is true, the build and return new equivalent
1864 condition which uses the source of the typecast and the
1865 new constant (which has only changed its type). */
1866 new = build1 (TREE_CODE (def_rhs
), def_rhs_inner_type
, op1
);
1867 new = local_fold (new);
1868 if (is_gimple_val (new) && tree_int_cst_equal (new, op1
))
1869 return build (TREE_CODE (cond
), TREE_TYPE (cond
),
1870 def_rhs_inner
, new);
1876 /* STMT is a COND_EXPR for which we could not trivially determine its
1877 result. This routine attempts to find equivalent forms of the
1878 condition which we may be able to optimize better. It also
1879 uses simple value range propagation to optimize conditionals. */
1882 simplify_cond_and_lookup_avail_expr (tree stmt
,
1886 tree cond
= COND_EXPR_COND (stmt
);
1888 if (COMPARISON_CLASS_P (cond
))
1890 tree op0
= TREE_OPERAND (cond
, 0);
1891 tree op1
= TREE_OPERAND (cond
, 1);
1893 if (TREE_CODE (op0
) == SSA_NAME
&& is_gimple_min_invariant (op1
))
1896 tree low
, high
, cond_low
, cond_high
;
1897 int lowequal
, highequal
, swapped
, no_overlap
, subset
, cond_inverted
;
1898 varray_type vrp_records
;
1899 struct vrp_element
*element
;
1900 struct vrp_hash_elt vrp_hash_elt
, *vrp_hash_elt_p
;
1903 /* First see if we have test of an SSA_NAME against a constant
1904 where the SSA_NAME is defined by an earlier typecast which
1905 is irrelevant when performing tests against the given
1907 if (TREE_CODE (cond
) == EQ_EXPR
|| TREE_CODE (cond
) == NE_EXPR
)
1909 tree new_cond
= find_equivalent_equality_comparison (cond
);
1913 /* Update the statement to use the new equivalent
1915 COND_EXPR_COND (stmt
) = new_cond
;
1917 /* If this is not a real stmt, ann will be NULL and we
1918 avoid processing the operands. */
1922 /* Lookup the condition and return its known value if it
1924 new_cond
= lookup_avail_expr (stmt
, insert
);
1928 /* The operands have changed, so update op0 and op1. */
1929 op0
= TREE_OPERAND (cond
, 0);
1930 op1
= TREE_OPERAND (cond
, 1);
1934 /* Consult the value range records for this variable (if they exist)
1935 to see if we can eliminate or simplify this conditional.
1937 Note two tests are necessary to determine no records exist.
1938 First we have to see if the virtual array exists, if it
1939 exists, then we have to check its active size.
1941 Also note the vast majority of conditionals are not testing
1942 a variable which has had its range constrained by an earlier
1943 conditional. So this filter avoids a lot of unnecessary work. */
1944 vrp_hash_elt
.var
= op0
;
1945 vrp_hash_elt
.records
= NULL
;
1946 slot
= htab_find_slot (vrp_data
, &vrp_hash_elt
, NO_INSERT
);
1950 vrp_hash_elt_p
= (struct vrp_hash_elt
*) *slot
;
1951 vrp_records
= vrp_hash_elt_p
->records
;
1952 if (vrp_records
== NULL
)
1955 limit
= VARRAY_ACTIVE_SIZE (vrp_records
);
1957 /* If we have no value range records for this variable, or we are
1958 unable to extract a range for this condition, then there is
1961 || ! extract_range_from_cond (cond
, &cond_high
,
1962 &cond_low
, &cond_inverted
))
1965 /* We really want to avoid unnecessary computations of range
1966 info. So all ranges are computed lazily; this avoids a
1967 lot of unnecessary work. i.e., we record the conditional,
1968 but do not process how it constrains the variable's
1969 potential values until we know that processing the condition
1972 However, we do not want to have to walk a potentially long
1973 list of ranges, nor do we want to compute a variable's
1974 range more than once for a given path.
1976 Luckily, each time we encounter a conditional that can not
1977 be otherwise optimized we will end up here and we will
1978 compute the necessary range information for the variable
1979 used in this condition.
1981 Thus you can conclude that there will never be more than one
1982 conditional associated with a variable which has not been
1983 processed. So we never need to merge more than one new
1984 conditional into the current range.
1986 These properties also help us avoid unnecessary work. */
1988 = (struct vrp_element
*)VARRAY_GENERIC_PTR (vrp_records
, limit
- 1);
1990 if (element
->high
&& element
->low
)
1992 /* The last element has been processed, so there is no range
1993 merging to do, we can simply use the high/low values
1994 recorded in the last element. */
1996 high
= element
->high
;
2000 tree tmp_high
, tmp_low
;
2003 /* The last element has not been processed. Process it now. */
2004 extract_range_from_cond (element
->cond
, &tmp_high
,
2007 /* If this is the only element, then no merging is necessary,
2008 the high/low values from extract_range_from_cond are all
2017 /* Get the high/low value from the previous element. */
2018 struct vrp_element
*prev
2019 = (struct vrp_element
*)VARRAY_GENERIC_PTR (vrp_records
,
2024 /* Merge in this element's range with the range from the
2027 The low value for the merged range is the maximum of
2028 the previous low value and the low value of this record.
2030 Similarly the high value for the merged range is the
2031 minimum of the previous high value and the high value of
2033 low
= (tree_int_cst_compare (low
, tmp_low
) == 1
2035 high
= (tree_int_cst_compare (high
, tmp_high
) == -1
2039 /* And record the computed range. */
2041 element
->high
= high
;
2045 /* After we have constrained this variable's potential values,
2046 we try to determine the result of the given conditional.
2048 To simplify later tests, first determine if the current
2049 low value is the same low value as the conditional.
2050 Similarly for the current high value and the high value
2051 for the conditional. */
2052 lowequal
= tree_int_cst_equal (low
, cond_low
);
2053 highequal
= tree_int_cst_equal (high
, cond_high
);
2055 if (lowequal
&& highequal
)
2056 return (cond_inverted
? boolean_false_node
: boolean_true_node
);
2058 /* To simplify the overlap/subset tests below we may want
2059 to swap the two ranges so that the larger of the two
2060 ranges occurs "first". */
2062 if (tree_int_cst_compare (low
, cond_low
) == 1
2064 && tree_int_cst_compare (cond_high
, high
) == 1))
2077 /* Now determine if there is no overlap in the ranges
2078 or if the second range is a subset of the first range. */
2079 no_overlap
= tree_int_cst_lt (high
, cond_low
);
2080 subset
= tree_int_cst_compare (cond_high
, high
) != 1;
2082 /* If there was no overlap in the ranges, then this conditional
2083 always has a false value (unless we had to invert this
2084 conditional, in which case it always has a true value). */
2086 return (cond_inverted
? boolean_true_node
: boolean_false_node
);
2088 /* If the current range is a subset of the condition's range,
2089 then this conditional always has a true value (unless we
2090 had to invert this conditional, in which case it always
2091 has a true value). */
2092 if (subset
&& swapped
)
2093 return (cond_inverted
? boolean_false_node
: boolean_true_node
);
2095 /* We were unable to determine the result of the conditional.
2096 However, we may be able to simplify the conditional. First
2097 merge the ranges in the same manner as range merging above. */
2098 low
= tree_int_cst_compare (low
, cond_low
) == 1 ? low
: cond_low
;
2099 high
= tree_int_cst_compare (high
, cond_high
) == -1 ? high
: cond_high
;
2101 /* If the range has converged to a single point, then turn this
2102 into an equality comparison. */
2103 if (TREE_CODE (cond
) != EQ_EXPR
2104 && TREE_CODE (cond
) != NE_EXPR
2105 && tree_int_cst_equal (low
, high
))
2107 TREE_SET_CODE (cond
, EQ_EXPR
);
2108 TREE_OPERAND (cond
, 1) = high
;
2115 /* STMT is a SWITCH_EXPR for which we could not trivially determine its
2116 result. This routine attempts to find equivalent forms of the
2117 condition which we may be able to optimize better. */
2120 simplify_switch_and_lookup_avail_expr (tree stmt
, int insert
)
2122 tree cond
= SWITCH_COND (stmt
);
2125 /* The optimization that we really care about is removing unnecessary
2126 casts. That will let us do much better in propagating the inferred
2127 constant at the switch target. */
2128 if (TREE_CODE (cond
) == SSA_NAME
)
2130 def
= SSA_NAME_DEF_STMT (cond
);
2131 if (TREE_CODE (def
) == MODIFY_EXPR
)
2133 def
= TREE_OPERAND (def
, 1);
2134 if (TREE_CODE (def
) == NOP_EXPR
)
2139 def
= TREE_OPERAND (def
, 0);
2141 #ifdef ENABLE_CHECKING
2142 /* ??? Why was Jeff testing this? We are gimple... */
2143 gcc_assert (is_gimple_val (def
));
2146 to
= TREE_TYPE (cond
);
2147 ti
= TREE_TYPE (def
);
2149 /* If we have an extension that preserves value, then we
2150 can copy the source value into the switch. */
2152 need_precision
= TYPE_PRECISION (ti
);
2154 if (TYPE_UNSIGNED (to
) && !TYPE_UNSIGNED (ti
))
2156 else if (!TYPE_UNSIGNED (to
) && TYPE_UNSIGNED (ti
))
2157 need_precision
+= 1;
2158 if (TYPE_PRECISION (to
) < need_precision
)
2163 SWITCH_COND (stmt
) = def
;
2166 return lookup_avail_expr (stmt
, insert
);
2176 /* CONST_AND_COPIES is a table which maps an SSA_NAME to the current
2177 known value for that SSA_NAME (or NULL if no value is known).
2179 NONZERO_VARS is the set SSA_NAMES known to have a nonzero value,
2180 even if we don't know their precise value.
2182 Propagate values from CONST_AND_COPIES and NONZERO_VARS into the PHI
2183 nodes of the successors of BB. */
2186 cprop_into_successor_phis (basic_block bb
, bitmap nonzero_vars
)
2191 /* This can get rather expensive if the implementation is naive in
2192 how it finds the phi alternative associated with a particular edge. */
2193 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
2199 /* If this is an abnormal edge, then we do not want to copy propagate
2200 into the PHI alternative associated with this edge. */
2201 if (e
->flags
& EDGE_ABNORMAL
)
2204 phi
= phi_nodes (e
->dest
);
2208 /* There is no guarantee that for any two PHI nodes in a block that
2209 the phi alternative associated with a particular edge will be
2210 at the same index in the phi alternative array.
2212 However, it is very likely they will be the same. So we keep
2213 track of the index of the alternative where we found the edge in
2214 the previous phi node and check that index first in the next
2215 phi node. If that hint fails, then we actually search all
2217 phi_num_args
= PHI_NUM_ARGS (phi
);
2218 hint
= phi_num_args
;
2219 for ( ; phi
; phi
= PHI_CHAIN (phi
))
2223 use_operand_p orig_p
;
2226 /* If the hint is valid (!= phi_num_args), see if it points
2227 us to the desired phi alternative. */
2228 if (hint
!= phi_num_args
&& PHI_ARG_EDGE (phi
, hint
) == e
)
2232 /* The hint was either invalid or did not point to the
2233 correct phi alternative. Search all the alternatives
2234 for the correct one. Update the hint. */
2235 for (i
= 0; i
< phi_num_args
; i
++)
2236 if (PHI_ARG_EDGE (phi
, i
) == e
)
2241 /* If we did not find the proper alternative, then something is
2243 gcc_assert (hint
!= phi_num_args
);
2245 /* The alternative may be associated with a constant, so verify
2246 it is an SSA_NAME before doing anything with it. */
2247 orig_p
= PHI_ARG_DEF_PTR (phi
, hint
);
2248 orig
= USE_FROM_PTR (orig_p
);
2249 if (TREE_CODE (orig
) != SSA_NAME
)
2252 /* If the alternative is known to have a nonzero value, record
2253 that fact in the PHI node itself for future use. */
2254 if (bitmap_bit_p (nonzero_vars
, SSA_NAME_VERSION (orig
)))
2255 PHI_ARG_NONZERO (phi
, hint
) = true;
2257 /* If we have *ORIG_P in our constant/copy table, then replace
2258 ORIG_P with its value in our constant/copy table. */
2259 new = SSA_NAME_VALUE (orig
);
2261 && (TREE_CODE (new) == SSA_NAME
2262 || is_gimple_min_invariant (new))
2263 && may_propagate_copy (orig
, new))
2265 propagate_value (orig_p
, new);
2272 /* Propagate known constants/copies into PHI nodes of BB's successor
2276 cprop_into_phis (struct dom_walk_data
*walk_data ATTRIBUTE_UNUSED
,
2279 cprop_into_successor_phis (bb
, nonzero_vars
);
2282 /* Search for redundant computations in STMT. If any are found, then
2283 replace them with the variable holding the result of the computation.
2285 If safe, record this expression into the available expression hash
2289 eliminate_redundant_computations (struct dom_walk_data
*walk_data
,
2290 tree stmt
, stmt_ann_t ann
)
2292 v_may_def_optype v_may_defs
= V_MAY_DEF_OPS (ann
);
2293 tree
*expr_p
, def
= NULL_TREE
;
2296 bool retval
= false;
2298 if (TREE_CODE (stmt
) == MODIFY_EXPR
)
2299 def
= TREE_OPERAND (stmt
, 0);
2301 /* Certain expressions on the RHS can be optimized away, but can not
2302 themselves be entered into the hash tables. */
2303 if (ann
->makes_aliased_stores
2305 || TREE_CODE (def
) != SSA_NAME
2306 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (def
)
2307 || NUM_V_MAY_DEFS (v_may_defs
) != 0)
2310 /* Check if the expression has been computed before. */
2311 cached_lhs
= lookup_avail_expr (stmt
, insert
);
2313 /* If this is an assignment and the RHS was not in the hash table,
2314 then try to simplify the RHS and lookup the new RHS in the
2316 if (! cached_lhs
&& TREE_CODE (stmt
) == MODIFY_EXPR
)
2317 cached_lhs
= simplify_rhs_and_lookup_avail_expr (walk_data
, stmt
, insert
);
2318 /* Similarly if this is a COND_EXPR and we did not find its
2319 expression in the hash table, simplify the condition and
2321 else if (! cached_lhs
&& TREE_CODE (stmt
) == COND_EXPR
)
2322 cached_lhs
= simplify_cond_and_lookup_avail_expr (stmt
, ann
, insert
);
2323 /* Similarly for a SWITCH_EXPR. */
2324 else if (!cached_lhs
&& TREE_CODE (stmt
) == SWITCH_EXPR
)
2325 cached_lhs
= simplify_switch_and_lookup_avail_expr (stmt
, insert
);
2327 opt_stats
.num_exprs_considered
++;
2329 /* Get a pointer to the expression we are trying to optimize. */
2330 if (TREE_CODE (stmt
) == COND_EXPR
)
2331 expr_p
= &COND_EXPR_COND (stmt
);
2332 else if (TREE_CODE (stmt
) == SWITCH_EXPR
)
2333 expr_p
= &SWITCH_COND (stmt
);
2334 else if (TREE_CODE (stmt
) == RETURN_EXPR
&& TREE_OPERAND (stmt
, 0))
2335 expr_p
= &TREE_OPERAND (TREE_OPERAND (stmt
, 0), 1);
2337 expr_p
= &TREE_OPERAND (stmt
, 1);
2339 /* It is safe to ignore types here since we have already done
2340 type checking in the hashing and equality routines. In fact
2341 type checking here merely gets in the way of constant
2342 propagation. Also, make sure that it is safe to propagate
2343 CACHED_LHS into *EXPR_P. */
2345 && (TREE_CODE (cached_lhs
) != SSA_NAME
2346 || may_propagate_copy (*expr_p
, cached_lhs
)))
2348 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2350 fprintf (dump_file
, " Replaced redundant expr '");
2351 print_generic_expr (dump_file
, *expr_p
, dump_flags
);
2352 fprintf (dump_file
, "' with '");
2353 print_generic_expr (dump_file
, cached_lhs
, dump_flags
);
2354 fprintf (dump_file
, "'\n");
2359 #if defined ENABLE_CHECKING
2360 gcc_assert (TREE_CODE (cached_lhs
) == SSA_NAME
2361 || is_gimple_min_invariant (cached_lhs
));
2364 if (TREE_CODE (cached_lhs
) == ADDR_EXPR
2365 || (POINTER_TYPE_P (TREE_TYPE (*expr_p
))
2366 && is_gimple_min_invariant (cached_lhs
)))
2369 propagate_tree_value (expr_p
, cached_lhs
);
2375 /* STMT, a MODIFY_EXPR, may create certain equivalences, in either
2376 the available expressions table or the const_and_copies table.
2377 Detect and record those equivalences. */
2380 record_equivalences_from_stmt (tree stmt
,
2384 tree lhs
= TREE_OPERAND (stmt
, 0);
2385 enum tree_code lhs_code
= TREE_CODE (lhs
);
2388 if (lhs_code
== SSA_NAME
)
2390 tree rhs
= TREE_OPERAND (stmt
, 1);
2392 /* Strip away any useless type conversions. */
2393 STRIP_USELESS_TYPE_CONVERSION (rhs
);
2395 /* If the RHS of the assignment is a constant or another variable that
2396 may be propagated, register it in the CONST_AND_COPIES table. We
2397 do not need to record unwind data for this, since this is a true
2398 assignment and not an equivalence inferred from a comparison. All
2399 uses of this ssa name are dominated by this assignment, so unwinding
2400 just costs time and space. */
2402 && (TREE_CODE (rhs
) == SSA_NAME
2403 || is_gimple_min_invariant (rhs
)))
2404 SSA_NAME_VALUE (lhs
) = rhs
;
2406 /* alloca never returns zero and the address of a non-weak symbol
2407 is never zero. NOP_EXPRs and CONVERT_EXPRs can be completely
2408 stripped as they do not affect this equivalence. */
2409 while (TREE_CODE (rhs
) == NOP_EXPR
2410 || TREE_CODE (rhs
) == CONVERT_EXPR
)
2411 rhs
= TREE_OPERAND (rhs
, 0);
2413 if (alloca_call_p (rhs
)
2414 || (TREE_CODE (rhs
) == ADDR_EXPR
2415 && DECL_P (TREE_OPERAND (rhs
, 0))
2416 && ! DECL_WEAK (TREE_OPERAND (rhs
, 0))))
2417 record_var_is_nonzero (lhs
);
2419 /* IOR of any value with a nonzero value will result in a nonzero
2420 value. Even if we do not know the exact result recording that
2421 the result is nonzero is worth the effort. */
2422 if (TREE_CODE (rhs
) == BIT_IOR_EXPR
2423 && integer_nonzerop (TREE_OPERAND (rhs
, 1)))
2424 record_var_is_nonzero (lhs
);
2427 /* Look at both sides for pointer dereferences. If we find one, then
2428 the pointer must be nonnull and we can enter that equivalence into
2430 if (flag_delete_null_pointer_checks
)
2431 for (i
= 0; i
< 2; i
++)
2433 tree t
= TREE_OPERAND (stmt
, i
);
2435 /* Strip away any COMPONENT_REFs. */
2436 while (TREE_CODE (t
) == COMPONENT_REF
)
2437 t
= TREE_OPERAND (t
, 0);
2439 /* Now see if this is a pointer dereference. */
2440 if (INDIRECT_REF_P (t
))
2442 tree op
= TREE_OPERAND (t
, 0);
2444 /* If the pointer is a SSA variable, then enter new
2445 equivalences into the hash table. */
2446 while (TREE_CODE (op
) == SSA_NAME
)
2448 tree def
= SSA_NAME_DEF_STMT (op
);
2450 record_var_is_nonzero (op
);
2452 /* And walk up the USE-DEF chains noting other SSA_NAMEs
2453 which are known to have a nonzero value. */
2455 && TREE_CODE (def
) == MODIFY_EXPR
2456 && TREE_CODE (TREE_OPERAND (def
, 1)) == NOP_EXPR
)
2457 op
= TREE_OPERAND (TREE_OPERAND (def
, 1), 0);
2464 /* A memory store, even an aliased store, creates a useful
2465 equivalence. By exchanging the LHS and RHS, creating suitable
2466 vops and recording the result in the available expression table,
2467 we may be able to expose more redundant loads. */
2468 if (!ann
->has_volatile_ops
2469 && (TREE_CODE (TREE_OPERAND (stmt
, 1)) == SSA_NAME
2470 || is_gimple_min_invariant (TREE_OPERAND (stmt
, 1)))
2471 && !is_gimple_reg (lhs
))
2473 tree rhs
= TREE_OPERAND (stmt
, 1);
2476 /* FIXME: If the LHS of the assignment is a bitfield and the RHS
2477 is a constant, we need to adjust the constant to fit into the
2478 type of the LHS. If the LHS is a bitfield and the RHS is not
2479 a constant, then we can not record any equivalences for this
2480 statement since we would need to represent the widening or
2481 narrowing of RHS. This fixes gcc.c-torture/execute/921016-1.c
2482 and should not be necessary if GCC represented bitfields
2484 if (lhs_code
== COMPONENT_REF
2485 && DECL_BIT_FIELD (TREE_OPERAND (lhs
, 1)))
2487 if (TREE_CONSTANT (rhs
))
2488 rhs
= widen_bitfield (rhs
, TREE_OPERAND (lhs
, 1), lhs
);
2492 /* If the value overflowed, then we can not use this equivalence. */
2493 if (rhs
&& ! is_gimple_min_invariant (rhs
))
2499 /* Build a new statement with the RHS and LHS exchanged. */
2500 new = build (MODIFY_EXPR
, TREE_TYPE (stmt
), rhs
, lhs
);
2502 create_ssa_artficial_load_stmt (&(ann
->operands
), new);
2504 /* Finally enter the statement into the available expression
2506 lookup_avail_expr (new, true);
2511 /* Replace *OP_P in STMT with any known equivalent value for *OP_P from
2512 CONST_AND_COPIES. */
2515 cprop_operand (tree stmt
, use_operand_p op_p
)
2517 bool may_have_exposed_new_symbols
= false;
2519 tree op
= USE_FROM_PTR (op_p
);
2521 /* If the operand has a known constant value or it is known to be a
2522 copy of some other variable, use the value or copy stored in
2523 CONST_AND_COPIES. */
2524 val
= SSA_NAME_VALUE (op
);
2525 if (val
&& TREE_CODE (val
) != VALUE_HANDLE
)
2527 tree op_type
, val_type
;
2529 /* Do not change the base variable in the virtual operand
2530 tables. That would make it impossible to reconstruct
2531 the renamed virtual operand if we later modify this
2532 statement. Also only allow the new value to be an SSA_NAME
2533 for propagation into virtual operands. */
2534 if (!is_gimple_reg (op
)
2535 && (get_virtual_var (val
) != get_virtual_var (op
)
2536 || TREE_CODE (val
) != SSA_NAME
))
2539 /* Do not replace hard register operands in asm statements. */
2540 if (TREE_CODE (stmt
) == ASM_EXPR
2541 && !may_propagate_copy_into_asm (op
))
2544 /* Get the toplevel type of each operand. */
2545 op_type
= TREE_TYPE (op
);
2546 val_type
= TREE_TYPE (val
);
2548 /* While both types are pointers, get the type of the object
2550 while (POINTER_TYPE_P (op_type
) && POINTER_TYPE_P (val_type
))
2552 op_type
= TREE_TYPE (op_type
);
2553 val_type
= TREE_TYPE (val_type
);
2556 /* Make sure underlying types match before propagating a constant by
2557 converting the constant to the proper type. Note that convert may
2558 return a non-gimple expression, in which case we ignore this
2559 propagation opportunity. */
2560 if (TREE_CODE (val
) != SSA_NAME
)
2562 if (!lang_hooks
.types_compatible_p (op_type
, val_type
))
2564 val
= fold_convert (TREE_TYPE (op
), val
);
2565 if (!is_gimple_min_invariant (val
))
2570 /* Certain operands are not allowed to be copy propagated due
2571 to their interaction with exception handling and some GCC
2573 else if (!may_propagate_copy (op
, val
))
2577 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2579 fprintf (dump_file
, " Replaced '");
2580 print_generic_expr (dump_file
, op
, dump_flags
);
2581 fprintf (dump_file
, "' with %s '",
2582 (TREE_CODE (val
) != SSA_NAME
? "constant" : "variable"));
2583 print_generic_expr (dump_file
, val
, dump_flags
);
2584 fprintf (dump_file
, "'\n");
2587 /* If VAL is an ADDR_EXPR or a constant of pointer type, note
2588 that we may have exposed a new symbol for SSA renaming. */
2589 if (TREE_CODE (val
) == ADDR_EXPR
2590 || (POINTER_TYPE_P (TREE_TYPE (op
))
2591 && is_gimple_min_invariant (val
)))
2592 may_have_exposed_new_symbols
= true;
2594 propagate_value (op_p
, val
);
2596 /* And note that we modified this statement. This is now
2597 safe, even if we changed virtual operands since we will
2598 rescan the statement and rewrite its operands again. */
2601 return may_have_exposed_new_symbols
;
2604 /* CONST_AND_COPIES is a table which maps an SSA_NAME to the current
2605 known value for that SSA_NAME (or NULL if no value is known).
2607 Propagate values from CONST_AND_COPIES into the uses, vuses and
2608 v_may_def_ops of STMT. */
2611 cprop_into_stmt (tree stmt
)
2613 bool may_have_exposed_new_symbols
= false;
2618 FOR_EACH_SSA_USE_OPERAND (op_p
, stmt
, iter
, SSA_OP_ALL_USES
)
2620 if (TREE_CODE (USE_FROM_PTR (op_p
)) == SSA_NAME
)
2621 may_have_exposed_new_symbols
|= cprop_operand (stmt
, op_p
);
2624 if (may_have_exposed_new_symbols
)
2626 rhs
= get_rhs (stmt
);
2627 if (rhs
&& TREE_CODE (rhs
) == ADDR_EXPR
)
2628 recompute_tree_invarant_for_addr_expr (rhs
);
2631 return may_have_exposed_new_symbols
;
2635 /* Optimize the statement pointed by iterator SI.
2637 We try to perform some simplistic global redundancy elimination and
2638 constant propagation:
2640 1- To detect global redundancy, we keep track of expressions that have
2641 been computed in this block and its dominators. If we find that the
2642 same expression is computed more than once, we eliminate repeated
2643 computations by using the target of the first one.
2645 2- Constant values and copy assignments. This is used to do very
2646 simplistic constant and copy propagation. When a constant or copy
2647 assignment is found, we map the value on the RHS of the assignment to
2648 the variable in the LHS in the CONST_AND_COPIES table. */
2651 optimize_stmt (struct dom_walk_data
*walk_data
, basic_block bb
,
2652 block_stmt_iterator si
)
2656 bool may_optimize_p
;
2657 bool may_have_exposed_new_symbols
= false;
2659 stmt
= bsi_stmt (si
);
2661 get_stmt_operands (stmt
);
2662 ann
= stmt_ann (stmt
);
2663 opt_stats
.num_stmts
++;
2664 may_have_exposed_new_symbols
= false;
2666 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2668 fprintf (dump_file
, "Optimizing statement ");
2669 print_generic_stmt (dump_file
, stmt
, TDF_SLIM
);
2672 /* Const/copy propagate into USES, VUSES and the RHS of V_MAY_DEFs. */
2673 may_have_exposed_new_symbols
= cprop_into_stmt (stmt
);
2675 /* If the statement has been modified with constant replacements,
2676 fold its RHS before checking for redundant computations. */
2679 /* Try to fold the statement making sure that STMT is kept
2681 if (fold_stmt (bsi_stmt_ptr (si
)))
2683 stmt
= bsi_stmt (si
);
2684 ann
= stmt_ann (stmt
);
2686 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2688 fprintf (dump_file
, " Folded to: ");
2689 print_generic_stmt (dump_file
, stmt
, TDF_SLIM
);
2693 /* Constant/copy propagation above may change the set of
2694 virtual operands associated with this statement. Folding
2695 may remove the need for some virtual operands.
2697 Indicate we will need to rescan and rewrite the statement. */
2698 may_have_exposed_new_symbols
= true;
2701 /* Check for redundant computations. Do this optimization only
2702 for assignments that have no volatile ops and conditionals. */
2703 may_optimize_p
= (!ann
->has_volatile_ops
2704 && ((TREE_CODE (stmt
) == RETURN_EXPR
2705 && TREE_OPERAND (stmt
, 0)
2706 && TREE_CODE (TREE_OPERAND (stmt
, 0)) == MODIFY_EXPR
2707 && ! (TREE_SIDE_EFFECTS
2708 (TREE_OPERAND (TREE_OPERAND (stmt
, 0), 1))))
2709 || (TREE_CODE (stmt
) == MODIFY_EXPR
2710 && ! TREE_SIDE_EFFECTS (TREE_OPERAND (stmt
, 1)))
2711 || TREE_CODE (stmt
) == COND_EXPR
2712 || TREE_CODE (stmt
) == SWITCH_EXPR
));
2715 may_have_exposed_new_symbols
2716 |= eliminate_redundant_computations (walk_data
, stmt
, ann
);
2718 /* Record any additional equivalences created by this statement. */
2719 if (TREE_CODE (stmt
) == MODIFY_EXPR
)
2720 record_equivalences_from_stmt (stmt
,
2724 register_definitions_for_stmt (stmt
);
2726 /* If STMT is a COND_EXPR and it was modified, then we may know
2727 where it goes. If that is the case, then mark the CFG as altered.
2729 This will cause us to later call remove_unreachable_blocks and
2730 cleanup_tree_cfg when it is safe to do so. It is not safe to
2731 clean things up here since removal of edges and such can trigger
2732 the removal of PHI nodes, which in turn can release SSA_NAMEs to
2735 That's all fine and good, except that once SSA_NAMEs are released
2736 to the manager, we must not call create_ssa_name until all references
2737 to released SSA_NAMEs have been eliminated.
2739 All references to the deleted SSA_NAMEs can not be eliminated until
2740 we remove unreachable blocks.
2742 We can not remove unreachable blocks until after we have completed
2743 any queued jump threading.
2745 We can not complete any queued jump threads until we have taken
2746 appropriate variables out of SSA form. Taking variables out of
2747 SSA form can call create_ssa_name and thus we lose.
2749 Ultimately I suspect we're going to need to change the interface
2750 into the SSA_NAME manager. */
2756 if (TREE_CODE (stmt
) == COND_EXPR
)
2757 val
= COND_EXPR_COND (stmt
);
2758 else if (TREE_CODE (stmt
) == SWITCH_EXPR
)
2759 val
= SWITCH_COND (stmt
);
2761 if (val
&& TREE_CODE (val
) == INTEGER_CST
&& find_taken_edge (bb
, val
))
2764 /* If we simplified a statement in such a way as to be shown that it
2765 cannot trap, update the eh information and the cfg to match. */
2766 if (maybe_clean_eh_stmt (stmt
))
2768 bitmap_set_bit (need_eh_cleanup
, bb
->index
);
2769 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
2770 fprintf (dump_file
, " Flagged to clear EH edges.\n");
2774 if (may_have_exposed_new_symbols
)
2775 VARRAY_PUSH_TREE (stmts_to_rescan
, bsi_stmt (si
));
2778 /* Replace the RHS of STMT with NEW_RHS. If RHS can be found in the
2779 available expression hashtable, then return the LHS from the hash
2782 If INSERT is true, then we also update the available expression
2783 hash table to account for the changes made to STMT. */
2786 update_rhs_and_lookup_avail_expr (tree stmt
, tree new_rhs
, bool insert
)
2788 tree cached_lhs
= NULL
;
2790 /* Remove the old entry from the hash table. */
2793 struct expr_hash_elt element
;
2795 initialize_hash_element (stmt
, NULL
, &element
);
2796 htab_remove_elt_with_hash (avail_exprs
, &element
, element
.hash
);
2799 /* Now update the RHS of the assignment. */
2800 TREE_OPERAND (stmt
, 1) = new_rhs
;
2802 /* Now lookup the updated statement in the hash table. */
2803 cached_lhs
= lookup_avail_expr (stmt
, insert
);
2805 /* We have now called lookup_avail_expr twice with two different
2806 versions of this same statement, once in optimize_stmt, once here.
2808 We know the call in optimize_stmt did not find an existing entry
2809 in the hash table, so a new entry was created. At the same time
2810 this statement was pushed onto the BLOCK_AVAIL_EXPRS varray.
2812 If this call failed to find an existing entry on the hash table,
2813 then the new version of this statement was entered into the
2814 hash table. And this statement was pushed onto BLOCK_AVAIL_EXPR
2815 for the second time. So there are two copies on BLOCK_AVAIL_EXPRs
2817 If this call succeeded, we still have one copy of this statement
2818 on the BLOCK_AVAIL_EXPRs varray.
2820 For both cases, we need to pop the most recent entry off the
2821 BLOCK_AVAIL_EXPRs varray. For the case where we never found this
2822 statement in the hash tables, that will leave precisely one
2823 copy of this statement on BLOCK_AVAIL_EXPRs. For the case where
2824 we found a copy of this statement in the second hash table lookup
2825 we want _no_ copies of this statement in BLOCK_AVAIL_EXPRs. */
2827 VARRAY_POP (avail_exprs_stack
);
2829 /* And make sure we record the fact that we modified this
2836 /* Search for an existing instance of STMT in the AVAIL_EXPRS table. If
2837 found, return its LHS. Otherwise insert STMT in the table and return
2840 Also, when an expression is first inserted in the AVAIL_EXPRS table, it
2841 is also added to the stack pointed by BLOCK_AVAIL_EXPRS_P, so that they
2842 can be removed when we finish processing this block and its children.
2844 NOTE: This function assumes that STMT is a MODIFY_EXPR node that
2845 contains no CALL_EXPR on its RHS and makes no volatile nor
2846 aliased references. */
2849 lookup_avail_expr (tree stmt
, bool insert
)
2854 struct expr_hash_elt
*element
= xcalloc (sizeof (struct expr_hash_elt
), 1);
2856 lhs
= TREE_CODE (stmt
) == MODIFY_EXPR
? TREE_OPERAND (stmt
, 0) : NULL
;
2858 initialize_hash_element (stmt
, lhs
, element
);
2860 /* Don't bother remembering constant assignments and copy operations.
2861 Constants and copy operations are handled by the constant/copy propagator
2862 in optimize_stmt. */
2863 if (TREE_CODE (element
->rhs
) == SSA_NAME
2864 || is_gimple_min_invariant (element
->rhs
))
2870 /* If this is an equality test against zero, see if we have recorded a
2871 nonzero value for the variable in question. */
2872 if ((TREE_CODE (element
->rhs
) == EQ_EXPR
2873 || TREE_CODE (element
->rhs
) == NE_EXPR
)
2874 && TREE_CODE (TREE_OPERAND (element
->rhs
, 0)) == SSA_NAME
2875 && integer_zerop (TREE_OPERAND (element
->rhs
, 1)))
2877 int indx
= SSA_NAME_VERSION (TREE_OPERAND (element
->rhs
, 0));
2879 if (bitmap_bit_p (nonzero_vars
, indx
))
2881 tree t
= element
->rhs
;
2884 if (TREE_CODE (t
) == EQ_EXPR
)
2885 return boolean_false_node
;
2887 return boolean_true_node
;
2891 /* Finally try to find the expression in the main expression hash table. */
2892 slot
= htab_find_slot_with_hash (avail_exprs
, element
, element
->hash
,
2893 (insert
? INSERT
: NO_INSERT
));
2902 *slot
= (void *) element
;
2903 VARRAY_PUSH_TREE (avail_exprs_stack
, stmt
? stmt
: element
->rhs
);
2907 /* Extract the LHS of the assignment so that it can be used as the current
2908 definition of another variable. */
2909 lhs
= ((struct expr_hash_elt
*)*slot
)->lhs
;
2911 /* See if the LHS appears in the CONST_AND_COPIES table. If it does, then
2912 use the value from the const_and_copies table. */
2913 if (TREE_CODE (lhs
) == SSA_NAME
)
2915 temp
= SSA_NAME_VALUE (lhs
);
2916 if (temp
&& TREE_CODE (temp
) != VALUE_HANDLE
)
2924 /* Given a condition COND, record into HI_P, LO_P and INVERTED_P the
2925 range of values that result in the conditional having a true value.
2927 Return true if we are successful in extracting a range from COND and
2928 false if we are unsuccessful. */
2931 extract_range_from_cond (tree cond
, tree
*hi_p
, tree
*lo_p
, int *inverted_p
)
2933 tree op1
= TREE_OPERAND (cond
, 1);
2934 tree high
, low
, type
;
2937 /* Experiments have shown that it's rarely, if ever useful to
2938 record ranges for enumerations. Presumably this is due to
2939 the fact that they're rarely used directly. They are typically
2940 cast into an integer type and used that way. */
2941 if (TREE_CODE (TREE_TYPE (op1
)) != INTEGER_TYPE
)
2944 type
= TREE_TYPE (op1
);
2946 switch (TREE_CODE (cond
))
2960 high
= TYPE_MAX_VALUE (type
);
2965 low
= int_const_binop (PLUS_EXPR
, op1
, integer_one_node
, 1);
2966 high
= TYPE_MAX_VALUE (type
);
2972 low
= TYPE_MIN_VALUE (type
);
2977 high
= int_const_binop (MINUS_EXPR
, op1
, integer_one_node
, 1);
2978 low
= TYPE_MIN_VALUE (type
);
2988 *inverted_p
= inverted
;
2992 /* Record a range created by COND for basic block BB. */
2995 record_range (tree cond
, basic_block bb
)
2997 /* We explicitly ignore NE_EXPRs. They rarely allow for meaningful
2998 range optimizations and significantly complicate the implementation. */
2999 if (COMPARISON_CLASS_P (cond
)
3000 && TREE_CODE (cond
) != NE_EXPR
3001 && TREE_CODE (TREE_TYPE (TREE_OPERAND (cond
, 1))) == INTEGER_TYPE
)
3003 struct vrp_hash_elt
*vrp_hash_elt
;
3004 struct vrp_element
*element
;
3005 varray_type
*vrp_records_p
;
3009 vrp_hash_elt
= xmalloc (sizeof (struct vrp_hash_elt
));
3010 vrp_hash_elt
->var
= TREE_OPERAND (cond
, 0);
3011 vrp_hash_elt
->records
= NULL
;
3012 slot
= htab_find_slot (vrp_data
, vrp_hash_elt
, INSERT
);
3015 *slot
= (void *) vrp_hash_elt
;
3017 vrp_hash_elt
= (struct vrp_hash_elt
*) *slot
;
3018 vrp_records_p
= &vrp_hash_elt
->records
;
3020 element
= ggc_alloc (sizeof (struct vrp_element
));
3021 element
->low
= NULL
;
3022 element
->high
= NULL
;
3023 element
->cond
= cond
;
3026 if (*vrp_records_p
== NULL
)
3027 VARRAY_GENERIC_PTR_INIT (*vrp_records_p
, 2, "vrp records");
3029 VARRAY_PUSH_GENERIC_PTR (*vrp_records_p
, element
);
3030 VARRAY_PUSH_TREE (vrp_variables_stack
, TREE_OPERAND (cond
, 0));
3034 /* Given a conditional statement IF_STMT, return the assignment 'X = Y'
3035 known to be true depending on which arm of IF_STMT is taken.
3037 Not all conditional statements will result in a useful assignment.
3038 Return NULL_TREE in that case.
3040 Also enter into the available expression table statements of
3047 This allows us to lookup the condition in a dominated block and
3048 get back a constant indicating if the condition is true. */
3050 static struct eq_expr_value
3051 get_eq_expr_value (tree if_stmt
,
3056 struct eq_expr_value retval
;
3058 cond
= COND_EXPR_COND (if_stmt
);
3062 /* If the conditional is a single variable 'X', return 'X = 1' for
3063 the true arm and 'X = 0' on the false arm. */
3064 if (TREE_CODE (cond
) == SSA_NAME
)
3067 retval
.src
= constant_boolean_node (true_arm
, TREE_TYPE (cond
));
3071 /* If we have a comparison expression, then record its result into
3072 the available expression table. */
3073 if (COMPARISON_CLASS_P (cond
))
3075 tree op0
= TREE_OPERAND (cond
, 0);
3076 tree op1
= TREE_OPERAND (cond
, 1);
3078 /* Special case comparing booleans against a constant as we know
3079 the value of OP0 on both arms of the branch. i.e., we can record
3080 an equivalence for OP0 rather than COND. */
3081 if ((TREE_CODE (cond
) == EQ_EXPR
|| TREE_CODE (cond
) == NE_EXPR
)
3082 && TREE_CODE (op0
) == SSA_NAME
3083 && TREE_CODE (TREE_TYPE (op0
)) == BOOLEAN_TYPE
3084 && is_gimple_min_invariant (op1
))
3086 if ((TREE_CODE (cond
) == EQ_EXPR
&& true_arm
)
3087 || (TREE_CODE (cond
) == NE_EXPR
&& ! true_arm
))
3093 if (integer_zerop (op1
))
3094 retval
.src
= boolean_true_node
;
3096 retval
.src
= boolean_false_node
;
3102 if (TREE_CODE (op0
) == SSA_NAME
3103 && (is_gimple_min_invariant (op1
) || TREE_CODE (op1
) == SSA_NAME
))
3105 tree inverted
= invert_truthvalue (cond
);
3107 /* When we find an available expression in the hash table, we replace
3108 the expression with the LHS of the statement in the hash table.
3110 So, we want to build statements such as "1 = <condition>" on the
3111 true arm and "0 = <condition>" on the false arm. That way if we
3112 find the expression in the table, we will replace it with its
3113 known constant value. Also insert inversions of the result and
3114 condition into the hash table. */
3117 record_cond (cond
, boolean_true_node
);
3118 record_dominating_conditions (cond
);
3119 record_cond (inverted
, boolean_false_node
);
3121 if (TREE_CONSTANT (op1
))
3122 record_range (cond
, bb
);
3124 /* If the conditional is of the form 'X == Y', return 'X = Y'
3125 for the true arm. */
3126 if (TREE_CODE (cond
) == EQ_EXPR
)
3136 record_cond (inverted
, boolean_true_node
);
3137 record_dominating_conditions (inverted
);
3138 record_cond (cond
, boolean_false_node
);
3140 if (TREE_CONSTANT (op1
))
3141 record_range (inverted
, bb
);
3143 /* If the conditional is of the form 'X != Y', return 'X = Y'
3144 for the false arm. */
3145 if (TREE_CODE (cond
) == NE_EXPR
)
3158 /* Hashing and equality functions for VRP_DATA.
3160 Since this hash table is addressed by SSA_NAMEs, we can hash on
3161 their version number and equality can be determined with a
3162 pointer comparison. */
3165 vrp_hash (const void *p
)
3167 tree var
= ((struct vrp_hash_elt
*)p
)->var
;
3169 return SSA_NAME_VERSION (var
);
3173 vrp_eq (const void *p1
, const void *p2
)
3175 tree var1
= ((struct vrp_hash_elt
*)p1
)->var
;
3176 tree var2
= ((struct vrp_hash_elt
*)p2
)->var
;
3178 return var1
== var2
;
3181 /* Hashing and equality functions for AVAIL_EXPRS. The table stores
3182 MODIFY_EXPR statements. We compute a value number for expressions using
3183 the code of the expression and the SSA numbers of its operands. */
3186 avail_expr_hash (const void *p
)
3188 stmt_ann_t ann
= ((struct expr_hash_elt
*)p
)->ann
;
3189 tree rhs
= ((struct expr_hash_elt
*)p
)->rhs
;
3194 /* iterative_hash_expr knows how to deal with any expression and
3195 deals with commutative operators as well, so just use it instead
3196 of duplicating such complexities here. */
3197 val
= iterative_hash_expr (rhs
, val
);
3199 /* If the hash table entry is not associated with a statement, then we
3200 can just hash the expression and not worry about virtual operands
3205 /* Add the SSA version numbers of every vuse operand. This is important
3206 because compound variables like arrays are not renamed in the
3207 operands. Rather, the rename is done on the virtual variable
3208 representing all the elements of the array. */
3209 vuses
= VUSE_OPS (ann
);
3210 for (i
= 0; i
< NUM_VUSES (vuses
); i
++)
3211 val
= iterative_hash_expr (VUSE_OP (vuses
, i
), val
);
3217 real_avail_expr_hash (const void *p
)
3219 return ((const struct expr_hash_elt
*)p
)->hash
;
3223 avail_expr_eq (const void *p1
, const void *p2
)
3225 stmt_ann_t ann1
= ((struct expr_hash_elt
*)p1
)->ann
;
3226 tree rhs1
= ((struct expr_hash_elt
*)p1
)->rhs
;
3227 stmt_ann_t ann2
= ((struct expr_hash_elt
*)p2
)->ann
;
3228 tree rhs2
= ((struct expr_hash_elt
*)p2
)->rhs
;
3230 /* If they are the same physical expression, return true. */
3231 if (rhs1
== rhs2
&& ann1
== ann2
)
3234 /* If their codes are not equal, then quit now. */
3235 if (TREE_CODE (rhs1
) != TREE_CODE (rhs2
))
3238 /* In case of a collision, both RHS have to be identical and have the
3239 same VUSE operands. */
3240 if ((TREE_TYPE (rhs1
) == TREE_TYPE (rhs2
)
3241 || lang_hooks
.types_compatible_p (TREE_TYPE (rhs1
), TREE_TYPE (rhs2
)))
3242 && operand_equal_p (rhs1
, rhs2
, OEP_PURE_SAME
))
3244 vuse_optype ops1
= NULL
;
3245 vuse_optype ops2
= NULL
;
3246 size_t num_ops1
= 0;
3247 size_t num_ops2
= 0;
3252 ops1
= VUSE_OPS (ann1
);
3253 num_ops1
= NUM_VUSES (ops1
);
3258 ops2
= VUSE_OPS (ann2
);
3259 num_ops2
= NUM_VUSES (ops2
);
3262 /* If the number of virtual uses is different, then we consider
3264 if (num_ops1
!= num_ops2
)
3267 for (i
= 0; i
< num_ops1
; i
++)
3268 if (VUSE_OP (ops1
, i
) != VUSE_OP (ops2
, i
))
3271 gcc_assert (((struct expr_hash_elt
*)p1
)->hash
3272 == ((struct expr_hash_elt
*)p2
)->hash
);
3279 /* Given STMT and a pointer to the block local definitions BLOCK_DEFS_P,
3280 register register all objects set by this statement into BLOCK_DEFS_P
3284 register_definitions_for_stmt (tree stmt
)
3289 FOR_EACH_SSA_TREE_OPERAND (def
, stmt
, iter
, SSA_OP_ALL_DEFS
)
3292 /* FIXME: We shouldn't be registering new defs if the variable
3293 doesn't need to be renamed. */
3294 register_new_def (def
, &block_defs_stack
);