Update ChangeLog and version files for release
[official-gcc.git] / gcc / gimple-ssa-strength-reduction.c
blobcba6be55a5ae58903b035abffc994ca5b4933709
1 /* Straight-line strength reduction.
2 Copyright (C) 2012-2016 Free Software Foundation, Inc.
3 Contributed by Bill Schmidt, IBM <wschmidt@linux.ibm.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* There are many algorithms for performing strength reduction on
22 loops. This is not one of them. IVOPTS handles strength reduction
23 of induction variables just fine. This pass is intended to pick
24 up the crumbs it leaves behind, by considering opportunities for
25 strength reduction along dominator paths.
27 Strength reduction addresses explicit multiplies, and certain
28 multiplies implicit in addressing expressions. It would also be
29 possible to apply strength reduction to divisions and modulos,
30 but such opportunities are relatively uncommon.
32 Strength reduction is also currently restricted to integer operations.
33 If desired, it could be extended to floating-point operations under
34 control of something like -funsafe-math-optimizations. */
36 #include "config.h"
37 #include "system.h"
38 #include "coretypes.h"
39 #include "backend.h"
40 #include "rtl.h"
41 #include "tree.h"
42 #include "gimple.h"
43 #include "cfghooks.h"
44 #include "tree-pass.h"
45 #include "ssa.h"
46 #include "expmed.h"
47 #include "gimple-pretty-print.h"
48 #include "fold-const.h"
49 #include "gimple-iterator.h"
50 #include "gimplify-me.h"
51 #include "stor-layout.h"
52 #include "cfgloop.h"
53 #include "tree-cfg.h"
54 #include "domwalk.h"
55 #include "params.h"
56 #include "tree-ssa-address.h"
57 #include "tree-affine.h"
58 #include "builtins.h"
60 /* Information about a strength reduction candidate. Each statement
61 in the candidate table represents an expression of one of the
62 following forms (the special case of CAND_REF will be described
63 later):
65 (CAND_MULT) S1: X = (B + i) * S
66 (CAND_ADD) S1: X = B + (i * S)
68 Here X and B are SSA names, i is an integer constant, and S is
69 either an SSA name or a constant. We call B the "base," i the
70 "index", and S the "stride."
72 Any statement S0 that dominates S1 and is of the form:
74 (CAND_MULT) S0: Y = (B + i') * S
75 (CAND_ADD) S0: Y = B + (i' * S)
77 is called a "basis" for S1. In both cases, S1 may be replaced by
79 S1': X = Y + (i - i') * S,
81 where (i - i') * S is folded to the extent possible.
83 All gimple statements are visited in dominator order, and each
84 statement that may contribute to one of the forms of S1 above is
85 given at least one entry in the candidate table. Such statements
86 include addition, pointer addition, subtraction, multiplication,
87 negation, copies, and nontrivial type casts. If a statement may
88 represent more than one expression of the forms of S1 above,
89 multiple "interpretations" are stored in the table and chained
90 together. Examples:
92 * An add of two SSA names may treat either operand as the base.
93 * A multiply of two SSA names, likewise.
94 * A copy or cast may be thought of as either a CAND_MULT with
95 i = 0 and S = 1, or as a CAND_ADD with i = 0 or S = 0.
97 Candidate records are allocated from an obstack. They are addressed
98 both from a hash table keyed on S1, and from a vector of candidate
99 pointers arranged in predominator order.
101 Opportunity note
102 ----------------
103 Currently we don't recognize:
105 S0: Y = (S * i') - B
106 S1: X = (S * i) - B
108 as a strength reduction opportunity, even though this S1 would
109 also be replaceable by the S1' above. This can be added if it
110 comes up in practice.
112 Strength reduction in addressing
113 --------------------------------
114 There is another kind of candidate known as CAND_REF. A CAND_REF
115 describes a statement containing a memory reference having
116 complex addressing that might benefit from strength reduction.
117 Specifically, we are interested in references for which
118 get_inner_reference returns a base address, offset, and bitpos as
119 follows:
121 base: MEM_REF (T1, C1)
122 offset: MULT_EXPR (PLUS_EXPR (T2, C2), C3)
123 bitpos: C4 * BITS_PER_UNIT
125 Here T1 and T2 are arbitrary trees, and C1, C2, C3, C4 are
126 arbitrary integer constants. Note that C2 may be zero, in which
127 case the offset will be MULT_EXPR (T2, C3).
129 When this pattern is recognized, the original memory reference
130 can be replaced with:
132 MEM_REF (POINTER_PLUS_EXPR (T1, MULT_EXPR (T2, C3)),
133 C1 + (C2 * C3) + C4)
135 which distributes the multiply to allow constant folding. When
136 two or more addressing expressions can be represented by MEM_REFs
137 of this form, differing only in the constants C1, C2, and C4,
138 making this substitution produces more efficient addressing during
139 the RTL phases. When there are not at least two expressions with
140 the same values of T1, T2, and C3, there is nothing to be gained
141 by the replacement.
143 Strength reduction of CAND_REFs uses the same infrastructure as
144 that used by CAND_MULTs and CAND_ADDs. We record T1 in the base (B)
145 field, MULT_EXPR (T2, C3) in the stride (S) field, and
146 C1 + (C2 * C3) + C4 in the index (i) field. A basis for a CAND_REF
147 is thus another CAND_REF with the same B and S values. When at
148 least two CAND_REFs are chained together using the basis relation,
149 each of them is replaced as above, resulting in improved code
150 generation for addressing.
152 Conditional candidates
153 ======================
155 Conditional candidates are best illustrated with an example.
156 Consider the code sequence:
158 (1) x_0 = ...;
159 (2) a_0 = x_0 * 5; MULT (B: x_0; i: 0; S: 5)
160 if (...)
161 (3) x_1 = x_0 + 1; ADD (B: x_0, i: 1; S: 1)
162 (4) x_2 = PHI <x_0, x_1>; PHI (B: x_0, i: 0, S: 1)
163 (5) x_3 = x_2 + 1; ADD (B: x_2, i: 1, S: 1)
164 (6) a_1 = x_3 * 5; MULT (B: x_2, i: 1; S: 5)
166 Here strength reduction is complicated by the uncertain value of x_2.
167 A legitimate transformation is:
169 (1) x_0 = ...;
170 (2) a_0 = x_0 * 5;
171 if (...)
173 (3) [x_1 = x_0 + 1;]
174 (3a) t_1 = a_0 + 5;
176 (4) [x_2 = PHI <x_0, x_1>;]
177 (4a) t_2 = PHI <a_0, t_1>;
178 (5) [x_3 = x_2 + 1;]
179 (6r) a_1 = t_2 + 5;
181 where the bracketed instructions may go dead.
183 To recognize this opportunity, we have to observe that statement (6)
184 has a "hidden basis" (2). The hidden basis is unlike a normal basis
185 in that the statement and the hidden basis have different base SSA
186 names (x_2 and x_0, respectively). The relationship is established
187 when a statement's base name (x_2) is defined by a phi statement (4),
188 each argument of which (x_0, x_1) has an identical "derived base name."
189 If the argument is defined by a candidate (as x_1 is by (3)) that is a
190 CAND_ADD having a stride of 1, the derived base name of the argument is
191 the base name of the candidate (x_0). Otherwise, the argument itself
192 is its derived base name (as is the case with argument x_0).
194 The hidden basis for statement (6) is the nearest dominating candidate
195 whose base name is the derived base name (x_0) of the feeding phi (4),
196 and whose stride is identical to that of the statement. We can then
197 create the new "phi basis" (4a) and feeding adds along incoming arcs (3a),
198 allowing the final replacement of (6) by the strength-reduced (6r).
200 To facilitate this, a new kind of candidate (CAND_PHI) is introduced.
201 A CAND_PHI is not a candidate for replacement, but is maintained in the
202 candidate table to ease discovery of hidden bases. Any phi statement
203 whose arguments share a common derived base name is entered into the
204 table with the derived base name, an (arbitrary) index of zero, and a
205 stride of 1. A statement with a hidden basis can then be detected by
206 simply looking up its feeding phi definition in the candidate table,
207 extracting the derived base name, and searching for a basis in the
208 usual manner after substituting the derived base name.
210 Note that the transformation is only valid when the original phi and
211 the statements that define the phi's arguments are all at the same
212 position in the loop hierarchy. */
215 /* Index into the candidate vector, offset by 1. VECs are zero-based,
216 while cand_idx's are one-based, with zero indicating null. */
217 typedef unsigned cand_idx;
219 /* The kind of candidate. */
220 enum cand_kind
222 CAND_MULT,
223 CAND_ADD,
224 CAND_REF,
225 CAND_PHI
228 struct slsr_cand_d
230 /* The candidate statement S1. */
231 gimple *cand_stmt;
233 /* The base expression B: often an SSA name, but not always. */
234 tree base_expr;
236 /* The stride S. */
237 tree stride;
239 /* The index constant i. */
240 widest_int index;
242 /* The type of the candidate. This is normally the type of base_expr,
243 but casts may have occurred when combining feeding instructions.
244 A candidate can only be a basis for candidates of the same final type.
245 (For CAND_REFs, this is the type to be used for operand 1 of the
246 replacement MEM_REF.) */
247 tree cand_type;
249 /* The kind of candidate (CAND_MULT, etc.). */
250 enum cand_kind kind;
252 /* Index of this candidate in the candidate vector. */
253 cand_idx cand_num;
255 /* Index of the next candidate record for the same statement.
256 A statement may be useful in more than one way (e.g., due to
257 commutativity). So we can have multiple "interpretations"
258 of a statement. */
259 cand_idx next_interp;
261 /* Index of the basis statement S0, if any, in the candidate vector. */
262 cand_idx basis;
264 /* First candidate for which this candidate is a basis, if one exists. */
265 cand_idx dependent;
267 /* Next candidate having the same basis as this one. */
268 cand_idx sibling;
270 /* If this is a conditional candidate, the CAND_PHI candidate
271 that defines the base SSA name B. */
272 cand_idx def_phi;
274 /* Savings that can be expected from eliminating dead code if this
275 candidate is replaced. */
276 int dead_savings;
279 typedef struct slsr_cand_d slsr_cand, *slsr_cand_t;
280 typedef const struct slsr_cand_d *const_slsr_cand_t;
282 /* Pointers to candidates are chained together as part of a mapping
283 from base expressions to the candidates that use them. */
285 struct cand_chain_d
287 /* Base expression for the chain of candidates: often, but not
288 always, an SSA name. */
289 tree base_expr;
291 /* Pointer to a candidate. */
292 slsr_cand_t cand;
294 /* Chain pointer. */
295 struct cand_chain_d *next;
299 typedef struct cand_chain_d cand_chain, *cand_chain_t;
300 typedef const struct cand_chain_d *const_cand_chain_t;
302 /* Information about a unique "increment" associated with candidates
303 having an SSA name for a stride. An increment is the difference
304 between the index of the candidate and the index of its basis,
305 i.e., (i - i') as discussed in the module commentary.
307 When we are not going to generate address arithmetic we treat
308 increments that differ only in sign as the same, allowing sharing
309 of the cost of initializers. The absolute value of the increment
310 is stored in the incr_info. */
312 struct incr_info_d
314 /* The increment that relates a candidate to its basis. */
315 widest_int incr;
317 /* How many times the increment occurs in the candidate tree. */
318 unsigned count;
320 /* Cost of replacing candidates using this increment. Negative and
321 zero costs indicate replacement should be performed. */
322 int cost;
324 /* If this increment is profitable but is not -1, 0, or 1, it requires
325 an initializer T_0 = stride * incr to be found or introduced in the
326 nearest common dominator of all candidates. This field holds T_0
327 for subsequent use. */
328 tree initializer;
330 /* If the initializer was found to already exist, this is the block
331 where it was found. */
332 basic_block init_bb;
335 typedef struct incr_info_d incr_info, *incr_info_t;
337 /* Candidates are maintained in a vector. If candidate X dominates
338 candidate Y, then X appears before Y in the vector; but the
339 converse does not necessarily hold. */
340 static vec<slsr_cand_t> cand_vec;
342 enum cost_consts
344 COST_NEUTRAL = 0,
345 COST_INFINITE = 1000
348 enum stride_status
350 UNKNOWN_STRIDE = 0,
351 KNOWN_STRIDE = 1
354 enum phi_adjust_status
356 NOT_PHI_ADJUST = 0,
357 PHI_ADJUST = 1
360 enum count_phis_status
362 DONT_COUNT_PHIS = 0,
363 COUNT_PHIS = 1
366 /* Pointer map embodying a mapping from statements to candidates. */
367 static hash_map<gimple *, slsr_cand_t> *stmt_cand_map;
369 /* Obstack for candidates. */
370 static struct obstack cand_obstack;
372 /* Obstack for candidate chains. */
373 static struct obstack chain_obstack;
375 /* An array INCR_VEC of incr_infos is used during analysis of related
376 candidates having an SSA name for a stride. INCR_VEC_LEN describes
377 its current length. MAX_INCR_VEC_LEN is used to avoid costly
378 pathological cases. */
379 static incr_info_t incr_vec;
380 static unsigned incr_vec_len;
381 const int MAX_INCR_VEC_LEN = 16;
383 /* For a chain of candidates with unknown stride, indicates whether or not
384 we must generate pointer arithmetic when replacing statements. */
385 static bool address_arithmetic_p;
387 /* Forward function declarations. */
388 static slsr_cand_t base_cand_from_table (tree);
389 static tree introduce_cast_before_cand (slsr_cand_t, tree, tree);
390 static bool legal_cast_p_1 (tree, tree);
392 /* Produce a pointer to the IDX'th candidate in the candidate vector. */
394 static slsr_cand_t
395 lookup_cand (cand_idx idx)
397 return cand_vec[idx - 1];
400 /* Helper for hashing a candidate chain header. */
402 struct cand_chain_hasher : nofree_ptr_hash <cand_chain>
404 static inline hashval_t hash (const cand_chain *);
405 static inline bool equal (const cand_chain *, const cand_chain *);
408 inline hashval_t
409 cand_chain_hasher::hash (const cand_chain *p)
411 tree base_expr = p->base_expr;
412 return iterative_hash_expr (base_expr, 0);
415 inline bool
416 cand_chain_hasher::equal (const cand_chain *chain1, const cand_chain *chain2)
418 return operand_equal_p (chain1->base_expr, chain2->base_expr, 0);
421 /* Hash table embodying a mapping from base exprs to chains of candidates. */
422 static hash_table<cand_chain_hasher> *base_cand_map;
424 /* Pointer map used by tree_to_aff_combination_expand. */
425 static hash_map<tree, name_expansion *> *name_expansions;
426 /* Pointer map embodying a mapping from bases to alternative bases. */
427 static hash_map<tree, tree> *alt_base_map;
429 /* Given BASE, use the tree affine combiniation facilities to
430 find the underlying tree expression for BASE, with any
431 immediate offset excluded.
433 N.B. we should eliminate this backtracking with better forward
434 analysis in a future release. */
436 static tree
437 get_alternative_base (tree base)
439 tree *result = alt_base_map->get (base);
441 if (result == NULL)
443 tree expr;
444 aff_tree aff;
446 tree_to_aff_combination_expand (base, TREE_TYPE (base),
447 &aff, &name_expansions);
448 aff.offset = 0;
449 expr = aff_combination_to_tree (&aff);
451 gcc_assert (!alt_base_map->put (base, base == expr ? NULL : expr));
453 return expr == base ? NULL : expr;
456 return *result;
459 /* Look in the candidate table for a CAND_PHI that defines BASE and
460 return it if found; otherwise return NULL. */
462 static cand_idx
463 find_phi_def (tree base)
465 slsr_cand_t c;
467 if (TREE_CODE (base) != SSA_NAME)
468 return 0;
470 c = base_cand_from_table (base);
472 if (!c || c->kind != CAND_PHI)
473 return 0;
475 return c->cand_num;
478 /* Helper routine for find_basis_for_candidate. May be called twice:
479 once for the candidate's base expr, and optionally again either for
480 the candidate's phi definition or for a CAND_REF's alternative base
481 expression. */
483 static slsr_cand_t
484 find_basis_for_base_expr (slsr_cand_t c, tree base_expr)
486 cand_chain mapping_key;
487 cand_chain_t chain;
488 slsr_cand_t basis = NULL;
490 // Limit potential of N^2 behavior for long candidate chains.
491 int iters = 0;
492 int max_iters = PARAM_VALUE (PARAM_MAX_SLSR_CANDIDATE_SCAN);
494 mapping_key.base_expr = base_expr;
495 chain = base_cand_map->find (&mapping_key);
497 for (; chain && iters < max_iters; chain = chain->next, ++iters)
499 slsr_cand_t one_basis = chain->cand;
501 if (one_basis->kind != c->kind
502 || one_basis->cand_stmt == c->cand_stmt
503 || !operand_equal_p (one_basis->stride, c->stride, 0)
504 || !types_compatible_p (one_basis->cand_type, c->cand_type)
505 || !dominated_by_p (CDI_DOMINATORS,
506 gimple_bb (c->cand_stmt),
507 gimple_bb (one_basis->cand_stmt)))
508 continue;
510 if (!basis || basis->cand_num < one_basis->cand_num)
511 basis = one_basis;
514 return basis;
517 /* Use the base expr from candidate C to look for possible candidates
518 that can serve as a basis for C. Each potential basis must also
519 appear in a block that dominates the candidate statement and have
520 the same stride and type. If more than one possible basis exists,
521 the one with highest index in the vector is chosen; this will be
522 the most immediately dominating basis. */
524 static int
525 find_basis_for_candidate (slsr_cand_t c)
527 slsr_cand_t basis = find_basis_for_base_expr (c, c->base_expr);
529 /* If a candidate doesn't have a basis using its base expression,
530 it may have a basis hidden by one or more intervening phis. */
531 if (!basis && c->def_phi)
533 basic_block basis_bb, phi_bb;
534 slsr_cand_t phi_cand = lookup_cand (c->def_phi);
535 basis = find_basis_for_base_expr (c, phi_cand->base_expr);
537 if (basis)
539 /* A hidden basis must dominate the phi-definition of the
540 candidate's base name. */
541 phi_bb = gimple_bb (phi_cand->cand_stmt);
542 basis_bb = gimple_bb (basis->cand_stmt);
544 if (phi_bb == basis_bb
545 || !dominated_by_p (CDI_DOMINATORS, phi_bb, basis_bb))
547 basis = NULL;
548 c->basis = 0;
551 /* If we found a hidden basis, estimate additional dead-code
552 savings if the phi and its feeding statements can be removed. */
553 if (basis && has_single_use (gimple_phi_result (phi_cand->cand_stmt)))
554 c->dead_savings += phi_cand->dead_savings;
558 if (flag_expensive_optimizations && !basis && c->kind == CAND_REF)
560 tree alt_base_expr = get_alternative_base (c->base_expr);
561 if (alt_base_expr)
562 basis = find_basis_for_base_expr (c, alt_base_expr);
565 if (basis)
567 c->sibling = basis->dependent;
568 basis->dependent = c->cand_num;
569 return basis->cand_num;
572 return 0;
575 /* Record a mapping from BASE to C, indicating that C may potentially serve
576 as a basis using that base expression. BASE may be the same as
577 C->BASE_EXPR; alternatively BASE can be a different tree that share the
578 underlining expression of C->BASE_EXPR. */
580 static void
581 record_potential_basis (slsr_cand_t c, tree base)
583 cand_chain_t node;
584 cand_chain **slot;
586 gcc_assert (base);
588 node = (cand_chain_t) obstack_alloc (&chain_obstack, sizeof (cand_chain));
589 node->base_expr = base;
590 node->cand = c;
591 node->next = NULL;
592 slot = base_cand_map->find_slot (node, INSERT);
594 if (*slot)
596 cand_chain_t head = (cand_chain_t) (*slot);
597 node->next = head->next;
598 head->next = node;
600 else
601 *slot = node;
604 /* Allocate storage for a new candidate and initialize its fields.
605 Attempt to find a basis for the candidate.
607 For CAND_REF, an alternative base may also be recorded and used
608 to find a basis. This helps cases where the expression hidden
609 behind BASE (which is usually an SSA_NAME) has immediate offset,
610 e.g.
612 a2[i][j] = 1;
613 a2[i + 20][j] = 2; */
615 static slsr_cand_t
616 alloc_cand_and_find_basis (enum cand_kind kind, gimple *gs, tree base,
617 const widest_int &index, tree stride, tree ctype,
618 unsigned savings)
620 slsr_cand_t c = (slsr_cand_t) obstack_alloc (&cand_obstack,
621 sizeof (slsr_cand));
622 c->cand_stmt = gs;
623 c->base_expr = base;
624 c->stride = stride;
625 c->index = index;
626 c->cand_type = ctype;
627 c->kind = kind;
628 c->cand_num = cand_vec.length () + 1;
629 c->next_interp = 0;
630 c->dependent = 0;
631 c->sibling = 0;
632 c->def_phi = kind == CAND_MULT ? find_phi_def (base) : 0;
633 c->dead_savings = savings;
635 cand_vec.safe_push (c);
637 if (kind == CAND_PHI)
638 c->basis = 0;
639 else
640 c->basis = find_basis_for_candidate (c);
642 record_potential_basis (c, base);
643 if (flag_expensive_optimizations && kind == CAND_REF)
645 tree alt_base = get_alternative_base (base);
646 if (alt_base)
647 record_potential_basis (c, alt_base);
650 return c;
653 /* Determine the target cost of statement GS when compiling according
654 to SPEED. */
656 static int
657 stmt_cost (gimple *gs, bool speed)
659 tree lhs, rhs1, rhs2;
660 machine_mode lhs_mode;
662 gcc_assert (is_gimple_assign (gs));
663 lhs = gimple_assign_lhs (gs);
664 rhs1 = gimple_assign_rhs1 (gs);
665 lhs_mode = TYPE_MODE (TREE_TYPE (lhs));
667 switch (gimple_assign_rhs_code (gs))
669 case MULT_EXPR:
670 rhs2 = gimple_assign_rhs2 (gs);
672 if (tree_fits_shwi_p (rhs2))
673 return mult_by_coeff_cost (tree_to_shwi (rhs2), lhs_mode, speed);
675 gcc_assert (TREE_CODE (rhs1) != INTEGER_CST);
676 return mul_cost (speed, lhs_mode);
678 case PLUS_EXPR:
679 case POINTER_PLUS_EXPR:
680 case MINUS_EXPR:
681 return add_cost (speed, lhs_mode);
683 case NEGATE_EXPR:
684 return neg_cost (speed, lhs_mode);
686 CASE_CONVERT:
687 return convert_cost (lhs_mode, TYPE_MODE (TREE_TYPE (rhs1)), speed);
689 /* Note that we don't assign costs to copies that in most cases
690 will go away. */
691 default:
695 gcc_unreachable ();
696 return 0;
699 /* Look up the defining statement for BASE_IN and return a pointer
700 to its candidate in the candidate table, if any; otherwise NULL.
701 Only CAND_ADD and CAND_MULT candidates are returned. */
703 static slsr_cand_t
704 base_cand_from_table (tree base_in)
706 slsr_cand_t *result;
708 gimple *def = SSA_NAME_DEF_STMT (base_in);
709 if (!def)
710 return (slsr_cand_t) NULL;
712 result = stmt_cand_map->get (def);
714 if (result && (*result)->kind != CAND_REF)
715 return *result;
717 return (slsr_cand_t) NULL;
720 /* Add an entry to the statement-to-candidate mapping. */
722 static void
723 add_cand_for_stmt (gimple *gs, slsr_cand_t c)
725 gcc_assert (!stmt_cand_map->put (gs, c));
728 /* Given PHI which contains a phi statement, determine whether it
729 satisfies all the requirements of a phi candidate. If so, create
730 a candidate. Note that a CAND_PHI never has a basis itself, but
731 is used to help find a basis for subsequent candidates. */
733 static void
734 slsr_process_phi (gphi *phi, bool speed)
736 unsigned i;
737 tree arg0_base = NULL_TREE, base_type;
738 slsr_cand_t c;
739 struct loop *cand_loop = gimple_bb (phi)->loop_father;
740 unsigned savings = 0;
742 /* A CAND_PHI requires each of its arguments to have the same
743 derived base name. (See the module header commentary for a
744 definition of derived base names.) Furthermore, all feeding
745 definitions must be in the same position in the loop hierarchy
746 as PHI. */
748 for (i = 0; i < gimple_phi_num_args (phi); i++)
750 slsr_cand_t arg_cand;
751 tree arg = gimple_phi_arg_def (phi, i);
752 tree derived_base_name = NULL_TREE;
753 gimple *arg_stmt = NULL;
754 basic_block arg_bb = NULL;
756 if (TREE_CODE (arg) != SSA_NAME)
757 return;
759 arg_cand = base_cand_from_table (arg);
761 if (arg_cand)
763 while (arg_cand->kind != CAND_ADD && arg_cand->kind != CAND_PHI)
765 if (!arg_cand->next_interp)
766 return;
768 arg_cand = lookup_cand (arg_cand->next_interp);
771 if (!integer_onep (arg_cand->stride))
772 return;
774 derived_base_name = arg_cand->base_expr;
775 arg_stmt = arg_cand->cand_stmt;
776 arg_bb = gimple_bb (arg_stmt);
778 /* Gather potential dead code savings if the phi statement
779 can be removed later on. */
780 if (has_single_use (arg))
782 if (gimple_code (arg_stmt) == GIMPLE_PHI)
783 savings += arg_cand->dead_savings;
784 else
785 savings += stmt_cost (arg_stmt, speed);
788 else
790 derived_base_name = arg;
792 if (SSA_NAME_IS_DEFAULT_DEF (arg))
793 arg_bb = single_succ (ENTRY_BLOCK_PTR_FOR_FN (cfun));
794 else
795 gimple_bb (SSA_NAME_DEF_STMT (arg));
798 if (!arg_bb || arg_bb->loop_father != cand_loop)
799 return;
801 if (i == 0)
802 arg0_base = derived_base_name;
803 else if (!operand_equal_p (derived_base_name, arg0_base, 0))
804 return;
807 /* Create the candidate. "alloc_cand_and_find_basis" is named
808 misleadingly for this case, as no basis will be sought for a
809 CAND_PHI. */
810 base_type = TREE_TYPE (arg0_base);
812 c = alloc_cand_and_find_basis (CAND_PHI, phi, arg0_base,
813 0, integer_one_node, base_type, savings);
815 /* Add the candidate to the statement-candidate mapping. */
816 add_cand_for_stmt (phi, c);
819 /* Given PBASE which is a pointer to tree, look up the defining
820 statement for it and check whether the candidate is in the
821 form of:
823 X = B + (1 * S), S is integer constant
824 X = B + (i * S), S is integer one
826 If so, set PBASE to the candidate's base_expr and return double
827 int (i * S).
828 Otherwise, just return double int zero. */
830 static widest_int
831 backtrace_base_for_ref (tree *pbase)
833 tree base_in = *pbase;
834 slsr_cand_t base_cand;
836 STRIP_NOPS (base_in);
838 /* Strip off widening conversion(s) to handle cases where
839 e.g. 'B' is widened from an 'int' in order to calculate
840 a 64-bit address. */
841 if (CONVERT_EXPR_P (base_in)
842 && legal_cast_p_1 (base_in, TREE_OPERAND (base_in, 0)))
843 base_in = get_unwidened (base_in, NULL_TREE);
845 if (TREE_CODE (base_in) != SSA_NAME)
846 return 0;
848 base_cand = base_cand_from_table (base_in);
850 while (base_cand && base_cand->kind != CAND_PHI)
852 if (base_cand->kind == CAND_ADD
853 && base_cand->index == 1
854 && TREE_CODE (base_cand->stride) == INTEGER_CST)
856 /* X = B + (1 * S), S is integer constant. */
857 *pbase = base_cand->base_expr;
858 return wi::to_widest (base_cand->stride);
860 else if (base_cand->kind == CAND_ADD
861 && TREE_CODE (base_cand->stride) == INTEGER_CST
862 && integer_onep (base_cand->stride))
864 /* X = B + (i * S), S is integer one. */
865 *pbase = base_cand->base_expr;
866 return base_cand->index;
869 if (base_cand->next_interp)
870 base_cand = lookup_cand (base_cand->next_interp);
871 else
872 base_cand = NULL;
875 return 0;
878 /* Look for the following pattern:
880 *PBASE: MEM_REF (T1, C1)
882 *POFFSET: MULT_EXPR (T2, C3) [C2 is zero]
884 MULT_EXPR (PLUS_EXPR (T2, C2), C3)
886 MULT_EXPR (MINUS_EXPR (T2, -C2), C3)
888 *PINDEX: C4 * BITS_PER_UNIT
890 If not present, leave the input values unchanged and return FALSE.
891 Otherwise, modify the input values as follows and return TRUE:
893 *PBASE: T1
894 *POFFSET: MULT_EXPR (T2, C3)
895 *PINDEX: C1 + (C2 * C3) + C4
897 When T2 is recorded by a CAND_ADD in the form of (T2' + C5), it
898 will be further restructured to:
900 *PBASE: T1
901 *POFFSET: MULT_EXPR (T2', C3)
902 *PINDEX: C1 + (C2 * C3) + C4 + (C5 * C3) */
904 static bool
905 restructure_reference (tree *pbase, tree *poffset, widest_int *pindex,
906 tree *ptype)
908 tree base = *pbase, offset = *poffset;
909 widest_int index = *pindex;
910 tree mult_op0, t1, t2, type;
911 widest_int c1, c2, c3, c4, c5;
913 if (!base
914 || !offset
915 || TREE_CODE (base) != MEM_REF
916 || TREE_CODE (offset) != MULT_EXPR
917 || TREE_CODE (TREE_OPERAND (offset, 1)) != INTEGER_CST
918 || wi::umod_floor (index, BITS_PER_UNIT) != 0)
919 return false;
921 t1 = TREE_OPERAND (base, 0);
922 c1 = widest_int::from (mem_ref_offset (base), SIGNED);
923 type = TREE_TYPE (TREE_OPERAND (base, 1));
925 mult_op0 = TREE_OPERAND (offset, 0);
926 c3 = wi::to_widest (TREE_OPERAND (offset, 1));
928 if (TREE_CODE (mult_op0) == PLUS_EXPR)
930 if (TREE_CODE (TREE_OPERAND (mult_op0, 1)) == INTEGER_CST)
932 t2 = TREE_OPERAND (mult_op0, 0);
933 c2 = wi::to_widest (TREE_OPERAND (mult_op0, 1));
935 else
936 return false;
938 else if (TREE_CODE (mult_op0) == MINUS_EXPR)
940 if (TREE_CODE (TREE_OPERAND (mult_op0, 1)) == INTEGER_CST)
942 t2 = TREE_OPERAND (mult_op0, 0);
943 c2 = -wi::to_widest (TREE_OPERAND (mult_op0, 1));
945 else
946 return false;
948 else
950 t2 = mult_op0;
951 c2 = 0;
954 c4 = wi::lrshift (index, LOG2_BITS_PER_UNIT);
955 c5 = backtrace_base_for_ref (&t2);
957 *pbase = t1;
958 *poffset = fold_build2 (MULT_EXPR, sizetype, fold_convert (sizetype, t2),
959 wide_int_to_tree (sizetype, c3));
960 *pindex = c1 + c2 * c3 + c4 + c5 * c3;
961 *ptype = type;
963 return true;
966 /* Given GS which contains a data reference, create a CAND_REF entry in
967 the candidate table and attempt to find a basis. */
969 static void
970 slsr_process_ref (gimple *gs)
972 tree ref_expr, base, offset, type;
973 HOST_WIDE_INT bitsize, bitpos;
974 machine_mode mode;
975 int unsignedp, reversep, volatilep;
976 slsr_cand_t c;
978 if (gimple_vdef (gs))
979 ref_expr = gimple_assign_lhs (gs);
980 else
981 ref_expr = gimple_assign_rhs1 (gs);
983 if (!handled_component_p (ref_expr)
984 || TREE_CODE (ref_expr) == BIT_FIELD_REF
985 || (TREE_CODE (ref_expr) == COMPONENT_REF
986 && DECL_BIT_FIELD (TREE_OPERAND (ref_expr, 1))))
987 return;
989 base = get_inner_reference (ref_expr, &bitsize, &bitpos, &offset, &mode,
990 &unsignedp, &reversep, &volatilep, false);
991 if (reversep)
992 return;
993 widest_int index = bitpos;
995 if (!restructure_reference (&base, &offset, &index, &type))
996 return;
998 c = alloc_cand_and_find_basis (CAND_REF, gs, base, index, offset,
999 type, 0);
1001 /* Add the candidate to the statement-candidate mapping. */
1002 add_cand_for_stmt (gs, c);
1005 /* Create a candidate entry for a statement GS, where GS multiplies
1006 two SSA names BASE_IN and STRIDE_IN. Propagate any known information
1007 about the two SSA names into the new candidate. Return the new
1008 candidate. */
1010 static slsr_cand_t
1011 create_mul_ssa_cand (gimple *gs, tree base_in, tree stride_in, bool speed)
1013 tree base = NULL_TREE, stride = NULL_TREE, ctype = NULL_TREE;
1014 widest_int index;
1015 unsigned savings = 0;
1016 slsr_cand_t c;
1017 slsr_cand_t base_cand = base_cand_from_table (base_in);
1019 /* Look at all interpretations of the base candidate, if necessary,
1020 to find information to propagate into this candidate. */
1021 while (base_cand && !base && base_cand->kind != CAND_PHI)
1024 if (base_cand->kind == CAND_MULT && integer_onep (base_cand->stride))
1026 /* Y = (B + i') * 1
1027 X = Y * Z
1028 ================
1029 X = (B + i') * Z */
1030 base = base_cand->base_expr;
1031 index = base_cand->index;
1032 stride = stride_in;
1033 ctype = base_cand->cand_type;
1034 if (has_single_use (base_in))
1035 savings = (base_cand->dead_savings
1036 + stmt_cost (base_cand->cand_stmt, speed));
1038 else if (base_cand->kind == CAND_ADD
1039 && TREE_CODE (base_cand->stride) == INTEGER_CST)
1041 /* Y = B + (i' * S), S constant
1042 X = Y * Z
1043 ============================
1044 X = B + ((i' * S) * Z) */
1045 base = base_cand->base_expr;
1046 index = base_cand->index * wi::to_widest (base_cand->stride);
1047 stride = stride_in;
1048 ctype = base_cand->cand_type;
1049 if (has_single_use (base_in))
1050 savings = (base_cand->dead_savings
1051 + stmt_cost (base_cand->cand_stmt, speed));
1054 if (base_cand->next_interp)
1055 base_cand = lookup_cand (base_cand->next_interp);
1056 else
1057 base_cand = NULL;
1060 if (!base)
1062 /* No interpretations had anything useful to propagate, so
1063 produce X = (Y + 0) * Z. */
1064 base = base_in;
1065 index = 0;
1066 stride = stride_in;
1067 ctype = TREE_TYPE (base_in);
1070 c = alloc_cand_and_find_basis (CAND_MULT, gs, base, index, stride,
1071 ctype, savings);
1072 return c;
1075 /* Create a candidate entry for a statement GS, where GS multiplies
1076 SSA name BASE_IN by constant STRIDE_IN. Propagate any known
1077 information about BASE_IN into the new candidate. Return the new
1078 candidate. */
1080 static slsr_cand_t
1081 create_mul_imm_cand (gimple *gs, tree base_in, tree stride_in, bool speed)
1083 tree base = NULL_TREE, stride = NULL_TREE, ctype = NULL_TREE;
1084 widest_int index, temp;
1085 unsigned savings = 0;
1086 slsr_cand_t c;
1087 slsr_cand_t base_cand = base_cand_from_table (base_in);
1089 /* Look at all interpretations of the base candidate, if necessary,
1090 to find information to propagate into this candidate. */
1091 while (base_cand && !base && base_cand->kind != CAND_PHI)
1093 if (base_cand->kind == CAND_MULT
1094 && TREE_CODE (base_cand->stride) == INTEGER_CST)
1096 /* Y = (B + i') * S, S constant
1097 X = Y * c
1098 ============================
1099 X = (B + i') * (S * c) */
1100 temp = wi::to_widest (base_cand->stride) * wi::to_widest (stride_in);
1101 if (wi::fits_to_tree_p (temp, TREE_TYPE (stride_in)))
1103 base = base_cand->base_expr;
1104 index = base_cand->index;
1105 stride = wide_int_to_tree (TREE_TYPE (stride_in), temp);
1106 ctype = base_cand->cand_type;
1107 if (has_single_use (base_in))
1108 savings = (base_cand->dead_savings
1109 + stmt_cost (base_cand->cand_stmt, speed));
1112 else if (base_cand->kind == CAND_ADD && integer_onep (base_cand->stride))
1114 /* Y = B + (i' * 1)
1115 X = Y * c
1116 ===========================
1117 X = (B + i') * c */
1118 base = base_cand->base_expr;
1119 index = base_cand->index;
1120 stride = stride_in;
1121 ctype = base_cand->cand_type;
1122 if (has_single_use (base_in))
1123 savings = (base_cand->dead_savings
1124 + stmt_cost (base_cand->cand_stmt, speed));
1126 else if (base_cand->kind == CAND_ADD
1127 && base_cand->index == 1
1128 && TREE_CODE (base_cand->stride) == INTEGER_CST)
1130 /* Y = B + (1 * S), S constant
1131 X = Y * c
1132 ===========================
1133 X = (B + S) * c */
1134 base = base_cand->base_expr;
1135 index = wi::to_widest (base_cand->stride);
1136 stride = stride_in;
1137 ctype = base_cand->cand_type;
1138 if (has_single_use (base_in))
1139 savings = (base_cand->dead_savings
1140 + stmt_cost (base_cand->cand_stmt, speed));
1143 if (base_cand->next_interp)
1144 base_cand = lookup_cand (base_cand->next_interp);
1145 else
1146 base_cand = NULL;
1149 if (!base)
1151 /* No interpretations had anything useful to propagate, so
1152 produce X = (Y + 0) * c. */
1153 base = base_in;
1154 index = 0;
1155 stride = stride_in;
1156 ctype = TREE_TYPE (base_in);
1159 c = alloc_cand_and_find_basis (CAND_MULT, gs, base, index, stride,
1160 ctype, savings);
1161 return c;
1164 /* Given GS which is a multiply of scalar integers, make an appropriate
1165 entry in the candidate table. If this is a multiply of two SSA names,
1166 create two CAND_MULT interpretations and attempt to find a basis for
1167 each of them. Otherwise, create a single CAND_MULT and attempt to
1168 find a basis. */
1170 static void
1171 slsr_process_mul (gimple *gs, tree rhs1, tree rhs2, bool speed)
1173 slsr_cand_t c, c2;
1175 /* If this is a multiply of an SSA name with itself, it is highly
1176 unlikely that we will get a strength reduction opportunity, so
1177 don't record it as a candidate. This simplifies the logic for
1178 finding a basis, so if this is removed that must be considered. */
1179 if (rhs1 == rhs2)
1180 return;
1182 if (TREE_CODE (rhs2) == SSA_NAME)
1184 /* Record an interpretation of this statement in the candidate table
1185 assuming RHS1 is the base expression and RHS2 is the stride. */
1186 c = create_mul_ssa_cand (gs, rhs1, rhs2, speed);
1188 /* Add the first interpretation to the statement-candidate mapping. */
1189 add_cand_for_stmt (gs, c);
1191 /* Record another interpretation of this statement assuming RHS1
1192 is the stride and RHS2 is the base expression. */
1193 c2 = create_mul_ssa_cand (gs, rhs2, rhs1, speed);
1194 c->next_interp = c2->cand_num;
1196 else
1198 /* Record an interpretation for the multiply-immediate. */
1199 c = create_mul_imm_cand (gs, rhs1, rhs2, speed);
1201 /* Add the interpretation to the statement-candidate mapping. */
1202 add_cand_for_stmt (gs, c);
1206 /* Create a candidate entry for a statement GS, where GS adds two
1207 SSA names BASE_IN and ADDEND_IN if SUBTRACT_P is false, and
1208 subtracts ADDEND_IN from BASE_IN otherwise. Propagate any known
1209 information about the two SSA names into the new candidate.
1210 Return the new candidate. */
1212 static slsr_cand_t
1213 create_add_ssa_cand (gimple *gs, tree base_in, tree addend_in,
1214 bool subtract_p, bool speed)
1216 tree base = NULL_TREE, stride = NULL_TREE, ctype = NULL;
1217 widest_int index;
1218 unsigned savings = 0;
1219 slsr_cand_t c;
1220 slsr_cand_t base_cand = base_cand_from_table (base_in);
1221 slsr_cand_t addend_cand = base_cand_from_table (addend_in);
1223 /* The most useful transformation is a multiply-immediate feeding
1224 an add or subtract. Look for that first. */
1225 while (addend_cand && !base && addend_cand->kind != CAND_PHI)
1227 if (addend_cand->kind == CAND_MULT
1228 && addend_cand->index == 0
1229 && TREE_CODE (addend_cand->stride) == INTEGER_CST)
1231 /* Z = (B + 0) * S, S constant
1232 X = Y +/- Z
1233 ===========================
1234 X = Y + ((+/-1 * S) * B) */
1235 base = base_in;
1236 index = wi::to_widest (addend_cand->stride);
1237 if (subtract_p)
1238 index = -index;
1239 stride = addend_cand->base_expr;
1240 ctype = TREE_TYPE (base_in);
1241 if (has_single_use (addend_in))
1242 savings = (addend_cand->dead_savings
1243 + stmt_cost (addend_cand->cand_stmt, speed));
1246 if (addend_cand->next_interp)
1247 addend_cand = lookup_cand (addend_cand->next_interp);
1248 else
1249 addend_cand = NULL;
1252 while (base_cand && !base && base_cand->kind != CAND_PHI)
1254 if (base_cand->kind == CAND_ADD
1255 && (base_cand->index == 0
1256 || operand_equal_p (base_cand->stride,
1257 integer_zero_node, 0)))
1259 /* Y = B + (i' * S), i' * S = 0
1260 X = Y +/- Z
1261 ============================
1262 X = B + (+/-1 * Z) */
1263 base = base_cand->base_expr;
1264 index = subtract_p ? -1 : 1;
1265 stride = addend_in;
1266 ctype = base_cand->cand_type;
1267 if (has_single_use (base_in))
1268 savings = (base_cand->dead_savings
1269 + stmt_cost (base_cand->cand_stmt, speed));
1271 else if (subtract_p)
1273 slsr_cand_t subtrahend_cand = base_cand_from_table (addend_in);
1275 while (subtrahend_cand && !base && subtrahend_cand->kind != CAND_PHI)
1277 if (subtrahend_cand->kind == CAND_MULT
1278 && subtrahend_cand->index == 0
1279 && TREE_CODE (subtrahend_cand->stride) == INTEGER_CST)
1281 /* Z = (B + 0) * S, S constant
1282 X = Y - Z
1283 ===========================
1284 Value: X = Y + ((-1 * S) * B) */
1285 base = base_in;
1286 index = wi::to_widest (subtrahend_cand->stride);
1287 index = -index;
1288 stride = subtrahend_cand->base_expr;
1289 ctype = TREE_TYPE (base_in);
1290 if (has_single_use (addend_in))
1291 savings = (subtrahend_cand->dead_savings
1292 + stmt_cost (subtrahend_cand->cand_stmt, speed));
1295 if (subtrahend_cand->next_interp)
1296 subtrahend_cand = lookup_cand (subtrahend_cand->next_interp);
1297 else
1298 subtrahend_cand = NULL;
1302 if (base_cand->next_interp)
1303 base_cand = lookup_cand (base_cand->next_interp);
1304 else
1305 base_cand = NULL;
1308 if (!base)
1310 /* No interpretations had anything useful to propagate, so
1311 produce X = Y + (1 * Z). */
1312 base = base_in;
1313 index = subtract_p ? -1 : 1;
1314 stride = addend_in;
1315 ctype = TREE_TYPE (base_in);
1318 c = alloc_cand_and_find_basis (CAND_ADD, gs, base, index, stride,
1319 ctype, savings);
1320 return c;
1323 /* Create a candidate entry for a statement GS, where GS adds SSA
1324 name BASE_IN to constant INDEX_IN. Propagate any known information
1325 about BASE_IN into the new candidate. Return the new candidate. */
1327 static slsr_cand_t
1328 create_add_imm_cand (gimple *gs, tree base_in, const widest_int &index_in,
1329 bool speed)
1331 enum cand_kind kind = CAND_ADD;
1332 tree base = NULL_TREE, stride = NULL_TREE, ctype = NULL_TREE;
1333 widest_int index, multiple;
1334 unsigned savings = 0;
1335 slsr_cand_t c;
1336 slsr_cand_t base_cand = base_cand_from_table (base_in);
1338 while (base_cand && !base && base_cand->kind != CAND_PHI)
1340 signop sign = TYPE_SIGN (TREE_TYPE (base_cand->stride));
1342 if (TREE_CODE (base_cand->stride) == INTEGER_CST
1343 && wi::multiple_of_p (index_in, wi::to_widest (base_cand->stride),
1344 sign, &multiple))
1346 /* Y = (B + i') * S, S constant, c = kS for some integer k
1347 X = Y + c
1348 ============================
1349 X = (B + (i'+ k)) * S
1351 Y = B + (i' * S), S constant, c = kS for some integer k
1352 X = Y + c
1353 ============================
1354 X = (B + (i'+ k)) * S */
1355 kind = base_cand->kind;
1356 base = base_cand->base_expr;
1357 index = base_cand->index + multiple;
1358 stride = base_cand->stride;
1359 ctype = base_cand->cand_type;
1360 if (has_single_use (base_in))
1361 savings = (base_cand->dead_savings
1362 + stmt_cost (base_cand->cand_stmt, speed));
1365 if (base_cand->next_interp)
1366 base_cand = lookup_cand (base_cand->next_interp);
1367 else
1368 base_cand = NULL;
1371 if (!base)
1373 /* No interpretations had anything useful to propagate, so
1374 produce X = Y + (c * 1). */
1375 kind = CAND_ADD;
1376 base = base_in;
1377 index = index_in;
1378 stride = integer_one_node;
1379 ctype = TREE_TYPE (base_in);
1382 c = alloc_cand_and_find_basis (kind, gs, base, index, stride,
1383 ctype, savings);
1384 return c;
1387 /* Given GS which is an add or subtract of scalar integers or pointers,
1388 make at least one appropriate entry in the candidate table. */
1390 static void
1391 slsr_process_add (gimple *gs, tree rhs1, tree rhs2, bool speed)
1393 bool subtract_p = gimple_assign_rhs_code (gs) == MINUS_EXPR;
1394 slsr_cand_t c = NULL, c2;
1396 if (TREE_CODE (rhs2) == SSA_NAME)
1398 /* First record an interpretation assuming RHS1 is the base expression
1399 and RHS2 is the stride. But it doesn't make sense for the
1400 stride to be a pointer, so don't record a candidate in that case. */
1401 if (!POINTER_TYPE_P (TREE_TYPE (rhs2)))
1403 c = create_add_ssa_cand (gs, rhs1, rhs2, subtract_p, speed);
1405 /* Add the first interpretation to the statement-candidate
1406 mapping. */
1407 add_cand_for_stmt (gs, c);
1410 /* If the two RHS operands are identical, or this is a subtract,
1411 we're done. */
1412 if (operand_equal_p (rhs1, rhs2, 0) || subtract_p)
1413 return;
1415 /* Otherwise, record another interpretation assuming RHS2 is the
1416 base expression and RHS1 is the stride, again provided that the
1417 stride is not a pointer. */
1418 if (!POINTER_TYPE_P (TREE_TYPE (rhs1)))
1420 c2 = create_add_ssa_cand (gs, rhs2, rhs1, false, speed);
1421 if (c)
1422 c->next_interp = c2->cand_num;
1423 else
1424 add_cand_for_stmt (gs, c2);
1427 else
1429 /* Record an interpretation for the add-immediate. */
1430 widest_int index = wi::to_widest (rhs2);
1431 if (subtract_p)
1432 index = -index;
1434 c = create_add_imm_cand (gs, rhs1, index, speed);
1436 /* Add the interpretation to the statement-candidate mapping. */
1437 add_cand_for_stmt (gs, c);
1441 /* Given GS which is a negate of a scalar integer, make an appropriate
1442 entry in the candidate table. A negate is equivalent to a multiply
1443 by -1. */
1445 static void
1446 slsr_process_neg (gimple *gs, tree rhs1, bool speed)
1448 /* Record a CAND_MULT interpretation for the multiply by -1. */
1449 slsr_cand_t c = create_mul_imm_cand (gs, rhs1, integer_minus_one_node, speed);
1451 /* Add the interpretation to the statement-candidate mapping. */
1452 add_cand_for_stmt (gs, c);
1455 /* Help function for legal_cast_p, operating on two trees. Checks
1456 whether it's allowable to cast from RHS to LHS. See legal_cast_p
1457 for more details. */
1459 static bool
1460 legal_cast_p_1 (tree lhs, tree rhs)
1462 tree lhs_type, rhs_type;
1463 unsigned lhs_size, rhs_size;
1464 bool lhs_wraps, rhs_wraps;
1466 lhs_type = TREE_TYPE (lhs);
1467 rhs_type = TREE_TYPE (rhs);
1468 lhs_size = TYPE_PRECISION (lhs_type);
1469 rhs_size = TYPE_PRECISION (rhs_type);
1470 lhs_wraps = ANY_INTEGRAL_TYPE_P (lhs_type) && TYPE_OVERFLOW_WRAPS (lhs_type);
1471 rhs_wraps = ANY_INTEGRAL_TYPE_P (rhs_type) && TYPE_OVERFLOW_WRAPS (rhs_type);
1473 if (lhs_size < rhs_size
1474 || (rhs_wraps && !lhs_wraps)
1475 || (rhs_wraps && lhs_wraps && rhs_size != lhs_size))
1476 return false;
1478 return true;
1481 /* Return TRUE if GS is a statement that defines an SSA name from
1482 a conversion and is legal for us to combine with an add and multiply
1483 in the candidate table. For example, suppose we have:
1485 A = B + i;
1486 C = (type) A;
1487 D = C * S;
1489 Without the type-cast, we would create a CAND_MULT for D with base B,
1490 index i, and stride S. We want to record this candidate only if it
1491 is equivalent to apply the type cast following the multiply:
1493 A = B + i;
1494 E = A * S;
1495 D = (type) E;
1497 We will record the type with the candidate for D. This allows us
1498 to use a similar previous candidate as a basis. If we have earlier seen
1500 A' = B + i';
1501 C' = (type) A';
1502 D' = C' * S;
1504 we can replace D with
1506 D = D' + (i - i') * S;
1508 But if moving the type-cast would change semantics, we mustn't do this.
1510 This is legitimate for casts from a non-wrapping integral type to
1511 any integral type of the same or larger size. It is not legitimate
1512 to convert a wrapping type to a non-wrapping type, or to a wrapping
1513 type of a different size. I.e., with a wrapping type, we must
1514 assume that the addition B + i could wrap, in which case performing
1515 the multiply before or after one of the "illegal" type casts will
1516 have different semantics. */
1518 static bool
1519 legal_cast_p (gimple *gs, tree rhs)
1521 if (!is_gimple_assign (gs)
1522 || !CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (gs)))
1523 return false;
1525 return legal_cast_p_1 (gimple_assign_lhs (gs), rhs);
1528 /* Given GS which is a cast to a scalar integer type, determine whether
1529 the cast is legal for strength reduction. If so, make at least one
1530 appropriate entry in the candidate table. */
1532 static void
1533 slsr_process_cast (gimple *gs, tree rhs1, bool speed)
1535 tree lhs, ctype;
1536 slsr_cand_t base_cand, c, c2;
1537 unsigned savings = 0;
1539 if (!legal_cast_p (gs, rhs1))
1540 return;
1542 lhs = gimple_assign_lhs (gs);
1543 base_cand = base_cand_from_table (rhs1);
1544 ctype = TREE_TYPE (lhs);
1546 if (base_cand && base_cand->kind != CAND_PHI)
1548 while (base_cand)
1550 /* Propagate all data from the base candidate except the type,
1551 which comes from the cast, and the base candidate's cast,
1552 which is no longer applicable. */
1553 if (has_single_use (rhs1))
1554 savings = (base_cand->dead_savings
1555 + stmt_cost (base_cand->cand_stmt, speed));
1557 c = alloc_cand_and_find_basis (base_cand->kind, gs,
1558 base_cand->base_expr,
1559 base_cand->index, base_cand->stride,
1560 ctype, savings);
1561 if (base_cand->next_interp)
1562 base_cand = lookup_cand (base_cand->next_interp);
1563 else
1564 base_cand = NULL;
1567 else
1569 /* If nothing is known about the RHS, create fresh CAND_ADD and
1570 CAND_MULT interpretations:
1572 X = Y + (0 * 1)
1573 X = (Y + 0) * 1
1575 The first of these is somewhat arbitrary, but the choice of
1576 1 for the stride simplifies the logic for propagating casts
1577 into their uses. */
1578 c = alloc_cand_and_find_basis (CAND_ADD, gs, rhs1,
1579 0, integer_one_node, ctype, 0);
1580 c2 = alloc_cand_and_find_basis (CAND_MULT, gs, rhs1,
1581 0, integer_one_node, ctype, 0);
1582 c->next_interp = c2->cand_num;
1585 /* Add the first (or only) interpretation to the statement-candidate
1586 mapping. */
1587 add_cand_for_stmt (gs, c);
1590 /* Given GS which is a copy of a scalar integer type, make at least one
1591 appropriate entry in the candidate table.
1593 This interface is included for completeness, but is unnecessary
1594 if this pass immediately follows a pass that performs copy
1595 propagation, such as DOM. */
1597 static void
1598 slsr_process_copy (gimple *gs, tree rhs1, bool speed)
1600 slsr_cand_t base_cand, c, c2;
1601 unsigned savings = 0;
1603 base_cand = base_cand_from_table (rhs1);
1605 if (base_cand && base_cand->kind != CAND_PHI)
1607 while (base_cand)
1609 /* Propagate all data from the base candidate. */
1610 if (has_single_use (rhs1))
1611 savings = (base_cand->dead_savings
1612 + stmt_cost (base_cand->cand_stmt, speed));
1614 c = alloc_cand_and_find_basis (base_cand->kind, gs,
1615 base_cand->base_expr,
1616 base_cand->index, base_cand->stride,
1617 base_cand->cand_type, savings);
1618 if (base_cand->next_interp)
1619 base_cand = lookup_cand (base_cand->next_interp);
1620 else
1621 base_cand = NULL;
1624 else
1626 /* If nothing is known about the RHS, create fresh CAND_ADD and
1627 CAND_MULT interpretations:
1629 X = Y + (0 * 1)
1630 X = (Y + 0) * 1
1632 The first of these is somewhat arbitrary, but the choice of
1633 1 for the stride simplifies the logic for propagating casts
1634 into their uses. */
1635 c = alloc_cand_and_find_basis (CAND_ADD, gs, rhs1,
1636 0, integer_one_node, TREE_TYPE (rhs1), 0);
1637 c2 = alloc_cand_and_find_basis (CAND_MULT, gs, rhs1,
1638 0, integer_one_node, TREE_TYPE (rhs1), 0);
1639 c->next_interp = c2->cand_num;
1642 /* Add the first (or only) interpretation to the statement-candidate
1643 mapping. */
1644 add_cand_for_stmt (gs, c);
1647 class find_candidates_dom_walker : public dom_walker
1649 public:
1650 find_candidates_dom_walker (cdi_direction direction)
1651 : dom_walker (direction) {}
1652 virtual edge before_dom_children (basic_block);
1655 /* Find strength-reduction candidates in block BB. */
1657 edge
1658 find_candidates_dom_walker::before_dom_children (basic_block bb)
1660 bool speed = optimize_bb_for_speed_p (bb);
1662 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
1663 gsi_next (&gsi))
1664 slsr_process_phi (gsi.phi (), speed);
1666 for (gimple_stmt_iterator gsi = gsi_start_bb (bb); !gsi_end_p (gsi);
1667 gsi_next (&gsi))
1669 gimple *gs = gsi_stmt (gsi);
1671 if (gimple_vuse (gs) && gimple_assign_single_p (gs))
1672 slsr_process_ref (gs);
1674 else if (is_gimple_assign (gs)
1675 && SCALAR_INT_MODE_P
1676 (TYPE_MODE (TREE_TYPE (gimple_assign_lhs (gs)))))
1678 tree rhs1 = NULL_TREE, rhs2 = NULL_TREE;
1680 switch (gimple_assign_rhs_code (gs))
1682 case MULT_EXPR:
1683 case PLUS_EXPR:
1684 rhs1 = gimple_assign_rhs1 (gs);
1685 rhs2 = gimple_assign_rhs2 (gs);
1686 /* Should never happen, but currently some buggy situations
1687 in earlier phases put constants in rhs1. */
1688 if (TREE_CODE (rhs1) != SSA_NAME)
1689 continue;
1690 break;
1692 /* Possible future opportunity: rhs1 of a ptr+ can be
1693 an ADDR_EXPR. */
1694 case POINTER_PLUS_EXPR:
1695 case MINUS_EXPR:
1696 rhs2 = gimple_assign_rhs2 (gs);
1697 /* Fall-through. */
1699 CASE_CONVERT:
1700 case MODIFY_EXPR:
1701 case NEGATE_EXPR:
1702 rhs1 = gimple_assign_rhs1 (gs);
1703 if (TREE_CODE (rhs1) != SSA_NAME)
1704 continue;
1705 break;
1707 default:
1711 switch (gimple_assign_rhs_code (gs))
1713 case MULT_EXPR:
1714 slsr_process_mul (gs, rhs1, rhs2, speed);
1715 break;
1717 case PLUS_EXPR:
1718 case POINTER_PLUS_EXPR:
1719 case MINUS_EXPR:
1720 slsr_process_add (gs, rhs1, rhs2, speed);
1721 break;
1723 case NEGATE_EXPR:
1724 slsr_process_neg (gs, rhs1, speed);
1725 break;
1727 CASE_CONVERT:
1728 slsr_process_cast (gs, rhs1, speed);
1729 break;
1731 case MODIFY_EXPR:
1732 slsr_process_copy (gs, rhs1, speed);
1733 break;
1735 default:
1740 return NULL;
1743 /* Dump a candidate for debug. */
1745 static void
1746 dump_candidate (slsr_cand_t c)
1748 fprintf (dump_file, "%3d [%d] ", c->cand_num,
1749 gimple_bb (c->cand_stmt)->index);
1750 print_gimple_stmt (dump_file, c->cand_stmt, 0, 0);
1751 switch (c->kind)
1753 case CAND_MULT:
1754 fputs (" MULT : (", dump_file);
1755 print_generic_expr (dump_file, c->base_expr, 0);
1756 fputs (" + ", dump_file);
1757 print_decs (c->index, dump_file);
1758 fputs (") * ", dump_file);
1759 print_generic_expr (dump_file, c->stride, 0);
1760 fputs (" : ", dump_file);
1761 break;
1762 case CAND_ADD:
1763 fputs (" ADD : ", dump_file);
1764 print_generic_expr (dump_file, c->base_expr, 0);
1765 fputs (" + (", dump_file);
1766 print_decs (c->index, dump_file);
1767 fputs (" * ", dump_file);
1768 print_generic_expr (dump_file, c->stride, 0);
1769 fputs (") : ", dump_file);
1770 break;
1771 case CAND_REF:
1772 fputs (" REF : ", dump_file);
1773 print_generic_expr (dump_file, c->base_expr, 0);
1774 fputs (" + (", dump_file);
1775 print_generic_expr (dump_file, c->stride, 0);
1776 fputs (") + ", dump_file);
1777 print_decs (c->index, dump_file);
1778 fputs (" : ", dump_file);
1779 break;
1780 case CAND_PHI:
1781 fputs (" PHI : ", dump_file);
1782 print_generic_expr (dump_file, c->base_expr, 0);
1783 fputs (" + (unknown * ", dump_file);
1784 print_generic_expr (dump_file, c->stride, 0);
1785 fputs (") : ", dump_file);
1786 break;
1787 default:
1788 gcc_unreachable ();
1790 print_generic_expr (dump_file, c->cand_type, 0);
1791 fprintf (dump_file, "\n basis: %d dependent: %d sibling: %d\n",
1792 c->basis, c->dependent, c->sibling);
1793 fprintf (dump_file, " next-interp: %d dead-savings: %d\n",
1794 c->next_interp, c->dead_savings);
1795 if (c->def_phi)
1796 fprintf (dump_file, " phi: %d\n", c->def_phi);
1797 fputs ("\n", dump_file);
1800 /* Dump the candidate vector for debug. */
1802 static void
1803 dump_cand_vec (void)
1805 unsigned i;
1806 slsr_cand_t c;
1808 fprintf (dump_file, "\nStrength reduction candidate vector:\n\n");
1810 FOR_EACH_VEC_ELT (cand_vec, i, c)
1811 dump_candidate (c);
1814 /* Callback used to dump the candidate chains hash table. */
1817 ssa_base_cand_dump_callback (cand_chain **slot, void *ignored ATTRIBUTE_UNUSED)
1819 const_cand_chain_t chain = *slot;
1820 cand_chain_t p;
1822 print_generic_expr (dump_file, chain->base_expr, 0);
1823 fprintf (dump_file, " -> %d", chain->cand->cand_num);
1825 for (p = chain->next; p; p = p->next)
1826 fprintf (dump_file, " -> %d", p->cand->cand_num);
1828 fputs ("\n", dump_file);
1829 return 1;
1832 /* Dump the candidate chains. */
1834 static void
1835 dump_cand_chains (void)
1837 fprintf (dump_file, "\nStrength reduction candidate chains:\n\n");
1838 base_cand_map->traverse_noresize <void *, ssa_base_cand_dump_callback>
1839 (NULL);
1840 fputs ("\n", dump_file);
1843 /* Dump the increment vector for debug. */
1845 static void
1846 dump_incr_vec (void)
1848 if (dump_file && (dump_flags & TDF_DETAILS))
1850 unsigned i;
1852 fprintf (dump_file, "\nIncrement vector:\n\n");
1854 for (i = 0; i < incr_vec_len; i++)
1856 fprintf (dump_file, "%3d increment: ", i);
1857 print_decs (incr_vec[i].incr, dump_file);
1858 fprintf (dump_file, "\n count: %d", incr_vec[i].count);
1859 fprintf (dump_file, "\n cost: %d", incr_vec[i].cost);
1860 fputs ("\n initializer: ", dump_file);
1861 print_generic_expr (dump_file, incr_vec[i].initializer, 0);
1862 fputs ("\n\n", dump_file);
1867 /* Replace *EXPR in candidate C with an equivalent strength-reduced
1868 data reference. */
1870 static void
1871 replace_ref (tree *expr, slsr_cand_t c)
1873 tree add_expr, mem_ref, acc_type = TREE_TYPE (*expr);
1874 unsigned HOST_WIDE_INT misalign;
1875 unsigned align;
1877 /* Ensure the memory reference carries the minimum alignment
1878 requirement for the data type. See PR58041. */
1879 get_object_alignment_1 (*expr, &align, &misalign);
1880 if (misalign != 0)
1881 align = (misalign & -misalign);
1882 if (align < TYPE_ALIGN (acc_type))
1883 acc_type = build_aligned_type (acc_type, align);
1885 add_expr = fold_build2 (POINTER_PLUS_EXPR, c->cand_type,
1886 c->base_expr, c->stride);
1887 mem_ref = fold_build2 (MEM_REF, acc_type, add_expr,
1888 wide_int_to_tree (c->cand_type, c->index));
1890 /* Gimplify the base addressing expression for the new MEM_REF tree. */
1891 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
1892 TREE_OPERAND (mem_ref, 0)
1893 = force_gimple_operand_gsi (&gsi, TREE_OPERAND (mem_ref, 0),
1894 /*simple_p=*/true, NULL,
1895 /*before=*/true, GSI_SAME_STMT);
1896 copy_ref_info (mem_ref, *expr);
1897 *expr = mem_ref;
1898 update_stmt (c->cand_stmt);
1901 /* Replace CAND_REF candidate C, each sibling of candidate C, and each
1902 dependent of candidate C with an equivalent strength-reduced data
1903 reference. */
1905 static void
1906 replace_refs (slsr_cand_t c)
1908 if (dump_file && (dump_flags & TDF_DETAILS))
1910 fputs ("Replacing reference: ", dump_file);
1911 print_gimple_stmt (dump_file, c->cand_stmt, 0, 0);
1914 if (gimple_vdef (c->cand_stmt))
1916 tree *lhs = gimple_assign_lhs_ptr (c->cand_stmt);
1917 replace_ref (lhs, c);
1919 else
1921 tree *rhs = gimple_assign_rhs1_ptr (c->cand_stmt);
1922 replace_ref (rhs, c);
1925 if (dump_file && (dump_flags & TDF_DETAILS))
1927 fputs ("With: ", dump_file);
1928 print_gimple_stmt (dump_file, c->cand_stmt, 0, 0);
1929 fputs ("\n", dump_file);
1932 if (c->sibling)
1933 replace_refs (lookup_cand (c->sibling));
1935 if (c->dependent)
1936 replace_refs (lookup_cand (c->dependent));
1939 /* Return TRUE if candidate C is dependent upon a PHI. */
1941 static bool
1942 phi_dependent_cand_p (slsr_cand_t c)
1944 /* A candidate is not necessarily dependent upon a PHI just because
1945 it has a phi definition for its base name. It may have a basis
1946 that relies upon the same phi definition, in which case the PHI
1947 is irrelevant to this candidate. */
1948 return (c->def_phi
1949 && c->basis
1950 && lookup_cand (c->basis)->def_phi != c->def_phi);
1953 /* Calculate the increment required for candidate C relative to
1954 its basis. */
1956 static widest_int
1957 cand_increment (slsr_cand_t c)
1959 slsr_cand_t basis;
1961 /* If the candidate doesn't have a basis, just return its own
1962 index. This is useful in record_increments to help us find
1963 an existing initializer. Also, if the candidate's basis is
1964 hidden by a phi, then its own index will be the increment
1965 from the newly introduced phi basis. */
1966 if (!c->basis || phi_dependent_cand_p (c))
1967 return c->index;
1969 basis = lookup_cand (c->basis);
1970 gcc_assert (operand_equal_p (c->base_expr, basis->base_expr, 0));
1971 return c->index - basis->index;
1974 /* Calculate the increment required for candidate C relative to
1975 its basis. If we aren't going to generate pointer arithmetic
1976 for this candidate, return the absolute value of that increment
1977 instead. */
1979 static inline widest_int
1980 cand_abs_increment (slsr_cand_t c)
1982 widest_int increment = cand_increment (c);
1984 if (!address_arithmetic_p && wi::neg_p (increment))
1985 increment = -increment;
1987 return increment;
1990 /* Return TRUE iff candidate C has already been replaced under
1991 another interpretation. */
1993 static inline bool
1994 cand_already_replaced (slsr_cand_t c)
1996 return (gimple_bb (c->cand_stmt) == 0);
1999 /* Common logic used by replace_unconditional_candidate and
2000 replace_conditional_candidate. */
2002 static void
2003 replace_mult_candidate (slsr_cand_t c, tree basis_name, widest_int bump)
2005 tree target_type = TREE_TYPE (gimple_assign_lhs (c->cand_stmt));
2006 enum tree_code cand_code = gimple_assign_rhs_code (c->cand_stmt);
2008 /* It is highly unlikely, but possible, that the resulting
2009 bump doesn't fit in a HWI. Abandon the replacement
2010 in this case. This does not affect siblings or dependents
2011 of C. Restriction to signed HWI is conservative for unsigned
2012 types but allows for safe negation without twisted logic. */
2013 if (wi::fits_shwi_p (bump)
2014 && bump.to_shwi () != HOST_WIDE_INT_MIN
2015 /* It is not useful to replace casts, copies, or adds of
2016 an SSA name and a constant. */
2017 && cand_code != MODIFY_EXPR
2018 && !CONVERT_EXPR_CODE_P (cand_code)
2019 && cand_code != PLUS_EXPR
2020 && cand_code != POINTER_PLUS_EXPR
2021 && cand_code != MINUS_EXPR)
2023 enum tree_code code = PLUS_EXPR;
2024 tree bump_tree;
2025 gimple *stmt_to_print = NULL;
2027 /* If the basis name and the candidate's LHS have incompatible
2028 types, introduce a cast. */
2029 if (!useless_type_conversion_p (target_type, TREE_TYPE (basis_name)))
2030 basis_name = introduce_cast_before_cand (c, target_type, basis_name);
2031 if (wi::neg_p (bump))
2033 code = MINUS_EXPR;
2034 bump = -bump;
2037 bump_tree = wide_int_to_tree (target_type, bump);
2039 if (dump_file && (dump_flags & TDF_DETAILS))
2041 fputs ("Replacing: ", dump_file);
2042 print_gimple_stmt (dump_file, c->cand_stmt, 0, 0);
2045 if (bump == 0)
2047 tree lhs = gimple_assign_lhs (c->cand_stmt);
2048 gassign *copy_stmt = gimple_build_assign (lhs, basis_name);
2049 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
2050 gimple_set_location (copy_stmt, gimple_location (c->cand_stmt));
2051 gsi_replace (&gsi, copy_stmt, false);
2052 c->cand_stmt = copy_stmt;
2053 if (dump_file && (dump_flags & TDF_DETAILS))
2054 stmt_to_print = copy_stmt;
2056 else
2058 tree rhs1, rhs2;
2059 if (cand_code != NEGATE_EXPR) {
2060 rhs1 = gimple_assign_rhs1 (c->cand_stmt);
2061 rhs2 = gimple_assign_rhs2 (c->cand_stmt);
2063 if (cand_code != NEGATE_EXPR
2064 && ((operand_equal_p (rhs1, basis_name, 0)
2065 && operand_equal_p (rhs2, bump_tree, 0))
2066 || (operand_equal_p (rhs1, bump_tree, 0)
2067 && operand_equal_p (rhs2, basis_name, 0))))
2069 if (dump_file && (dump_flags & TDF_DETAILS))
2071 fputs ("(duplicate, not actually replacing)", dump_file);
2072 stmt_to_print = c->cand_stmt;
2075 else
2077 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
2078 gimple_assign_set_rhs_with_ops (&gsi, code,
2079 basis_name, bump_tree);
2080 update_stmt (gsi_stmt (gsi));
2081 c->cand_stmt = gsi_stmt (gsi);
2082 if (dump_file && (dump_flags & TDF_DETAILS))
2083 stmt_to_print = gsi_stmt (gsi);
2087 if (dump_file && (dump_flags & TDF_DETAILS))
2089 fputs ("With: ", dump_file);
2090 print_gimple_stmt (dump_file, stmt_to_print, 0, 0);
2091 fputs ("\n", dump_file);
2096 /* Replace candidate C with an add or subtract. Note that we only
2097 operate on CAND_MULTs with known strides, so we will never generate
2098 a POINTER_PLUS_EXPR. Each candidate X = (B + i) * S is replaced by
2099 X = Y + ((i - i') * S), as described in the module commentary. The
2100 folded value ((i - i') * S) is referred to here as the "bump." */
2102 static void
2103 replace_unconditional_candidate (slsr_cand_t c)
2105 slsr_cand_t basis;
2107 if (cand_already_replaced (c))
2108 return;
2110 basis = lookup_cand (c->basis);
2111 widest_int bump = cand_increment (c) * wi::to_widest (c->stride);
2113 replace_mult_candidate (c, gimple_assign_lhs (basis->cand_stmt), bump);
2116 /* Return the index in the increment vector of the given INCREMENT,
2117 or -1 if not found. The latter can occur if more than
2118 MAX_INCR_VEC_LEN increments have been found. */
2120 static inline int
2121 incr_vec_index (const widest_int &increment)
2123 unsigned i;
2125 for (i = 0; i < incr_vec_len && increment != incr_vec[i].incr; i++)
2128 if (i < incr_vec_len)
2129 return i;
2130 else
2131 return -1;
2134 /* Create a new statement along edge E to add BASIS_NAME to the product
2135 of INCREMENT and the stride of candidate C. Create and return a new
2136 SSA name from *VAR to be used as the LHS of the new statement.
2137 KNOWN_STRIDE is true iff C's stride is a constant. */
2139 static tree
2140 create_add_on_incoming_edge (slsr_cand_t c, tree basis_name,
2141 widest_int increment, edge e, location_t loc,
2142 bool known_stride)
2144 basic_block insert_bb;
2145 gimple_stmt_iterator gsi;
2146 tree lhs, basis_type;
2147 gassign *new_stmt;
2149 /* If the add candidate along this incoming edge has the same
2150 index as C's hidden basis, the hidden basis represents this
2151 edge correctly. */
2152 if (increment == 0)
2153 return basis_name;
2155 basis_type = TREE_TYPE (basis_name);
2156 lhs = make_temp_ssa_name (basis_type, NULL, "slsr");
2158 /* Occasionally people convert integers to pointers without a
2159 cast, leading us into trouble if we aren't careful. */
2160 enum tree_code plus_code
2161 = POINTER_TYPE_P (basis_type) ? POINTER_PLUS_EXPR : PLUS_EXPR;
2163 if (known_stride)
2165 tree bump_tree;
2166 enum tree_code code = plus_code;
2167 widest_int bump = increment * wi::to_widest (c->stride);
2168 if (wi::neg_p (bump) && !POINTER_TYPE_P (basis_type))
2170 code = MINUS_EXPR;
2171 bump = -bump;
2174 tree stride_type = POINTER_TYPE_P (basis_type) ? sizetype : basis_type;
2175 bump_tree = wide_int_to_tree (stride_type, bump);
2176 new_stmt = gimple_build_assign (lhs, code, basis_name, bump_tree);
2178 else
2180 int i;
2181 bool negate_incr = !POINTER_TYPE_P (basis_type) && wi::neg_p (increment);
2182 i = incr_vec_index (negate_incr ? -increment : increment);
2183 gcc_assert (i >= 0);
2185 if (incr_vec[i].initializer)
2187 enum tree_code code = negate_incr ? MINUS_EXPR : plus_code;
2188 new_stmt = gimple_build_assign (lhs, code, basis_name,
2189 incr_vec[i].initializer);
2191 else if (increment == 1)
2192 new_stmt = gimple_build_assign (lhs, plus_code, basis_name, c->stride);
2193 else if (increment == -1)
2194 new_stmt = gimple_build_assign (lhs, MINUS_EXPR, basis_name,
2195 c->stride);
2196 else
2197 gcc_unreachable ();
2200 insert_bb = single_succ_p (e->src) ? e->src : split_edge (e);
2201 gsi = gsi_last_bb (insert_bb);
2203 if (!gsi_end_p (gsi) && is_ctrl_stmt (gsi_stmt (gsi)))
2204 gsi_insert_before (&gsi, new_stmt, GSI_NEW_STMT);
2205 else
2206 gsi_insert_after (&gsi, new_stmt, GSI_NEW_STMT);
2208 gimple_set_location (new_stmt, loc);
2210 if (dump_file && (dump_flags & TDF_DETAILS))
2212 fprintf (dump_file, "Inserting in block %d: ", insert_bb->index);
2213 print_gimple_stmt (dump_file, new_stmt, 0, 0);
2216 return lhs;
2219 /* Given a candidate C with BASIS_NAME being the LHS of C's basis which
2220 is hidden by the phi node FROM_PHI, create a new phi node in the same
2221 block as FROM_PHI. The new phi is suitable for use as a basis by C,
2222 with its phi arguments representing conditional adjustments to the
2223 hidden basis along conditional incoming paths. Those adjustments are
2224 made by creating add statements (and sometimes recursively creating
2225 phis) along those incoming paths. LOC is the location to attach to
2226 the introduced statements. KNOWN_STRIDE is true iff C's stride is a
2227 constant. */
2229 static tree
2230 create_phi_basis (slsr_cand_t c, gimple *from_phi, tree basis_name,
2231 location_t loc, bool known_stride)
2233 int i;
2234 tree name, phi_arg;
2235 gphi *phi;
2236 slsr_cand_t basis = lookup_cand (c->basis);
2237 int nargs = gimple_phi_num_args (from_phi);
2238 basic_block phi_bb = gimple_bb (from_phi);
2239 slsr_cand_t phi_cand = *stmt_cand_map->get (from_phi);
2240 auto_vec<tree> phi_args (nargs);
2242 /* Process each argument of the existing phi that represents
2243 conditionally-executed add candidates. */
2244 for (i = 0; i < nargs; i++)
2246 edge e = (*phi_bb->preds)[i];
2247 tree arg = gimple_phi_arg_def (from_phi, i);
2248 tree feeding_def;
2250 /* If the phi argument is the base name of the CAND_PHI, then
2251 this incoming arc should use the hidden basis. */
2252 if (operand_equal_p (arg, phi_cand->base_expr, 0))
2253 if (basis->index == 0)
2254 feeding_def = gimple_assign_lhs (basis->cand_stmt);
2255 else
2257 widest_int incr = -basis->index;
2258 feeding_def = create_add_on_incoming_edge (c, basis_name, incr,
2259 e, loc, known_stride);
2261 else
2263 gimple *arg_def = SSA_NAME_DEF_STMT (arg);
2265 /* If there is another phi along this incoming edge, we must
2266 process it in the same fashion to ensure that all basis
2267 adjustments are made along its incoming edges. */
2268 if (gimple_code (arg_def) == GIMPLE_PHI)
2269 feeding_def = create_phi_basis (c, arg_def, basis_name,
2270 loc, known_stride);
2271 else
2273 slsr_cand_t arg_cand = base_cand_from_table (arg);
2274 widest_int diff = arg_cand->index - basis->index;
2275 feeding_def = create_add_on_incoming_edge (c, basis_name, diff,
2276 e, loc, known_stride);
2280 /* Because of recursion, we need to save the arguments in a vector
2281 so we can create the PHI statement all at once. Otherwise the
2282 storage for the half-created PHI can be reclaimed. */
2283 phi_args.safe_push (feeding_def);
2286 /* Create the new phi basis. */
2287 name = make_temp_ssa_name (TREE_TYPE (basis_name), NULL, "slsr");
2288 phi = create_phi_node (name, phi_bb);
2289 SSA_NAME_DEF_STMT (name) = phi;
2291 FOR_EACH_VEC_ELT (phi_args, i, phi_arg)
2293 edge e = (*phi_bb->preds)[i];
2294 add_phi_arg (phi, phi_arg, e, loc);
2297 update_stmt (phi);
2299 if (dump_file && (dump_flags & TDF_DETAILS))
2301 fputs ("Introducing new phi basis: ", dump_file);
2302 print_gimple_stmt (dump_file, phi, 0, 0);
2305 return name;
2308 /* Given a candidate C whose basis is hidden by at least one intervening
2309 phi, introduce a matching number of new phis to represent its basis
2310 adjusted by conditional increments along possible incoming paths. Then
2311 replace C as though it were an unconditional candidate, using the new
2312 basis. */
2314 static void
2315 replace_conditional_candidate (slsr_cand_t c)
2317 tree basis_name, name;
2318 slsr_cand_t basis;
2319 location_t loc;
2321 /* Look up the LHS SSA name from C's basis. This will be the
2322 RHS1 of the adds we will introduce to create new phi arguments. */
2323 basis = lookup_cand (c->basis);
2324 basis_name = gimple_assign_lhs (basis->cand_stmt);
2326 /* Create a new phi statement which will represent C's true basis
2327 after the transformation is complete. */
2328 loc = gimple_location (c->cand_stmt);
2329 name = create_phi_basis (c, lookup_cand (c->def_phi)->cand_stmt,
2330 basis_name, loc, KNOWN_STRIDE);
2331 /* Replace C with an add of the new basis phi and a constant. */
2332 widest_int bump = c->index * wi::to_widest (c->stride);
2334 replace_mult_candidate (c, name, bump);
2337 /* Compute the expected costs of inserting basis adjustments for
2338 candidate C with phi-definition PHI. The cost of inserting
2339 one adjustment is given by ONE_ADD_COST. If PHI has arguments
2340 which are themselves phi results, recursively calculate costs
2341 for those phis as well. */
2343 static int
2344 phi_add_costs (gimple *phi, slsr_cand_t c, int one_add_cost)
2346 unsigned i;
2347 int cost = 0;
2348 slsr_cand_t phi_cand = *stmt_cand_map->get (phi);
2350 /* If we work our way back to a phi that isn't dominated by the hidden
2351 basis, this isn't a candidate for replacement. Indicate this by
2352 returning an unreasonably high cost. It's not easy to detect
2353 these situations when determining the basis, so we defer the
2354 decision until now. */
2355 basic_block phi_bb = gimple_bb (phi);
2356 slsr_cand_t basis = lookup_cand (c->basis);
2357 basic_block basis_bb = gimple_bb (basis->cand_stmt);
2359 if (phi_bb == basis_bb || !dominated_by_p (CDI_DOMINATORS, phi_bb, basis_bb))
2360 return COST_INFINITE;
2362 for (i = 0; i < gimple_phi_num_args (phi); i++)
2364 tree arg = gimple_phi_arg_def (phi, i);
2366 if (arg != phi_cand->base_expr)
2368 gimple *arg_def = SSA_NAME_DEF_STMT (arg);
2370 if (gimple_code (arg_def) == GIMPLE_PHI)
2371 cost += phi_add_costs (arg_def, c, one_add_cost);
2372 else
2374 slsr_cand_t arg_cand = base_cand_from_table (arg);
2376 if (arg_cand->index != c->index)
2377 cost += one_add_cost;
2382 return cost;
2385 /* For candidate C, each sibling of candidate C, and each dependent of
2386 candidate C, determine whether the candidate is dependent upon a
2387 phi that hides its basis. If not, replace the candidate unconditionally.
2388 Otherwise, determine whether the cost of introducing compensation code
2389 for the candidate is offset by the gains from strength reduction. If
2390 so, replace the candidate and introduce the compensation code. */
2392 static void
2393 replace_uncond_cands_and_profitable_phis (slsr_cand_t c)
2395 if (phi_dependent_cand_p (c))
2397 if (c->kind == CAND_MULT)
2399 /* A candidate dependent upon a phi will replace a multiply by
2400 a constant with an add, and will insert at most one add for
2401 each phi argument. Add these costs with the potential dead-code
2402 savings to determine profitability. */
2403 bool speed = optimize_bb_for_speed_p (gimple_bb (c->cand_stmt));
2404 int mult_savings = stmt_cost (c->cand_stmt, speed);
2405 gimple *phi = lookup_cand (c->def_phi)->cand_stmt;
2406 tree phi_result = gimple_phi_result (phi);
2407 int one_add_cost = add_cost (speed,
2408 TYPE_MODE (TREE_TYPE (phi_result)));
2409 int add_costs = one_add_cost + phi_add_costs (phi, c, one_add_cost);
2410 int cost = add_costs - mult_savings - c->dead_savings;
2412 if (dump_file && (dump_flags & TDF_DETAILS))
2414 fprintf (dump_file, " Conditional candidate %d:\n", c->cand_num);
2415 fprintf (dump_file, " add_costs = %d\n", add_costs);
2416 fprintf (dump_file, " mult_savings = %d\n", mult_savings);
2417 fprintf (dump_file, " dead_savings = %d\n", c->dead_savings);
2418 fprintf (dump_file, " cost = %d\n", cost);
2419 if (cost <= COST_NEUTRAL)
2420 fputs (" Replacing...\n", dump_file);
2421 else
2422 fputs (" Not replaced.\n", dump_file);
2425 if (cost <= COST_NEUTRAL)
2426 replace_conditional_candidate (c);
2429 else
2430 replace_unconditional_candidate (c);
2432 if (c->sibling)
2433 replace_uncond_cands_and_profitable_phis (lookup_cand (c->sibling));
2435 if (c->dependent)
2436 replace_uncond_cands_and_profitable_phis (lookup_cand (c->dependent));
2439 /* Count the number of candidates in the tree rooted at C that have
2440 not already been replaced under other interpretations. */
2442 static int
2443 count_candidates (slsr_cand_t c)
2445 unsigned count = cand_already_replaced (c) ? 0 : 1;
2447 if (c->sibling)
2448 count += count_candidates (lookup_cand (c->sibling));
2450 if (c->dependent)
2451 count += count_candidates (lookup_cand (c->dependent));
2453 return count;
2456 /* Increase the count of INCREMENT by one in the increment vector.
2457 INCREMENT is associated with candidate C. If INCREMENT is to be
2458 conditionally executed as part of a conditional candidate replacement,
2459 IS_PHI_ADJUST is true, otherwise false. If an initializer
2460 T_0 = stride * I is provided by a candidate that dominates all
2461 candidates with the same increment, also record T_0 for subsequent use. */
2463 static void
2464 record_increment (slsr_cand_t c, widest_int increment, bool is_phi_adjust)
2466 bool found = false;
2467 unsigned i;
2469 /* Treat increments that differ only in sign as identical so as to
2470 share initializers, unless we are generating pointer arithmetic. */
2471 if (!address_arithmetic_p && wi::neg_p (increment))
2472 increment = -increment;
2474 for (i = 0; i < incr_vec_len; i++)
2476 if (incr_vec[i].incr == increment)
2478 incr_vec[i].count++;
2479 found = true;
2481 /* If we previously recorded an initializer that doesn't
2482 dominate this candidate, it's not going to be useful to
2483 us after all. */
2484 if (incr_vec[i].initializer
2485 && !dominated_by_p (CDI_DOMINATORS,
2486 gimple_bb (c->cand_stmt),
2487 incr_vec[i].init_bb))
2489 incr_vec[i].initializer = NULL_TREE;
2490 incr_vec[i].init_bb = NULL;
2493 break;
2497 if (!found && incr_vec_len < MAX_INCR_VEC_LEN - 1)
2499 /* The first time we see an increment, create the entry for it.
2500 If this is the root candidate which doesn't have a basis, set
2501 the count to zero. We're only processing it so it can possibly
2502 provide an initializer for other candidates. */
2503 incr_vec[incr_vec_len].incr = increment;
2504 incr_vec[incr_vec_len].count = c->basis || is_phi_adjust ? 1 : 0;
2505 incr_vec[incr_vec_len].cost = COST_INFINITE;
2507 /* Optimistically record the first occurrence of this increment
2508 as providing an initializer (if it does); we will revise this
2509 opinion later if it doesn't dominate all other occurrences.
2510 Exception: increments of 0, 1 never need initializers;
2511 and phi adjustments don't ever provide initializers. */
2512 if (c->kind == CAND_ADD
2513 && !is_phi_adjust
2514 && c->index == increment
2515 && (wi::gts_p (increment, 1)
2516 || wi::lts_p (increment, 0))
2517 && (gimple_assign_rhs_code (c->cand_stmt) == PLUS_EXPR
2518 || gimple_assign_rhs_code (c->cand_stmt) == POINTER_PLUS_EXPR))
2520 tree t0 = NULL_TREE;
2521 tree rhs1 = gimple_assign_rhs1 (c->cand_stmt);
2522 tree rhs2 = gimple_assign_rhs2 (c->cand_stmt);
2523 if (operand_equal_p (rhs1, c->base_expr, 0))
2524 t0 = rhs2;
2525 else if (operand_equal_p (rhs2, c->base_expr, 0))
2526 t0 = rhs1;
2527 if (t0
2528 && SSA_NAME_DEF_STMT (t0)
2529 && gimple_bb (SSA_NAME_DEF_STMT (t0)))
2531 incr_vec[incr_vec_len].initializer = t0;
2532 incr_vec[incr_vec_len++].init_bb
2533 = gimple_bb (SSA_NAME_DEF_STMT (t0));
2535 else
2537 incr_vec[incr_vec_len].initializer = NULL_TREE;
2538 incr_vec[incr_vec_len++].init_bb = NULL;
2541 else
2543 incr_vec[incr_vec_len].initializer = NULL_TREE;
2544 incr_vec[incr_vec_len++].init_bb = NULL;
2549 /* Given phi statement PHI that hides a candidate from its BASIS, find
2550 the increments along each incoming arc (recursively handling additional
2551 phis that may be present) and record them. These increments are the
2552 difference in index between the index-adjusting statements and the
2553 index of the basis. */
2555 static void
2556 record_phi_increments (slsr_cand_t basis, gimple *phi)
2558 unsigned i;
2559 slsr_cand_t phi_cand = *stmt_cand_map->get (phi);
2561 for (i = 0; i < gimple_phi_num_args (phi); i++)
2563 tree arg = gimple_phi_arg_def (phi, i);
2565 if (!operand_equal_p (arg, phi_cand->base_expr, 0))
2567 gimple *arg_def = SSA_NAME_DEF_STMT (arg);
2569 if (gimple_code (arg_def) == GIMPLE_PHI)
2570 record_phi_increments (basis, arg_def);
2571 else
2573 slsr_cand_t arg_cand = base_cand_from_table (arg);
2574 widest_int diff = arg_cand->index - basis->index;
2575 record_increment (arg_cand, diff, PHI_ADJUST);
2581 /* Determine how many times each unique increment occurs in the set
2582 of candidates rooted at C's parent, recording the data in the
2583 increment vector. For each unique increment I, if an initializer
2584 T_0 = stride * I is provided by a candidate that dominates all
2585 candidates with the same increment, also record T_0 for subsequent
2586 use. */
2588 static void
2589 record_increments (slsr_cand_t c)
2591 if (!cand_already_replaced (c))
2593 if (!phi_dependent_cand_p (c))
2594 record_increment (c, cand_increment (c), NOT_PHI_ADJUST);
2595 else
2597 /* A candidate with a basis hidden by a phi will have one
2598 increment for its relationship to the index represented by
2599 the phi, and potentially additional increments along each
2600 incoming edge. For the root of the dependency tree (which
2601 has no basis), process just the initial index in case it has
2602 an initializer that can be used by subsequent candidates. */
2603 record_increment (c, c->index, NOT_PHI_ADJUST);
2605 if (c->basis)
2606 record_phi_increments (lookup_cand (c->basis),
2607 lookup_cand (c->def_phi)->cand_stmt);
2611 if (c->sibling)
2612 record_increments (lookup_cand (c->sibling));
2614 if (c->dependent)
2615 record_increments (lookup_cand (c->dependent));
2618 /* Add up and return the costs of introducing add statements that
2619 require the increment INCR on behalf of candidate C and phi
2620 statement PHI. Accumulate into *SAVINGS the potential savings
2621 from removing existing statements that feed PHI and have no other
2622 uses. */
2624 static int
2625 phi_incr_cost (slsr_cand_t c, const widest_int &incr, gimple *phi,
2626 int *savings)
2628 unsigned i;
2629 int cost = 0;
2630 slsr_cand_t basis = lookup_cand (c->basis);
2631 slsr_cand_t phi_cand = *stmt_cand_map->get (phi);
2633 for (i = 0; i < gimple_phi_num_args (phi); i++)
2635 tree arg = gimple_phi_arg_def (phi, i);
2637 if (!operand_equal_p (arg, phi_cand->base_expr, 0))
2639 gimple *arg_def = SSA_NAME_DEF_STMT (arg);
2641 if (gimple_code (arg_def) == GIMPLE_PHI)
2643 int feeding_savings = 0;
2644 cost += phi_incr_cost (c, incr, arg_def, &feeding_savings);
2645 if (has_single_use (gimple_phi_result (arg_def)))
2646 *savings += feeding_savings;
2648 else
2650 slsr_cand_t arg_cand = base_cand_from_table (arg);
2651 widest_int diff = arg_cand->index - basis->index;
2653 if (incr == diff)
2655 tree basis_lhs = gimple_assign_lhs (basis->cand_stmt);
2656 tree lhs = gimple_assign_lhs (arg_cand->cand_stmt);
2657 cost += add_cost (true, TYPE_MODE (TREE_TYPE (basis_lhs)));
2658 if (has_single_use (lhs))
2659 *savings += stmt_cost (arg_cand->cand_stmt, true);
2665 return cost;
2668 /* Return the first candidate in the tree rooted at C that has not
2669 already been replaced, favoring siblings over dependents. */
2671 static slsr_cand_t
2672 unreplaced_cand_in_tree (slsr_cand_t c)
2674 if (!cand_already_replaced (c))
2675 return c;
2677 if (c->sibling)
2679 slsr_cand_t sib = unreplaced_cand_in_tree (lookup_cand (c->sibling));
2680 if (sib)
2681 return sib;
2684 if (c->dependent)
2686 slsr_cand_t dep = unreplaced_cand_in_tree (lookup_cand (c->dependent));
2687 if (dep)
2688 return dep;
2691 return NULL;
2694 /* Return TRUE if the candidates in the tree rooted at C should be
2695 optimized for speed, else FALSE. We estimate this based on the block
2696 containing the most dominant candidate in the tree that has not yet
2697 been replaced. */
2699 static bool
2700 optimize_cands_for_speed_p (slsr_cand_t c)
2702 slsr_cand_t c2 = unreplaced_cand_in_tree (c);
2703 gcc_assert (c2);
2704 return optimize_bb_for_speed_p (gimple_bb (c2->cand_stmt));
2707 /* Add COST_IN to the lowest cost of any dependent path starting at
2708 candidate C or any of its siblings, counting only candidates along
2709 such paths with increment INCR. Assume that replacing a candidate
2710 reduces cost by REPL_SAVINGS. Also account for savings from any
2711 statements that would go dead. If COUNT_PHIS is true, include
2712 costs of introducing feeding statements for conditional candidates. */
2714 static int
2715 lowest_cost_path (int cost_in, int repl_savings, slsr_cand_t c,
2716 const widest_int &incr, bool count_phis)
2718 int local_cost, sib_cost, savings = 0;
2719 widest_int cand_incr = cand_abs_increment (c);
2721 if (cand_already_replaced (c))
2722 local_cost = cost_in;
2723 else if (incr == cand_incr)
2724 local_cost = cost_in - repl_savings - c->dead_savings;
2725 else
2726 local_cost = cost_in - c->dead_savings;
2728 if (count_phis
2729 && phi_dependent_cand_p (c)
2730 && !cand_already_replaced (c))
2732 gimple *phi = lookup_cand (c->def_phi)->cand_stmt;
2733 local_cost += phi_incr_cost (c, incr, phi, &savings);
2735 if (has_single_use (gimple_phi_result (phi)))
2736 local_cost -= savings;
2739 if (c->dependent)
2740 local_cost = lowest_cost_path (local_cost, repl_savings,
2741 lookup_cand (c->dependent), incr,
2742 count_phis);
2744 if (c->sibling)
2746 sib_cost = lowest_cost_path (cost_in, repl_savings,
2747 lookup_cand (c->sibling), incr,
2748 count_phis);
2749 local_cost = MIN (local_cost, sib_cost);
2752 return local_cost;
2755 /* Compute the total savings that would accrue from all replacements
2756 in the candidate tree rooted at C, counting only candidates with
2757 increment INCR. Assume that replacing a candidate reduces cost
2758 by REPL_SAVINGS. Also account for savings from statements that
2759 would go dead. */
2761 static int
2762 total_savings (int repl_savings, slsr_cand_t c, const widest_int &incr,
2763 bool count_phis)
2765 int savings = 0;
2766 widest_int cand_incr = cand_abs_increment (c);
2768 if (incr == cand_incr && !cand_already_replaced (c))
2769 savings += repl_savings + c->dead_savings;
2771 if (count_phis
2772 && phi_dependent_cand_p (c)
2773 && !cand_already_replaced (c))
2775 int phi_savings = 0;
2776 gimple *phi = lookup_cand (c->def_phi)->cand_stmt;
2777 savings -= phi_incr_cost (c, incr, phi, &phi_savings);
2779 if (has_single_use (gimple_phi_result (phi)))
2780 savings += phi_savings;
2783 if (c->dependent)
2784 savings += total_savings (repl_savings, lookup_cand (c->dependent), incr,
2785 count_phis);
2787 if (c->sibling)
2788 savings += total_savings (repl_savings, lookup_cand (c->sibling), incr,
2789 count_phis);
2791 return savings;
2794 /* Use target-specific costs to determine and record which increments
2795 in the current candidate tree are profitable to replace, assuming
2796 MODE and SPEED. FIRST_DEP is the first dependent of the root of
2797 the candidate tree.
2799 One slight limitation here is that we don't account for the possible
2800 introduction of casts in some cases. See replace_one_candidate for
2801 the cases where these are introduced. This should probably be cleaned
2802 up sometime. */
2804 static void
2805 analyze_increments (slsr_cand_t first_dep, machine_mode mode, bool speed)
2807 unsigned i;
2809 for (i = 0; i < incr_vec_len; i++)
2811 HOST_WIDE_INT incr = incr_vec[i].incr.to_shwi ();
2813 /* If somehow this increment is bigger than a HWI, we won't
2814 be optimizing candidates that use it. And if the increment
2815 has a count of zero, nothing will be done with it. */
2816 if (!wi::fits_shwi_p (incr_vec[i].incr) || !incr_vec[i].count)
2817 incr_vec[i].cost = COST_INFINITE;
2819 /* Increments of 0, 1, and -1 are always profitable to replace,
2820 because they always replace a multiply or add with an add or
2821 copy, and may cause one or more existing instructions to go
2822 dead. Exception: -1 can't be assumed to be profitable for
2823 pointer addition. */
2824 else if (incr == 0
2825 || incr == 1
2826 || (incr == -1
2827 && !POINTER_TYPE_P (first_dep->cand_type)))
2828 incr_vec[i].cost = COST_NEUTRAL;
2830 /* FORNOW: If we need to add an initializer, give up if a cast from
2831 the candidate's type to its stride's type can lose precision.
2832 This could eventually be handled better by expressly retaining the
2833 result of a cast to a wider type in the stride. Example:
2835 short int _1;
2836 _2 = (int) _1;
2837 _3 = _2 * 10;
2838 _4 = x + _3; ADD: x + (10 * _1) : int
2839 _5 = _2 * 15;
2840 _6 = x + _3; ADD: x + (15 * _1) : int
2842 Right now replacing _6 would cause insertion of an initializer
2843 of the form "short int T = _1 * 5;" followed by a cast to
2844 int, which could overflow incorrectly. Had we recorded _2 or
2845 (int)_1 as the stride, this wouldn't happen. However, doing
2846 this breaks other opportunities, so this will require some
2847 care. */
2848 else if (!incr_vec[i].initializer
2849 && TREE_CODE (first_dep->stride) != INTEGER_CST
2850 && !legal_cast_p_1 (first_dep->stride,
2851 gimple_assign_lhs (first_dep->cand_stmt)))
2853 incr_vec[i].cost = COST_INFINITE;
2855 /* If we need to add an initializer, make sure we don't introduce
2856 a multiply by a pointer type, which can happen in certain cast
2857 scenarios. FIXME: When cleaning up these cast issues, we can
2858 afford to introduce the multiply provided we cast out to an
2859 unsigned int of appropriate size. */
2860 else if (!incr_vec[i].initializer
2861 && TREE_CODE (first_dep->stride) != INTEGER_CST
2862 && POINTER_TYPE_P (TREE_TYPE (first_dep->stride)))
2864 incr_vec[i].cost = COST_INFINITE;
2866 /* For any other increment, if this is a multiply candidate, we
2867 must introduce a temporary T and initialize it with
2868 T_0 = stride * increment. When optimizing for speed, walk the
2869 candidate tree to calculate the best cost reduction along any
2870 path; if it offsets the fixed cost of inserting the initializer,
2871 replacing the increment is profitable. When optimizing for
2872 size, instead calculate the total cost reduction from replacing
2873 all candidates with this increment. */
2874 else if (first_dep->kind == CAND_MULT)
2876 int cost = mult_by_coeff_cost (incr, mode, speed);
2877 int repl_savings = mul_cost (speed, mode) - add_cost (speed, mode);
2878 if (speed)
2879 cost = lowest_cost_path (cost, repl_savings, first_dep,
2880 incr_vec[i].incr, COUNT_PHIS);
2881 else
2882 cost -= total_savings (repl_savings, first_dep, incr_vec[i].incr,
2883 COUNT_PHIS);
2885 incr_vec[i].cost = cost;
2888 /* If this is an add candidate, the initializer may already
2889 exist, so only calculate the cost of the initializer if it
2890 doesn't. We are replacing one add with another here, so the
2891 known replacement savings is zero. We will account for removal
2892 of dead instructions in lowest_cost_path or total_savings. */
2893 else
2895 int cost = 0;
2896 if (!incr_vec[i].initializer)
2897 cost = mult_by_coeff_cost (incr, mode, speed);
2899 if (speed)
2900 cost = lowest_cost_path (cost, 0, first_dep, incr_vec[i].incr,
2901 DONT_COUNT_PHIS);
2902 else
2903 cost -= total_savings (0, first_dep, incr_vec[i].incr,
2904 DONT_COUNT_PHIS);
2906 incr_vec[i].cost = cost;
2911 /* Return the nearest common dominator of BB1 and BB2. If the blocks
2912 are identical, return the earlier of C1 and C2 in *WHERE. Otherwise,
2913 if the NCD matches BB1, return C1 in *WHERE; if the NCD matches BB2,
2914 return C2 in *WHERE; and if the NCD matches neither, return NULL in
2915 *WHERE. Note: It is possible for one of C1 and C2 to be NULL. */
2917 static basic_block
2918 ncd_for_two_cands (basic_block bb1, basic_block bb2,
2919 slsr_cand_t c1, slsr_cand_t c2, slsr_cand_t *where)
2921 basic_block ncd;
2923 if (!bb1)
2925 *where = c2;
2926 return bb2;
2929 if (!bb2)
2931 *where = c1;
2932 return bb1;
2935 ncd = nearest_common_dominator (CDI_DOMINATORS, bb1, bb2);
2937 /* If both candidates are in the same block, the earlier
2938 candidate wins. */
2939 if (bb1 == ncd && bb2 == ncd)
2941 if (!c1 || (c2 && c2->cand_num < c1->cand_num))
2942 *where = c2;
2943 else
2944 *where = c1;
2947 /* Otherwise, if one of them produced a candidate in the
2948 dominator, that one wins. */
2949 else if (bb1 == ncd)
2950 *where = c1;
2952 else if (bb2 == ncd)
2953 *where = c2;
2955 /* If neither matches the dominator, neither wins. */
2956 else
2957 *where = NULL;
2959 return ncd;
2962 /* Consider all candidates that feed PHI. Find the nearest common
2963 dominator of those candidates requiring the given increment INCR.
2964 Further find and return the nearest common dominator of this result
2965 with block NCD. If the returned block contains one or more of the
2966 candidates, return the earliest candidate in the block in *WHERE. */
2968 static basic_block
2969 ncd_with_phi (slsr_cand_t c, const widest_int &incr, gphi *phi,
2970 basic_block ncd, slsr_cand_t *where)
2972 unsigned i;
2973 slsr_cand_t basis = lookup_cand (c->basis);
2974 slsr_cand_t phi_cand = *stmt_cand_map->get (phi);
2976 for (i = 0; i < gimple_phi_num_args (phi); i++)
2978 tree arg = gimple_phi_arg_def (phi, i);
2980 if (!operand_equal_p (arg, phi_cand->base_expr, 0))
2982 gimple *arg_def = SSA_NAME_DEF_STMT (arg);
2984 if (gimple_code (arg_def) == GIMPLE_PHI)
2985 ncd = ncd_with_phi (c, incr, as_a <gphi *> (arg_def), ncd,
2986 where);
2987 else
2989 slsr_cand_t arg_cand = base_cand_from_table (arg);
2990 widest_int diff = arg_cand->index - basis->index;
2991 basic_block pred = gimple_phi_arg_edge (phi, i)->src;
2993 if ((incr == diff) || (!address_arithmetic_p && incr == -diff))
2994 ncd = ncd_for_two_cands (ncd, pred, *where, NULL, where);
2999 return ncd;
3002 /* Consider the candidate C together with any candidates that feed
3003 C's phi dependence (if any). Find and return the nearest common
3004 dominator of those candidates requiring the given increment INCR.
3005 If the returned block contains one or more of the candidates,
3006 return the earliest candidate in the block in *WHERE. */
3008 static basic_block
3009 ncd_of_cand_and_phis (slsr_cand_t c, const widest_int &incr, slsr_cand_t *where)
3011 basic_block ncd = NULL;
3013 if (cand_abs_increment (c) == incr)
3015 ncd = gimple_bb (c->cand_stmt);
3016 *where = c;
3019 if (phi_dependent_cand_p (c))
3020 ncd = ncd_with_phi (c, incr,
3021 as_a <gphi *> (lookup_cand (c->def_phi)->cand_stmt),
3022 ncd, where);
3024 return ncd;
3027 /* Consider all candidates in the tree rooted at C for which INCR
3028 represents the required increment of C relative to its basis.
3029 Find and return the basic block that most nearly dominates all
3030 such candidates. If the returned block contains one or more of
3031 the candidates, return the earliest candidate in the block in
3032 *WHERE. */
3034 static basic_block
3035 nearest_common_dominator_for_cands (slsr_cand_t c, const widest_int &incr,
3036 slsr_cand_t *where)
3038 basic_block sib_ncd = NULL, dep_ncd = NULL, this_ncd = NULL, ncd;
3039 slsr_cand_t sib_where = NULL, dep_where = NULL, this_where = NULL, new_where;
3041 /* First find the NCD of all siblings and dependents. */
3042 if (c->sibling)
3043 sib_ncd = nearest_common_dominator_for_cands (lookup_cand (c->sibling),
3044 incr, &sib_where);
3045 if (c->dependent)
3046 dep_ncd = nearest_common_dominator_for_cands (lookup_cand (c->dependent),
3047 incr, &dep_where);
3048 if (!sib_ncd && !dep_ncd)
3050 new_where = NULL;
3051 ncd = NULL;
3053 else if (sib_ncd && !dep_ncd)
3055 new_where = sib_where;
3056 ncd = sib_ncd;
3058 else if (dep_ncd && !sib_ncd)
3060 new_where = dep_where;
3061 ncd = dep_ncd;
3063 else
3064 ncd = ncd_for_two_cands (sib_ncd, dep_ncd, sib_where,
3065 dep_where, &new_where);
3067 /* If the candidate's increment doesn't match the one we're interested
3068 in (and nor do any increments for feeding defs of a phi-dependence),
3069 then the result depends only on siblings and dependents. */
3070 this_ncd = ncd_of_cand_and_phis (c, incr, &this_where);
3072 if (!this_ncd || cand_already_replaced (c))
3074 *where = new_where;
3075 return ncd;
3078 /* Otherwise, compare this candidate with the result from all siblings
3079 and dependents. */
3080 ncd = ncd_for_two_cands (ncd, this_ncd, new_where, this_where, where);
3082 return ncd;
3085 /* Return TRUE if the increment indexed by INDEX is profitable to replace. */
3087 static inline bool
3088 profitable_increment_p (unsigned index)
3090 return (incr_vec[index].cost <= COST_NEUTRAL);
3093 /* For each profitable increment in the increment vector not equal to
3094 0 or 1 (or -1, for non-pointer arithmetic), find the nearest common
3095 dominator of all statements in the candidate chain rooted at C
3096 that require that increment, and insert an initializer
3097 T_0 = stride * increment at that location. Record T_0 with the
3098 increment record. */
3100 static void
3101 insert_initializers (slsr_cand_t c)
3103 unsigned i;
3105 for (i = 0; i < incr_vec_len; i++)
3107 basic_block bb;
3108 slsr_cand_t where = NULL;
3109 gassign *init_stmt;
3110 tree stride_type, new_name, incr_tree;
3111 widest_int incr = incr_vec[i].incr;
3113 if (!profitable_increment_p (i)
3114 || incr == 1
3115 || (incr == -1
3116 && (!POINTER_TYPE_P (lookup_cand (c->basis)->cand_type)))
3117 || incr == 0)
3118 continue;
3120 /* We may have already identified an existing initializer that
3121 will suffice. */
3122 if (incr_vec[i].initializer)
3124 if (dump_file && (dump_flags & TDF_DETAILS))
3126 fputs ("Using existing initializer: ", dump_file);
3127 print_gimple_stmt (dump_file,
3128 SSA_NAME_DEF_STMT (incr_vec[i].initializer),
3129 0, 0);
3131 continue;
3134 /* Find the block that most closely dominates all candidates
3135 with this increment. If there is at least one candidate in
3136 that block, the earliest one will be returned in WHERE. */
3137 bb = nearest_common_dominator_for_cands (c, incr, &where);
3139 /* Create a new SSA name to hold the initializer's value. */
3140 stride_type = TREE_TYPE (c->stride);
3141 new_name = make_temp_ssa_name (stride_type, NULL, "slsr");
3142 incr_vec[i].initializer = new_name;
3144 /* Create the initializer and insert it in the latest possible
3145 dominating position. */
3146 incr_tree = wide_int_to_tree (stride_type, incr);
3147 init_stmt = gimple_build_assign (new_name, MULT_EXPR,
3148 c->stride, incr_tree);
3149 if (where)
3151 gimple_stmt_iterator gsi = gsi_for_stmt (where->cand_stmt);
3152 gsi_insert_before (&gsi, init_stmt, GSI_SAME_STMT);
3153 gimple_set_location (init_stmt, gimple_location (where->cand_stmt));
3155 else
3157 gimple_stmt_iterator gsi = gsi_last_bb (bb);
3158 gimple *basis_stmt = lookup_cand (c->basis)->cand_stmt;
3160 if (!gsi_end_p (gsi) && is_ctrl_stmt (gsi_stmt (gsi)))
3161 gsi_insert_before (&gsi, init_stmt, GSI_SAME_STMT);
3162 else
3163 gsi_insert_after (&gsi, init_stmt, GSI_SAME_STMT);
3165 gimple_set_location (init_stmt, gimple_location (basis_stmt));
3168 if (dump_file && (dump_flags & TDF_DETAILS))
3170 fputs ("Inserting initializer: ", dump_file);
3171 print_gimple_stmt (dump_file, init_stmt, 0, 0);
3176 /* Return TRUE iff all required increments for candidates feeding PHI
3177 are profitable to replace on behalf of candidate C. */
3179 static bool
3180 all_phi_incrs_profitable (slsr_cand_t c, gimple *phi)
3182 unsigned i;
3183 slsr_cand_t basis = lookup_cand (c->basis);
3184 slsr_cand_t phi_cand = *stmt_cand_map->get (phi);
3186 for (i = 0; i < gimple_phi_num_args (phi); i++)
3188 tree arg = gimple_phi_arg_def (phi, i);
3190 if (!operand_equal_p (arg, phi_cand->base_expr, 0))
3192 gimple *arg_def = SSA_NAME_DEF_STMT (arg);
3194 if (gimple_code (arg_def) == GIMPLE_PHI)
3196 if (!all_phi_incrs_profitable (c, arg_def))
3197 return false;
3199 else
3201 int j;
3202 slsr_cand_t arg_cand = base_cand_from_table (arg);
3203 widest_int increment = arg_cand->index - basis->index;
3205 if (!address_arithmetic_p && wi::neg_p (increment))
3206 increment = -increment;
3208 j = incr_vec_index (increment);
3210 if (dump_file && (dump_flags & TDF_DETAILS))
3212 fprintf (dump_file, " Conditional candidate %d, phi: ",
3213 c->cand_num);
3214 print_gimple_stmt (dump_file, phi, 0, 0);
3215 fputs (" increment: ", dump_file);
3216 print_decs (increment, dump_file);
3217 if (j < 0)
3218 fprintf (dump_file,
3219 "\n Not replaced; incr_vec overflow.\n");
3220 else {
3221 fprintf (dump_file, "\n cost: %d\n", incr_vec[j].cost);
3222 if (profitable_increment_p (j))
3223 fputs (" Replacing...\n", dump_file);
3224 else
3225 fputs (" Not replaced.\n", dump_file);
3229 if (j < 0 || !profitable_increment_p (j))
3230 return false;
3235 return true;
3238 /* Create a NOP_EXPR that copies FROM_EXPR into a new SSA name of
3239 type TO_TYPE, and insert it in front of the statement represented
3240 by candidate C. Use *NEW_VAR to create the new SSA name. Return
3241 the new SSA name. */
3243 static tree
3244 introduce_cast_before_cand (slsr_cand_t c, tree to_type, tree from_expr)
3246 tree cast_lhs;
3247 gassign *cast_stmt;
3248 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
3250 cast_lhs = make_temp_ssa_name (to_type, NULL, "slsr");
3251 cast_stmt = gimple_build_assign (cast_lhs, NOP_EXPR, from_expr);
3252 gimple_set_location (cast_stmt, gimple_location (c->cand_stmt));
3253 gsi_insert_before (&gsi, cast_stmt, GSI_SAME_STMT);
3255 if (dump_file && (dump_flags & TDF_DETAILS))
3257 fputs (" Inserting: ", dump_file);
3258 print_gimple_stmt (dump_file, cast_stmt, 0, 0);
3261 return cast_lhs;
3264 /* Replace the RHS of the statement represented by candidate C with
3265 NEW_CODE, NEW_RHS1, and NEW_RHS2, provided that to do so doesn't
3266 leave C unchanged or just interchange its operands. The original
3267 operation and operands are in OLD_CODE, OLD_RHS1, and OLD_RHS2.
3268 If the replacement was made and we are doing a details dump,
3269 return the revised statement, else NULL. */
3271 static gimple *
3272 replace_rhs_if_not_dup (enum tree_code new_code, tree new_rhs1, tree new_rhs2,
3273 enum tree_code old_code, tree old_rhs1, tree old_rhs2,
3274 slsr_cand_t c)
3276 if (new_code != old_code
3277 || ((!operand_equal_p (new_rhs1, old_rhs1, 0)
3278 || !operand_equal_p (new_rhs2, old_rhs2, 0))
3279 && (!operand_equal_p (new_rhs1, old_rhs2, 0)
3280 || !operand_equal_p (new_rhs2, old_rhs1, 0))))
3282 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
3283 gimple_assign_set_rhs_with_ops (&gsi, new_code, new_rhs1, new_rhs2);
3284 update_stmt (gsi_stmt (gsi));
3285 c->cand_stmt = gsi_stmt (gsi);
3287 if (dump_file && (dump_flags & TDF_DETAILS))
3288 return gsi_stmt (gsi);
3291 else if (dump_file && (dump_flags & TDF_DETAILS))
3292 fputs (" (duplicate, not actually replacing)\n", dump_file);
3294 return NULL;
3297 /* Strength-reduce the statement represented by candidate C by replacing
3298 it with an equivalent addition or subtraction. I is the index into
3299 the increment vector identifying C's increment. NEW_VAR is used to
3300 create a new SSA name if a cast needs to be introduced. BASIS_NAME
3301 is the rhs1 to use in creating the add/subtract. */
3303 static void
3304 replace_one_candidate (slsr_cand_t c, unsigned i, tree basis_name)
3306 gimple *stmt_to_print = NULL;
3307 tree orig_rhs1, orig_rhs2;
3308 tree rhs2;
3309 enum tree_code orig_code, repl_code;
3310 widest_int cand_incr;
3312 orig_code = gimple_assign_rhs_code (c->cand_stmt);
3313 orig_rhs1 = gimple_assign_rhs1 (c->cand_stmt);
3314 orig_rhs2 = gimple_assign_rhs2 (c->cand_stmt);
3315 cand_incr = cand_increment (c);
3317 if (dump_file && (dump_flags & TDF_DETAILS))
3319 fputs ("Replacing: ", dump_file);
3320 print_gimple_stmt (dump_file, c->cand_stmt, 0, 0);
3321 stmt_to_print = c->cand_stmt;
3324 if (address_arithmetic_p)
3325 repl_code = POINTER_PLUS_EXPR;
3326 else
3327 repl_code = PLUS_EXPR;
3329 /* If the increment has an initializer T_0, replace the candidate
3330 statement with an add of the basis name and the initializer. */
3331 if (incr_vec[i].initializer)
3333 tree init_type = TREE_TYPE (incr_vec[i].initializer);
3334 tree orig_type = TREE_TYPE (orig_rhs2);
3336 if (types_compatible_p (orig_type, init_type))
3337 rhs2 = incr_vec[i].initializer;
3338 else
3339 rhs2 = introduce_cast_before_cand (c, orig_type,
3340 incr_vec[i].initializer);
3342 if (incr_vec[i].incr != cand_incr)
3344 gcc_assert (repl_code == PLUS_EXPR);
3345 repl_code = MINUS_EXPR;
3348 stmt_to_print = replace_rhs_if_not_dup (repl_code, basis_name, rhs2,
3349 orig_code, orig_rhs1, orig_rhs2,
3353 /* Otherwise, the increment is one of -1, 0, and 1. Replace
3354 with a subtract of the stride from the basis name, a copy
3355 from the basis name, or an add of the stride to the basis
3356 name, respectively. It may be necessary to introduce a
3357 cast (or reuse an existing cast). */
3358 else if (cand_incr == 1)
3360 tree stride_type = TREE_TYPE (c->stride);
3361 tree orig_type = TREE_TYPE (orig_rhs2);
3363 if (types_compatible_p (orig_type, stride_type))
3364 rhs2 = c->stride;
3365 else
3366 rhs2 = introduce_cast_before_cand (c, orig_type, c->stride);
3368 stmt_to_print = replace_rhs_if_not_dup (repl_code, basis_name, rhs2,
3369 orig_code, orig_rhs1, orig_rhs2,
3373 else if (cand_incr == -1)
3375 tree stride_type = TREE_TYPE (c->stride);
3376 tree orig_type = TREE_TYPE (orig_rhs2);
3377 gcc_assert (repl_code != POINTER_PLUS_EXPR);
3379 if (types_compatible_p (orig_type, stride_type))
3380 rhs2 = c->stride;
3381 else
3382 rhs2 = introduce_cast_before_cand (c, orig_type, c->stride);
3384 if (orig_code != MINUS_EXPR
3385 || !operand_equal_p (basis_name, orig_rhs1, 0)
3386 || !operand_equal_p (rhs2, orig_rhs2, 0))
3388 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
3389 gimple_assign_set_rhs_with_ops (&gsi, MINUS_EXPR, basis_name, rhs2);
3390 update_stmt (gsi_stmt (gsi));
3391 c->cand_stmt = gsi_stmt (gsi);
3393 if (dump_file && (dump_flags & TDF_DETAILS))
3394 stmt_to_print = gsi_stmt (gsi);
3396 else if (dump_file && (dump_flags & TDF_DETAILS))
3397 fputs (" (duplicate, not actually replacing)\n", dump_file);
3400 else if (cand_incr == 0)
3402 tree lhs = gimple_assign_lhs (c->cand_stmt);
3403 tree lhs_type = TREE_TYPE (lhs);
3404 tree basis_type = TREE_TYPE (basis_name);
3406 if (types_compatible_p (lhs_type, basis_type))
3408 gassign *copy_stmt = gimple_build_assign (lhs, basis_name);
3409 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
3410 gimple_set_location (copy_stmt, gimple_location (c->cand_stmt));
3411 gsi_replace (&gsi, copy_stmt, false);
3412 c->cand_stmt = copy_stmt;
3414 if (dump_file && (dump_flags & TDF_DETAILS))
3415 stmt_to_print = copy_stmt;
3417 else
3419 gimple_stmt_iterator gsi = gsi_for_stmt (c->cand_stmt);
3420 gassign *cast_stmt = gimple_build_assign (lhs, NOP_EXPR, basis_name);
3421 gimple_set_location (cast_stmt, gimple_location (c->cand_stmt));
3422 gsi_replace (&gsi, cast_stmt, false);
3423 c->cand_stmt = cast_stmt;
3425 if (dump_file && (dump_flags & TDF_DETAILS))
3426 stmt_to_print = cast_stmt;
3429 else
3430 gcc_unreachable ();
3432 if (dump_file && (dump_flags & TDF_DETAILS) && stmt_to_print)
3434 fputs ("With: ", dump_file);
3435 print_gimple_stmt (dump_file, stmt_to_print, 0, 0);
3436 fputs ("\n", dump_file);
3440 /* For each candidate in the tree rooted at C, replace it with
3441 an increment if such has been shown to be profitable. */
3443 static void
3444 replace_profitable_candidates (slsr_cand_t c)
3446 if (!cand_already_replaced (c))
3448 widest_int increment = cand_abs_increment (c);
3449 enum tree_code orig_code = gimple_assign_rhs_code (c->cand_stmt);
3450 int i;
3452 i = incr_vec_index (increment);
3454 /* Only process profitable increments. Nothing useful can be done
3455 to a cast or copy. */
3456 if (i >= 0
3457 && profitable_increment_p (i)
3458 && orig_code != MODIFY_EXPR
3459 && !CONVERT_EXPR_CODE_P (orig_code))
3461 if (phi_dependent_cand_p (c))
3463 gimple *phi = lookup_cand (c->def_phi)->cand_stmt;
3465 if (all_phi_incrs_profitable (c, phi))
3467 /* Look up the LHS SSA name from C's basis. This will be
3468 the RHS1 of the adds we will introduce to create new
3469 phi arguments. */
3470 slsr_cand_t basis = lookup_cand (c->basis);
3471 tree basis_name = gimple_assign_lhs (basis->cand_stmt);
3473 /* Create a new phi statement that will represent C's true
3474 basis after the transformation is complete. */
3475 location_t loc = gimple_location (c->cand_stmt);
3476 tree name = create_phi_basis (c, phi, basis_name,
3477 loc, UNKNOWN_STRIDE);
3479 /* Replace C with an add of the new basis phi and the
3480 increment. */
3481 replace_one_candidate (c, i, name);
3484 else
3486 slsr_cand_t basis = lookup_cand (c->basis);
3487 tree basis_name = gimple_assign_lhs (basis->cand_stmt);
3488 replace_one_candidate (c, i, basis_name);
3493 if (c->sibling)
3494 replace_profitable_candidates (lookup_cand (c->sibling));
3496 if (c->dependent)
3497 replace_profitable_candidates (lookup_cand (c->dependent));
3500 /* Analyze costs of related candidates in the candidate vector,
3501 and make beneficial replacements. */
3503 static void
3504 analyze_candidates_and_replace (void)
3506 unsigned i;
3507 slsr_cand_t c;
3509 /* Each candidate that has a null basis and a non-null
3510 dependent is the root of a tree of related statements.
3511 Analyze each tree to determine a subset of those
3512 statements that can be replaced with maximum benefit. */
3513 FOR_EACH_VEC_ELT (cand_vec, i, c)
3515 slsr_cand_t first_dep;
3517 if (c->basis != 0 || c->dependent == 0)
3518 continue;
3520 if (dump_file && (dump_flags & TDF_DETAILS))
3521 fprintf (dump_file, "\nProcessing dependency tree rooted at %d.\n",
3522 c->cand_num);
3524 first_dep = lookup_cand (c->dependent);
3526 /* If this is a chain of CAND_REFs, unconditionally replace
3527 each of them with a strength-reduced data reference. */
3528 if (c->kind == CAND_REF)
3529 replace_refs (c);
3531 /* If the common stride of all related candidates is a known
3532 constant, each candidate without a phi-dependence can be
3533 profitably replaced. Each replaces a multiply by a single
3534 add, with the possibility that a feeding add also goes dead.
3535 A candidate with a phi-dependence is replaced only if the
3536 compensation code it requires is offset by the strength
3537 reduction savings. */
3538 else if (TREE_CODE (c->stride) == INTEGER_CST)
3539 replace_uncond_cands_and_profitable_phis (first_dep);
3541 /* When the stride is an SSA name, it may still be profitable
3542 to replace some or all of the dependent candidates, depending
3543 on whether the introduced increments can be reused, or are
3544 less expensive to calculate than the replaced statements. */
3545 else
3547 machine_mode mode;
3548 bool speed;
3550 /* Determine whether we'll be generating pointer arithmetic
3551 when replacing candidates. */
3552 address_arithmetic_p = (c->kind == CAND_ADD
3553 && POINTER_TYPE_P (c->cand_type));
3555 /* If all candidates have already been replaced under other
3556 interpretations, nothing remains to be done. */
3557 if (!count_candidates (c))
3558 continue;
3560 /* Construct an array of increments for this candidate chain. */
3561 incr_vec = XNEWVEC (incr_info, MAX_INCR_VEC_LEN);
3562 incr_vec_len = 0;
3563 record_increments (c);
3565 /* Determine which increments are profitable to replace. */
3566 mode = TYPE_MODE (TREE_TYPE (gimple_assign_lhs (c->cand_stmt)));
3567 speed = optimize_cands_for_speed_p (c);
3568 analyze_increments (first_dep, mode, speed);
3570 /* Insert initializers of the form T_0 = stride * increment
3571 for use in profitable replacements. */
3572 insert_initializers (first_dep);
3573 dump_incr_vec ();
3575 /* Perform the replacements. */
3576 replace_profitable_candidates (first_dep);
3577 free (incr_vec);
3582 namespace {
3584 const pass_data pass_data_strength_reduction =
3586 GIMPLE_PASS, /* type */
3587 "slsr", /* name */
3588 OPTGROUP_NONE, /* optinfo_flags */
3589 TV_GIMPLE_SLSR, /* tv_id */
3590 ( PROP_cfg | PROP_ssa ), /* properties_required */
3591 0, /* properties_provided */
3592 0, /* properties_destroyed */
3593 0, /* todo_flags_start */
3594 0, /* todo_flags_finish */
3597 class pass_strength_reduction : public gimple_opt_pass
3599 public:
3600 pass_strength_reduction (gcc::context *ctxt)
3601 : gimple_opt_pass (pass_data_strength_reduction, ctxt)
3604 /* opt_pass methods: */
3605 virtual bool gate (function *) { return flag_tree_slsr; }
3606 virtual unsigned int execute (function *);
3608 }; // class pass_strength_reduction
3610 unsigned
3611 pass_strength_reduction::execute (function *fun)
3613 /* Create the obstack where candidates will reside. */
3614 gcc_obstack_init (&cand_obstack);
3616 /* Allocate the candidate vector. */
3617 cand_vec.create (128);
3619 /* Allocate the mapping from statements to candidate indices. */
3620 stmt_cand_map = new hash_map<gimple *, slsr_cand_t>;
3622 /* Create the obstack where candidate chains will reside. */
3623 gcc_obstack_init (&chain_obstack);
3625 /* Allocate the mapping from base expressions to candidate chains. */
3626 base_cand_map = new hash_table<cand_chain_hasher> (500);
3628 /* Allocate the mapping from bases to alternative bases. */
3629 alt_base_map = new hash_map<tree, tree>;
3631 /* Initialize the loop optimizer. We need to detect flow across
3632 back edges, and this gives us dominator information as well. */
3633 loop_optimizer_init (AVOID_CFG_MODIFICATIONS);
3635 /* Walk the CFG in predominator order looking for strength reduction
3636 candidates. */
3637 find_candidates_dom_walker (CDI_DOMINATORS)
3638 .walk (fun->cfg->x_entry_block_ptr);
3640 if (dump_file && (dump_flags & TDF_DETAILS))
3642 dump_cand_vec ();
3643 dump_cand_chains ();
3646 delete alt_base_map;
3647 free_affine_expand_cache (&name_expansions);
3649 /* Analyze costs and make appropriate replacements. */
3650 analyze_candidates_and_replace ();
3652 loop_optimizer_finalize ();
3653 delete base_cand_map;
3654 base_cand_map = NULL;
3655 obstack_free (&chain_obstack, NULL);
3656 delete stmt_cand_map;
3657 cand_vec.release ();
3658 obstack_free (&cand_obstack, NULL);
3660 return 0;
3663 } // anon namespace
3665 gimple_opt_pass *
3666 make_pass_strength_reduction (gcc::context *ctxt)
3668 return new pass_strength_reduction (ctxt);