2013-05-30 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / tree-ssa-forwprop.c
blob6043d318d71a1351ad7be1e8c3bcb3ed06f29d8d
1 /* Forward propagation of expressions for single use variables.
2 Copyright (C) 2004-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "tm_p.h"
26 #include "basic-block.h"
27 #include "gimple-pretty-print.h"
28 #include "tree-flow.h"
29 #include "tree-pass.h"
30 #include "langhooks.h"
31 #include "flags.h"
32 #include "gimple.h"
33 #include "expr.h"
34 #include "cfgloop.h"
35 #include "optabs.h"
36 #include "tree-ssa-propagate.h"
38 /* This pass propagates the RHS of assignment statements into use
39 sites of the LHS of the assignment. It's basically a specialized
40 form of tree combination. It is hoped all of this can disappear
41 when we have a generalized tree combiner.
43 One class of common cases we handle is forward propagating a single use
44 variable into a COND_EXPR.
46 bb0:
47 x = a COND b;
48 if (x) goto ... else goto ...
50 Will be transformed into:
52 bb0:
53 if (a COND b) goto ... else goto ...
55 Similarly for the tests (x == 0), (x != 0), (x == 1) and (x != 1).
57 Or (assuming c1 and c2 are constants):
59 bb0:
60 x = a + c1;
61 if (x EQ/NEQ c2) goto ... else goto ...
63 Will be transformed into:
65 bb0:
66 if (a EQ/NEQ (c2 - c1)) goto ... else goto ...
68 Similarly for x = a - c1.
72 bb0:
73 x = !a
74 if (x) goto ... else goto ...
76 Will be transformed into:
78 bb0:
79 if (a == 0) goto ... else goto ...
81 Similarly for the tests (x == 0), (x != 0), (x == 1) and (x != 1).
82 For these cases, we propagate A into all, possibly more than one,
83 COND_EXPRs that use X.
87 bb0:
88 x = (typecast) a
89 if (x) goto ... else goto ...
91 Will be transformed into:
93 bb0:
94 if (a != 0) goto ... else goto ...
96 (Assuming a is an integral type and x is a boolean or x is an
97 integral and a is a boolean.)
99 Similarly for the tests (x == 0), (x != 0), (x == 1) and (x != 1).
100 For these cases, we propagate A into all, possibly more than one,
101 COND_EXPRs that use X.
103 In addition to eliminating the variable and the statement which assigns
104 a value to the variable, we may be able to later thread the jump without
105 adding insane complexity in the dominator optimizer.
107 Also note these transformations can cascade. We handle this by having
108 a worklist of COND_EXPR statements to examine. As we make a change to
109 a statement, we put it back on the worklist to examine on the next
110 iteration of the main loop.
112 A second class of propagation opportunities arises for ADDR_EXPR
113 nodes.
115 ptr = &x->y->z;
116 res = *ptr;
118 Will get turned into
120 res = x->y->z;
123 ptr = (type1*)&type2var;
124 res = *ptr
126 Will get turned into (if type1 and type2 are the same size
127 and neither have volatile on them):
128 res = VIEW_CONVERT_EXPR<type1>(type2var)
132 ptr = &x[0];
133 ptr2 = ptr + <constant>;
135 Will get turned into
137 ptr2 = &x[constant/elementsize];
141 ptr = &x[0];
142 offset = index * element_size;
143 offset_p = (pointer) offset;
144 ptr2 = ptr + offset_p
146 Will get turned into:
148 ptr2 = &x[index];
151 ssa = (int) decl
152 res = ssa & 1
154 Provided that decl has known alignment >= 2, will get turned into
156 res = 0
158 We also propagate casts into SWITCH_EXPR and COND_EXPR conditions to
159 allow us to remove the cast and {NOT_EXPR,NEG_EXPR} into a subsequent
160 {NOT_EXPR,NEG_EXPR}.
162 This will (of course) be extended as other needs arise. */
164 static bool forward_propagate_addr_expr (tree name, tree rhs);
166 /* Set to true if we delete dead edges during the optimization. */
167 static bool cfg_changed;
169 static tree rhs_to_tree (tree type, gimple stmt);
171 /* Get the next statement we can propagate NAME's value into skipping
172 trivial copies. Returns the statement that is suitable as a
173 propagation destination or NULL_TREE if there is no such one.
174 This only returns destinations in a single-use chain. FINAL_NAME_P
175 if non-NULL is written to the ssa name that represents the use. */
177 static gimple
178 get_prop_dest_stmt (tree name, tree *final_name_p)
180 use_operand_p use;
181 gimple use_stmt;
183 do {
184 /* If name has multiple uses, bail out. */
185 if (!single_imm_use (name, &use, &use_stmt))
186 return NULL;
188 /* If this is not a trivial copy, we found it. */
189 if (!gimple_assign_ssa_name_copy_p (use_stmt)
190 || gimple_assign_rhs1 (use_stmt) != name)
191 break;
193 /* Continue searching uses of the copy destination. */
194 name = gimple_assign_lhs (use_stmt);
195 } while (1);
197 if (final_name_p)
198 *final_name_p = name;
200 return use_stmt;
203 /* Get the statement we can propagate from into NAME skipping
204 trivial copies. Returns the statement which defines the
205 propagation source or NULL_TREE if there is no such one.
206 If SINGLE_USE_ONLY is set considers only sources which have
207 a single use chain up to NAME. If SINGLE_USE_P is non-null,
208 it is set to whether the chain to NAME is a single use chain
209 or not. SINGLE_USE_P is not written to if SINGLE_USE_ONLY is set. */
211 static gimple
212 get_prop_source_stmt (tree name, bool single_use_only, bool *single_use_p)
214 bool single_use = true;
216 do {
217 gimple def_stmt = SSA_NAME_DEF_STMT (name);
219 if (!has_single_use (name))
221 single_use = false;
222 if (single_use_only)
223 return NULL;
226 /* If name is defined by a PHI node or is the default def, bail out. */
227 if (!is_gimple_assign (def_stmt))
228 return NULL;
230 /* If def_stmt is a simple copy, continue looking. */
231 if (gimple_assign_rhs_code (def_stmt) == SSA_NAME)
232 name = gimple_assign_rhs1 (def_stmt);
233 else
235 if (!single_use_only && single_use_p)
236 *single_use_p = single_use;
238 return def_stmt;
240 } while (1);
243 /* Checks if the destination ssa name in DEF_STMT can be used as
244 propagation source. Returns true if so, otherwise false. */
246 static bool
247 can_propagate_from (gimple def_stmt)
249 gcc_assert (is_gimple_assign (def_stmt));
251 /* If the rhs has side-effects we cannot propagate from it. */
252 if (gimple_has_volatile_ops (def_stmt))
253 return false;
255 /* If the rhs is a load we cannot propagate from it. */
256 if (TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) == tcc_reference
257 || TREE_CODE_CLASS (gimple_assign_rhs_code (def_stmt)) == tcc_declaration)
258 return false;
260 /* Constants can be always propagated. */
261 if (gimple_assign_single_p (def_stmt)
262 && is_gimple_min_invariant (gimple_assign_rhs1 (def_stmt)))
263 return true;
265 /* We cannot propagate ssa names that occur in abnormal phi nodes. */
266 if (stmt_references_abnormal_ssa_name (def_stmt))
267 return false;
269 /* If the definition is a conversion of a pointer to a function type,
270 then we can not apply optimizations as some targets require
271 function pointers to be canonicalized and in this case this
272 optimization could eliminate a necessary canonicalization. */
273 if (CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def_stmt)))
275 tree rhs = gimple_assign_rhs1 (def_stmt);
276 if (POINTER_TYPE_P (TREE_TYPE (rhs))
277 && TREE_CODE (TREE_TYPE (TREE_TYPE (rhs))) == FUNCTION_TYPE)
278 return false;
281 return true;
284 /* Remove a chain of dead statements starting at the definition of
285 NAME. The chain is linked via the first operand of the defining statements.
286 If NAME was replaced in its only use then this function can be used
287 to clean up dead stmts. The function handles already released SSA
288 names gracefully.
289 Returns true if cleanup-cfg has to run. */
291 static bool
292 remove_prop_source_from_use (tree name)
294 gimple_stmt_iterator gsi;
295 gimple stmt;
296 bool cfg_changed = false;
298 do {
299 basic_block bb;
301 if (SSA_NAME_IN_FREE_LIST (name)
302 || SSA_NAME_IS_DEFAULT_DEF (name)
303 || !has_zero_uses (name))
304 return cfg_changed;
306 stmt = SSA_NAME_DEF_STMT (name);
307 if (gimple_code (stmt) == GIMPLE_PHI
308 || gimple_has_side_effects (stmt))
309 return cfg_changed;
311 bb = gimple_bb (stmt);
312 gsi = gsi_for_stmt (stmt);
313 unlink_stmt_vdef (stmt);
314 if (gsi_remove (&gsi, true))
315 cfg_changed |= gimple_purge_dead_eh_edges (bb);
316 release_defs (stmt);
318 name = is_gimple_assign (stmt) ? gimple_assign_rhs1 (stmt) : NULL_TREE;
319 } while (name && TREE_CODE (name) == SSA_NAME);
321 return cfg_changed;
324 /* Return the rhs of a gimple_assign STMT in a form of a single tree,
325 converted to type TYPE.
327 This should disappear, but is needed so we can combine expressions and use
328 the fold() interfaces. Long term, we need to develop folding and combine
329 routines that deal with gimple exclusively . */
331 static tree
332 rhs_to_tree (tree type, gimple stmt)
334 location_t loc = gimple_location (stmt);
335 enum tree_code code = gimple_assign_rhs_code (stmt);
336 if (get_gimple_rhs_class (code) == GIMPLE_TERNARY_RHS)
337 return fold_build3_loc (loc, code, type, gimple_assign_rhs1 (stmt),
338 gimple_assign_rhs2 (stmt),
339 gimple_assign_rhs3 (stmt));
340 else if (get_gimple_rhs_class (code) == GIMPLE_BINARY_RHS)
341 return fold_build2_loc (loc, code, type, gimple_assign_rhs1 (stmt),
342 gimple_assign_rhs2 (stmt));
343 else if (get_gimple_rhs_class (code) == GIMPLE_UNARY_RHS)
344 return build1 (code, type, gimple_assign_rhs1 (stmt));
345 else if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS)
346 return gimple_assign_rhs1 (stmt);
347 else
348 gcc_unreachable ();
351 /* Combine OP0 CODE OP1 in the context of a COND_EXPR. Returns
352 the folded result in a form suitable for COND_EXPR_COND or
353 NULL_TREE, if there is no suitable simplified form. If
354 INVARIANT_ONLY is true only gimple_min_invariant results are
355 considered simplified. */
357 static tree
358 combine_cond_expr_cond (gimple stmt, enum tree_code code, tree type,
359 tree op0, tree op1, bool invariant_only)
361 tree t;
363 gcc_assert (TREE_CODE_CLASS (code) == tcc_comparison);
365 fold_defer_overflow_warnings ();
366 t = fold_binary_loc (gimple_location (stmt), code, type, op0, op1);
367 if (!t)
369 fold_undefer_overflow_warnings (false, NULL, 0);
370 return NULL_TREE;
373 /* Require that we got a boolean type out if we put one in. */
374 gcc_assert (TREE_CODE (TREE_TYPE (t)) == TREE_CODE (type));
376 /* Canonicalize the combined condition for use in a COND_EXPR. */
377 t = canonicalize_cond_expr_cond (t);
379 /* Bail out if we required an invariant but didn't get one. */
380 if (!t || (invariant_only && !is_gimple_min_invariant (t)))
382 fold_undefer_overflow_warnings (false, NULL, 0);
383 return NULL_TREE;
386 fold_undefer_overflow_warnings (!gimple_no_warning_p (stmt), stmt, 0);
388 return t;
391 /* Combine the comparison OP0 CODE OP1 at LOC with the defining statements
392 of its operand. Return a new comparison tree or NULL_TREE if there
393 were no simplifying combines. */
395 static tree
396 forward_propagate_into_comparison_1 (gimple stmt,
397 enum tree_code code, tree type,
398 tree op0, tree op1)
400 tree tmp = NULL_TREE;
401 tree rhs0 = NULL_TREE, rhs1 = NULL_TREE;
402 bool single_use0_p = false, single_use1_p = false;
404 /* For comparisons use the first operand, that is likely to
405 simplify comparisons against constants. */
406 if (TREE_CODE (op0) == SSA_NAME)
408 gimple def_stmt = get_prop_source_stmt (op0, false, &single_use0_p);
409 if (def_stmt && can_propagate_from (def_stmt))
411 rhs0 = rhs_to_tree (TREE_TYPE (op1), def_stmt);
412 tmp = combine_cond_expr_cond (stmt, code, type,
413 rhs0, op1, !single_use0_p);
414 if (tmp)
415 return tmp;
419 /* If that wasn't successful, try the second operand. */
420 if (TREE_CODE (op1) == SSA_NAME)
422 gimple def_stmt = get_prop_source_stmt (op1, false, &single_use1_p);
423 if (def_stmt && can_propagate_from (def_stmt))
425 rhs1 = rhs_to_tree (TREE_TYPE (op0), def_stmt);
426 tmp = combine_cond_expr_cond (stmt, code, type,
427 op0, rhs1, !single_use1_p);
428 if (tmp)
429 return tmp;
433 /* If that wasn't successful either, try both operands. */
434 if (rhs0 != NULL_TREE
435 && rhs1 != NULL_TREE)
436 tmp = combine_cond_expr_cond (stmt, code, type,
437 rhs0, rhs1,
438 !(single_use0_p && single_use1_p));
440 return tmp;
443 /* Propagate from the ssa name definition statements of the assignment
444 from a comparison at *GSI into the conditional if that simplifies it.
445 Returns 1 if the stmt was modified and 2 if the CFG needs cleanup,
446 otherwise returns 0. */
448 static int
449 forward_propagate_into_comparison (gimple_stmt_iterator *gsi)
451 gimple stmt = gsi_stmt (*gsi);
452 tree tmp;
453 bool cfg_changed = false;
454 tree type = TREE_TYPE (gimple_assign_lhs (stmt));
455 tree rhs1 = gimple_assign_rhs1 (stmt);
456 tree rhs2 = gimple_assign_rhs2 (stmt);
458 /* Combine the comparison with defining statements. */
459 tmp = forward_propagate_into_comparison_1 (stmt,
460 gimple_assign_rhs_code (stmt),
461 type, rhs1, rhs2);
462 if (tmp && useless_type_conversion_p (type, TREE_TYPE (tmp)))
464 gimple_assign_set_rhs_from_tree (gsi, tmp);
465 fold_stmt (gsi);
466 update_stmt (gsi_stmt (*gsi));
468 if (TREE_CODE (rhs1) == SSA_NAME)
469 cfg_changed |= remove_prop_source_from_use (rhs1);
470 if (TREE_CODE (rhs2) == SSA_NAME)
471 cfg_changed |= remove_prop_source_from_use (rhs2);
472 return cfg_changed ? 2 : 1;
475 return 0;
478 /* Propagate from the ssa name definition statements of COND_EXPR
479 in GIMPLE_COND statement STMT into the conditional if that simplifies it.
480 Returns zero if no statement was changed, one if there were
481 changes and two if cfg_cleanup needs to run.
483 This must be kept in sync with forward_propagate_into_cond. */
485 static int
486 forward_propagate_into_gimple_cond (gimple stmt)
488 tree tmp;
489 enum tree_code code = gimple_cond_code (stmt);
490 bool cfg_changed = false;
491 tree rhs1 = gimple_cond_lhs (stmt);
492 tree rhs2 = gimple_cond_rhs (stmt);
494 /* We can do tree combining on SSA_NAME and comparison expressions. */
495 if (TREE_CODE_CLASS (gimple_cond_code (stmt)) != tcc_comparison)
496 return 0;
498 tmp = forward_propagate_into_comparison_1 (stmt, code,
499 boolean_type_node,
500 rhs1, rhs2);
501 if (tmp)
503 if (dump_file && tmp)
505 fprintf (dump_file, " Replaced '");
506 print_gimple_expr (dump_file, stmt, 0, 0);
507 fprintf (dump_file, "' with '");
508 print_generic_expr (dump_file, tmp, 0);
509 fprintf (dump_file, "'\n");
512 gimple_cond_set_condition_from_tree (stmt, unshare_expr (tmp));
513 update_stmt (stmt);
515 if (TREE_CODE (rhs1) == SSA_NAME)
516 cfg_changed |= remove_prop_source_from_use (rhs1);
517 if (TREE_CODE (rhs2) == SSA_NAME)
518 cfg_changed |= remove_prop_source_from_use (rhs2);
519 return (cfg_changed || is_gimple_min_invariant (tmp)) ? 2 : 1;
522 /* Canonicalize _Bool == 0 and _Bool != 1 to _Bool != 0 by swapping edges. */
523 if ((TREE_CODE (TREE_TYPE (rhs1)) == BOOLEAN_TYPE
524 || (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
525 && TYPE_PRECISION (TREE_TYPE (rhs1)) == 1))
526 && ((code == EQ_EXPR
527 && integer_zerop (rhs2))
528 || (code == NE_EXPR
529 && integer_onep (rhs2))))
531 basic_block bb = gimple_bb (stmt);
532 gimple_cond_set_code (stmt, NE_EXPR);
533 gimple_cond_set_rhs (stmt, build_zero_cst (TREE_TYPE (rhs1)));
534 EDGE_SUCC (bb, 0)->flags ^= (EDGE_TRUE_VALUE|EDGE_FALSE_VALUE);
535 EDGE_SUCC (bb, 1)->flags ^= (EDGE_TRUE_VALUE|EDGE_FALSE_VALUE);
536 return 1;
539 return 0;
543 /* Propagate from the ssa name definition statements of COND_EXPR
544 in the rhs of statement STMT into the conditional if that simplifies it.
545 Returns true zero if the stmt was changed. */
547 static bool
548 forward_propagate_into_cond (gimple_stmt_iterator *gsi_p)
550 gimple stmt = gsi_stmt (*gsi_p);
551 tree tmp = NULL_TREE;
552 tree cond = gimple_assign_rhs1 (stmt);
553 enum tree_code code = gimple_assign_rhs_code (stmt);
554 bool swap = false;
556 /* We can do tree combining on SSA_NAME and comparison expressions. */
557 if (COMPARISON_CLASS_P (cond))
558 tmp = forward_propagate_into_comparison_1 (stmt, TREE_CODE (cond),
559 TREE_TYPE (cond),
560 TREE_OPERAND (cond, 0),
561 TREE_OPERAND (cond, 1));
562 else if (TREE_CODE (cond) == SSA_NAME)
564 enum tree_code def_code;
565 tree name = cond;
566 gimple def_stmt = get_prop_source_stmt (name, true, NULL);
567 if (!def_stmt || !can_propagate_from (def_stmt))
568 return 0;
570 def_code = gimple_assign_rhs_code (def_stmt);
571 if (TREE_CODE_CLASS (def_code) == tcc_comparison)
572 tmp = fold_build2_loc (gimple_location (def_stmt),
573 def_code,
574 TREE_TYPE (cond),
575 gimple_assign_rhs1 (def_stmt),
576 gimple_assign_rhs2 (def_stmt));
577 else if (code == COND_EXPR
578 && ((def_code == BIT_NOT_EXPR
579 && TYPE_PRECISION (TREE_TYPE (cond)) == 1)
580 || (def_code == BIT_XOR_EXPR
581 && integer_onep (gimple_assign_rhs2 (def_stmt)))))
583 tmp = gimple_assign_rhs1 (def_stmt);
584 swap = true;
588 if (tmp
589 && is_gimple_condexpr (tmp))
591 if (dump_file && tmp)
593 fprintf (dump_file, " Replaced '");
594 print_generic_expr (dump_file, cond, 0);
595 fprintf (dump_file, "' with '");
596 print_generic_expr (dump_file, tmp, 0);
597 fprintf (dump_file, "'\n");
600 if ((code == VEC_COND_EXPR) ? integer_all_onesp (tmp)
601 : integer_onep (tmp))
602 gimple_assign_set_rhs_from_tree (gsi_p, gimple_assign_rhs2 (stmt));
603 else if (integer_zerop (tmp))
604 gimple_assign_set_rhs_from_tree (gsi_p, gimple_assign_rhs3 (stmt));
605 else
607 gimple_assign_set_rhs1 (stmt, unshare_expr (tmp));
608 if (swap)
610 tree t = gimple_assign_rhs2 (stmt);
611 gimple_assign_set_rhs2 (stmt, gimple_assign_rhs3 (stmt));
612 gimple_assign_set_rhs3 (stmt, t);
615 stmt = gsi_stmt (*gsi_p);
616 update_stmt (stmt);
618 return true;
621 return 0;
624 /* Propagate from the ssa name definition statements of COND_EXPR
625 values in the rhs of statement STMT into the conditional arms
626 if that simplifies it.
627 Returns true if the stmt was changed. */
629 static bool
630 combine_cond_exprs (gimple_stmt_iterator *gsi_p)
632 gimple stmt = gsi_stmt (*gsi_p);
633 tree cond, val1, val2;
634 bool changed = false;
636 cond = gimple_assign_rhs1 (stmt);
637 val1 = gimple_assign_rhs2 (stmt);
638 if (TREE_CODE (val1) == SSA_NAME)
640 gimple def_stmt = SSA_NAME_DEF_STMT (val1);
641 if (is_gimple_assign (def_stmt)
642 && gimple_assign_rhs_code (def_stmt) == gimple_assign_rhs_code (stmt)
643 && operand_equal_p (gimple_assign_rhs1 (def_stmt), cond, 0))
645 val1 = unshare_expr (gimple_assign_rhs2 (def_stmt));
646 gimple_assign_set_rhs2 (stmt, val1);
647 changed = true;
650 val2 = gimple_assign_rhs3 (stmt);
651 if (TREE_CODE (val2) == SSA_NAME)
653 gimple def_stmt = SSA_NAME_DEF_STMT (val2);
654 if (is_gimple_assign (def_stmt)
655 && gimple_assign_rhs_code (def_stmt) == gimple_assign_rhs_code (stmt)
656 && operand_equal_p (gimple_assign_rhs1 (def_stmt), cond, 0))
658 val2 = unshare_expr (gimple_assign_rhs3 (def_stmt));
659 gimple_assign_set_rhs3 (stmt, val2);
660 changed = true;
663 if (operand_equal_p (val1, val2, 0))
665 gimple_assign_set_rhs_from_tree (gsi_p, val1);
666 stmt = gsi_stmt (*gsi_p);
667 changed = true;
670 if (changed)
671 update_stmt (stmt);
673 return changed;
676 /* We've just substituted an ADDR_EXPR into stmt. Update all the
677 relevant data structures to match. */
679 static void
680 tidy_after_forward_propagate_addr (gimple stmt)
682 /* We may have turned a trapping insn into a non-trapping insn. */
683 if (maybe_clean_or_replace_eh_stmt (stmt, stmt)
684 && gimple_purge_dead_eh_edges (gimple_bb (stmt)))
685 cfg_changed = true;
687 if (TREE_CODE (gimple_assign_rhs1 (stmt)) == ADDR_EXPR)
688 recompute_tree_invariant_for_addr_expr (gimple_assign_rhs1 (stmt));
691 /* NAME is a SSA_NAME representing DEF_RHS which is of the form
692 ADDR_EXPR <whatever>.
694 Try to forward propagate the ADDR_EXPR into the use USE_STMT.
695 Often this will allow for removal of an ADDR_EXPR and INDIRECT_REF
696 node or for recovery of array indexing from pointer arithmetic.
698 Return true if the propagation was successful (the propagation can
699 be not totally successful, yet things may have been changed). */
701 static bool
702 forward_propagate_addr_expr_1 (tree name, tree def_rhs,
703 gimple_stmt_iterator *use_stmt_gsi,
704 bool single_use_p)
706 tree lhs, rhs, rhs2, array_ref;
707 gimple use_stmt = gsi_stmt (*use_stmt_gsi);
708 enum tree_code rhs_code;
709 bool res = true;
711 gcc_assert (TREE_CODE (def_rhs) == ADDR_EXPR);
713 lhs = gimple_assign_lhs (use_stmt);
714 rhs_code = gimple_assign_rhs_code (use_stmt);
715 rhs = gimple_assign_rhs1 (use_stmt);
717 /* Trivial cases. The use statement could be a trivial copy or a
718 useless conversion. Recurse to the uses of the lhs as copyprop does
719 not copy through different variant pointers and FRE does not catch
720 all useless conversions. Treat the case of a single-use name and
721 a conversion to def_rhs type separate, though. */
722 if (TREE_CODE (lhs) == SSA_NAME
723 && ((rhs_code == SSA_NAME && rhs == name)
724 || CONVERT_EXPR_CODE_P (rhs_code)))
726 /* Only recurse if we don't deal with a single use or we cannot
727 do the propagation to the current statement. In particular
728 we can end up with a conversion needed for a non-invariant
729 address which we cannot do in a single statement. */
730 if (!single_use_p
731 || (!useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (def_rhs))
732 && (!is_gimple_min_invariant (def_rhs)
733 || (INTEGRAL_TYPE_P (TREE_TYPE (lhs))
734 && POINTER_TYPE_P (TREE_TYPE (def_rhs))
735 && (TYPE_PRECISION (TREE_TYPE (lhs))
736 > TYPE_PRECISION (TREE_TYPE (def_rhs)))))))
737 return forward_propagate_addr_expr (lhs, def_rhs);
739 gimple_assign_set_rhs1 (use_stmt, unshare_expr (def_rhs));
740 if (useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (def_rhs)))
741 gimple_assign_set_rhs_code (use_stmt, TREE_CODE (def_rhs));
742 else
743 gimple_assign_set_rhs_code (use_stmt, NOP_EXPR);
744 return true;
747 /* Propagate through constant pointer adjustments. */
748 if (TREE_CODE (lhs) == SSA_NAME
749 && rhs_code == POINTER_PLUS_EXPR
750 && rhs == name
751 && TREE_CODE (gimple_assign_rhs2 (use_stmt)) == INTEGER_CST)
753 tree new_def_rhs;
754 /* As we come here with non-invariant addresses in def_rhs we need
755 to make sure we can build a valid constant offsetted address
756 for further propagation. Simply rely on fold building that
757 and check after the fact. */
758 new_def_rhs = fold_build2 (MEM_REF, TREE_TYPE (TREE_TYPE (rhs)),
759 def_rhs,
760 fold_convert (ptr_type_node,
761 gimple_assign_rhs2 (use_stmt)));
762 if (TREE_CODE (new_def_rhs) == MEM_REF
763 && !is_gimple_mem_ref_addr (TREE_OPERAND (new_def_rhs, 0)))
764 return false;
765 new_def_rhs = build_fold_addr_expr_with_type (new_def_rhs,
766 TREE_TYPE (rhs));
768 /* Recurse. If we could propagate into all uses of lhs do not
769 bother to replace into the current use but just pretend we did. */
770 if (TREE_CODE (new_def_rhs) == ADDR_EXPR
771 && forward_propagate_addr_expr (lhs, new_def_rhs))
772 return true;
774 if (useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (new_def_rhs)))
775 gimple_assign_set_rhs_with_ops (use_stmt_gsi, TREE_CODE (new_def_rhs),
776 new_def_rhs, NULL_TREE);
777 else if (is_gimple_min_invariant (new_def_rhs))
778 gimple_assign_set_rhs_with_ops (use_stmt_gsi, NOP_EXPR,
779 new_def_rhs, NULL_TREE);
780 else
781 return false;
782 gcc_assert (gsi_stmt (*use_stmt_gsi) == use_stmt);
783 update_stmt (use_stmt);
784 return true;
787 /* Now strip away any outer COMPONENT_REF/ARRAY_REF nodes from the LHS.
788 ADDR_EXPR will not appear on the LHS. */
789 lhs = gimple_assign_lhs (use_stmt);
790 while (handled_component_p (lhs))
791 lhs = TREE_OPERAND (lhs, 0);
793 /* Now see if the LHS node is a MEM_REF using NAME. If so,
794 propagate the ADDR_EXPR into the use of NAME and fold the result. */
795 if (TREE_CODE (lhs) == MEM_REF
796 && TREE_OPERAND (lhs, 0) == name)
798 tree def_rhs_base;
799 HOST_WIDE_INT def_rhs_offset;
800 /* If the address is invariant we can always fold it. */
801 if ((def_rhs_base = get_addr_base_and_unit_offset (TREE_OPERAND (def_rhs, 0),
802 &def_rhs_offset)))
804 double_int off = mem_ref_offset (lhs);
805 tree new_ptr;
806 off += double_int::from_shwi (def_rhs_offset);
807 if (TREE_CODE (def_rhs_base) == MEM_REF)
809 off += mem_ref_offset (def_rhs_base);
810 new_ptr = TREE_OPERAND (def_rhs_base, 0);
812 else
813 new_ptr = build_fold_addr_expr (def_rhs_base);
814 TREE_OPERAND (lhs, 0) = new_ptr;
815 TREE_OPERAND (lhs, 1)
816 = double_int_to_tree (TREE_TYPE (TREE_OPERAND (lhs, 1)), off);
817 tidy_after_forward_propagate_addr (use_stmt);
818 /* Continue propagating into the RHS if this was not the only use. */
819 if (single_use_p)
820 return true;
822 /* If the LHS is a plain dereference and the value type is the same as
823 that of the pointed-to type of the address we can put the
824 dereferenced address on the LHS preserving the original alias-type. */
825 else if (gimple_assign_lhs (use_stmt) == lhs
826 && integer_zerop (TREE_OPERAND (lhs, 1))
827 && useless_type_conversion_p
828 (TREE_TYPE (TREE_OPERAND (def_rhs, 0)),
829 TREE_TYPE (gimple_assign_rhs1 (use_stmt)))
830 /* Don't forward anything into clobber stmts if it would result
831 in the lhs no longer being a MEM_REF. */
832 && (!gimple_clobber_p (use_stmt)
833 || TREE_CODE (TREE_OPERAND (def_rhs, 0)) == MEM_REF))
835 tree *def_rhs_basep = &TREE_OPERAND (def_rhs, 0);
836 tree new_offset, new_base, saved, new_lhs;
837 while (handled_component_p (*def_rhs_basep))
838 def_rhs_basep = &TREE_OPERAND (*def_rhs_basep, 0);
839 saved = *def_rhs_basep;
840 if (TREE_CODE (*def_rhs_basep) == MEM_REF)
842 new_base = TREE_OPERAND (*def_rhs_basep, 0);
843 new_offset = fold_convert (TREE_TYPE (TREE_OPERAND (lhs, 1)),
844 TREE_OPERAND (*def_rhs_basep, 1));
846 else
848 new_base = build_fold_addr_expr (*def_rhs_basep);
849 new_offset = TREE_OPERAND (lhs, 1);
851 *def_rhs_basep = build2 (MEM_REF, TREE_TYPE (*def_rhs_basep),
852 new_base, new_offset);
853 TREE_THIS_VOLATILE (*def_rhs_basep) = TREE_THIS_VOLATILE (lhs);
854 TREE_SIDE_EFFECTS (*def_rhs_basep) = TREE_SIDE_EFFECTS (lhs);
855 TREE_THIS_NOTRAP (*def_rhs_basep) = TREE_THIS_NOTRAP (lhs);
856 new_lhs = unshare_expr (TREE_OPERAND (def_rhs, 0));
857 gimple_assign_set_lhs (use_stmt, new_lhs);
858 TREE_THIS_VOLATILE (new_lhs) = TREE_THIS_VOLATILE (lhs);
859 TREE_SIDE_EFFECTS (new_lhs) = TREE_SIDE_EFFECTS (lhs);
860 *def_rhs_basep = saved;
861 tidy_after_forward_propagate_addr (use_stmt);
862 /* Continue propagating into the RHS if this was not the
863 only use. */
864 if (single_use_p)
865 return true;
867 else
868 /* We can have a struct assignment dereferencing our name twice.
869 Note that we didn't propagate into the lhs to not falsely
870 claim we did when propagating into the rhs. */
871 res = false;
874 /* Strip away any outer COMPONENT_REF, ARRAY_REF or ADDR_EXPR
875 nodes from the RHS. */
876 rhs = gimple_assign_rhs1 (use_stmt);
877 if (TREE_CODE (rhs) == ADDR_EXPR)
878 rhs = TREE_OPERAND (rhs, 0);
879 while (handled_component_p (rhs))
880 rhs = TREE_OPERAND (rhs, 0);
882 /* Now see if the RHS node is a MEM_REF using NAME. If so,
883 propagate the ADDR_EXPR into the use of NAME and fold the result. */
884 if (TREE_CODE (rhs) == MEM_REF
885 && TREE_OPERAND (rhs, 0) == name)
887 tree def_rhs_base;
888 HOST_WIDE_INT def_rhs_offset;
889 if ((def_rhs_base = get_addr_base_and_unit_offset (TREE_OPERAND (def_rhs, 0),
890 &def_rhs_offset)))
892 double_int off = mem_ref_offset (rhs);
893 tree new_ptr;
894 off += double_int::from_shwi (def_rhs_offset);
895 if (TREE_CODE (def_rhs_base) == MEM_REF)
897 off += mem_ref_offset (def_rhs_base);
898 new_ptr = TREE_OPERAND (def_rhs_base, 0);
900 else
901 new_ptr = build_fold_addr_expr (def_rhs_base);
902 TREE_OPERAND (rhs, 0) = new_ptr;
903 TREE_OPERAND (rhs, 1)
904 = double_int_to_tree (TREE_TYPE (TREE_OPERAND (rhs, 1)), off);
905 fold_stmt_inplace (use_stmt_gsi);
906 tidy_after_forward_propagate_addr (use_stmt);
907 return res;
909 /* If the RHS is a plain dereference and the value type is the same as
910 that of the pointed-to type of the address we can put the
911 dereferenced address on the RHS preserving the original alias-type. */
912 else if (gimple_assign_rhs1 (use_stmt) == rhs
913 && integer_zerop (TREE_OPERAND (rhs, 1))
914 && useless_type_conversion_p
915 (TREE_TYPE (gimple_assign_lhs (use_stmt)),
916 TREE_TYPE (TREE_OPERAND (def_rhs, 0))))
918 tree *def_rhs_basep = &TREE_OPERAND (def_rhs, 0);
919 tree new_offset, new_base, saved, new_rhs;
920 while (handled_component_p (*def_rhs_basep))
921 def_rhs_basep = &TREE_OPERAND (*def_rhs_basep, 0);
922 saved = *def_rhs_basep;
923 if (TREE_CODE (*def_rhs_basep) == MEM_REF)
925 new_base = TREE_OPERAND (*def_rhs_basep, 0);
926 new_offset = fold_convert (TREE_TYPE (TREE_OPERAND (rhs, 1)),
927 TREE_OPERAND (*def_rhs_basep, 1));
929 else
931 new_base = build_fold_addr_expr (*def_rhs_basep);
932 new_offset = TREE_OPERAND (rhs, 1);
934 *def_rhs_basep = build2 (MEM_REF, TREE_TYPE (*def_rhs_basep),
935 new_base, new_offset);
936 TREE_THIS_VOLATILE (*def_rhs_basep) = TREE_THIS_VOLATILE (rhs);
937 TREE_SIDE_EFFECTS (*def_rhs_basep) = TREE_SIDE_EFFECTS (rhs);
938 TREE_THIS_NOTRAP (*def_rhs_basep) = TREE_THIS_NOTRAP (rhs);
939 new_rhs = unshare_expr (TREE_OPERAND (def_rhs, 0));
940 gimple_assign_set_rhs1 (use_stmt, new_rhs);
941 TREE_THIS_VOLATILE (new_rhs) = TREE_THIS_VOLATILE (rhs);
942 TREE_SIDE_EFFECTS (new_rhs) = TREE_SIDE_EFFECTS (rhs);
943 *def_rhs_basep = saved;
944 fold_stmt_inplace (use_stmt_gsi);
945 tidy_after_forward_propagate_addr (use_stmt);
946 return res;
950 /* If the use of the ADDR_EXPR is not a POINTER_PLUS_EXPR, there
951 is nothing to do. */
952 if (gimple_assign_rhs_code (use_stmt) != POINTER_PLUS_EXPR
953 || gimple_assign_rhs1 (use_stmt) != name)
954 return false;
956 /* The remaining cases are all for turning pointer arithmetic into
957 array indexing. They only apply when we have the address of
958 element zero in an array. If that is not the case then there
959 is nothing to do. */
960 array_ref = TREE_OPERAND (def_rhs, 0);
961 if ((TREE_CODE (array_ref) != ARRAY_REF
962 || TREE_CODE (TREE_TYPE (TREE_OPERAND (array_ref, 0))) != ARRAY_TYPE
963 || TREE_CODE (TREE_OPERAND (array_ref, 1)) != INTEGER_CST)
964 && TREE_CODE (TREE_TYPE (array_ref)) != ARRAY_TYPE)
965 return false;
967 rhs2 = gimple_assign_rhs2 (use_stmt);
968 /* Optimize &x[C1] p+ C2 to &x p+ C3 with C3 = C1 * element_size + C2. */
969 if (TREE_CODE (rhs2) == INTEGER_CST)
971 tree new_rhs = build1_loc (gimple_location (use_stmt),
972 ADDR_EXPR, TREE_TYPE (def_rhs),
973 fold_build2 (MEM_REF,
974 TREE_TYPE (TREE_TYPE (def_rhs)),
975 unshare_expr (def_rhs),
976 fold_convert (ptr_type_node,
977 rhs2)));
978 gimple_assign_set_rhs_from_tree (use_stmt_gsi, new_rhs);
979 use_stmt = gsi_stmt (*use_stmt_gsi);
980 update_stmt (use_stmt);
981 tidy_after_forward_propagate_addr (use_stmt);
982 return true;
985 return false;
988 /* STMT is a statement of the form SSA_NAME = ADDR_EXPR <whatever>.
990 Try to forward propagate the ADDR_EXPR into all uses of the SSA_NAME.
991 Often this will allow for removal of an ADDR_EXPR and INDIRECT_REF
992 node or for recovery of array indexing from pointer arithmetic.
993 Returns true, if all uses have been propagated into. */
995 static bool
996 forward_propagate_addr_expr (tree name, tree rhs)
998 int stmt_loop_depth = bb_loop_depth (gimple_bb (SSA_NAME_DEF_STMT (name)));
999 imm_use_iterator iter;
1000 gimple use_stmt;
1001 bool all = true;
1002 bool single_use_p = has_single_use (name);
1004 FOR_EACH_IMM_USE_STMT (use_stmt, iter, name)
1006 bool result;
1007 tree use_rhs;
1009 /* If the use is not in a simple assignment statement, then
1010 there is nothing we can do. */
1011 if (gimple_code (use_stmt) != GIMPLE_ASSIGN)
1013 if (!is_gimple_debug (use_stmt))
1014 all = false;
1015 continue;
1018 /* If the use is in a deeper loop nest, then we do not want
1019 to propagate non-invariant ADDR_EXPRs into the loop as that
1020 is likely adding expression evaluations into the loop. */
1021 if (bb_loop_depth (gimple_bb (use_stmt)) > stmt_loop_depth
1022 && !is_gimple_min_invariant (rhs))
1024 all = false;
1025 continue;
1029 gimple_stmt_iterator gsi = gsi_for_stmt (use_stmt);
1030 result = forward_propagate_addr_expr_1 (name, rhs, &gsi,
1031 single_use_p);
1032 /* If the use has moved to a different statement adjust
1033 the update machinery for the old statement too. */
1034 if (use_stmt != gsi_stmt (gsi))
1036 update_stmt (use_stmt);
1037 use_stmt = gsi_stmt (gsi);
1040 update_stmt (use_stmt);
1042 all &= result;
1044 /* Remove intermediate now unused copy and conversion chains. */
1045 use_rhs = gimple_assign_rhs1 (use_stmt);
1046 if (result
1047 && TREE_CODE (gimple_assign_lhs (use_stmt)) == SSA_NAME
1048 && TREE_CODE (use_rhs) == SSA_NAME
1049 && has_zero_uses (gimple_assign_lhs (use_stmt)))
1051 gimple_stmt_iterator gsi = gsi_for_stmt (use_stmt);
1052 release_defs (use_stmt);
1053 gsi_remove (&gsi, true);
1057 return all && has_zero_uses (name);
1061 /* Forward propagate the comparison defined in *DEFGSI like
1062 cond_1 = x CMP y to uses of the form
1063 a_1 = (T')cond_1
1064 a_1 = !cond_1
1065 a_1 = cond_1 != 0
1066 Returns true if stmt is now unused. Advance DEFGSI to the next
1067 statement. */
1069 static bool
1070 forward_propagate_comparison (gimple_stmt_iterator *defgsi)
1072 gimple stmt = gsi_stmt (*defgsi);
1073 tree name = gimple_assign_lhs (stmt);
1074 gimple use_stmt;
1075 tree tmp = NULL_TREE;
1076 gimple_stmt_iterator gsi;
1077 enum tree_code code;
1078 tree lhs;
1080 /* Don't propagate ssa names that occur in abnormal phis. */
1081 if ((TREE_CODE (gimple_assign_rhs1 (stmt)) == SSA_NAME
1082 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_assign_rhs1 (stmt)))
1083 || (TREE_CODE (gimple_assign_rhs2 (stmt)) == SSA_NAME
1084 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (gimple_assign_rhs2 (stmt))))
1085 goto bailout;
1087 /* Do not un-cse comparisons. But propagate through copies. */
1088 use_stmt = get_prop_dest_stmt (name, &name);
1089 if (!use_stmt
1090 || !is_gimple_assign (use_stmt))
1091 goto bailout;
1093 code = gimple_assign_rhs_code (use_stmt);
1094 lhs = gimple_assign_lhs (use_stmt);
1095 if (!INTEGRAL_TYPE_P (TREE_TYPE (lhs)))
1096 goto bailout;
1098 /* We can propagate the condition into a statement that
1099 computes the logical negation of the comparison result. */
1100 if ((code == BIT_NOT_EXPR
1101 && TYPE_PRECISION (TREE_TYPE (lhs)) == 1)
1102 || (code == BIT_XOR_EXPR
1103 && integer_onep (gimple_assign_rhs2 (use_stmt))))
1105 tree type = TREE_TYPE (gimple_assign_rhs1 (stmt));
1106 bool nans = HONOR_NANS (TYPE_MODE (type));
1107 enum tree_code inv_code;
1108 inv_code = invert_tree_comparison (gimple_assign_rhs_code (stmt), nans);
1109 if (inv_code == ERROR_MARK)
1110 goto bailout;
1112 tmp = build2 (inv_code, TREE_TYPE (lhs), gimple_assign_rhs1 (stmt),
1113 gimple_assign_rhs2 (stmt));
1115 else
1116 goto bailout;
1118 gsi = gsi_for_stmt (use_stmt);
1119 gimple_assign_set_rhs_from_tree (&gsi, unshare_expr (tmp));
1120 use_stmt = gsi_stmt (gsi);
1121 update_stmt (use_stmt);
1123 if (dump_file && (dump_flags & TDF_DETAILS))
1125 fprintf (dump_file, " Replaced '");
1126 print_gimple_expr (dump_file, stmt, 0, dump_flags);
1127 fprintf (dump_file, "' with '");
1128 print_gimple_expr (dump_file, use_stmt, 0, dump_flags);
1129 fprintf (dump_file, "'\n");
1132 /* When we remove stmt now the iterator defgsi goes off it's current
1133 sequence, hence advance it now. */
1134 gsi_next (defgsi);
1136 /* Remove defining statements. */
1137 return remove_prop_source_from_use (name);
1139 bailout:
1140 gsi_next (defgsi);
1141 return false;
1145 /* GSI_P points to a statement which performs a narrowing integral
1146 conversion.
1148 Look for cases like:
1150 t = x & c;
1151 y = (T) t;
1153 Turn them into:
1155 t = x & c;
1156 y = (T) x;
1158 If T is narrower than X's type and C merely masks off bits outside
1159 of (T) and nothing else.
1161 Normally we'd let DCE remove the dead statement. But no DCE runs
1162 after the last forwprop/combine pass, so we remove the obviously
1163 dead code ourselves.
1165 Return TRUE if a change was made, FALSE otherwise. */
1167 static bool
1168 simplify_conversion_from_bitmask (gimple_stmt_iterator *gsi_p)
1170 gimple stmt = gsi_stmt (*gsi_p);
1171 gimple rhs_def_stmt = SSA_NAME_DEF_STMT (gimple_assign_rhs1 (stmt));
1173 /* See if the input for the conversion was set via a BIT_AND_EXPR and
1174 the only use of the BIT_AND_EXPR result is the conversion. */
1175 if (is_gimple_assign (rhs_def_stmt)
1176 && gimple_assign_rhs_code (rhs_def_stmt) == BIT_AND_EXPR
1177 && has_single_use (gimple_assign_lhs (rhs_def_stmt)))
1179 tree rhs_def_operand1 = gimple_assign_rhs1 (rhs_def_stmt);
1180 tree rhs_def_operand2 = gimple_assign_rhs2 (rhs_def_stmt);
1181 tree lhs_type = TREE_TYPE (gimple_assign_lhs (stmt));
1183 /* Now verify suitability of the BIT_AND_EXPR's operands.
1184 The first must be an SSA_NAME that we can propagate and the
1185 second must be an integer constant that masks out all the
1186 bits outside the final result's type, but nothing else. */
1187 if (TREE_CODE (rhs_def_operand1) == SSA_NAME
1188 && ! SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs_def_operand1)
1189 && TREE_CODE (rhs_def_operand2) == INTEGER_CST
1190 && operand_equal_p (rhs_def_operand2,
1191 build_low_bits_mask (TREE_TYPE (rhs_def_operand2),
1192 TYPE_PRECISION (lhs_type)),
1195 /* This is an optimizable case. Replace the source operand
1196 in the conversion with the first source operand of the
1197 BIT_AND_EXPR. */
1198 gimple_assign_set_rhs1 (stmt, rhs_def_operand1);
1199 stmt = gsi_stmt (*gsi_p);
1200 update_stmt (stmt);
1202 /* There is no DCE after the last forwprop pass. It's
1203 easy to clean up the first order effects here. */
1204 gimple_stmt_iterator si;
1205 si = gsi_for_stmt (rhs_def_stmt);
1206 gsi_remove (&si, true);
1207 release_defs (rhs_def_stmt);
1208 return true;
1212 return false;
1216 /* If we have lhs = ~x (STMT), look and see if earlier we had x = ~y.
1217 If so, we can change STMT into lhs = y which can later be copy
1218 propagated. Similarly for negation.
1220 This could trivially be formulated as a forward propagation
1221 to immediate uses. However, we already had an implementation
1222 from DOM which used backward propagation via the use-def links.
1224 It turns out that backward propagation is actually faster as
1225 there's less work to do for each NOT/NEG expression we find.
1226 Backwards propagation needs to look at the statement in a single
1227 backlink. Forward propagation needs to look at potentially more
1228 than one forward link.
1230 Returns true when the statement was changed. */
1232 static bool
1233 simplify_not_neg_expr (gimple_stmt_iterator *gsi_p)
1235 gimple stmt = gsi_stmt (*gsi_p);
1236 tree rhs = gimple_assign_rhs1 (stmt);
1237 gimple rhs_def_stmt = SSA_NAME_DEF_STMT (rhs);
1239 /* See if the RHS_DEF_STMT has the same form as our statement. */
1240 if (is_gimple_assign (rhs_def_stmt)
1241 && gimple_assign_rhs_code (rhs_def_stmt) == gimple_assign_rhs_code (stmt))
1243 tree rhs_def_operand = gimple_assign_rhs1 (rhs_def_stmt);
1245 /* Verify that RHS_DEF_OPERAND is a suitable SSA_NAME. */
1246 if (TREE_CODE (rhs_def_operand) == SSA_NAME
1247 && ! SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs_def_operand))
1249 gimple_assign_set_rhs_from_tree (gsi_p, rhs_def_operand);
1250 stmt = gsi_stmt (*gsi_p);
1251 update_stmt (stmt);
1252 return true;
1256 return false;
1259 /* Helper function for simplify_gimple_switch. Remove case labels that
1260 have values outside the range of the new type. */
1262 static void
1263 simplify_gimple_switch_label_vec (gimple stmt, tree index_type)
1265 unsigned int branch_num = gimple_switch_num_labels (stmt);
1266 vec<tree> labels;
1267 labels.create (branch_num);
1268 unsigned int i, len;
1270 /* Collect the existing case labels in a VEC, and preprocess it as if
1271 we are gimplifying a GENERIC SWITCH_EXPR. */
1272 for (i = 1; i < branch_num; i++)
1273 labels.quick_push (gimple_switch_label (stmt, i));
1274 preprocess_case_label_vec_for_gimple (labels, index_type, NULL);
1276 /* If any labels were removed, replace the existing case labels
1277 in the GIMPLE_SWITCH statement with the correct ones.
1278 Note that the type updates were done in-place on the case labels,
1279 so we only have to replace the case labels in the GIMPLE_SWITCH
1280 if the number of labels changed. */
1281 len = labels.length ();
1282 if (len < branch_num - 1)
1284 bitmap target_blocks;
1285 edge_iterator ei;
1286 edge e;
1288 /* Corner case: *all* case labels have been removed as being
1289 out-of-range for INDEX_TYPE. Push one label and let the
1290 CFG cleanups deal with this further. */
1291 if (len == 0)
1293 tree label, elt;
1295 label = CASE_LABEL (gimple_switch_default_label (stmt));
1296 elt = build_case_label (build_int_cst (index_type, 0), NULL, label);
1297 labels.quick_push (elt);
1298 len = 1;
1301 for (i = 0; i < labels.length (); i++)
1302 gimple_switch_set_label (stmt, i + 1, labels[i]);
1303 for (i++ ; i < branch_num; i++)
1304 gimple_switch_set_label (stmt, i, NULL_TREE);
1305 gimple_switch_set_num_labels (stmt, len + 1);
1307 /* Cleanup any edges that are now dead. */
1308 target_blocks = BITMAP_ALLOC (NULL);
1309 for (i = 0; i < gimple_switch_num_labels (stmt); i++)
1311 tree elt = gimple_switch_label (stmt, i);
1312 basic_block target = label_to_block (CASE_LABEL (elt));
1313 bitmap_set_bit (target_blocks, target->index);
1315 for (ei = ei_start (gimple_bb (stmt)->succs); (e = ei_safe_edge (ei)); )
1317 if (! bitmap_bit_p (target_blocks, e->dest->index))
1319 remove_edge (e);
1320 cfg_changed = true;
1321 free_dominance_info (CDI_DOMINATORS);
1323 else
1324 ei_next (&ei);
1326 BITMAP_FREE (target_blocks);
1329 labels.release ();
1332 /* STMT is a SWITCH_EXPR for which we attempt to find equivalent forms of
1333 the condition which we may be able to optimize better. */
1335 static bool
1336 simplify_gimple_switch (gimple stmt)
1338 tree cond = gimple_switch_index (stmt);
1339 tree def, to, ti;
1340 gimple def_stmt;
1342 /* The optimization that we really care about is removing unnecessary
1343 casts. That will let us do much better in propagating the inferred
1344 constant at the switch target. */
1345 if (TREE_CODE (cond) == SSA_NAME)
1347 def_stmt = SSA_NAME_DEF_STMT (cond);
1348 if (is_gimple_assign (def_stmt))
1350 if (gimple_assign_rhs_code (def_stmt) == NOP_EXPR)
1352 int need_precision;
1353 bool fail;
1355 def = gimple_assign_rhs1 (def_stmt);
1357 to = TREE_TYPE (cond);
1358 ti = TREE_TYPE (def);
1360 /* If we have an extension that preserves value, then we
1361 can copy the source value into the switch. */
1363 need_precision = TYPE_PRECISION (ti);
1364 fail = false;
1365 if (! INTEGRAL_TYPE_P (ti))
1366 fail = true;
1367 else if (TYPE_UNSIGNED (to) && !TYPE_UNSIGNED (ti))
1368 fail = true;
1369 else if (!TYPE_UNSIGNED (to) && TYPE_UNSIGNED (ti))
1370 need_precision += 1;
1371 if (TYPE_PRECISION (to) < need_precision)
1372 fail = true;
1374 if (!fail)
1376 gimple_switch_set_index (stmt, def);
1377 simplify_gimple_switch_label_vec (stmt, ti);
1378 update_stmt (stmt);
1379 return true;
1385 return false;
1388 /* For pointers p2 and p1 return p2 - p1 if the
1389 difference is known and constant, otherwise return NULL. */
1391 static tree
1392 constant_pointer_difference (tree p1, tree p2)
1394 int i, j;
1395 #define CPD_ITERATIONS 5
1396 tree exps[2][CPD_ITERATIONS];
1397 tree offs[2][CPD_ITERATIONS];
1398 int cnt[2];
1400 for (i = 0; i < 2; i++)
1402 tree p = i ? p1 : p2;
1403 tree off = size_zero_node;
1404 gimple stmt;
1405 enum tree_code code;
1407 /* For each of p1 and p2 we need to iterate at least
1408 twice, to handle ADDR_EXPR directly in p1/p2,
1409 SSA_NAME with ADDR_EXPR or POINTER_PLUS_EXPR etc.
1410 on definition's stmt RHS. Iterate a few extra times. */
1411 j = 0;
1414 if (!POINTER_TYPE_P (TREE_TYPE (p)))
1415 break;
1416 if (TREE_CODE (p) == ADDR_EXPR)
1418 tree q = TREE_OPERAND (p, 0);
1419 HOST_WIDE_INT offset;
1420 tree base = get_addr_base_and_unit_offset (q, &offset);
1421 if (base)
1423 q = base;
1424 if (offset)
1425 off = size_binop (PLUS_EXPR, off, size_int (offset));
1427 if (TREE_CODE (q) == MEM_REF
1428 && TREE_CODE (TREE_OPERAND (q, 0)) == SSA_NAME)
1430 p = TREE_OPERAND (q, 0);
1431 off = size_binop (PLUS_EXPR, off,
1432 double_int_to_tree (sizetype,
1433 mem_ref_offset (q)));
1435 else
1437 exps[i][j] = q;
1438 offs[i][j++] = off;
1439 break;
1442 if (TREE_CODE (p) != SSA_NAME)
1443 break;
1444 exps[i][j] = p;
1445 offs[i][j++] = off;
1446 if (j == CPD_ITERATIONS)
1447 break;
1448 stmt = SSA_NAME_DEF_STMT (p);
1449 if (!is_gimple_assign (stmt) || gimple_assign_lhs (stmt) != p)
1450 break;
1451 code = gimple_assign_rhs_code (stmt);
1452 if (code == POINTER_PLUS_EXPR)
1454 if (TREE_CODE (gimple_assign_rhs2 (stmt)) != INTEGER_CST)
1455 break;
1456 off = size_binop (PLUS_EXPR, off, gimple_assign_rhs2 (stmt));
1457 p = gimple_assign_rhs1 (stmt);
1459 else if (code == ADDR_EXPR || code == NOP_EXPR)
1460 p = gimple_assign_rhs1 (stmt);
1461 else
1462 break;
1464 while (1);
1465 cnt[i] = j;
1468 for (i = 0; i < cnt[0]; i++)
1469 for (j = 0; j < cnt[1]; j++)
1470 if (exps[0][i] == exps[1][j])
1471 return size_binop (MINUS_EXPR, offs[0][i], offs[1][j]);
1473 return NULL_TREE;
1476 /* *GSI_P is a GIMPLE_CALL to a builtin function.
1477 Optimize
1478 memcpy (p, "abcd", 4);
1479 memset (p + 4, ' ', 3);
1480 into
1481 memcpy (p, "abcd ", 7);
1482 call if the latter can be stored by pieces during expansion. */
1484 static bool
1485 simplify_builtin_call (gimple_stmt_iterator *gsi_p, tree callee2)
1487 gimple stmt1, stmt2 = gsi_stmt (*gsi_p);
1488 tree vuse = gimple_vuse (stmt2);
1489 if (vuse == NULL)
1490 return false;
1491 stmt1 = SSA_NAME_DEF_STMT (vuse);
1493 switch (DECL_FUNCTION_CODE (callee2))
1495 case BUILT_IN_MEMSET:
1496 if (gimple_call_num_args (stmt2) != 3
1497 || gimple_call_lhs (stmt2)
1498 || CHAR_BIT != 8
1499 || BITS_PER_UNIT != 8)
1500 break;
1501 else
1503 tree callee1;
1504 tree ptr1, src1, str1, off1, len1, lhs1;
1505 tree ptr2 = gimple_call_arg (stmt2, 0);
1506 tree val2 = gimple_call_arg (stmt2, 1);
1507 tree len2 = gimple_call_arg (stmt2, 2);
1508 tree diff, vdef, new_str_cst;
1509 gimple use_stmt;
1510 unsigned int ptr1_align;
1511 unsigned HOST_WIDE_INT src_len;
1512 char *src_buf;
1513 use_operand_p use_p;
1515 if (!host_integerp (val2, 0)
1516 || !host_integerp (len2, 1))
1517 break;
1518 if (is_gimple_call (stmt1))
1520 /* If first stmt is a call, it needs to be memcpy
1521 or mempcpy, with string literal as second argument and
1522 constant length. */
1523 callee1 = gimple_call_fndecl (stmt1);
1524 if (callee1 == NULL_TREE
1525 || DECL_BUILT_IN_CLASS (callee1) != BUILT_IN_NORMAL
1526 || gimple_call_num_args (stmt1) != 3)
1527 break;
1528 if (DECL_FUNCTION_CODE (callee1) != BUILT_IN_MEMCPY
1529 && DECL_FUNCTION_CODE (callee1) != BUILT_IN_MEMPCPY)
1530 break;
1531 ptr1 = gimple_call_arg (stmt1, 0);
1532 src1 = gimple_call_arg (stmt1, 1);
1533 len1 = gimple_call_arg (stmt1, 2);
1534 lhs1 = gimple_call_lhs (stmt1);
1535 if (!host_integerp (len1, 1))
1536 break;
1537 str1 = string_constant (src1, &off1);
1538 if (str1 == NULL_TREE)
1539 break;
1540 if (!host_integerp (off1, 1)
1541 || compare_tree_int (off1, TREE_STRING_LENGTH (str1) - 1) > 0
1542 || compare_tree_int (len1, TREE_STRING_LENGTH (str1)
1543 - tree_low_cst (off1, 1)) > 0
1544 || TREE_CODE (TREE_TYPE (str1)) != ARRAY_TYPE
1545 || TYPE_MODE (TREE_TYPE (TREE_TYPE (str1)))
1546 != TYPE_MODE (char_type_node))
1547 break;
1549 else if (gimple_assign_single_p (stmt1))
1551 /* Otherwise look for length 1 memcpy optimized into
1552 assignment. */
1553 ptr1 = gimple_assign_lhs (stmt1);
1554 src1 = gimple_assign_rhs1 (stmt1);
1555 if (TREE_CODE (ptr1) != MEM_REF
1556 || TYPE_MODE (TREE_TYPE (ptr1)) != TYPE_MODE (char_type_node)
1557 || !host_integerp (src1, 0))
1558 break;
1559 ptr1 = build_fold_addr_expr (ptr1);
1560 callee1 = NULL_TREE;
1561 len1 = size_one_node;
1562 lhs1 = NULL_TREE;
1563 off1 = size_zero_node;
1564 str1 = NULL_TREE;
1566 else
1567 break;
1569 diff = constant_pointer_difference (ptr1, ptr2);
1570 if (diff == NULL && lhs1 != NULL)
1572 diff = constant_pointer_difference (lhs1, ptr2);
1573 if (DECL_FUNCTION_CODE (callee1) == BUILT_IN_MEMPCPY
1574 && diff != NULL)
1575 diff = size_binop (PLUS_EXPR, diff,
1576 fold_convert (sizetype, len1));
1578 /* If the difference between the second and first destination pointer
1579 is not constant, or is bigger than memcpy length, bail out. */
1580 if (diff == NULL
1581 || !host_integerp (diff, 1)
1582 || tree_int_cst_lt (len1, diff))
1583 break;
1585 /* Use maximum of difference plus memset length and memcpy length
1586 as the new memcpy length, if it is too big, bail out. */
1587 src_len = tree_low_cst (diff, 1);
1588 src_len += tree_low_cst (len2, 1);
1589 if (src_len < (unsigned HOST_WIDE_INT) tree_low_cst (len1, 1))
1590 src_len = tree_low_cst (len1, 1);
1591 if (src_len > 1024)
1592 break;
1594 /* If mempcpy value is used elsewhere, bail out, as mempcpy
1595 with bigger length will return different result. */
1596 if (lhs1 != NULL_TREE
1597 && DECL_FUNCTION_CODE (callee1) == BUILT_IN_MEMPCPY
1598 && (TREE_CODE (lhs1) != SSA_NAME
1599 || !single_imm_use (lhs1, &use_p, &use_stmt)
1600 || use_stmt != stmt2))
1601 break;
1603 /* If anything reads memory in between memcpy and memset
1604 call, the modified memcpy call might change it. */
1605 vdef = gimple_vdef (stmt1);
1606 if (vdef != NULL
1607 && (!single_imm_use (vdef, &use_p, &use_stmt)
1608 || use_stmt != stmt2))
1609 break;
1611 ptr1_align = get_pointer_alignment (ptr1);
1612 /* Construct the new source string literal. */
1613 src_buf = XALLOCAVEC (char, src_len + 1);
1614 if (callee1)
1615 memcpy (src_buf,
1616 TREE_STRING_POINTER (str1) + tree_low_cst (off1, 1),
1617 tree_low_cst (len1, 1));
1618 else
1619 src_buf[0] = tree_low_cst (src1, 0);
1620 memset (src_buf + tree_low_cst (diff, 1),
1621 tree_low_cst (val2, 0), tree_low_cst (len2, 1));
1622 src_buf[src_len] = '\0';
1623 /* Neither builtin_strncpy_read_str nor builtin_memcpy_read_str
1624 handle embedded '\0's. */
1625 if (strlen (src_buf) != src_len)
1626 break;
1627 rtl_profile_for_bb (gimple_bb (stmt2));
1628 /* If the new memcpy wouldn't be emitted by storing the literal
1629 by pieces, this optimization might enlarge .rodata too much,
1630 as commonly used string literals couldn't be shared any
1631 longer. */
1632 if (!can_store_by_pieces (src_len,
1633 builtin_strncpy_read_str,
1634 src_buf, ptr1_align, false))
1635 break;
1637 new_str_cst = build_string_literal (src_len, src_buf);
1638 if (callee1)
1640 /* If STMT1 is a mem{,p}cpy call, adjust it and remove
1641 memset call. */
1642 if (lhs1 && DECL_FUNCTION_CODE (callee1) == BUILT_IN_MEMPCPY)
1643 gimple_call_set_lhs (stmt1, NULL_TREE);
1644 gimple_call_set_arg (stmt1, 1, new_str_cst);
1645 gimple_call_set_arg (stmt1, 2,
1646 build_int_cst (TREE_TYPE (len1), src_len));
1647 update_stmt (stmt1);
1648 unlink_stmt_vdef (stmt2);
1649 gsi_remove (gsi_p, true);
1650 release_defs (stmt2);
1651 if (lhs1 && DECL_FUNCTION_CODE (callee1) == BUILT_IN_MEMPCPY)
1652 release_ssa_name (lhs1);
1653 return true;
1655 else
1657 /* Otherwise, if STMT1 is length 1 memcpy optimized into
1658 assignment, remove STMT1 and change memset call into
1659 memcpy call. */
1660 gimple_stmt_iterator gsi = gsi_for_stmt (stmt1);
1662 if (!is_gimple_val (ptr1))
1663 ptr1 = force_gimple_operand_gsi (gsi_p, ptr1, true, NULL_TREE,
1664 true, GSI_SAME_STMT);
1665 gimple_call_set_fndecl (stmt2,
1666 builtin_decl_explicit (BUILT_IN_MEMCPY));
1667 gimple_call_set_arg (stmt2, 0, ptr1);
1668 gimple_call_set_arg (stmt2, 1, new_str_cst);
1669 gimple_call_set_arg (stmt2, 2,
1670 build_int_cst (TREE_TYPE (len2), src_len));
1671 unlink_stmt_vdef (stmt1);
1672 gsi_remove (&gsi, true);
1673 release_defs (stmt1);
1674 update_stmt (stmt2);
1675 return false;
1678 break;
1679 default:
1680 break;
1682 return false;
1685 /* Checks if expression has type of one-bit precision, or is a known
1686 truth-valued expression. */
1687 static bool
1688 truth_valued_ssa_name (tree name)
1690 gimple def;
1691 tree type = TREE_TYPE (name);
1693 if (!INTEGRAL_TYPE_P (type))
1694 return false;
1695 /* Don't check here for BOOLEAN_TYPE as the precision isn't
1696 necessarily one and so ~X is not equal to !X. */
1697 if (TYPE_PRECISION (type) == 1)
1698 return true;
1699 def = SSA_NAME_DEF_STMT (name);
1700 if (is_gimple_assign (def))
1701 return truth_value_p (gimple_assign_rhs_code (def));
1702 return false;
1705 /* Helper routine for simplify_bitwise_binary_1 function.
1706 Return for the SSA name NAME the expression X if it mets condition
1707 NAME = !X. Otherwise return NULL_TREE.
1708 Detected patterns for NAME = !X are:
1709 !X and X == 0 for X with integral type.
1710 X ^ 1, X != 1,or ~X for X with integral type with precision of one. */
1711 static tree
1712 lookup_logical_inverted_value (tree name)
1714 tree op1, op2;
1715 enum tree_code code;
1716 gimple def;
1718 /* If name has none-intergal type, or isn't a SSA_NAME, then
1719 return. */
1720 if (TREE_CODE (name) != SSA_NAME
1721 || !INTEGRAL_TYPE_P (TREE_TYPE (name)))
1722 return NULL_TREE;
1723 def = SSA_NAME_DEF_STMT (name);
1724 if (!is_gimple_assign (def))
1725 return NULL_TREE;
1727 code = gimple_assign_rhs_code (def);
1728 op1 = gimple_assign_rhs1 (def);
1729 op2 = NULL_TREE;
1731 /* Get for EQ_EXPR or BIT_XOR_EXPR operation the second operand.
1732 If CODE isn't an EQ_EXPR, BIT_XOR_EXPR, or BIT_NOT_EXPR, then return. */
1733 if (code == EQ_EXPR || code == NE_EXPR
1734 || code == BIT_XOR_EXPR)
1735 op2 = gimple_assign_rhs2 (def);
1737 switch (code)
1739 case BIT_NOT_EXPR:
1740 if (truth_valued_ssa_name (name))
1741 return op1;
1742 break;
1743 case EQ_EXPR:
1744 /* Check if we have X == 0 and X has an integral type. */
1745 if (!INTEGRAL_TYPE_P (TREE_TYPE (op1)))
1746 break;
1747 if (integer_zerop (op2))
1748 return op1;
1749 break;
1750 case NE_EXPR:
1751 /* Check if we have X != 1 and X is a truth-valued. */
1752 if (!INTEGRAL_TYPE_P (TREE_TYPE (op1)))
1753 break;
1754 if (integer_onep (op2) && truth_valued_ssa_name (op1))
1755 return op1;
1756 break;
1757 case BIT_XOR_EXPR:
1758 /* Check if we have X ^ 1 and X is truth valued. */
1759 if (integer_onep (op2) && truth_valued_ssa_name (op1))
1760 return op1;
1761 break;
1762 default:
1763 break;
1766 return NULL_TREE;
1769 /* Optimize ARG1 CODE ARG2 to a constant for bitwise binary
1770 operations CODE, if one operand has the logically inverted
1771 value of the other. */
1772 static tree
1773 simplify_bitwise_binary_1 (enum tree_code code, tree type,
1774 tree arg1, tree arg2)
1776 tree anot;
1778 /* If CODE isn't a bitwise binary operation, return NULL_TREE. */
1779 if (code != BIT_AND_EXPR && code != BIT_IOR_EXPR
1780 && code != BIT_XOR_EXPR)
1781 return NULL_TREE;
1783 /* First check if operands ARG1 and ARG2 are equal. If so
1784 return NULL_TREE as this optimization is handled fold_stmt. */
1785 if (arg1 == arg2)
1786 return NULL_TREE;
1787 /* See if we have in arguments logical-not patterns. */
1788 if (((anot = lookup_logical_inverted_value (arg1)) == NULL_TREE
1789 || anot != arg2)
1790 && ((anot = lookup_logical_inverted_value (arg2)) == NULL_TREE
1791 || anot != arg1))
1792 return NULL_TREE;
1794 /* X & !X -> 0. */
1795 if (code == BIT_AND_EXPR)
1796 return fold_convert (type, integer_zero_node);
1797 /* X | !X -> 1 and X ^ !X -> 1, if X is truth-valued. */
1798 if (truth_valued_ssa_name (anot))
1799 return fold_convert (type, integer_one_node);
1801 /* ??? Otherwise result is (X != 0 ? X : 1). not handled. */
1802 return NULL_TREE;
1805 /* Given a ssa_name in NAME see if it was defined by an assignment and
1806 set CODE to be the code and ARG1 to the first operand on the rhs and ARG2
1807 to the second operand on the rhs. */
1809 static inline void
1810 defcodefor_name (tree name, enum tree_code *code, tree *arg1, tree *arg2)
1812 gimple def;
1813 enum tree_code code1;
1814 tree arg11;
1815 tree arg21;
1816 tree arg31;
1817 enum gimple_rhs_class grhs_class;
1819 code1 = TREE_CODE (name);
1820 arg11 = name;
1821 arg21 = NULL_TREE;
1822 grhs_class = get_gimple_rhs_class (code1);
1824 if (code1 == SSA_NAME)
1826 def = SSA_NAME_DEF_STMT (name);
1828 if (def && is_gimple_assign (def)
1829 && can_propagate_from (def))
1831 code1 = gimple_assign_rhs_code (def);
1832 arg11 = gimple_assign_rhs1 (def);
1833 arg21 = gimple_assign_rhs2 (def);
1834 arg31 = gimple_assign_rhs2 (def);
1837 else if (grhs_class == GIMPLE_TERNARY_RHS
1838 || GIMPLE_BINARY_RHS
1839 || GIMPLE_UNARY_RHS
1840 || GIMPLE_SINGLE_RHS)
1841 extract_ops_from_tree_1 (name, &code1, &arg11, &arg21, &arg31);
1843 *code = code1;
1844 *arg1 = arg11;
1845 if (arg2)
1846 *arg2 = arg21;
1847 /* Ignore arg3 currently. */
1850 /* Return true if a conversion of an operand from type FROM to type TO
1851 should be applied after performing the operation instead. */
1853 static bool
1854 hoist_conversion_for_bitop_p (tree to, tree from)
1856 /* That's a good idea if the conversion widens the operand, thus
1857 after hoisting the conversion the operation will be narrower. */
1858 if (TYPE_PRECISION (from) < TYPE_PRECISION (to))
1859 return true;
1861 /* It's also a good idea if the conversion is to a non-integer mode. */
1862 if (GET_MODE_CLASS (TYPE_MODE (to)) != MODE_INT)
1863 return true;
1865 /* Or if the precision of TO is not the same as the precision
1866 of its mode. */
1867 if (TYPE_PRECISION (to) != GET_MODE_PRECISION (TYPE_MODE (to)))
1868 return true;
1870 return false;
1873 /* Simplify bitwise binary operations.
1874 Return true if a transformation applied, otherwise return false. */
1876 static bool
1877 simplify_bitwise_binary (gimple_stmt_iterator *gsi)
1879 gimple stmt = gsi_stmt (*gsi);
1880 tree arg1 = gimple_assign_rhs1 (stmt);
1881 tree arg2 = gimple_assign_rhs2 (stmt);
1882 enum tree_code code = gimple_assign_rhs_code (stmt);
1883 tree res;
1884 tree def1_arg1, def1_arg2, def2_arg1, def2_arg2;
1885 enum tree_code def1_code, def2_code;
1887 defcodefor_name (arg1, &def1_code, &def1_arg1, &def1_arg2);
1888 defcodefor_name (arg2, &def2_code, &def2_arg1, &def2_arg2);
1890 /* Try to fold (type) X op CST -> (type) (X op ((type-x) CST))
1891 when profitable. */
1892 if (TREE_CODE (arg2) == INTEGER_CST
1893 && CONVERT_EXPR_CODE_P (def1_code)
1894 && hoist_conversion_for_bitop_p (TREE_TYPE (arg1), TREE_TYPE (def1_arg1))
1895 && INTEGRAL_TYPE_P (TREE_TYPE (def1_arg1))
1896 && int_fits_type_p (arg2, TREE_TYPE (def1_arg1)))
1898 gimple newop;
1899 tree tem = make_ssa_name (TREE_TYPE (def1_arg1), NULL);
1900 newop =
1901 gimple_build_assign_with_ops (code, tem, def1_arg1,
1902 fold_convert_loc (gimple_location (stmt),
1903 TREE_TYPE (def1_arg1),
1904 arg2));
1905 gimple_set_location (newop, gimple_location (stmt));
1906 gsi_insert_before (gsi, newop, GSI_SAME_STMT);
1907 gimple_assign_set_rhs_with_ops_1 (gsi, NOP_EXPR,
1908 tem, NULL_TREE, NULL_TREE);
1909 update_stmt (gsi_stmt (*gsi));
1910 return true;
1913 /* For bitwise binary operations apply operand conversions to the
1914 binary operation result instead of to the operands. This allows
1915 to combine successive conversions and bitwise binary operations. */
1916 if (CONVERT_EXPR_CODE_P (def1_code)
1917 && CONVERT_EXPR_CODE_P (def2_code)
1918 && types_compatible_p (TREE_TYPE (def1_arg1), TREE_TYPE (def2_arg1))
1919 && hoist_conversion_for_bitop_p (TREE_TYPE (arg1), TREE_TYPE (def1_arg1)))
1921 gimple newop;
1922 tree tem = make_ssa_name (TREE_TYPE (def1_arg1), NULL);
1923 newop = gimple_build_assign_with_ops (code, tem, def1_arg1, def2_arg1);
1924 gimple_set_location (newop, gimple_location (stmt));
1925 gsi_insert_before (gsi, newop, GSI_SAME_STMT);
1926 gimple_assign_set_rhs_with_ops_1 (gsi, NOP_EXPR,
1927 tem, NULL_TREE, NULL_TREE);
1928 update_stmt (gsi_stmt (*gsi));
1929 return true;
1933 /* Simplify (A & B) OP0 (C & B) to (A OP0 C) & B. */
1934 if (def1_code == def2_code
1935 && def1_code == BIT_AND_EXPR
1936 && operand_equal_for_phi_arg_p (def1_arg2,
1937 def2_arg2))
1939 tree b = def1_arg2;
1940 tree a = def1_arg1;
1941 tree c = def2_arg1;
1942 tree inner = fold_build2 (code, TREE_TYPE (arg2), a, c);
1943 /* If A OP0 C (this usually means C is the same as A) is 0
1944 then fold it down correctly. */
1945 if (integer_zerop (inner))
1947 gimple_assign_set_rhs_from_tree (gsi, inner);
1948 update_stmt (stmt);
1949 return true;
1951 /* If A OP0 C (this usually means C is the same as A) is a ssa_name
1952 then fold it down correctly. */
1953 else if (TREE_CODE (inner) == SSA_NAME)
1955 tree outer = fold_build2 (def1_code, TREE_TYPE (inner),
1956 inner, b);
1957 gimple_assign_set_rhs_from_tree (gsi, outer);
1958 update_stmt (stmt);
1959 return true;
1961 else
1963 gimple newop;
1964 tree tem;
1965 tem = make_ssa_name (TREE_TYPE (arg2), NULL);
1966 newop = gimple_build_assign_with_ops (code, tem, a, c);
1967 gimple_set_location (newop, gimple_location (stmt));
1968 /* Make sure to re-process the new stmt as it's walking upwards. */
1969 gsi_insert_before (gsi, newop, GSI_NEW_STMT);
1970 gimple_assign_set_rhs1 (stmt, tem);
1971 gimple_assign_set_rhs2 (stmt, b);
1972 gimple_assign_set_rhs_code (stmt, def1_code);
1973 update_stmt (stmt);
1974 return true;
1978 /* (a | CST1) & CST2 -> (a & CST2) | (CST1 & CST2). */
1979 if (code == BIT_AND_EXPR
1980 && def1_code == BIT_IOR_EXPR
1981 && TREE_CODE (arg2) == INTEGER_CST
1982 && TREE_CODE (def1_arg2) == INTEGER_CST)
1984 tree cst = fold_build2 (BIT_AND_EXPR, TREE_TYPE (arg2),
1985 arg2, def1_arg2);
1986 tree tem;
1987 gimple newop;
1988 if (integer_zerop (cst))
1990 gimple_assign_set_rhs1 (stmt, def1_arg1);
1991 update_stmt (stmt);
1992 return true;
1994 tem = make_ssa_name (TREE_TYPE (arg2), NULL);
1995 newop = gimple_build_assign_with_ops (BIT_AND_EXPR,
1996 tem, def1_arg1, arg2);
1997 gimple_set_location (newop, gimple_location (stmt));
1998 /* Make sure to re-process the new stmt as it's walking upwards. */
1999 gsi_insert_before (gsi, newop, GSI_NEW_STMT);
2000 gimple_assign_set_rhs1 (stmt, tem);
2001 gimple_assign_set_rhs2 (stmt, cst);
2002 gimple_assign_set_rhs_code (stmt, BIT_IOR_EXPR);
2003 update_stmt (stmt);
2004 return true;
2007 /* Combine successive equal operations with constants. */
2008 if ((code == BIT_AND_EXPR
2009 || code == BIT_IOR_EXPR
2010 || code == BIT_XOR_EXPR)
2011 && def1_code == code
2012 && TREE_CODE (arg2) == INTEGER_CST
2013 && TREE_CODE (def1_arg2) == INTEGER_CST)
2015 tree cst = fold_build2 (code, TREE_TYPE (arg2),
2016 arg2, def1_arg2);
2017 gimple_assign_set_rhs1 (stmt, def1_arg1);
2018 gimple_assign_set_rhs2 (stmt, cst);
2019 update_stmt (stmt);
2020 return true;
2023 /* Canonicalize X ^ ~0 to ~X. */
2024 if (code == BIT_XOR_EXPR
2025 && TREE_CODE (arg2) == INTEGER_CST
2026 && integer_all_onesp (arg2))
2028 gimple_assign_set_rhs_with_ops (gsi, BIT_NOT_EXPR, arg1, NULL_TREE);
2029 gcc_assert (gsi_stmt (*gsi) == stmt);
2030 update_stmt (stmt);
2031 return true;
2034 /* Try simple folding for X op !X, and X op X. */
2035 res = simplify_bitwise_binary_1 (code, TREE_TYPE (arg1), arg1, arg2);
2036 if (res != NULL_TREE)
2038 gimple_assign_set_rhs_from_tree (gsi, res);
2039 update_stmt (gsi_stmt (*gsi));
2040 return true;
2043 if (code == BIT_AND_EXPR || code == BIT_IOR_EXPR)
2045 enum tree_code ocode = code == BIT_AND_EXPR ? BIT_IOR_EXPR : BIT_AND_EXPR;
2046 if (def1_code == ocode)
2048 tree x = arg2;
2049 enum tree_code coden;
2050 tree a1, a2;
2051 /* ( X | Y) & X -> X */
2052 /* ( X & Y) | X -> X */
2053 if (x == def1_arg1
2054 || x == def1_arg2)
2056 gimple_assign_set_rhs_from_tree (gsi, x);
2057 update_stmt (gsi_stmt (*gsi));
2058 return true;
2061 defcodefor_name (def1_arg1, &coden, &a1, &a2);
2062 /* (~X | Y) & X -> X & Y */
2063 /* (~X & Y) | X -> X | Y */
2064 if (coden == BIT_NOT_EXPR && a1 == x)
2066 gimple_assign_set_rhs_with_ops (gsi, code,
2067 x, def1_arg2);
2068 gcc_assert (gsi_stmt (*gsi) == stmt);
2069 update_stmt (stmt);
2070 return true;
2072 defcodefor_name (def1_arg2, &coden, &a1, &a2);
2073 /* (Y | ~X) & X -> X & Y */
2074 /* (Y & ~X) | X -> X | Y */
2075 if (coden == BIT_NOT_EXPR && a1 == x)
2077 gimple_assign_set_rhs_with_ops (gsi, code,
2078 x, def1_arg1);
2079 gcc_assert (gsi_stmt (*gsi) == stmt);
2080 update_stmt (stmt);
2081 return true;
2084 if (def2_code == ocode)
2086 enum tree_code coden;
2087 tree a1;
2088 tree x = arg1;
2089 /* X & ( X | Y) -> X */
2090 /* X | ( X & Y) -> X */
2091 if (x == def2_arg1
2092 || x == def2_arg2)
2094 gimple_assign_set_rhs_from_tree (gsi, x);
2095 update_stmt (gsi_stmt (*gsi));
2096 return true;
2098 defcodefor_name (def2_arg1, &coden, &a1, NULL);
2099 /* (~X | Y) & X -> X & Y */
2100 /* (~X & Y) | X -> X | Y */
2101 if (coden == BIT_NOT_EXPR && a1 == x)
2103 gimple_assign_set_rhs_with_ops (gsi, code,
2104 x, def2_arg2);
2105 gcc_assert (gsi_stmt (*gsi) == stmt);
2106 update_stmt (stmt);
2107 return true;
2109 defcodefor_name (def2_arg2, &coden, &a1, NULL);
2110 /* (Y | ~X) & X -> X & Y */
2111 /* (Y & ~X) | X -> X | Y */
2112 if (coden == BIT_NOT_EXPR && a1 == x)
2114 gimple_assign_set_rhs_with_ops (gsi, code,
2115 x, def2_arg1);
2116 gcc_assert (gsi_stmt (*gsi) == stmt);
2117 update_stmt (stmt);
2118 return true;
2123 return false;
2127 /* Recognize rotation patterns. Return true if a transformation
2128 applied, otherwise return false.
2130 We are looking for X with unsigned type T with bitsize B, OP being
2131 +, | or ^, some type T2 wider than T and
2132 (X << CNT1) OP (X >> CNT2) iff CNT1 + CNT2 == B
2133 ((T) ((T2) X << CNT1)) OP ((T) ((T2) X >> CNT2)) iff CNT1 + CNT2 == B
2134 (X << Y) OP (X >> (B - Y))
2135 (X << (int) Y) OP (X >> (int) (B - Y))
2136 ((T) ((T2) X << Y)) OP ((T) ((T2) X >> (B - Y)))
2137 ((T) ((T2) X << (int) Y)) OP ((T) ((T2) X >> (int) (B - Y)))
2138 (X << Y) | (X >> ((-Y) & (B - 1)))
2139 (X << (int) Y) | (X >> (int) ((-Y) & (B - 1)))
2140 ((T) ((T2) X << Y)) | ((T) ((T2) X >> ((-Y) & (B - 1))))
2141 ((T) ((T2) X << (int) Y)) | ((T) ((T2) X >> (int) ((-Y) & (B - 1))))
2143 and transform these into:
2144 X r<< CNT1
2145 X r<< Y
2147 Note, in the patterns with T2 type, the type of OP operands
2148 might be even a signed type, but should have precision B. */
2150 static bool
2151 simplify_rotate (gimple_stmt_iterator *gsi)
2153 gimple stmt = gsi_stmt (*gsi);
2154 tree arg[2], rtype, rotcnt = NULL_TREE;
2155 tree def_arg1[2], def_arg2[2];
2156 enum tree_code def_code[2];
2157 tree lhs;
2158 int i;
2159 bool swapped_p = false;
2160 gimple g;
2162 arg[0] = gimple_assign_rhs1 (stmt);
2163 arg[1] = gimple_assign_rhs2 (stmt);
2164 rtype = TREE_TYPE (arg[0]);
2166 /* Only create rotates in complete modes. Other cases are not
2167 expanded properly. */
2168 if (!INTEGRAL_TYPE_P (rtype)
2169 || TYPE_PRECISION (rtype) != GET_MODE_PRECISION (TYPE_MODE (rtype)))
2170 return false;
2172 for (i = 0; i < 2; i++)
2173 defcodefor_name (arg[i], &def_code[i], &def_arg1[i], &def_arg2[i]);
2175 /* Look through narrowing conversions. */
2176 if (CONVERT_EXPR_CODE_P (def_code[0])
2177 && CONVERT_EXPR_CODE_P (def_code[1])
2178 && INTEGRAL_TYPE_P (TREE_TYPE (def_arg1[0]))
2179 && INTEGRAL_TYPE_P (TREE_TYPE (def_arg1[1]))
2180 && TYPE_PRECISION (TREE_TYPE (def_arg1[0]))
2181 == TYPE_PRECISION (TREE_TYPE (def_arg1[1]))
2182 && TYPE_PRECISION (TREE_TYPE (def_arg1[0])) > TYPE_PRECISION (rtype)
2183 && has_single_use (arg[0])
2184 && has_single_use (arg[1]))
2186 for (i = 0; i < 2; i++)
2188 arg[i] = def_arg1[i];
2189 defcodefor_name (arg[i], &def_code[i], &def_arg1[i], &def_arg2[i]);
2193 /* One operand has to be LSHIFT_EXPR and one RSHIFT_EXPR. */
2194 for (i = 0; i < 2; i++)
2195 if (def_code[i] != LSHIFT_EXPR && def_code[i] != RSHIFT_EXPR)
2196 return false;
2197 else if (!has_single_use (arg[i]))
2198 return false;
2199 if (def_code[0] == def_code[1])
2200 return false;
2202 /* If we've looked through narrowing conversions before, look through
2203 widening conversions from unsigned type with the same precision
2204 as rtype here. */
2205 if (TYPE_PRECISION (TREE_TYPE (def_arg1[0])) != TYPE_PRECISION (rtype))
2206 for (i = 0; i < 2; i++)
2208 tree tem;
2209 enum tree_code code;
2210 defcodefor_name (def_arg1[i], &code, &tem, NULL);
2211 if (!CONVERT_EXPR_CODE_P (code)
2212 || !INTEGRAL_TYPE_P (TREE_TYPE (tem))
2213 || TYPE_PRECISION (TREE_TYPE (tem)) != TYPE_PRECISION (rtype))
2214 return false;
2215 def_arg1[i] = tem;
2217 /* Both shifts have to use the same first operand. */
2218 if (TREE_CODE (def_arg1[0]) != SSA_NAME || def_arg1[0] != def_arg1[1])
2219 return false;
2220 if (!TYPE_UNSIGNED (TREE_TYPE (def_arg1[0])))
2221 return false;
2223 /* CNT1 + CNT2 == B case above. */
2224 if (host_integerp (def_arg2[0], 1)
2225 && host_integerp (def_arg2[1], 1)
2226 && (unsigned HOST_WIDE_INT) tree_low_cst (def_arg2[0], 1)
2227 + tree_low_cst (def_arg2[1], 1) == TYPE_PRECISION (rtype))
2228 rotcnt = def_arg2[0];
2229 else if (TREE_CODE (def_arg2[0]) != SSA_NAME
2230 || TREE_CODE (def_arg2[1]) != SSA_NAME)
2231 return false;
2232 else
2234 tree cdef_arg1[2], cdef_arg2[2], def_arg2_alt[2];
2235 enum tree_code cdef_code[2];
2236 /* Look through conversion of the shift count argument.
2237 The C/C++ FE cast any shift count argument to integer_type_node.
2238 The only problem might be if the shift count type maximum value
2239 is equal or smaller than number of bits in rtype. */
2240 for (i = 0; i < 2; i++)
2242 def_arg2_alt[i] = def_arg2[i];
2243 defcodefor_name (def_arg2[i], &cdef_code[i],
2244 &cdef_arg1[i], &cdef_arg2[i]);
2245 if (CONVERT_EXPR_CODE_P (cdef_code[i])
2246 && INTEGRAL_TYPE_P (TREE_TYPE (cdef_arg1[i]))
2247 && TYPE_PRECISION (TREE_TYPE (cdef_arg1[i]))
2248 > floor_log2 (TYPE_PRECISION (rtype))
2249 && TYPE_PRECISION (TREE_TYPE (cdef_arg1[i]))
2250 == GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (cdef_arg1[i]))))
2252 def_arg2_alt[i] = cdef_arg1[i];
2253 defcodefor_name (def_arg2_alt[i], &cdef_code[i],
2254 &cdef_arg1[i], &cdef_arg2[i]);
2257 for (i = 0; i < 2; i++)
2258 /* Check for one shift count being Y and the other B - Y,
2259 with optional casts. */
2260 if (cdef_code[i] == MINUS_EXPR
2261 && host_integerp (cdef_arg1[i], 0)
2262 && tree_low_cst (cdef_arg1[i], 0) == TYPE_PRECISION (rtype)
2263 && TREE_CODE (cdef_arg2[i]) == SSA_NAME)
2265 tree tem;
2266 enum tree_code code;
2268 if (cdef_arg2[i] == def_arg2[1 - i]
2269 || cdef_arg2[i] == def_arg2_alt[1 - i])
2271 rotcnt = cdef_arg2[i];
2272 break;
2274 defcodefor_name (cdef_arg2[i], &code, &tem, NULL);
2275 if (CONVERT_EXPR_CODE_P (code)
2276 && INTEGRAL_TYPE_P (TREE_TYPE (tem))
2277 && TYPE_PRECISION (TREE_TYPE (tem))
2278 > floor_log2 (TYPE_PRECISION (rtype))
2279 && TYPE_PRECISION (TREE_TYPE (tem))
2280 == GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (tem)))
2281 && (tem == def_arg2[1 - i]
2282 || tem == def_arg2_alt[1 - i]))
2284 rotcnt = tem;
2285 break;
2288 /* The above sequence isn't safe for Y being 0,
2289 because then one of the shifts triggers undefined behavior.
2290 This alternative is safe even for rotation count of 0.
2291 One shift count is Y and the other (-Y) & (B - 1). */
2292 else if (cdef_code[i] == BIT_AND_EXPR
2293 && host_integerp (cdef_arg2[i], 0)
2294 && tree_low_cst (cdef_arg2[i], 0)
2295 == TYPE_PRECISION (rtype) - 1
2296 && TREE_CODE (cdef_arg1[i]) == SSA_NAME
2297 && gimple_assign_rhs_code (stmt) == BIT_IOR_EXPR)
2299 tree tem;
2300 enum tree_code code;
2302 defcodefor_name (cdef_arg1[i], &code, &tem, NULL);
2303 if (CONVERT_EXPR_CODE_P (code)
2304 && INTEGRAL_TYPE_P (TREE_TYPE (tem))
2305 && TYPE_PRECISION (TREE_TYPE (tem))
2306 > floor_log2 (TYPE_PRECISION (rtype))
2307 && TYPE_PRECISION (TREE_TYPE (tem))
2308 == GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (tem))))
2309 defcodefor_name (tem, &code, &tem, NULL);
2311 if (code == NEGATE_EXPR)
2313 if (tem == def_arg2[1 - i] || tem == def_arg2_alt[1 - i])
2315 rotcnt = tem;
2316 break;
2318 defcodefor_name (tem, &code, &tem, NULL);
2319 if (CONVERT_EXPR_CODE_P (code)
2320 && INTEGRAL_TYPE_P (TREE_TYPE (tem))
2321 && TYPE_PRECISION (TREE_TYPE (tem))
2322 > floor_log2 (TYPE_PRECISION (rtype))
2323 && TYPE_PRECISION (TREE_TYPE (tem))
2324 == GET_MODE_PRECISION (TYPE_MODE (TREE_TYPE (tem)))
2325 && (tem == def_arg2[1 - i]
2326 || tem == def_arg2_alt[1 - i]))
2328 rotcnt = tem;
2329 break;
2333 if (rotcnt == NULL_TREE)
2334 return false;
2335 swapped_p = i != 1;
2338 if (!useless_type_conversion_p (TREE_TYPE (def_arg2[0]),
2339 TREE_TYPE (rotcnt)))
2341 g = gimple_build_assign_with_ops (NOP_EXPR,
2342 make_ssa_name (TREE_TYPE (def_arg2[0]),
2343 NULL),
2344 rotcnt, NULL_TREE);
2345 gsi_insert_before (gsi, g, GSI_SAME_STMT);
2346 rotcnt = gimple_assign_lhs (g);
2348 lhs = gimple_assign_lhs (stmt);
2349 if (!useless_type_conversion_p (rtype, TREE_TYPE (def_arg1[0])))
2350 lhs = make_ssa_name (TREE_TYPE (def_arg1[0]), NULL);
2351 g = gimple_build_assign_with_ops (((def_code[0] == LSHIFT_EXPR) ^ swapped_p)
2352 ? LROTATE_EXPR : RROTATE_EXPR,
2353 lhs, def_arg1[0], rotcnt);
2354 if (!useless_type_conversion_p (rtype, TREE_TYPE (def_arg1[0])))
2356 gsi_insert_before (gsi, g, GSI_SAME_STMT);
2357 g = gimple_build_assign_with_ops (NOP_EXPR, gimple_assign_lhs (stmt),
2358 lhs, NULL_TREE);
2360 gsi_replace (gsi, g, false);
2361 return true;
2364 /* Perform re-associations of the plus or minus statement STMT that are
2365 always permitted. Returns true if the CFG was changed. */
2367 static bool
2368 associate_plusminus (gimple_stmt_iterator *gsi)
2370 gimple stmt = gsi_stmt (*gsi);
2371 tree rhs1 = gimple_assign_rhs1 (stmt);
2372 tree rhs2 = gimple_assign_rhs2 (stmt);
2373 enum tree_code code = gimple_assign_rhs_code (stmt);
2374 bool changed;
2376 /* We can't reassociate at all for saturating types. */
2377 if (TYPE_SATURATING (TREE_TYPE (rhs1)))
2378 return false;
2380 /* First contract negates. */
2383 changed = false;
2385 /* A +- (-B) -> A -+ B. */
2386 if (TREE_CODE (rhs2) == SSA_NAME)
2388 gimple def_stmt = SSA_NAME_DEF_STMT (rhs2);
2389 if (is_gimple_assign (def_stmt)
2390 && gimple_assign_rhs_code (def_stmt) == NEGATE_EXPR
2391 && can_propagate_from (def_stmt))
2393 code = (code == MINUS_EXPR) ? PLUS_EXPR : MINUS_EXPR;
2394 gimple_assign_set_rhs_code (stmt, code);
2395 rhs2 = gimple_assign_rhs1 (def_stmt);
2396 gimple_assign_set_rhs2 (stmt, rhs2);
2397 gimple_set_modified (stmt, true);
2398 changed = true;
2402 /* (-A) + B -> B - A. */
2403 if (TREE_CODE (rhs1) == SSA_NAME
2404 && code == PLUS_EXPR)
2406 gimple def_stmt = SSA_NAME_DEF_STMT (rhs1);
2407 if (is_gimple_assign (def_stmt)
2408 && gimple_assign_rhs_code (def_stmt) == NEGATE_EXPR
2409 && can_propagate_from (def_stmt))
2411 code = MINUS_EXPR;
2412 gimple_assign_set_rhs_code (stmt, code);
2413 rhs1 = rhs2;
2414 gimple_assign_set_rhs1 (stmt, rhs1);
2415 rhs2 = gimple_assign_rhs1 (def_stmt);
2416 gimple_assign_set_rhs2 (stmt, rhs2);
2417 gimple_set_modified (stmt, true);
2418 changed = true;
2422 while (changed);
2424 /* We can't reassociate floating-point or fixed-point plus or minus
2425 because of saturation to +-Inf. */
2426 if (FLOAT_TYPE_P (TREE_TYPE (rhs1))
2427 || FIXED_POINT_TYPE_P (TREE_TYPE (rhs1)))
2428 goto out;
2430 /* Second match patterns that allow contracting a plus-minus pair
2431 irrespective of overflow issues.
2433 (A +- B) - A -> +- B
2434 (A +- B) -+ B -> A
2435 (CST +- A) +- CST -> CST +- A
2436 (A + CST) +- CST -> A + CST
2437 ~A + A -> -1
2438 ~A + 1 -> -A
2439 A - (A +- B) -> -+ B
2440 A +- (B +- A) -> +- B
2441 CST +- (CST +- A) -> CST +- A
2442 CST +- (A +- CST) -> CST +- A
2443 A + ~A -> -1
2445 via commutating the addition and contracting operations to zero
2446 by reassociation. */
2448 if (TREE_CODE (rhs1) == SSA_NAME)
2450 gimple def_stmt = SSA_NAME_DEF_STMT (rhs1);
2451 if (is_gimple_assign (def_stmt) && can_propagate_from (def_stmt))
2453 enum tree_code def_code = gimple_assign_rhs_code (def_stmt);
2454 if (def_code == PLUS_EXPR
2455 || def_code == MINUS_EXPR)
2457 tree def_rhs1 = gimple_assign_rhs1 (def_stmt);
2458 tree def_rhs2 = gimple_assign_rhs2 (def_stmt);
2459 if (operand_equal_p (def_rhs1, rhs2, 0)
2460 && code == MINUS_EXPR)
2462 /* (A +- B) - A -> +- B. */
2463 code = ((def_code == PLUS_EXPR)
2464 ? TREE_CODE (def_rhs2) : NEGATE_EXPR);
2465 rhs1 = def_rhs2;
2466 rhs2 = NULL_TREE;
2467 gimple_assign_set_rhs_with_ops (gsi, code, rhs1, NULL_TREE);
2468 gcc_assert (gsi_stmt (*gsi) == stmt);
2469 gimple_set_modified (stmt, true);
2471 else if (operand_equal_p (def_rhs2, rhs2, 0)
2472 && code != def_code)
2474 /* (A +- B) -+ B -> A. */
2475 code = TREE_CODE (def_rhs1);
2476 rhs1 = def_rhs1;
2477 rhs2 = NULL_TREE;
2478 gimple_assign_set_rhs_with_ops (gsi, code, rhs1, NULL_TREE);
2479 gcc_assert (gsi_stmt (*gsi) == stmt);
2480 gimple_set_modified (stmt, true);
2482 else if (TREE_CODE (rhs2) == INTEGER_CST
2483 && TREE_CODE (def_rhs1) == INTEGER_CST)
2485 /* (CST +- A) +- CST -> CST +- A. */
2486 tree cst = fold_binary (code, TREE_TYPE (rhs1),
2487 def_rhs1, rhs2);
2488 if (cst && !TREE_OVERFLOW (cst))
2490 code = def_code;
2491 gimple_assign_set_rhs_code (stmt, code);
2492 rhs1 = cst;
2493 gimple_assign_set_rhs1 (stmt, rhs1);
2494 rhs2 = def_rhs2;
2495 gimple_assign_set_rhs2 (stmt, rhs2);
2496 gimple_set_modified (stmt, true);
2499 else if (TREE_CODE (rhs2) == INTEGER_CST
2500 && TREE_CODE (def_rhs2) == INTEGER_CST
2501 && def_code == PLUS_EXPR)
2503 /* (A + CST) +- CST -> A + CST. */
2504 tree cst = fold_binary (code, TREE_TYPE (rhs1),
2505 def_rhs2, rhs2);
2506 if (cst && !TREE_OVERFLOW (cst))
2508 code = PLUS_EXPR;
2509 gimple_assign_set_rhs_code (stmt, code);
2510 rhs1 = def_rhs1;
2511 gimple_assign_set_rhs1 (stmt, rhs1);
2512 rhs2 = cst;
2513 gimple_assign_set_rhs2 (stmt, rhs2);
2514 gimple_set_modified (stmt, true);
2518 else if (def_code == BIT_NOT_EXPR
2519 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1)))
2521 tree def_rhs1 = gimple_assign_rhs1 (def_stmt);
2522 if (code == PLUS_EXPR
2523 && operand_equal_p (def_rhs1, rhs2, 0))
2525 /* ~A + A -> -1. */
2526 code = INTEGER_CST;
2527 rhs1 = build_int_cst_type (TREE_TYPE (rhs2), -1);
2528 rhs2 = NULL_TREE;
2529 gimple_assign_set_rhs_with_ops (gsi, code, rhs1, NULL_TREE);
2530 gcc_assert (gsi_stmt (*gsi) == stmt);
2531 gimple_set_modified (stmt, true);
2533 else if (code == PLUS_EXPR
2534 && integer_onep (rhs1))
2536 /* ~A + 1 -> -A. */
2537 code = NEGATE_EXPR;
2538 rhs1 = def_rhs1;
2539 rhs2 = NULL_TREE;
2540 gimple_assign_set_rhs_with_ops (gsi, code, rhs1, NULL_TREE);
2541 gcc_assert (gsi_stmt (*gsi) == stmt);
2542 gimple_set_modified (stmt, true);
2548 if (rhs2 && TREE_CODE (rhs2) == SSA_NAME)
2550 gimple def_stmt = SSA_NAME_DEF_STMT (rhs2);
2551 if (is_gimple_assign (def_stmt) && can_propagate_from (def_stmt))
2553 enum tree_code def_code = gimple_assign_rhs_code (def_stmt);
2554 if (def_code == PLUS_EXPR
2555 || def_code == MINUS_EXPR)
2557 tree def_rhs1 = gimple_assign_rhs1 (def_stmt);
2558 tree def_rhs2 = gimple_assign_rhs2 (def_stmt);
2559 if (operand_equal_p (def_rhs1, rhs1, 0)
2560 && code == MINUS_EXPR)
2562 /* A - (A +- B) -> -+ B. */
2563 code = ((def_code == PLUS_EXPR)
2564 ? NEGATE_EXPR : TREE_CODE (def_rhs2));
2565 rhs1 = def_rhs2;
2566 rhs2 = NULL_TREE;
2567 gimple_assign_set_rhs_with_ops (gsi, code, rhs1, NULL_TREE);
2568 gcc_assert (gsi_stmt (*gsi) == stmt);
2569 gimple_set_modified (stmt, true);
2571 else if (operand_equal_p (def_rhs2, rhs1, 0)
2572 && code != def_code)
2574 /* A +- (B +- A) -> +- B. */
2575 code = ((code == PLUS_EXPR)
2576 ? TREE_CODE (def_rhs1) : NEGATE_EXPR);
2577 rhs1 = def_rhs1;
2578 rhs2 = NULL_TREE;
2579 gimple_assign_set_rhs_with_ops (gsi, code, rhs1, NULL_TREE);
2580 gcc_assert (gsi_stmt (*gsi) == stmt);
2581 gimple_set_modified (stmt, true);
2583 else if (TREE_CODE (rhs1) == INTEGER_CST
2584 && TREE_CODE (def_rhs1) == INTEGER_CST)
2586 /* CST +- (CST +- A) -> CST +- A. */
2587 tree cst = fold_binary (code, TREE_TYPE (rhs2),
2588 rhs1, def_rhs1);
2589 if (cst && !TREE_OVERFLOW (cst))
2591 code = (code == def_code ? PLUS_EXPR : MINUS_EXPR);
2592 gimple_assign_set_rhs_code (stmt, code);
2593 rhs1 = cst;
2594 gimple_assign_set_rhs1 (stmt, rhs1);
2595 rhs2 = def_rhs2;
2596 gimple_assign_set_rhs2 (stmt, rhs2);
2597 gimple_set_modified (stmt, true);
2600 else if (TREE_CODE (rhs1) == INTEGER_CST
2601 && TREE_CODE (def_rhs2) == INTEGER_CST)
2603 /* CST +- (A +- CST) -> CST +- A. */
2604 tree cst = fold_binary (def_code == code
2605 ? PLUS_EXPR : MINUS_EXPR,
2606 TREE_TYPE (rhs2),
2607 rhs1, def_rhs2);
2608 if (cst && !TREE_OVERFLOW (cst))
2610 rhs1 = cst;
2611 gimple_assign_set_rhs1 (stmt, rhs1);
2612 rhs2 = def_rhs1;
2613 gimple_assign_set_rhs2 (stmt, rhs2);
2614 gimple_set_modified (stmt, true);
2618 else if (def_code == BIT_NOT_EXPR
2619 && INTEGRAL_TYPE_P (TREE_TYPE (rhs2)))
2621 tree def_rhs1 = gimple_assign_rhs1 (def_stmt);
2622 if (code == PLUS_EXPR
2623 && operand_equal_p (def_rhs1, rhs1, 0))
2625 /* A + ~A -> -1. */
2626 code = INTEGER_CST;
2627 rhs1 = build_int_cst_type (TREE_TYPE (rhs1), -1);
2628 rhs2 = NULL_TREE;
2629 gimple_assign_set_rhs_with_ops (gsi, code, rhs1, NULL_TREE);
2630 gcc_assert (gsi_stmt (*gsi) == stmt);
2631 gimple_set_modified (stmt, true);
2637 out:
2638 if (gimple_modified_p (stmt))
2640 fold_stmt_inplace (gsi);
2641 update_stmt (stmt);
2642 if (maybe_clean_or_replace_eh_stmt (stmt, stmt)
2643 && gimple_purge_dead_eh_edges (gimple_bb (stmt)))
2644 return true;
2647 return false;
2650 /* Associate operands of a POINTER_PLUS_EXPR assignmen at *GSI. Returns
2651 true if anything changed, false otherwise. */
2653 static bool
2654 associate_pointerplus (gimple_stmt_iterator *gsi)
2656 gimple stmt = gsi_stmt (*gsi);
2657 gimple def_stmt;
2658 tree ptr, rhs, algn;
2660 /* Pattern match
2661 tem = (sizetype) ptr;
2662 tem = tem & algn;
2663 tem = -tem;
2664 ... = ptr p+ tem;
2665 and produce the simpler and easier to analyze with respect to alignment
2666 ... = ptr & ~algn; */
2667 ptr = gimple_assign_rhs1 (stmt);
2668 rhs = gimple_assign_rhs2 (stmt);
2669 if (TREE_CODE (rhs) != SSA_NAME)
2670 return false;
2671 def_stmt = SSA_NAME_DEF_STMT (rhs);
2672 if (!is_gimple_assign (def_stmt)
2673 || gimple_assign_rhs_code (def_stmt) != NEGATE_EXPR)
2674 return false;
2675 rhs = gimple_assign_rhs1 (def_stmt);
2676 if (TREE_CODE (rhs) != SSA_NAME)
2677 return false;
2678 def_stmt = SSA_NAME_DEF_STMT (rhs);
2679 if (!is_gimple_assign (def_stmt)
2680 || gimple_assign_rhs_code (def_stmt) != BIT_AND_EXPR)
2681 return false;
2682 rhs = gimple_assign_rhs1 (def_stmt);
2683 algn = gimple_assign_rhs2 (def_stmt);
2684 if (TREE_CODE (rhs) != SSA_NAME
2685 || TREE_CODE (algn) != INTEGER_CST)
2686 return false;
2687 def_stmt = SSA_NAME_DEF_STMT (rhs);
2688 if (!is_gimple_assign (def_stmt)
2689 || !CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def_stmt)))
2690 return false;
2691 if (gimple_assign_rhs1 (def_stmt) != ptr)
2692 return false;
2694 algn = double_int_to_tree (TREE_TYPE (ptr), ~tree_to_double_int (algn));
2695 gimple_assign_set_rhs_with_ops (gsi, BIT_AND_EXPR, ptr, algn);
2696 fold_stmt_inplace (gsi);
2697 update_stmt (stmt);
2699 return true;
2702 /* Combine two conversions in a row for the second conversion at *GSI.
2703 Returns 1 if there were any changes made, 2 if cfg-cleanup needs to
2704 run. Else it returns 0. */
2706 static int
2707 combine_conversions (gimple_stmt_iterator *gsi)
2709 gimple stmt = gsi_stmt (*gsi);
2710 gimple def_stmt;
2711 tree op0, lhs;
2712 enum tree_code code = gimple_assign_rhs_code (stmt);
2713 enum tree_code code2;
2715 gcc_checking_assert (CONVERT_EXPR_CODE_P (code)
2716 || code == FLOAT_EXPR
2717 || code == FIX_TRUNC_EXPR);
2719 lhs = gimple_assign_lhs (stmt);
2720 op0 = gimple_assign_rhs1 (stmt);
2721 if (useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (op0)))
2723 gimple_assign_set_rhs_code (stmt, TREE_CODE (op0));
2724 return 1;
2727 if (TREE_CODE (op0) != SSA_NAME)
2728 return 0;
2730 def_stmt = SSA_NAME_DEF_STMT (op0);
2731 if (!is_gimple_assign (def_stmt))
2732 return 0;
2734 code2 = gimple_assign_rhs_code (def_stmt);
2736 if (CONVERT_EXPR_CODE_P (code2) || code2 == FLOAT_EXPR)
2738 tree defop0 = gimple_assign_rhs1 (def_stmt);
2739 tree type = TREE_TYPE (lhs);
2740 tree inside_type = TREE_TYPE (defop0);
2741 tree inter_type = TREE_TYPE (op0);
2742 int inside_int = INTEGRAL_TYPE_P (inside_type);
2743 int inside_ptr = POINTER_TYPE_P (inside_type);
2744 int inside_float = FLOAT_TYPE_P (inside_type);
2745 int inside_vec = TREE_CODE (inside_type) == VECTOR_TYPE;
2746 unsigned int inside_prec = TYPE_PRECISION (inside_type);
2747 int inside_unsignedp = TYPE_UNSIGNED (inside_type);
2748 int inter_int = INTEGRAL_TYPE_P (inter_type);
2749 int inter_ptr = POINTER_TYPE_P (inter_type);
2750 int inter_float = FLOAT_TYPE_P (inter_type);
2751 int inter_vec = TREE_CODE (inter_type) == VECTOR_TYPE;
2752 unsigned int inter_prec = TYPE_PRECISION (inter_type);
2753 int inter_unsignedp = TYPE_UNSIGNED (inter_type);
2754 int final_int = INTEGRAL_TYPE_P (type);
2755 int final_ptr = POINTER_TYPE_P (type);
2756 int final_float = FLOAT_TYPE_P (type);
2757 int final_vec = TREE_CODE (type) == VECTOR_TYPE;
2758 unsigned int final_prec = TYPE_PRECISION (type);
2759 int final_unsignedp = TYPE_UNSIGNED (type);
2761 /* Don't propagate ssa names that occur in abnormal phis. */
2762 if (TREE_CODE (defop0) == SSA_NAME
2763 && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (defop0))
2764 return 0;
2766 /* In addition to the cases of two conversions in a row
2767 handled below, if we are converting something to its own
2768 type via an object of identical or wider precision, neither
2769 conversion is needed. */
2770 if (useless_type_conversion_p (type, inside_type)
2771 && (((inter_int || inter_ptr) && final_int)
2772 || (inter_float && final_float))
2773 && inter_prec >= final_prec)
2775 gimple_assign_set_rhs1 (stmt, unshare_expr (defop0));
2776 gimple_assign_set_rhs_code (stmt, TREE_CODE (defop0));
2777 update_stmt (stmt);
2778 return remove_prop_source_from_use (op0) ? 2 : 1;
2781 /* Likewise, if the intermediate and initial types are either both
2782 float or both integer, we don't need the middle conversion if the
2783 former is wider than the latter and doesn't change the signedness
2784 (for integers). Avoid this if the final type is a pointer since
2785 then we sometimes need the middle conversion. Likewise if the
2786 final type has a precision not equal to the size of its mode. */
2787 if (((inter_int && inside_int)
2788 || (inter_float && inside_float)
2789 || (inter_vec && inside_vec))
2790 && inter_prec >= inside_prec
2791 && (inter_float || inter_vec
2792 || inter_unsignedp == inside_unsignedp)
2793 && ! (final_prec != GET_MODE_PRECISION (TYPE_MODE (type))
2794 && TYPE_MODE (type) == TYPE_MODE (inter_type))
2795 && ! final_ptr
2796 && (! final_vec || inter_prec == inside_prec))
2798 gimple_assign_set_rhs1 (stmt, defop0);
2799 update_stmt (stmt);
2800 return remove_prop_source_from_use (op0) ? 2 : 1;
2803 /* If we have a sign-extension of a zero-extended value, we can
2804 replace that by a single zero-extension. Likewise if the
2805 final conversion does not change precision we can drop the
2806 intermediate conversion. */
2807 if (inside_int && inter_int && final_int
2808 && ((inside_prec < inter_prec && inter_prec < final_prec
2809 && inside_unsignedp && !inter_unsignedp)
2810 || final_prec == inter_prec))
2812 gimple_assign_set_rhs1 (stmt, defop0);
2813 update_stmt (stmt);
2814 return remove_prop_source_from_use (op0) ? 2 : 1;
2817 /* Two conversions in a row are not needed unless:
2818 - some conversion is floating-point (overstrict for now), or
2819 - some conversion is a vector (overstrict for now), or
2820 - the intermediate type is narrower than both initial and
2821 final, or
2822 - the intermediate type and innermost type differ in signedness,
2823 and the outermost type is wider than the intermediate, or
2824 - the initial type is a pointer type and the precisions of the
2825 intermediate and final types differ, or
2826 - the final type is a pointer type and the precisions of the
2827 initial and intermediate types differ. */
2828 if (! inside_float && ! inter_float && ! final_float
2829 && ! inside_vec && ! inter_vec && ! final_vec
2830 && (inter_prec >= inside_prec || inter_prec >= final_prec)
2831 && ! (inside_int && inter_int
2832 && inter_unsignedp != inside_unsignedp
2833 && inter_prec < final_prec)
2834 && ((inter_unsignedp && inter_prec > inside_prec)
2835 == (final_unsignedp && final_prec > inter_prec))
2836 && ! (inside_ptr && inter_prec != final_prec)
2837 && ! (final_ptr && inside_prec != inter_prec)
2838 && ! (final_prec != GET_MODE_PRECISION (TYPE_MODE (type))
2839 && TYPE_MODE (type) == TYPE_MODE (inter_type)))
2841 gimple_assign_set_rhs1 (stmt, defop0);
2842 update_stmt (stmt);
2843 return remove_prop_source_from_use (op0) ? 2 : 1;
2846 /* A truncation to an unsigned type should be canonicalized as
2847 bitwise and of a mask. */
2848 if (final_int && inter_int && inside_int
2849 && final_prec == inside_prec
2850 && final_prec > inter_prec
2851 && inter_unsignedp)
2853 tree tem;
2854 tem = fold_build2 (BIT_AND_EXPR, inside_type,
2855 defop0,
2856 double_int_to_tree
2857 (inside_type, double_int::mask (inter_prec)));
2858 if (!useless_type_conversion_p (type, inside_type))
2860 tem = force_gimple_operand_gsi (gsi, tem, true, NULL_TREE, true,
2861 GSI_SAME_STMT);
2862 gimple_assign_set_rhs1 (stmt, tem);
2864 else
2865 gimple_assign_set_rhs_from_tree (gsi, tem);
2866 update_stmt (gsi_stmt (*gsi));
2867 return 1;
2870 /* If we are converting an integer to a floating-point that can
2871 represent it exactly and back to an integer, we can skip the
2872 floating-point conversion. */
2873 if (inside_int && inter_float && final_int &&
2874 (unsigned) significand_size (TYPE_MODE (inter_type))
2875 >= inside_prec - !inside_unsignedp)
2877 if (useless_type_conversion_p (type, inside_type))
2879 gimple_assign_set_rhs1 (stmt, unshare_expr (defop0));
2880 gimple_assign_set_rhs_code (stmt, TREE_CODE (defop0));
2881 update_stmt (stmt);
2882 return remove_prop_source_from_use (op0) ? 2 : 1;
2884 else
2886 gimple_assign_set_rhs1 (stmt, defop0);
2887 gimple_assign_set_rhs_code (stmt, CONVERT_EXPR);
2888 update_stmt (stmt);
2889 return remove_prop_source_from_use (op0) ? 2 : 1;
2894 return 0;
2897 /* Combine an element access with a shuffle. Returns true if there were
2898 any changes made, else it returns false. */
2900 static bool
2901 simplify_bitfield_ref (gimple_stmt_iterator *gsi)
2903 gimple stmt = gsi_stmt (*gsi);
2904 gimple def_stmt;
2905 tree op, op0, op1, op2;
2906 tree elem_type;
2907 unsigned idx, n, size;
2908 enum tree_code code;
2910 op = gimple_assign_rhs1 (stmt);
2911 gcc_checking_assert (TREE_CODE (op) == BIT_FIELD_REF);
2913 op0 = TREE_OPERAND (op, 0);
2914 if (TREE_CODE (op0) != SSA_NAME
2915 || TREE_CODE (TREE_TYPE (op0)) != VECTOR_TYPE)
2916 return false;
2918 def_stmt = get_prop_source_stmt (op0, false, NULL);
2919 if (!def_stmt || !can_propagate_from (def_stmt))
2920 return false;
2922 op1 = TREE_OPERAND (op, 1);
2923 op2 = TREE_OPERAND (op, 2);
2924 code = gimple_assign_rhs_code (def_stmt);
2926 if (code == CONSTRUCTOR)
2928 tree tem = fold_ternary (BIT_FIELD_REF, TREE_TYPE (op),
2929 gimple_assign_rhs1 (def_stmt), op1, op2);
2930 if (!tem || !valid_gimple_rhs_p (tem))
2931 return false;
2932 gimple_assign_set_rhs_from_tree (gsi, tem);
2933 update_stmt (gsi_stmt (*gsi));
2934 return true;
2937 elem_type = TREE_TYPE (TREE_TYPE (op0));
2938 if (TREE_TYPE (op) != elem_type)
2939 return false;
2941 size = TREE_INT_CST_LOW (TYPE_SIZE (elem_type));
2942 n = TREE_INT_CST_LOW (op1) / size;
2943 if (n != 1)
2944 return false;
2945 idx = TREE_INT_CST_LOW (op2) / size;
2947 if (code == VEC_PERM_EXPR)
2949 tree p, m, index, tem;
2950 unsigned nelts;
2951 m = gimple_assign_rhs3 (def_stmt);
2952 if (TREE_CODE (m) != VECTOR_CST)
2953 return false;
2954 nelts = VECTOR_CST_NELTS (m);
2955 idx = TREE_INT_CST_LOW (VECTOR_CST_ELT (m, idx));
2956 idx %= 2 * nelts;
2957 if (idx < nelts)
2959 p = gimple_assign_rhs1 (def_stmt);
2961 else
2963 p = gimple_assign_rhs2 (def_stmt);
2964 idx -= nelts;
2966 index = build_int_cst (TREE_TYPE (TREE_TYPE (m)), idx * size);
2967 tem = build3 (BIT_FIELD_REF, TREE_TYPE (op),
2968 unshare_expr (p), op1, index);
2969 gimple_assign_set_rhs1 (stmt, tem);
2970 fold_stmt (gsi);
2971 update_stmt (gsi_stmt (*gsi));
2972 return true;
2975 return false;
2978 /* Determine whether applying the 2 permutations (mask1 then mask2)
2979 gives back one of the input. */
2981 static int
2982 is_combined_permutation_identity (tree mask1, tree mask2)
2984 tree mask;
2985 unsigned int nelts, i, j;
2986 bool maybe_identity1 = true;
2987 bool maybe_identity2 = true;
2989 gcc_checking_assert (TREE_CODE (mask1) == VECTOR_CST
2990 && TREE_CODE (mask2) == VECTOR_CST);
2991 mask = fold_ternary (VEC_PERM_EXPR, TREE_TYPE (mask1), mask1, mask1, mask2);
2992 gcc_assert (TREE_CODE (mask) == VECTOR_CST);
2994 nelts = VECTOR_CST_NELTS (mask);
2995 for (i = 0; i < nelts; i++)
2997 tree val = VECTOR_CST_ELT (mask, i);
2998 gcc_assert (TREE_CODE (val) == INTEGER_CST);
2999 j = TREE_INT_CST_LOW (val) & (2 * nelts - 1);
3000 if (j == i)
3001 maybe_identity2 = false;
3002 else if (j == i + nelts)
3003 maybe_identity1 = false;
3004 else
3005 return 0;
3007 return maybe_identity1 ? 1 : maybe_identity2 ? 2 : 0;
3010 /* Combine a shuffle with its arguments. Returns 1 if there were any
3011 changes made, 2 if cfg-cleanup needs to run. Else it returns 0. */
3013 static int
3014 simplify_permutation (gimple_stmt_iterator *gsi)
3016 gimple stmt = gsi_stmt (*gsi);
3017 gimple def_stmt;
3018 tree op0, op1, op2, op3, arg0, arg1;
3019 enum tree_code code;
3020 bool single_use_op0 = false;
3022 gcc_checking_assert (gimple_assign_rhs_code (stmt) == VEC_PERM_EXPR);
3024 op0 = gimple_assign_rhs1 (stmt);
3025 op1 = gimple_assign_rhs2 (stmt);
3026 op2 = gimple_assign_rhs3 (stmt);
3028 if (TREE_CODE (op2) != VECTOR_CST)
3029 return 0;
3031 if (TREE_CODE (op0) == VECTOR_CST)
3033 code = VECTOR_CST;
3034 arg0 = op0;
3036 else if (TREE_CODE (op0) == SSA_NAME)
3038 def_stmt = get_prop_source_stmt (op0, false, &single_use_op0);
3039 if (!def_stmt || !can_propagate_from (def_stmt))
3040 return 0;
3042 code = gimple_assign_rhs_code (def_stmt);
3043 arg0 = gimple_assign_rhs1 (def_stmt);
3045 else
3046 return 0;
3048 /* Two consecutive shuffles. */
3049 if (code == VEC_PERM_EXPR)
3051 tree orig;
3052 int ident;
3054 if (op0 != op1)
3055 return 0;
3056 op3 = gimple_assign_rhs3 (def_stmt);
3057 if (TREE_CODE (op3) != VECTOR_CST)
3058 return 0;
3059 ident = is_combined_permutation_identity (op3, op2);
3060 if (!ident)
3061 return 0;
3062 orig = (ident == 1) ? gimple_assign_rhs1 (def_stmt)
3063 : gimple_assign_rhs2 (def_stmt);
3064 gimple_assign_set_rhs1 (stmt, unshare_expr (orig));
3065 gimple_assign_set_rhs_code (stmt, TREE_CODE (orig));
3066 gimple_set_num_ops (stmt, 2);
3067 update_stmt (stmt);
3068 return remove_prop_source_from_use (op0) ? 2 : 1;
3071 /* Shuffle of a constructor. */
3072 else if (code == CONSTRUCTOR || code == VECTOR_CST)
3074 tree opt;
3075 bool ret = false;
3076 if (op0 != op1)
3078 if (TREE_CODE (op0) == SSA_NAME && !single_use_op0)
3079 return 0;
3081 if (TREE_CODE (op1) == VECTOR_CST)
3082 arg1 = op1;
3083 else if (TREE_CODE (op1) == SSA_NAME)
3085 enum tree_code code2;
3087 gimple def_stmt2 = get_prop_source_stmt (op1, true, NULL);
3088 if (!def_stmt2 || !can_propagate_from (def_stmt2))
3089 return 0;
3091 code2 = gimple_assign_rhs_code (def_stmt2);
3092 if (code2 != CONSTRUCTOR && code2 != VECTOR_CST)
3093 return 0;
3094 arg1 = gimple_assign_rhs1 (def_stmt2);
3096 else
3097 return 0;
3099 else
3101 /* Already used twice in this statement. */
3102 if (TREE_CODE (op0) == SSA_NAME && num_imm_uses (op0) > 2)
3103 return 0;
3104 arg1 = arg0;
3106 opt = fold_ternary (VEC_PERM_EXPR, TREE_TYPE(op0), arg0, arg1, op2);
3107 if (!opt
3108 || (TREE_CODE (opt) != CONSTRUCTOR && TREE_CODE(opt) != VECTOR_CST))
3109 return 0;
3110 gimple_assign_set_rhs_from_tree (gsi, opt);
3111 update_stmt (gsi_stmt (*gsi));
3112 if (TREE_CODE (op0) == SSA_NAME)
3113 ret = remove_prop_source_from_use (op0);
3114 if (op0 != op1 && TREE_CODE (op1) == SSA_NAME)
3115 ret |= remove_prop_source_from_use (op1);
3116 return ret ? 2 : 1;
3119 return 0;
3122 /* Recognize a VEC_PERM_EXPR. Returns true if there were any changes. */
3124 static bool
3125 simplify_vector_constructor (gimple_stmt_iterator *gsi)
3127 gimple stmt = gsi_stmt (*gsi);
3128 gimple def_stmt;
3129 tree op, op2, orig, type, elem_type;
3130 unsigned elem_size, nelts, i;
3131 enum tree_code code;
3132 constructor_elt *elt;
3133 unsigned char *sel;
3134 bool maybe_ident;
3136 gcc_checking_assert (gimple_assign_rhs_code (stmt) == CONSTRUCTOR);
3138 op = gimple_assign_rhs1 (stmt);
3139 type = TREE_TYPE (op);
3140 gcc_checking_assert (TREE_CODE (type) == VECTOR_TYPE);
3142 nelts = TYPE_VECTOR_SUBPARTS (type);
3143 elem_type = TREE_TYPE (type);
3144 elem_size = TREE_INT_CST_LOW (TYPE_SIZE (elem_type));
3146 sel = XALLOCAVEC (unsigned char, nelts);
3147 orig = NULL;
3148 maybe_ident = true;
3149 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (op), i, elt)
3151 tree ref, op1;
3153 if (i >= nelts)
3154 return false;
3156 if (TREE_CODE (elt->value) != SSA_NAME)
3157 return false;
3158 def_stmt = get_prop_source_stmt (elt->value, false, NULL);
3159 if (!def_stmt)
3160 return false;
3161 code = gimple_assign_rhs_code (def_stmt);
3162 if (code != BIT_FIELD_REF)
3163 return false;
3164 op1 = gimple_assign_rhs1 (def_stmt);
3165 ref = TREE_OPERAND (op1, 0);
3166 if (orig)
3168 if (ref != orig)
3169 return false;
3171 else
3173 if (TREE_CODE (ref) != SSA_NAME)
3174 return false;
3175 if (!useless_type_conversion_p (type, TREE_TYPE (ref)))
3176 return false;
3177 orig = ref;
3179 if (TREE_INT_CST_LOW (TREE_OPERAND (op1, 1)) != elem_size)
3180 return false;
3181 sel[i] = TREE_INT_CST_LOW (TREE_OPERAND (op1, 2)) / elem_size;
3182 if (sel[i] != i) maybe_ident = false;
3184 if (i < nelts)
3185 return false;
3187 if (maybe_ident)
3188 gimple_assign_set_rhs_from_tree (gsi, orig);
3189 else
3191 tree mask_type, *mask_elts;
3193 if (!can_vec_perm_p (TYPE_MODE (type), false, sel))
3194 return false;
3195 mask_type
3196 = build_vector_type (build_nonstandard_integer_type (elem_size, 1),
3197 nelts);
3198 if (GET_MODE_CLASS (TYPE_MODE (mask_type)) != MODE_VECTOR_INT
3199 || GET_MODE_SIZE (TYPE_MODE (mask_type))
3200 != GET_MODE_SIZE (TYPE_MODE (type)))
3201 return false;
3202 mask_elts = XALLOCAVEC (tree, nelts);
3203 for (i = 0; i < nelts; i++)
3204 mask_elts[i] = build_int_cst (TREE_TYPE (mask_type), sel[i]);
3205 op2 = build_vector (mask_type, mask_elts);
3206 gimple_assign_set_rhs_with_ops_1 (gsi, VEC_PERM_EXPR, orig, orig, op2);
3208 update_stmt (gsi_stmt (*gsi));
3209 return true;
3212 /* Main entry point for the forward propagation and statement combine
3213 optimizer. */
3215 static unsigned int
3216 ssa_forward_propagate_and_combine (void)
3218 basic_block bb;
3219 unsigned int todoflags = 0;
3221 cfg_changed = false;
3223 FOR_EACH_BB (bb)
3225 gimple_stmt_iterator gsi;
3227 /* Apply forward propagation to all stmts in the basic-block.
3228 Note we update GSI within the loop as necessary. */
3229 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); )
3231 gimple stmt = gsi_stmt (gsi);
3232 tree lhs, rhs;
3233 enum tree_code code;
3235 if (!is_gimple_assign (stmt))
3237 gsi_next (&gsi);
3238 continue;
3241 lhs = gimple_assign_lhs (stmt);
3242 rhs = gimple_assign_rhs1 (stmt);
3243 code = gimple_assign_rhs_code (stmt);
3244 if (TREE_CODE (lhs) != SSA_NAME
3245 || has_zero_uses (lhs))
3247 gsi_next (&gsi);
3248 continue;
3251 /* If this statement sets an SSA_NAME to an address,
3252 try to propagate the address into the uses of the SSA_NAME. */
3253 if (code == ADDR_EXPR
3254 /* Handle pointer conversions on invariant addresses
3255 as well, as this is valid gimple. */
3256 || (CONVERT_EXPR_CODE_P (code)
3257 && TREE_CODE (rhs) == ADDR_EXPR
3258 && POINTER_TYPE_P (TREE_TYPE (lhs))))
3260 tree base = get_base_address (TREE_OPERAND (rhs, 0));
3261 if ((!base
3262 || !DECL_P (base)
3263 || decl_address_invariant_p (base))
3264 && !stmt_references_abnormal_ssa_name (stmt)
3265 && forward_propagate_addr_expr (lhs, rhs))
3267 release_defs (stmt);
3268 gsi_remove (&gsi, true);
3270 else
3271 gsi_next (&gsi);
3273 else if (code == POINTER_PLUS_EXPR)
3275 tree off = gimple_assign_rhs2 (stmt);
3276 if (TREE_CODE (off) == INTEGER_CST
3277 && can_propagate_from (stmt)
3278 && !simple_iv_increment_p (stmt)
3279 /* ??? Better adjust the interface to that function
3280 instead of building new trees here. */
3281 && forward_propagate_addr_expr
3282 (lhs,
3283 build1_loc (gimple_location (stmt),
3284 ADDR_EXPR, TREE_TYPE (rhs),
3285 fold_build2 (MEM_REF,
3286 TREE_TYPE (TREE_TYPE (rhs)),
3287 rhs,
3288 fold_convert (ptr_type_node,
3289 off)))))
3291 release_defs (stmt);
3292 gsi_remove (&gsi, true);
3294 else if (is_gimple_min_invariant (rhs))
3296 /* Make sure to fold &a[0] + off_1 here. */
3297 fold_stmt_inplace (&gsi);
3298 update_stmt (stmt);
3299 if (gimple_assign_rhs_code (stmt) == POINTER_PLUS_EXPR)
3300 gsi_next (&gsi);
3302 else
3303 gsi_next (&gsi);
3305 else if (TREE_CODE_CLASS (code) == tcc_comparison)
3307 if (forward_propagate_comparison (&gsi))
3308 cfg_changed = true;
3310 else
3311 gsi_next (&gsi);
3314 /* Combine stmts with the stmts defining their operands.
3315 Note we update GSI within the loop as necessary. */
3316 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi);)
3318 gimple stmt = gsi_stmt (gsi);
3319 bool changed = false;
3321 /* Mark stmt as potentially needing revisiting. */
3322 gimple_set_plf (stmt, GF_PLF_1, false);
3324 switch (gimple_code (stmt))
3326 case GIMPLE_ASSIGN:
3328 tree rhs1 = gimple_assign_rhs1 (stmt);
3329 enum tree_code code = gimple_assign_rhs_code (stmt);
3331 if ((code == BIT_NOT_EXPR
3332 || code == NEGATE_EXPR)
3333 && TREE_CODE (rhs1) == SSA_NAME)
3334 changed = simplify_not_neg_expr (&gsi);
3335 else if (code == COND_EXPR
3336 || code == VEC_COND_EXPR)
3338 /* In this case the entire COND_EXPR is in rhs1. */
3339 if (forward_propagate_into_cond (&gsi)
3340 || combine_cond_exprs (&gsi))
3342 changed = true;
3343 stmt = gsi_stmt (gsi);
3346 else if (TREE_CODE_CLASS (code) == tcc_comparison)
3348 int did_something;
3349 did_something = forward_propagate_into_comparison (&gsi);
3350 if (did_something == 2)
3351 cfg_changed = true;
3352 changed = did_something != 0;
3354 else if ((code == PLUS_EXPR
3355 || code == BIT_IOR_EXPR
3356 || code == BIT_XOR_EXPR)
3357 && simplify_rotate (&gsi))
3358 changed = true;
3359 else if (code == BIT_AND_EXPR
3360 || code == BIT_IOR_EXPR
3361 || code == BIT_XOR_EXPR)
3362 changed = simplify_bitwise_binary (&gsi);
3363 else if (code == PLUS_EXPR
3364 || code == MINUS_EXPR)
3365 changed = associate_plusminus (&gsi);
3366 else if (code == POINTER_PLUS_EXPR)
3367 changed = associate_pointerplus (&gsi);
3368 else if (CONVERT_EXPR_CODE_P (code)
3369 || code == FLOAT_EXPR
3370 || code == FIX_TRUNC_EXPR)
3372 int did_something = combine_conversions (&gsi);
3373 if (did_something == 2)
3374 cfg_changed = true;
3376 /* If we have a narrowing conversion to an integral
3377 type that is fed by a BIT_AND_EXPR, we might be
3378 able to remove the BIT_AND_EXPR if it merely
3379 masks off bits outside the final type (and nothing
3380 else. */
3381 if (! did_something)
3383 tree outer_type = TREE_TYPE (gimple_assign_lhs (stmt));
3384 tree inner_type = TREE_TYPE (gimple_assign_rhs1 (stmt));
3385 if (INTEGRAL_TYPE_P (outer_type)
3386 && INTEGRAL_TYPE_P (inner_type)
3387 && (TYPE_PRECISION (outer_type)
3388 <= TYPE_PRECISION (inner_type)))
3389 did_something = simplify_conversion_from_bitmask (&gsi);
3392 changed = did_something != 0;
3394 else if (code == VEC_PERM_EXPR)
3396 int did_something = simplify_permutation (&gsi);
3397 if (did_something == 2)
3398 cfg_changed = true;
3399 changed = did_something != 0;
3401 else if (code == BIT_FIELD_REF)
3402 changed = simplify_bitfield_ref (&gsi);
3403 else if (code == CONSTRUCTOR
3404 && TREE_CODE (TREE_TYPE (rhs1)) == VECTOR_TYPE)
3405 changed = simplify_vector_constructor (&gsi);
3406 break;
3409 case GIMPLE_SWITCH:
3410 changed = simplify_gimple_switch (stmt);
3411 break;
3413 case GIMPLE_COND:
3415 int did_something;
3416 did_something = forward_propagate_into_gimple_cond (stmt);
3417 if (did_something == 2)
3418 cfg_changed = true;
3419 changed = did_something != 0;
3420 break;
3423 case GIMPLE_CALL:
3425 tree callee = gimple_call_fndecl (stmt);
3426 if (callee != NULL_TREE
3427 && DECL_BUILT_IN_CLASS (callee) == BUILT_IN_NORMAL)
3428 changed = simplify_builtin_call (&gsi, callee);
3429 break;
3432 default:;
3435 if (changed)
3437 /* If the stmt changed then re-visit it and the statements
3438 inserted before it. */
3439 for (; !gsi_end_p (gsi); gsi_prev (&gsi))
3440 if (gimple_plf (gsi_stmt (gsi), GF_PLF_1))
3441 break;
3442 if (gsi_end_p (gsi))
3443 gsi = gsi_start_bb (bb);
3444 else
3445 gsi_next (&gsi);
3447 else
3449 /* Stmt no longer needs to be revisited. */
3450 gimple_set_plf (stmt, GF_PLF_1, true);
3451 gsi_next (&gsi);
3456 if (cfg_changed)
3457 todoflags |= TODO_cleanup_cfg;
3459 return todoflags;
3463 static bool
3464 gate_forwprop (void)
3466 return flag_tree_forwprop;
3469 struct gimple_opt_pass pass_forwprop =
3472 GIMPLE_PASS,
3473 "forwprop", /* name */
3474 OPTGROUP_NONE, /* optinfo_flags */
3475 gate_forwprop, /* gate */
3476 ssa_forward_propagate_and_combine, /* execute */
3477 NULL, /* sub */
3478 NULL, /* next */
3479 0, /* static_pass_number */
3480 TV_TREE_FORWPROP, /* tv_id */
3481 PROP_cfg | PROP_ssa, /* properties_required */
3482 0, /* properties_provided */
3483 0, /* properties_destroyed */
3484 0, /* todo_flags_start */
3485 TODO_update_ssa
3486 | TODO_verify_ssa /* todo_flags_finish */