Update count_scale for AutoFDO to prevent over-scale.
[official-gcc.git] / gcc-4_8 / gcc / combine.c
blobf65b7e419bd579c3dc10ff7882ade2363d6e50b0
1 /* Optimize by combining instructions for GNU compiler.
2 Copyright (C) 1987-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This module is essentially the "combiner" phase of the U. of Arizona
21 Portable Optimizer, but redone to work on our list-structured
22 representation for RTL instead of their string representation.
24 The LOG_LINKS of each insn identify the most recent assignment
25 to each REG used in the insn. It is a list of previous insns,
26 each of which contains a SET for a REG that is used in this insn
27 and not used or set in between. LOG_LINKs never cross basic blocks.
28 They were set up by the preceding pass (lifetime analysis).
30 We try to combine each pair of insns joined by a logical link.
31 We also try to combine triplets of insns A, B and C when C has
32 a link back to B and B has a link back to A. Likewise for a
33 small number of quadruplets of insns A, B, C and D for which
34 there's high likelihood of of success.
36 LOG_LINKS does not have links for use of the CC0. They don't
37 need to, because the insn that sets the CC0 is always immediately
38 before the insn that tests it. So we always regard a branch
39 insn as having a logical link to the preceding insn. The same is true
40 for an insn explicitly using CC0.
42 We check (with use_crosses_set_p) to avoid combining in such a way
43 as to move a computation to a place where its value would be different.
45 Combination is done by mathematically substituting the previous
46 insn(s) values for the regs they set into the expressions in
47 the later insns that refer to these regs. If the result is a valid insn
48 for our target machine, according to the machine description,
49 we install it, delete the earlier insns, and update the data flow
50 information (LOG_LINKS and REG_NOTES) for what we did.
52 There are a few exceptions where the dataflow information isn't
53 completely updated (however this is only a local issue since it is
54 regenerated before the next pass that uses it):
56 - reg_live_length is not updated
57 - reg_n_refs is not adjusted in the rare case when a register is
58 no longer required in a computation
59 - there are extremely rare cases (see distribute_notes) when a
60 REG_DEAD note is lost
61 - a LOG_LINKS entry that refers to an insn with multiple SETs may be
62 removed because there is no way to know which register it was
63 linking
65 To simplify substitution, we combine only when the earlier insn(s)
66 consist of only a single assignment. To simplify updating afterward,
67 we never combine when a subroutine call appears in the middle.
69 Since we do not represent assignments to CC0 explicitly except when that
70 is all an insn does, there is no LOG_LINKS entry in an insn that uses
71 the condition code for the insn that set the condition code.
72 Fortunately, these two insns must be consecutive.
73 Therefore, every JUMP_INSN is taken to have an implicit logical link
74 to the preceding insn. This is not quite right, since non-jumps can
75 also use the condition code; but in practice such insns would not
76 combine anyway. */
78 #include "config.h"
79 #include "system.h"
80 #include "coretypes.h"
81 #include "tm.h"
82 #include "rtl.h"
83 #include "tree.h"
84 #include "tm_p.h"
85 #include "flags.h"
86 #include "regs.h"
87 #include "hard-reg-set.h"
88 #include "basic-block.h"
89 #include "insn-config.h"
90 #include "function.h"
91 /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */
92 #include "expr.h"
93 #include "insn-attr.h"
94 #include "recog.h"
95 #include "diagnostic-core.h"
96 #include "target.h"
97 #include "optabs.h"
98 #include "insn-codes.h"
99 #include "rtlhooks-def.h"
100 #include "params.h"
101 #include "tree-pass.h"
102 #include "df.h"
103 #include "valtrack.h"
104 #include "cgraph.h"
105 #include "obstack.h"
107 /* Number of attempts to combine instructions in this function. */
109 static int combine_attempts;
111 /* Number of attempts that got as far as substitution in this function. */
113 static int combine_merges;
115 /* Number of instructions combined with added SETs in this function. */
117 static int combine_extras;
119 /* Number of instructions combined in this function. */
121 static int combine_successes;
123 /* Totals over entire compilation. */
125 static int total_attempts, total_merges, total_extras, total_successes;
127 /* combine_instructions may try to replace the right hand side of the
128 second instruction with the value of an associated REG_EQUAL note
129 before throwing it at try_combine. That is problematic when there
130 is a REG_DEAD note for a register used in the old right hand side
131 and can cause distribute_notes to do wrong things. This is the
132 second instruction if it has been so modified, null otherwise. */
134 static rtx i2mod;
136 /* When I2MOD is nonnull, this is a copy of the old right hand side. */
138 static rtx i2mod_old_rhs;
140 /* When I2MOD is nonnull, this is a copy of the new right hand side. */
142 static rtx i2mod_new_rhs;
144 typedef struct reg_stat_struct {
145 /* Record last point of death of (hard or pseudo) register n. */
146 rtx last_death;
148 /* Record last point of modification of (hard or pseudo) register n. */
149 rtx last_set;
151 /* The next group of fields allows the recording of the last value assigned
152 to (hard or pseudo) register n. We use this information to see if an
153 operation being processed is redundant given a prior operation performed
154 on the register. For example, an `and' with a constant is redundant if
155 all the zero bits are already known to be turned off.
157 We use an approach similar to that used by cse, but change it in the
158 following ways:
160 (1) We do not want to reinitialize at each label.
161 (2) It is useful, but not critical, to know the actual value assigned
162 to a register. Often just its form is helpful.
164 Therefore, we maintain the following fields:
166 last_set_value the last value assigned
167 last_set_label records the value of label_tick when the
168 register was assigned
169 last_set_table_tick records the value of label_tick when a
170 value using the register is assigned
171 last_set_invalid set to nonzero when it is not valid
172 to use the value of this register in some
173 register's value
175 To understand the usage of these tables, it is important to understand
176 the distinction between the value in last_set_value being valid and
177 the register being validly contained in some other expression in the
178 table.
180 (The next two parameters are out of date).
182 reg_stat[i].last_set_value is valid if it is nonzero, and either
183 reg_n_sets[i] is 1 or reg_stat[i].last_set_label == label_tick.
185 Register I may validly appear in any expression returned for the value
186 of another register if reg_n_sets[i] is 1. It may also appear in the
187 value for register J if reg_stat[j].last_set_invalid is zero, or
188 reg_stat[i].last_set_label < reg_stat[j].last_set_label.
190 If an expression is found in the table containing a register which may
191 not validly appear in an expression, the register is replaced by
192 something that won't match, (clobber (const_int 0)). */
194 /* Record last value assigned to (hard or pseudo) register n. */
196 rtx last_set_value;
198 /* Record the value of label_tick when an expression involving register n
199 is placed in last_set_value. */
201 int last_set_table_tick;
203 /* Record the value of label_tick when the value for register n is placed in
204 last_set_value. */
206 int last_set_label;
208 /* These fields are maintained in parallel with last_set_value and are
209 used to store the mode in which the register was last set, the bits
210 that were known to be zero when it was last set, and the number of
211 sign bits copies it was known to have when it was last set. */
213 unsigned HOST_WIDE_INT last_set_nonzero_bits;
214 char last_set_sign_bit_copies;
215 ENUM_BITFIELD(machine_mode) last_set_mode : 8;
217 /* Set nonzero if references to register n in expressions should not be
218 used. last_set_invalid is set nonzero when this register is being
219 assigned to and last_set_table_tick == label_tick. */
221 char last_set_invalid;
223 /* Some registers that are set more than once and used in more than one
224 basic block are nevertheless always set in similar ways. For example,
225 a QImode register may be loaded from memory in two places on a machine
226 where byte loads zero extend.
228 We record in the following fields if a register has some leading bits
229 that are always equal to the sign bit, and what we know about the
230 nonzero bits of a register, specifically which bits are known to be
231 zero.
233 If an entry is zero, it means that we don't know anything special. */
235 unsigned char sign_bit_copies;
237 unsigned HOST_WIDE_INT nonzero_bits;
239 /* Record the value of the label_tick when the last truncation
240 happened. The field truncated_to_mode is only valid if
241 truncation_label == label_tick. */
243 int truncation_label;
245 /* Record the last truncation seen for this register. If truncation
246 is not a nop to this mode we might be able to save an explicit
247 truncation if we know that value already contains a truncated
248 value. */
250 ENUM_BITFIELD(machine_mode) truncated_to_mode : 8;
251 } reg_stat_type;
254 static vec<reg_stat_type> reg_stat;
256 /* Record the luid of the last insn that invalidated memory
257 (anything that writes memory, and subroutine calls, but not pushes). */
259 static int mem_last_set;
261 /* Record the luid of the last CALL_INSN
262 so we can tell whether a potential combination crosses any calls. */
264 static int last_call_luid;
266 /* When `subst' is called, this is the insn that is being modified
267 (by combining in a previous insn). The PATTERN of this insn
268 is still the old pattern partially modified and it should not be
269 looked at, but this may be used to examine the successors of the insn
270 to judge whether a simplification is valid. */
272 static rtx subst_insn;
274 /* This is the lowest LUID that `subst' is currently dealing with.
275 get_last_value will not return a value if the register was set at or
276 after this LUID. If not for this mechanism, we could get confused if
277 I2 or I1 in try_combine were an insn that used the old value of a register
278 to obtain a new value. In that case, we might erroneously get the
279 new value of the register when we wanted the old one. */
281 static int subst_low_luid;
283 /* This contains any hard registers that are used in newpat; reg_dead_at_p
284 must consider all these registers to be always live. */
286 static HARD_REG_SET newpat_used_regs;
288 /* This is an insn to which a LOG_LINKS entry has been added. If this
289 insn is the earlier than I2 or I3, combine should rescan starting at
290 that location. */
292 static rtx added_links_insn;
294 /* Basic block in which we are performing combines. */
295 static basic_block this_basic_block;
296 static bool optimize_this_for_speed_p;
299 /* Length of the currently allocated uid_insn_cost array. */
301 static int max_uid_known;
303 /* The following array records the insn_rtx_cost for every insn
304 in the instruction stream. */
306 static int *uid_insn_cost;
308 /* The following array records the LOG_LINKS for every insn in the
309 instruction stream as struct insn_link pointers. */
311 struct insn_link {
312 rtx insn;
313 struct insn_link *next;
316 static struct insn_link **uid_log_links;
318 #define INSN_COST(INSN) (uid_insn_cost[INSN_UID (INSN)])
319 #define LOG_LINKS(INSN) (uid_log_links[INSN_UID (INSN)])
321 #define FOR_EACH_LOG_LINK(L, INSN) \
322 for ((L) = LOG_LINKS (INSN); (L); (L) = (L)->next)
324 /* Links for LOG_LINKS are allocated from this obstack. */
326 static struct obstack insn_link_obstack;
328 /* Allocate a link. */
330 static inline struct insn_link *
331 alloc_insn_link (rtx insn, struct insn_link *next)
333 struct insn_link *l
334 = (struct insn_link *) obstack_alloc (&insn_link_obstack,
335 sizeof (struct insn_link));
336 l->insn = insn;
337 l->next = next;
338 return l;
341 /* Incremented for each basic block. */
343 static int label_tick;
345 /* Reset to label_tick for each extended basic block in scanning order. */
347 static int label_tick_ebb_start;
349 /* Mode used to compute significance in reg_stat[].nonzero_bits. It is the
350 largest integer mode that can fit in HOST_BITS_PER_WIDE_INT. */
352 static enum machine_mode nonzero_bits_mode;
354 /* Nonzero when reg_stat[].nonzero_bits and reg_stat[].sign_bit_copies can
355 be safely used. It is zero while computing them and after combine has
356 completed. This former test prevents propagating values based on
357 previously set values, which can be incorrect if a variable is modified
358 in a loop. */
360 static int nonzero_sign_valid;
363 /* Record one modification to rtl structure
364 to be undone by storing old_contents into *where. */
366 enum undo_kind { UNDO_RTX, UNDO_INT, UNDO_MODE, UNDO_LINKS };
368 struct undo
370 struct undo *next;
371 enum undo_kind kind;
372 union { rtx r; int i; enum machine_mode m; struct insn_link *l; } old_contents;
373 union { rtx *r; int *i; struct insn_link **l; } where;
376 /* Record a bunch of changes to be undone, up to MAX_UNDO of them.
377 num_undo says how many are currently recorded.
379 other_insn is nonzero if we have modified some other insn in the process
380 of working on subst_insn. It must be verified too. */
382 struct undobuf
384 struct undo *undos;
385 struct undo *frees;
386 rtx other_insn;
389 static struct undobuf undobuf;
391 /* Number of times the pseudo being substituted for
392 was found and replaced. */
394 static int n_occurrences;
396 static rtx reg_nonzero_bits_for_combine (const_rtx, enum machine_mode, const_rtx,
397 enum machine_mode,
398 unsigned HOST_WIDE_INT,
399 unsigned HOST_WIDE_INT *);
400 static rtx reg_num_sign_bit_copies_for_combine (const_rtx, enum machine_mode, const_rtx,
401 enum machine_mode,
402 unsigned int, unsigned int *);
403 static void do_SUBST (rtx *, rtx);
404 static void do_SUBST_INT (int *, int);
405 static void init_reg_last (void);
406 static void setup_incoming_promotions (rtx);
407 static void set_nonzero_bits_and_sign_copies (rtx, const_rtx, void *);
408 static int cant_combine_insn_p (rtx);
409 static int can_combine_p (rtx, rtx, rtx, rtx, rtx, rtx, rtx *, rtx *);
410 static int combinable_i3pat (rtx, rtx *, rtx, rtx, rtx, int, int, rtx *);
411 static int contains_muldiv (rtx);
412 static rtx try_combine (rtx, rtx, rtx, rtx, int *, rtx);
413 static void undo_all (void);
414 static void undo_commit (void);
415 static rtx *find_split_point (rtx *, rtx, bool);
416 static rtx subst (rtx, rtx, rtx, int, int, int);
417 static rtx combine_simplify_rtx (rtx, enum machine_mode, int, int);
418 static rtx simplify_if_then_else (rtx);
419 static rtx simplify_set (rtx);
420 static rtx simplify_logical (rtx);
421 static rtx expand_compound_operation (rtx);
422 static const_rtx expand_field_assignment (const_rtx);
423 static rtx make_extraction (enum machine_mode, rtx, HOST_WIDE_INT,
424 rtx, unsigned HOST_WIDE_INT, int, int, int);
425 static rtx extract_left_shift (rtx, int);
426 static int get_pos_from_mask (unsigned HOST_WIDE_INT,
427 unsigned HOST_WIDE_INT *);
428 static rtx canon_reg_for_combine (rtx, rtx);
429 static rtx force_to_mode (rtx, enum machine_mode,
430 unsigned HOST_WIDE_INT, int);
431 static rtx if_then_else_cond (rtx, rtx *, rtx *);
432 static rtx known_cond (rtx, enum rtx_code, rtx, rtx);
433 static int rtx_equal_for_field_assignment_p (rtx, rtx);
434 static rtx make_field_assignment (rtx);
435 static rtx apply_distributive_law (rtx);
436 static rtx distribute_and_simplify_rtx (rtx, int);
437 static rtx simplify_and_const_int_1 (enum machine_mode, rtx,
438 unsigned HOST_WIDE_INT);
439 static rtx simplify_and_const_int (rtx, enum machine_mode, rtx,
440 unsigned HOST_WIDE_INT);
441 static int merge_outer_ops (enum rtx_code *, HOST_WIDE_INT *, enum rtx_code,
442 HOST_WIDE_INT, enum machine_mode, int *);
443 static rtx simplify_shift_const_1 (enum rtx_code, enum machine_mode, rtx, int);
444 static rtx simplify_shift_const (rtx, enum rtx_code, enum machine_mode, rtx,
445 int);
446 static int recog_for_combine (rtx *, rtx, rtx *);
447 static rtx gen_lowpart_for_combine (enum machine_mode, rtx);
448 static enum rtx_code simplify_compare_const (enum rtx_code, rtx, rtx *);
449 static enum rtx_code simplify_comparison (enum rtx_code, rtx *, rtx *);
450 static void update_table_tick (rtx);
451 static void record_value_for_reg (rtx, rtx, rtx);
452 static void check_promoted_subreg (rtx, rtx);
453 static void record_dead_and_set_regs_1 (rtx, const_rtx, void *);
454 static void record_dead_and_set_regs (rtx);
455 static int get_last_value_validate (rtx *, rtx, int, int);
456 static rtx get_last_value (const_rtx);
457 static int use_crosses_set_p (const_rtx, int);
458 static void reg_dead_at_p_1 (rtx, const_rtx, void *);
459 static int reg_dead_at_p (rtx, rtx);
460 static void move_deaths (rtx, rtx, int, rtx, rtx *);
461 static int reg_bitfield_target_p (rtx, rtx);
462 static void distribute_notes (rtx, rtx, rtx, rtx, rtx, rtx, rtx);
463 static void distribute_links (struct insn_link *);
464 static void mark_used_regs_combine (rtx);
465 static void record_promoted_value (rtx, rtx);
466 static int unmentioned_reg_p_1 (rtx *, void *);
467 static bool unmentioned_reg_p (rtx, rtx);
468 static int record_truncated_value (rtx *, void *);
469 static void record_truncated_values (rtx *, void *);
470 static bool reg_truncated_to_mode (enum machine_mode, const_rtx);
471 static rtx gen_lowpart_or_truncate (enum machine_mode, rtx);
474 /* It is not safe to use ordinary gen_lowpart in combine.
475 See comments in gen_lowpart_for_combine. */
476 #undef RTL_HOOKS_GEN_LOWPART
477 #define RTL_HOOKS_GEN_LOWPART gen_lowpart_for_combine
479 /* Our implementation of gen_lowpart never emits a new pseudo. */
480 #undef RTL_HOOKS_GEN_LOWPART_NO_EMIT
481 #define RTL_HOOKS_GEN_LOWPART_NO_EMIT gen_lowpart_for_combine
483 #undef RTL_HOOKS_REG_NONZERO_REG_BITS
484 #define RTL_HOOKS_REG_NONZERO_REG_BITS reg_nonzero_bits_for_combine
486 #undef RTL_HOOKS_REG_NUM_SIGN_BIT_COPIES
487 #define RTL_HOOKS_REG_NUM_SIGN_BIT_COPIES reg_num_sign_bit_copies_for_combine
489 #undef RTL_HOOKS_REG_TRUNCATED_TO_MODE
490 #define RTL_HOOKS_REG_TRUNCATED_TO_MODE reg_truncated_to_mode
492 static const struct rtl_hooks combine_rtl_hooks = RTL_HOOKS_INITIALIZER;
495 /* Convenience wrapper for the canonicalize_comparison target hook.
496 Target hooks cannot use enum rtx_code. */
497 static inline void
498 target_canonicalize_comparison (enum rtx_code *code, rtx *op0, rtx *op1,
499 bool op0_preserve_value)
501 int code_int = (int)*code;
502 targetm.canonicalize_comparison (&code_int, op0, op1, op0_preserve_value);
503 *code = (enum rtx_code)code_int;
506 /* Try to split PATTERN found in INSN. This returns NULL_RTX if
507 PATTERN can not be split. Otherwise, it returns an insn sequence.
508 This is a wrapper around split_insns which ensures that the
509 reg_stat vector is made larger if the splitter creates a new
510 register. */
512 static rtx
513 combine_split_insns (rtx pattern, rtx insn)
515 rtx ret;
516 unsigned int nregs;
518 ret = split_insns (pattern, insn);
519 nregs = max_reg_num ();
520 if (nregs > reg_stat.length ())
521 reg_stat.safe_grow_cleared (nregs);
522 return ret;
525 /* This is used by find_single_use to locate an rtx in LOC that
526 contains exactly one use of DEST, which is typically either a REG
527 or CC0. It returns a pointer to the innermost rtx expression
528 containing DEST. Appearances of DEST that are being used to
529 totally replace it are not counted. */
531 static rtx *
532 find_single_use_1 (rtx dest, rtx *loc)
534 rtx x = *loc;
535 enum rtx_code code = GET_CODE (x);
536 rtx *result = NULL;
537 rtx *this_result;
538 int i;
539 const char *fmt;
541 switch (code)
543 case CONST:
544 case LABEL_REF:
545 case SYMBOL_REF:
546 CASE_CONST_ANY:
547 case CLOBBER:
548 return 0;
550 case SET:
551 /* If the destination is anything other than CC0, PC, a REG or a SUBREG
552 of a REG that occupies all of the REG, the insn uses DEST if
553 it is mentioned in the destination or the source. Otherwise, we
554 need just check the source. */
555 if (GET_CODE (SET_DEST (x)) != CC0
556 && GET_CODE (SET_DEST (x)) != PC
557 && !REG_P (SET_DEST (x))
558 && ! (GET_CODE (SET_DEST (x)) == SUBREG
559 && REG_P (SUBREG_REG (SET_DEST (x)))
560 && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
561 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
562 == ((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
563 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))))
564 break;
566 return find_single_use_1 (dest, &SET_SRC (x));
568 case MEM:
569 case SUBREG:
570 return find_single_use_1 (dest, &XEXP (x, 0));
572 default:
573 break;
576 /* If it wasn't one of the common cases above, check each expression and
577 vector of this code. Look for a unique usage of DEST. */
579 fmt = GET_RTX_FORMAT (code);
580 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
582 if (fmt[i] == 'e')
584 if (dest == XEXP (x, i)
585 || (REG_P (dest) && REG_P (XEXP (x, i))
586 && REGNO (dest) == REGNO (XEXP (x, i))))
587 this_result = loc;
588 else
589 this_result = find_single_use_1 (dest, &XEXP (x, i));
591 if (result == NULL)
592 result = this_result;
593 else if (this_result)
594 /* Duplicate usage. */
595 return NULL;
597 else if (fmt[i] == 'E')
599 int j;
601 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
603 if (XVECEXP (x, i, j) == dest
604 || (REG_P (dest)
605 && REG_P (XVECEXP (x, i, j))
606 && REGNO (XVECEXP (x, i, j)) == REGNO (dest)))
607 this_result = loc;
608 else
609 this_result = find_single_use_1 (dest, &XVECEXP (x, i, j));
611 if (result == NULL)
612 result = this_result;
613 else if (this_result)
614 return NULL;
619 return result;
623 /* See if DEST, produced in INSN, is used only a single time in the
624 sequel. If so, return a pointer to the innermost rtx expression in which
625 it is used.
627 If PLOC is nonzero, *PLOC is set to the insn containing the single use.
629 If DEST is cc0_rtx, we look only at the next insn. In that case, we don't
630 care about REG_DEAD notes or LOG_LINKS.
632 Otherwise, we find the single use by finding an insn that has a
633 LOG_LINKS pointing at INSN and has a REG_DEAD note for DEST. If DEST is
634 only referenced once in that insn, we know that it must be the first
635 and last insn referencing DEST. */
637 static rtx *
638 find_single_use (rtx dest, rtx insn, rtx *ploc)
640 basic_block bb;
641 rtx next;
642 rtx *result;
643 struct insn_link *link;
645 #ifdef HAVE_cc0
646 if (dest == cc0_rtx)
648 next = NEXT_INSN (insn);
649 if (next == 0
650 || (!NONJUMP_INSN_P (next) && !JUMP_P (next)))
651 return 0;
653 result = find_single_use_1 (dest, &PATTERN (next));
654 if (result && ploc)
655 *ploc = next;
656 return result;
658 #endif
660 if (!REG_P (dest))
661 return 0;
663 bb = BLOCK_FOR_INSN (insn);
664 for (next = NEXT_INSN (insn);
665 next && BLOCK_FOR_INSN (next) == bb;
666 next = NEXT_INSN (next))
667 if (INSN_P (next) && dead_or_set_p (next, dest))
669 FOR_EACH_LOG_LINK (link, next)
670 if (link->insn == insn)
671 break;
673 if (link)
675 result = find_single_use_1 (dest, &PATTERN (next));
676 if (ploc)
677 *ploc = next;
678 return result;
682 return 0;
685 /* Substitute NEWVAL, an rtx expression, into INTO, a place in some
686 insn. The substitution can be undone by undo_all. If INTO is already
687 set to NEWVAL, do not record this change. Because computing NEWVAL might
688 also call SUBST, we have to compute it before we put anything into
689 the undo table. */
691 static void
692 do_SUBST (rtx *into, rtx newval)
694 struct undo *buf;
695 rtx oldval = *into;
697 if (oldval == newval)
698 return;
700 /* We'd like to catch as many invalid transformations here as
701 possible. Unfortunately, there are way too many mode changes
702 that are perfectly valid, so we'd waste too much effort for
703 little gain doing the checks here. Focus on catching invalid
704 transformations involving integer constants. */
705 if (GET_MODE_CLASS (GET_MODE (oldval)) == MODE_INT
706 && CONST_INT_P (newval))
708 /* Sanity check that we're replacing oldval with a CONST_INT
709 that is a valid sign-extension for the original mode. */
710 gcc_assert (INTVAL (newval)
711 == trunc_int_for_mode (INTVAL (newval), GET_MODE (oldval)));
713 /* Replacing the operand of a SUBREG or a ZERO_EXTEND with a
714 CONST_INT is not valid, because after the replacement, the
715 original mode would be gone. Unfortunately, we can't tell
716 when do_SUBST is called to replace the operand thereof, so we
717 perform this test on oldval instead, checking whether an
718 invalid replacement took place before we got here. */
719 gcc_assert (!(GET_CODE (oldval) == SUBREG
720 && CONST_INT_P (SUBREG_REG (oldval))));
721 gcc_assert (!(GET_CODE (oldval) == ZERO_EXTEND
722 && CONST_INT_P (XEXP (oldval, 0))));
725 if (undobuf.frees)
726 buf = undobuf.frees, undobuf.frees = buf->next;
727 else
728 buf = XNEW (struct undo);
730 buf->kind = UNDO_RTX;
731 buf->where.r = into;
732 buf->old_contents.r = oldval;
733 *into = newval;
735 buf->next = undobuf.undos, undobuf.undos = buf;
738 #define SUBST(INTO, NEWVAL) do_SUBST(&(INTO), (NEWVAL))
740 /* Similar to SUBST, but NEWVAL is an int expression. Note that substitution
741 for the value of a HOST_WIDE_INT value (including CONST_INT) is
742 not safe. */
744 static void
745 do_SUBST_INT (int *into, int newval)
747 struct undo *buf;
748 int oldval = *into;
750 if (oldval == newval)
751 return;
753 if (undobuf.frees)
754 buf = undobuf.frees, undobuf.frees = buf->next;
755 else
756 buf = XNEW (struct undo);
758 buf->kind = UNDO_INT;
759 buf->where.i = into;
760 buf->old_contents.i = oldval;
761 *into = newval;
763 buf->next = undobuf.undos, undobuf.undos = buf;
766 #define SUBST_INT(INTO, NEWVAL) do_SUBST_INT(&(INTO), (NEWVAL))
768 /* Similar to SUBST, but just substitute the mode. This is used when
769 changing the mode of a pseudo-register, so that any other
770 references to the entry in the regno_reg_rtx array will change as
771 well. */
773 static void
774 do_SUBST_MODE (rtx *into, enum machine_mode newval)
776 struct undo *buf;
777 enum machine_mode oldval = GET_MODE (*into);
779 if (oldval == newval)
780 return;
782 if (undobuf.frees)
783 buf = undobuf.frees, undobuf.frees = buf->next;
784 else
785 buf = XNEW (struct undo);
787 buf->kind = UNDO_MODE;
788 buf->where.r = into;
789 buf->old_contents.m = oldval;
790 adjust_reg_mode (*into, newval);
792 buf->next = undobuf.undos, undobuf.undos = buf;
795 #define SUBST_MODE(INTO, NEWVAL) do_SUBST_MODE(&(INTO), (NEWVAL))
797 #ifndef HAVE_cc0
798 /* Similar to SUBST, but NEWVAL is a LOG_LINKS expression. */
800 static void
801 do_SUBST_LINK (struct insn_link **into, struct insn_link *newval)
803 struct undo *buf;
804 struct insn_link * oldval = *into;
806 if (oldval == newval)
807 return;
809 if (undobuf.frees)
810 buf = undobuf.frees, undobuf.frees = buf->next;
811 else
812 buf = XNEW (struct undo);
814 buf->kind = UNDO_LINKS;
815 buf->where.l = into;
816 buf->old_contents.l = oldval;
817 *into = newval;
819 buf->next = undobuf.undos, undobuf.undos = buf;
822 #define SUBST_LINK(oldval, newval) do_SUBST_LINK (&oldval, newval)
823 #endif
825 /* Subroutine of try_combine. Determine whether the replacement patterns
826 NEWPAT, NEWI2PAT and NEWOTHERPAT are cheaper according to insn_rtx_cost
827 than the original sequence I0, I1, I2, I3 and undobuf.other_insn. Note
828 that I0, I1 and/or NEWI2PAT may be NULL_RTX. Similarly, NEWOTHERPAT and
829 undobuf.other_insn may also both be NULL_RTX. Return false if the cost
830 of all the instructions can be estimated and the replacements are more
831 expensive than the original sequence. */
833 static bool
834 combine_validate_cost (rtx i0, rtx i1, rtx i2, rtx i3, rtx newpat,
835 rtx newi2pat, rtx newotherpat)
837 int i0_cost, i1_cost, i2_cost, i3_cost;
838 int new_i2_cost, new_i3_cost;
839 int old_cost, new_cost;
841 /* Lookup the original insn_rtx_costs. */
842 i2_cost = INSN_COST (i2);
843 i3_cost = INSN_COST (i3);
845 if (i1)
847 i1_cost = INSN_COST (i1);
848 if (i0)
850 i0_cost = INSN_COST (i0);
851 old_cost = (i0_cost > 0 && i1_cost > 0 && i2_cost > 0 && i3_cost > 0
852 ? i0_cost + i1_cost + i2_cost + i3_cost : 0);
854 else
856 old_cost = (i1_cost > 0 && i2_cost > 0 && i3_cost > 0
857 ? i1_cost + i2_cost + i3_cost : 0);
858 i0_cost = 0;
861 else
863 old_cost = (i2_cost > 0 && i3_cost > 0) ? i2_cost + i3_cost : 0;
864 i1_cost = i0_cost = 0;
867 /* Calculate the replacement insn_rtx_costs. */
868 new_i3_cost = insn_rtx_cost (newpat, optimize_this_for_speed_p);
869 if (newi2pat)
871 new_i2_cost = insn_rtx_cost (newi2pat, optimize_this_for_speed_p);
872 new_cost = (new_i2_cost > 0 && new_i3_cost > 0)
873 ? new_i2_cost + new_i3_cost : 0;
875 else
877 new_cost = new_i3_cost;
878 new_i2_cost = 0;
881 if (undobuf.other_insn)
883 int old_other_cost, new_other_cost;
885 old_other_cost = INSN_COST (undobuf.other_insn);
886 new_other_cost = insn_rtx_cost (newotherpat, optimize_this_for_speed_p);
887 if (old_other_cost > 0 && new_other_cost > 0)
889 old_cost += old_other_cost;
890 new_cost += new_other_cost;
892 else
893 old_cost = 0;
896 /* Disallow this combination if both new_cost and old_cost are greater than
897 zero, and new_cost is greater than old cost. */
898 if (old_cost > 0 && new_cost > old_cost)
900 if (dump_file)
902 if (i0)
904 fprintf (dump_file,
905 "rejecting combination of insns %d, %d, %d and %d\n",
906 INSN_UID (i0), INSN_UID (i1), INSN_UID (i2),
907 INSN_UID (i3));
908 fprintf (dump_file, "original costs %d + %d + %d + %d = %d\n",
909 i0_cost, i1_cost, i2_cost, i3_cost, old_cost);
911 else if (i1)
913 fprintf (dump_file,
914 "rejecting combination of insns %d, %d and %d\n",
915 INSN_UID (i1), INSN_UID (i2), INSN_UID (i3));
916 fprintf (dump_file, "original costs %d + %d + %d = %d\n",
917 i1_cost, i2_cost, i3_cost, old_cost);
919 else
921 fprintf (dump_file,
922 "rejecting combination of insns %d and %d\n",
923 INSN_UID (i2), INSN_UID (i3));
924 fprintf (dump_file, "original costs %d + %d = %d\n",
925 i2_cost, i3_cost, old_cost);
928 if (newi2pat)
930 fprintf (dump_file, "replacement costs %d + %d = %d\n",
931 new_i2_cost, new_i3_cost, new_cost);
933 else
934 fprintf (dump_file, "replacement cost %d\n", new_cost);
937 return false;
940 /* Update the uid_insn_cost array with the replacement costs. */
941 INSN_COST (i2) = new_i2_cost;
942 INSN_COST (i3) = new_i3_cost;
943 if (i1)
945 INSN_COST (i1) = 0;
946 if (i0)
947 INSN_COST (i0) = 0;
950 return true;
954 /* Delete any insns that copy a register to itself. */
956 static void
957 delete_noop_moves (void)
959 rtx insn, next;
960 basic_block bb;
962 FOR_EACH_BB (bb)
964 for (insn = BB_HEAD (bb); insn != NEXT_INSN (BB_END (bb)); insn = next)
966 next = NEXT_INSN (insn);
967 if (INSN_P (insn) && noop_move_p (insn))
969 if (dump_file)
970 fprintf (dump_file, "deleting noop move %d\n", INSN_UID (insn));
972 delete_insn_and_edges (insn);
979 /* Fill in log links field for all insns. */
981 static void
982 create_log_links (void)
984 basic_block bb;
985 rtx *next_use, insn;
986 df_ref *def_vec, *use_vec;
988 next_use = XCNEWVEC (rtx, max_reg_num ());
990 /* Pass through each block from the end, recording the uses of each
991 register and establishing log links when def is encountered.
992 Note that we do not clear next_use array in order to save time,
993 so we have to test whether the use is in the same basic block as def.
995 There are a few cases below when we do not consider the definition or
996 usage -- these are taken from original flow.c did. Don't ask me why it is
997 done this way; I don't know and if it works, I don't want to know. */
999 FOR_EACH_BB (bb)
1001 FOR_BB_INSNS_REVERSE (bb, insn)
1003 if (!NONDEBUG_INSN_P (insn))
1004 continue;
1006 /* Log links are created only once. */
1007 gcc_assert (!LOG_LINKS (insn));
1009 for (def_vec = DF_INSN_DEFS (insn); *def_vec; def_vec++)
1011 df_ref def = *def_vec;
1012 int regno = DF_REF_REGNO (def);
1013 rtx use_insn;
1015 if (!next_use[regno])
1016 continue;
1018 /* Do not consider if it is pre/post modification in MEM. */
1019 if (DF_REF_FLAGS (def) & DF_REF_PRE_POST_MODIFY)
1020 continue;
1022 /* Do not make the log link for frame pointer. */
1023 if ((regno == FRAME_POINTER_REGNUM
1024 && (! reload_completed || frame_pointer_needed))
1025 #if !HARD_FRAME_POINTER_IS_FRAME_POINTER
1026 || (regno == HARD_FRAME_POINTER_REGNUM
1027 && (! reload_completed || frame_pointer_needed))
1028 #endif
1029 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
1030 || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
1031 #endif
1033 continue;
1035 use_insn = next_use[regno];
1036 if (BLOCK_FOR_INSN (use_insn) == bb)
1038 /* flow.c claimed:
1040 We don't build a LOG_LINK for hard registers contained
1041 in ASM_OPERANDs. If these registers get replaced,
1042 we might wind up changing the semantics of the insn,
1043 even if reload can make what appear to be valid
1044 assignments later. */
1045 if (regno >= FIRST_PSEUDO_REGISTER
1046 || asm_noperands (PATTERN (use_insn)) < 0)
1048 /* Don't add duplicate links between instructions. */
1049 struct insn_link *links;
1050 FOR_EACH_LOG_LINK (links, use_insn)
1051 if (insn == links->insn)
1052 break;
1054 if (!links)
1055 LOG_LINKS (use_insn)
1056 = alloc_insn_link (insn, LOG_LINKS (use_insn));
1059 next_use[regno] = NULL_RTX;
1062 for (use_vec = DF_INSN_USES (insn); *use_vec; use_vec++)
1064 df_ref use = *use_vec;
1065 int regno = DF_REF_REGNO (use);
1067 /* Do not consider the usage of the stack pointer
1068 by function call. */
1069 if (DF_REF_FLAGS (use) & DF_REF_CALL_STACK_USAGE)
1070 continue;
1072 next_use[regno] = insn;
1077 free (next_use);
1080 /* Walk the LOG_LINKS of insn B to see if we find a reference to A. Return
1081 true if we found a LOG_LINK that proves that A feeds B. This only works
1082 if there are no instructions between A and B which could have a link
1083 depending on A, since in that case we would not record a link for B.
1084 We also check the implicit dependency created by a cc0 setter/user
1085 pair. */
1087 static bool
1088 insn_a_feeds_b (rtx a, rtx b)
1090 struct insn_link *links;
1091 FOR_EACH_LOG_LINK (links, b)
1092 if (links->insn == a)
1093 return true;
1094 #ifdef HAVE_cc0
1095 if (sets_cc0_p (a))
1096 return true;
1097 #endif
1098 return false;
1101 /* Main entry point for combiner. F is the first insn of the function.
1102 NREGS is the first unused pseudo-reg number.
1104 Return nonzero if the combiner has turned an indirect jump
1105 instruction into a direct jump. */
1106 static int
1107 combine_instructions (rtx f, unsigned int nregs)
1109 rtx insn, next;
1110 #ifdef HAVE_cc0
1111 rtx prev;
1112 #endif
1113 struct insn_link *links, *nextlinks;
1114 rtx first;
1115 basic_block last_bb;
1117 int new_direct_jump_p = 0;
1119 for (first = f; first && !INSN_P (first); )
1120 first = NEXT_INSN (first);
1121 if (!first)
1122 return 0;
1124 combine_attempts = 0;
1125 combine_merges = 0;
1126 combine_extras = 0;
1127 combine_successes = 0;
1129 rtl_hooks = combine_rtl_hooks;
1131 reg_stat.safe_grow_cleared (nregs);
1133 init_recog_no_volatile ();
1135 /* Allocate array for insn info. */
1136 max_uid_known = get_max_uid ();
1137 uid_log_links = XCNEWVEC (struct insn_link *, max_uid_known + 1);
1138 uid_insn_cost = XCNEWVEC (int, max_uid_known + 1);
1139 gcc_obstack_init (&insn_link_obstack);
1141 nonzero_bits_mode = mode_for_size (HOST_BITS_PER_WIDE_INT, MODE_INT, 0);
1143 /* Don't use reg_stat[].nonzero_bits when computing it. This can cause
1144 problems when, for example, we have j <<= 1 in a loop. */
1146 nonzero_sign_valid = 0;
1147 label_tick = label_tick_ebb_start = 1;
1149 /* Scan all SETs and see if we can deduce anything about what
1150 bits are known to be zero for some registers and how many copies
1151 of the sign bit are known to exist for those registers.
1153 Also set any known values so that we can use it while searching
1154 for what bits are known to be set. */
1156 setup_incoming_promotions (first);
1157 /* Allow the entry block and the first block to fall into the same EBB.
1158 Conceptually the incoming promotions are assigned to the entry block. */
1159 last_bb = ENTRY_BLOCK_PTR;
1161 create_log_links ();
1162 FOR_EACH_BB (this_basic_block)
1164 optimize_this_for_speed_p = optimize_bb_for_speed_p (this_basic_block);
1165 last_call_luid = 0;
1166 mem_last_set = -1;
1168 label_tick++;
1169 if (!single_pred_p (this_basic_block)
1170 || single_pred (this_basic_block) != last_bb)
1171 label_tick_ebb_start = label_tick;
1172 last_bb = this_basic_block;
1174 FOR_BB_INSNS (this_basic_block, insn)
1175 if (INSN_P (insn) && BLOCK_FOR_INSN (insn))
1177 #ifdef AUTO_INC_DEC
1178 rtx links;
1179 #endif
1181 subst_low_luid = DF_INSN_LUID (insn);
1182 subst_insn = insn;
1184 note_stores (PATTERN (insn), set_nonzero_bits_and_sign_copies,
1185 insn);
1186 record_dead_and_set_regs (insn);
1188 #ifdef AUTO_INC_DEC
1189 for (links = REG_NOTES (insn); links; links = XEXP (links, 1))
1190 if (REG_NOTE_KIND (links) == REG_INC)
1191 set_nonzero_bits_and_sign_copies (XEXP (links, 0), NULL_RTX,
1192 insn);
1193 #endif
1195 /* Record the current insn_rtx_cost of this instruction. */
1196 if (NONJUMP_INSN_P (insn))
1197 INSN_COST (insn) = insn_rtx_cost (PATTERN (insn),
1198 optimize_this_for_speed_p);
1199 if (dump_file)
1200 fprintf(dump_file, "insn_cost %d: %d\n",
1201 INSN_UID (insn), INSN_COST (insn));
1205 nonzero_sign_valid = 1;
1207 /* Now scan all the insns in forward order. */
1208 label_tick = label_tick_ebb_start = 1;
1209 init_reg_last ();
1210 setup_incoming_promotions (first);
1211 last_bb = ENTRY_BLOCK_PTR;
1213 FOR_EACH_BB (this_basic_block)
1215 rtx last_combined_insn = NULL_RTX;
1216 optimize_this_for_speed_p = optimize_bb_for_speed_p (this_basic_block);
1217 last_call_luid = 0;
1218 mem_last_set = -1;
1220 label_tick++;
1221 if (!single_pred_p (this_basic_block)
1222 || single_pred (this_basic_block) != last_bb)
1223 label_tick_ebb_start = label_tick;
1224 last_bb = this_basic_block;
1226 rtl_profile_for_bb (this_basic_block);
1227 for (insn = BB_HEAD (this_basic_block);
1228 insn != NEXT_INSN (BB_END (this_basic_block));
1229 insn = next ? next : NEXT_INSN (insn))
1231 next = 0;
1232 if (NONDEBUG_INSN_P (insn))
1234 while (last_combined_insn
1235 && INSN_DELETED_P (last_combined_insn))
1236 last_combined_insn = PREV_INSN (last_combined_insn);
1237 if (last_combined_insn == NULL_RTX
1238 || BARRIER_P (last_combined_insn)
1239 || BLOCK_FOR_INSN (last_combined_insn) != this_basic_block
1240 || DF_INSN_LUID (last_combined_insn) <= DF_INSN_LUID (insn))
1241 last_combined_insn = insn;
1243 /* See if we know about function return values before this
1244 insn based upon SUBREG flags. */
1245 check_promoted_subreg (insn, PATTERN (insn));
1247 /* See if we can find hardregs and subreg of pseudos in
1248 narrower modes. This could help turning TRUNCATEs
1249 into SUBREGs. */
1250 note_uses (&PATTERN (insn), record_truncated_values, NULL);
1252 /* Try this insn with each insn it links back to. */
1254 FOR_EACH_LOG_LINK (links, insn)
1255 if ((next = try_combine (insn, links->insn, NULL_RTX,
1256 NULL_RTX, &new_direct_jump_p,
1257 last_combined_insn)) != 0)
1258 goto retry;
1260 /* Try each sequence of three linked insns ending with this one. */
1262 FOR_EACH_LOG_LINK (links, insn)
1264 rtx link = links->insn;
1266 /* If the linked insn has been replaced by a note, then there
1267 is no point in pursuing this chain any further. */
1268 if (NOTE_P (link))
1269 continue;
1271 FOR_EACH_LOG_LINK (nextlinks, link)
1272 if ((next = try_combine (insn, link, nextlinks->insn,
1273 NULL_RTX, &new_direct_jump_p,
1274 last_combined_insn)) != 0)
1275 goto retry;
1278 #ifdef HAVE_cc0
1279 /* Try to combine a jump insn that uses CC0
1280 with a preceding insn that sets CC0, and maybe with its
1281 logical predecessor as well.
1282 This is how we make decrement-and-branch insns.
1283 We need this special code because data flow connections
1284 via CC0 do not get entered in LOG_LINKS. */
1286 if (JUMP_P (insn)
1287 && (prev = prev_nonnote_insn (insn)) != 0
1288 && NONJUMP_INSN_P (prev)
1289 && sets_cc0_p (PATTERN (prev)))
1291 if ((next = try_combine (insn, prev, NULL_RTX, NULL_RTX,
1292 &new_direct_jump_p,
1293 last_combined_insn)) != 0)
1294 goto retry;
1296 FOR_EACH_LOG_LINK (nextlinks, prev)
1297 if ((next = try_combine (insn, prev, nextlinks->insn,
1298 NULL_RTX, &new_direct_jump_p,
1299 last_combined_insn)) != 0)
1300 goto retry;
1303 /* Do the same for an insn that explicitly references CC0. */
1304 if (NONJUMP_INSN_P (insn)
1305 && (prev = prev_nonnote_insn (insn)) != 0
1306 && NONJUMP_INSN_P (prev)
1307 && sets_cc0_p (PATTERN (prev))
1308 && GET_CODE (PATTERN (insn)) == SET
1309 && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (insn))))
1311 if ((next = try_combine (insn, prev, NULL_RTX, NULL_RTX,
1312 &new_direct_jump_p,
1313 last_combined_insn)) != 0)
1314 goto retry;
1316 FOR_EACH_LOG_LINK (nextlinks, prev)
1317 if ((next = try_combine (insn, prev, nextlinks->insn,
1318 NULL_RTX, &new_direct_jump_p,
1319 last_combined_insn)) != 0)
1320 goto retry;
1323 /* Finally, see if any of the insns that this insn links to
1324 explicitly references CC0. If so, try this insn, that insn,
1325 and its predecessor if it sets CC0. */
1326 FOR_EACH_LOG_LINK (links, insn)
1327 if (NONJUMP_INSN_P (links->insn)
1328 && GET_CODE (PATTERN (links->insn)) == SET
1329 && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (links->insn)))
1330 && (prev = prev_nonnote_insn (links->insn)) != 0
1331 && NONJUMP_INSN_P (prev)
1332 && sets_cc0_p (PATTERN (prev))
1333 && (next = try_combine (insn, links->insn,
1334 prev, NULL_RTX, &new_direct_jump_p,
1335 last_combined_insn)) != 0)
1336 goto retry;
1337 #endif
1339 /* Try combining an insn with two different insns whose results it
1340 uses. */
1341 FOR_EACH_LOG_LINK (links, insn)
1342 for (nextlinks = links->next; nextlinks;
1343 nextlinks = nextlinks->next)
1344 if ((next = try_combine (insn, links->insn,
1345 nextlinks->insn, NULL_RTX,
1346 &new_direct_jump_p,
1347 last_combined_insn)) != 0)
1348 goto retry;
1350 /* Try four-instruction combinations. */
1351 FOR_EACH_LOG_LINK (links, insn)
1353 struct insn_link *next1;
1354 rtx link = links->insn;
1356 /* If the linked insn has been replaced by a note, then there
1357 is no point in pursuing this chain any further. */
1358 if (NOTE_P (link))
1359 continue;
1361 FOR_EACH_LOG_LINK (next1, link)
1363 rtx link1 = next1->insn;
1364 if (NOTE_P (link1))
1365 continue;
1366 /* I0 -> I1 -> I2 -> I3. */
1367 FOR_EACH_LOG_LINK (nextlinks, link1)
1368 if ((next = try_combine (insn, link, link1,
1369 nextlinks->insn,
1370 &new_direct_jump_p,
1371 last_combined_insn)) != 0)
1372 goto retry;
1373 /* I0, I1 -> I2, I2 -> I3. */
1374 for (nextlinks = next1->next; nextlinks;
1375 nextlinks = nextlinks->next)
1376 if ((next = try_combine (insn, link, link1,
1377 nextlinks->insn,
1378 &new_direct_jump_p,
1379 last_combined_insn)) != 0)
1380 goto retry;
1383 for (next1 = links->next; next1; next1 = next1->next)
1385 rtx link1 = next1->insn;
1386 if (NOTE_P (link1))
1387 continue;
1388 /* I0 -> I2; I1, I2 -> I3. */
1389 FOR_EACH_LOG_LINK (nextlinks, link)
1390 if ((next = try_combine (insn, link, link1,
1391 nextlinks->insn,
1392 &new_direct_jump_p,
1393 last_combined_insn)) != 0)
1394 goto retry;
1395 /* I0 -> I1; I1, I2 -> I3. */
1396 FOR_EACH_LOG_LINK (nextlinks, link1)
1397 if ((next = try_combine (insn, link, link1,
1398 nextlinks->insn,
1399 &new_direct_jump_p,
1400 last_combined_insn)) != 0)
1401 goto retry;
1405 /* Try this insn with each REG_EQUAL note it links back to. */
1406 FOR_EACH_LOG_LINK (links, insn)
1408 rtx set, note;
1409 rtx temp = links->insn;
1410 if ((set = single_set (temp)) != 0
1411 && (note = find_reg_equal_equiv_note (temp)) != 0
1412 && (note = XEXP (note, 0), GET_CODE (note)) != EXPR_LIST
1413 /* Avoid using a register that may already been marked
1414 dead by an earlier instruction. */
1415 && ! unmentioned_reg_p (note, SET_SRC (set))
1416 && (GET_MODE (note) == VOIDmode
1417 ? SCALAR_INT_MODE_P (GET_MODE (SET_DEST (set)))
1418 : GET_MODE (SET_DEST (set)) == GET_MODE (note)))
1420 /* Temporarily replace the set's source with the
1421 contents of the REG_EQUAL note. The insn will
1422 be deleted or recognized by try_combine. */
1423 rtx orig = SET_SRC (set);
1424 SET_SRC (set) = note;
1425 i2mod = temp;
1426 i2mod_old_rhs = copy_rtx (orig);
1427 i2mod_new_rhs = copy_rtx (note);
1428 next = try_combine (insn, i2mod, NULL_RTX, NULL_RTX,
1429 &new_direct_jump_p,
1430 last_combined_insn);
1431 i2mod = NULL_RTX;
1432 if (next)
1433 goto retry;
1434 SET_SRC (set) = orig;
1438 if (!NOTE_P (insn))
1439 record_dead_and_set_regs (insn);
1441 retry:
1447 default_rtl_profile ();
1448 clear_bb_flags ();
1449 new_direct_jump_p |= purge_all_dead_edges ();
1450 delete_noop_moves ();
1452 /* Clean up. */
1453 obstack_free (&insn_link_obstack, NULL);
1454 free (uid_log_links);
1455 free (uid_insn_cost);
1456 reg_stat.release ();
1459 struct undo *undo, *next;
1460 for (undo = undobuf.frees; undo; undo = next)
1462 next = undo->next;
1463 free (undo);
1465 undobuf.frees = 0;
1468 total_attempts += combine_attempts;
1469 total_merges += combine_merges;
1470 total_extras += combine_extras;
1471 total_successes += combine_successes;
1473 nonzero_sign_valid = 0;
1474 rtl_hooks = general_rtl_hooks;
1476 /* Make recognizer allow volatile MEMs again. */
1477 init_recog ();
1479 return new_direct_jump_p;
1482 /* Wipe the last_xxx fields of reg_stat in preparation for another pass. */
1484 static void
1485 init_reg_last (void)
1487 unsigned int i;
1488 reg_stat_type *p;
1490 FOR_EACH_VEC_ELT (reg_stat, i, p)
1491 memset (p, 0, offsetof (reg_stat_type, sign_bit_copies));
1494 /* Set up any promoted values for incoming argument registers. */
1496 static void
1497 setup_incoming_promotions (rtx first)
1499 tree arg;
1500 bool strictly_local = false;
1502 for (arg = DECL_ARGUMENTS (current_function_decl); arg;
1503 arg = DECL_CHAIN (arg))
1505 rtx x, reg = DECL_INCOMING_RTL (arg);
1506 int uns1, uns3;
1507 enum machine_mode mode1, mode2, mode3, mode4;
1509 /* Only continue if the incoming argument is in a register. */
1510 if (!REG_P (reg))
1511 continue;
1513 /* Determine, if possible, whether all call sites of the current
1514 function lie within the current compilation unit. (This does
1515 take into account the exporting of a function via taking its
1516 address, and so forth.) */
1517 strictly_local = cgraph_local_info (current_function_decl)->local;
1519 /* The mode and signedness of the argument before any promotions happen
1520 (equal to the mode of the pseudo holding it at that stage). */
1521 mode1 = TYPE_MODE (TREE_TYPE (arg));
1522 uns1 = TYPE_UNSIGNED (TREE_TYPE (arg));
1524 /* The mode and signedness of the argument after any source language and
1525 TARGET_PROMOTE_PROTOTYPES-driven promotions. */
1526 mode2 = TYPE_MODE (DECL_ARG_TYPE (arg));
1527 uns3 = TYPE_UNSIGNED (DECL_ARG_TYPE (arg));
1529 /* The mode and signedness of the argument as it is actually passed,
1530 after any TARGET_PROMOTE_FUNCTION_ARGS-driven ABI promotions. */
1531 mode3 = promote_function_mode (DECL_ARG_TYPE (arg), mode2, &uns3,
1532 TREE_TYPE (cfun->decl), 0);
1534 /* The mode of the register in which the argument is being passed. */
1535 mode4 = GET_MODE (reg);
1537 /* Eliminate sign extensions in the callee when:
1538 (a) A mode promotion has occurred; */
1539 if (mode1 == mode3)
1540 continue;
1541 /* (b) The mode of the register is the same as the mode of
1542 the argument as it is passed; */
1543 if (mode3 != mode4)
1544 continue;
1545 /* (c) There's no language level extension; */
1546 if (mode1 == mode2)
1548 /* (c.1) All callers are from the current compilation unit. If that's
1549 the case we don't have to rely on an ABI, we only have to know
1550 what we're generating right now, and we know that we will do the
1551 mode1 to mode2 promotion with the given sign. */
1552 else if (!strictly_local)
1553 continue;
1554 /* (c.2) The combination of the two promotions is useful. This is
1555 true when the signs match, or if the first promotion is unsigned.
1556 In the later case, (sign_extend (zero_extend x)) is the same as
1557 (zero_extend (zero_extend x)), so make sure to force UNS3 true. */
1558 else if (uns1)
1559 uns3 = true;
1560 else if (uns3)
1561 continue;
1563 /* Record that the value was promoted from mode1 to mode3,
1564 so that any sign extension at the head of the current
1565 function may be eliminated. */
1566 x = gen_rtx_CLOBBER (mode1, const0_rtx);
1567 x = gen_rtx_fmt_e ((uns3 ? ZERO_EXTEND : SIGN_EXTEND), mode3, x);
1568 record_value_for_reg (reg, first, x);
1572 /* Called via note_stores. If X is a pseudo that is narrower than
1573 HOST_BITS_PER_WIDE_INT and is being set, record what bits are known zero.
1575 If we are setting only a portion of X and we can't figure out what
1576 portion, assume all bits will be used since we don't know what will
1577 be happening.
1579 Similarly, set how many bits of X are known to be copies of the sign bit
1580 at all locations in the function. This is the smallest number implied
1581 by any set of X. */
1583 static void
1584 set_nonzero_bits_and_sign_copies (rtx x, const_rtx set, void *data)
1586 rtx insn = (rtx) data;
1587 unsigned int num;
1589 if (REG_P (x)
1590 && REGNO (x) >= FIRST_PSEUDO_REGISTER
1591 /* If this register is undefined at the start of the file, we can't
1592 say what its contents were. */
1593 && ! REGNO_REG_SET_P
1594 (DF_LR_IN (ENTRY_BLOCK_PTR->next_bb), REGNO (x))
1595 && HWI_COMPUTABLE_MODE_P (GET_MODE (x)))
1597 reg_stat_type *rsp = &reg_stat[REGNO (x)];
1599 if (set == 0 || GET_CODE (set) == CLOBBER)
1601 rsp->nonzero_bits = GET_MODE_MASK (GET_MODE (x));
1602 rsp->sign_bit_copies = 1;
1603 return;
1606 /* If this register is being initialized using itself, and the
1607 register is uninitialized in this basic block, and there are
1608 no LOG_LINKS which set the register, then part of the
1609 register is uninitialized. In that case we can't assume
1610 anything about the number of nonzero bits.
1612 ??? We could do better if we checked this in
1613 reg_{nonzero_bits,num_sign_bit_copies}_for_combine. Then we
1614 could avoid making assumptions about the insn which initially
1615 sets the register, while still using the information in other
1616 insns. We would have to be careful to check every insn
1617 involved in the combination. */
1619 if (insn
1620 && reg_referenced_p (x, PATTERN (insn))
1621 && !REGNO_REG_SET_P (DF_LR_IN (BLOCK_FOR_INSN (insn)),
1622 REGNO (x)))
1624 struct insn_link *link;
1626 FOR_EACH_LOG_LINK (link, insn)
1627 if (dead_or_set_p (link->insn, x))
1628 break;
1629 if (!link)
1631 rsp->nonzero_bits = GET_MODE_MASK (GET_MODE (x));
1632 rsp->sign_bit_copies = 1;
1633 return;
1637 /* If this is a complex assignment, see if we can convert it into a
1638 simple assignment. */
1639 set = expand_field_assignment (set);
1641 /* If this is a simple assignment, or we have a paradoxical SUBREG,
1642 set what we know about X. */
1644 if (SET_DEST (set) == x
1645 || (paradoxical_subreg_p (SET_DEST (set))
1646 && SUBREG_REG (SET_DEST (set)) == x))
1648 rtx src = SET_SRC (set);
1650 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
1651 /* If X is narrower than a word and SRC is a non-negative
1652 constant that would appear negative in the mode of X,
1653 sign-extend it for use in reg_stat[].nonzero_bits because some
1654 machines (maybe most) will actually do the sign-extension
1655 and this is the conservative approach.
1657 ??? For 2.5, try to tighten up the MD files in this regard
1658 instead of this kludge. */
1660 if (GET_MODE_PRECISION (GET_MODE (x)) < BITS_PER_WORD
1661 && CONST_INT_P (src)
1662 && INTVAL (src) > 0
1663 && val_signbit_known_set_p (GET_MODE (x), INTVAL (src)))
1664 src = GEN_INT (INTVAL (src) | ~GET_MODE_MASK (GET_MODE (x)));
1665 #endif
1667 /* Don't call nonzero_bits if it cannot change anything. */
1668 if (rsp->nonzero_bits != ~(unsigned HOST_WIDE_INT) 0)
1669 rsp->nonzero_bits |= nonzero_bits (src, nonzero_bits_mode);
1670 num = num_sign_bit_copies (SET_SRC (set), GET_MODE (x));
1671 if (rsp->sign_bit_copies == 0
1672 || rsp->sign_bit_copies > num)
1673 rsp->sign_bit_copies = num;
1675 else
1677 rsp->nonzero_bits = GET_MODE_MASK (GET_MODE (x));
1678 rsp->sign_bit_copies = 1;
1683 /* See if INSN can be combined into I3. PRED, PRED2, SUCC and SUCC2 are
1684 optionally insns that were previously combined into I3 or that will be
1685 combined into the merger of INSN and I3. The order is PRED, PRED2,
1686 INSN, SUCC, SUCC2, I3.
1688 Return 0 if the combination is not allowed for any reason.
1690 If the combination is allowed, *PDEST will be set to the single
1691 destination of INSN and *PSRC to the single source, and this function
1692 will return 1. */
1694 static int
1695 can_combine_p (rtx insn, rtx i3, rtx pred ATTRIBUTE_UNUSED,
1696 rtx pred2 ATTRIBUTE_UNUSED, rtx succ, rtx succ2,
1697 rtx *pdest, rtx *psrc)
1699 int i;
1700 const_rtx set = 0;
1701 rtx src, dest;
1702 rtx p;
1703 #ifdef AUTO_INC_DEC
1704 rtx link;
1705 #endif
1706 bool all_adjacent = true;
1707 int (*is_volatile_p) (const_rtx);
1709 if (succ)
1711 if (succ2)
1713 if (next_active_insn (succ2) != i3)
1714 all_adjacent = false;
1715 if (next_active_insn (succ) != succ2)
1716 all_adjacent = false;
1718 else if (next_active_insn (succ) != i3)
1719 all_adjacent = false;
1720 if (next_active_insn (insn) != succ)
1721 all_adjacent = false;
1723 else if (next_active_insn (insn) != i3)
1724 all_adjacent = false;
1726 /* Can combine only if previous insn is a SET of a REG, a SUBREG or CC0.
1727 or a PARALLEL consisting of such a SET and CLOBBERs.
1729 If INSN has CLOBBER parallel parts, ignore them for our processing.
1730 By definition, these happen during the execution of the insn. When it
1731 is merged with another insn, all bets are off. If they are, in fact,
1732 needed and aren't also supplied in I3, they may be added by
1733 recog_for_combine. Otherwise, it won't match.
1735 We can also ignore a SET whose SET_DEST is mentioned in a REG_UNUSED
1736 note.
1738 Get the source and destination of INSN. If more than one, can't
1739 combine. */
1741 if (GET_CODE (PATTERN (insn)) == SET)
1742 set = PATTERN (insn);
1743 else if (GET_CODE (PATTERN (insn)) == PARALLEL
1744 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
1746 for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
1748 rtx elt = XVECEXP (PATTERN (insn), 0, i);
1750 switch (GET_CODE (elt))
1752 /* This is important to combine floating point insns
1753 for the SH4 port. */
1754 case USE:
1755 /* Combining an isolated USE doesn't make sense.
1756 We depend here on combinable_i3pat to reject them. */
1757 /* The code below this loop only verifies that the inputs of
1758 the SET in INSN do not change. We call reg_set_between_p
1759 to verify that the REG in the USE does not change between
1760 I3 and INSN.
1761 If the USE in INSN was for a pseudo register, the matching
1762 insn pattern will likely match any register; combining this
1763 with any other USE would only be safe if we knew that the
1764 used registers have identical values, or if there was
1765 something to tell them apart, e.g. different modes. For
1766 now, we forgo such complicated tests and simply disallow
1767 combining of USES of pseudo registers with any other USE. */
1768 if (REG_P (XEXP (elt, 0))
1769 && GET_CODE (PATTERN (i3)) == PARALLEL)
1771 rtx i3pat = PATTERN (i3);
1772 int i = XVECLEN (i3pat, 0) - 1;
1773 unsigned int regno = REGNO (XEXP (elt, 0));
1777 rtx i3elt = XVECEXP (i3pat, 0, i);
1779 if (GET_CODE (i3elt) == USE
1780 && REG_P (XEXP (i3elt, 0))
1781 && (REGNO (XEXP (i3elt, 0)) == regno
1782 ? reg_set_between_p (XEXP (elt, 0),
1783 PREV_INSN (insn), i3)
1784 : regno >= FIRST_PSEUDO_REGISTER))
1785 return 0;
1787 while (--i >= 0);
1789 break;
1791 /* We can ignore CLOBBERs. */
1792 case CLOBBER:
1793 break;
1795 case SET:
1796 /* Ignore SETs whose result isn't used but not those that
1797 have side-effects. */
1798 if (find_reg_note (insn, REG_UNUSED, SET_DEST (elt))
1799 && insn_nothrow_p (insn)
1800 && !side_effects_p (elt))
1801 break;
1803 /* If we have already found a SET, this is a second one and
1804 so we cannot combine with this insn. */
1805 if (set)
1806 return 0;
1808 set = elt;
1809 break;
1811 default:
1812 /* Anything else means we can't combine. */
1813 return 0;
1817 if (set == 0
1818 /* If SET_SRC is an ASM_OPERANDS we can't throw away these CLOBBERs,
1819 so don't do anything with it. */
1820 || GET_CODE (SET_SRC (set)) == ASM_OPERANDS)
1821 return 0;
1823 else
1824 return 0;
1826 if (set == 0)
1827 return 0;
1829 /* The simplification in expand_field_assignment may call back to
1830 get_last_value, so set safe guard here. */
1831 subst_low_luid = DF_INSN_LUID (insn);
1833 set = expand_field_assignment (set);
1834 src = SET_SRC (set), dest = SET_DEST (set);
1836 /* Don't eliminate a store in the stack pointer. */
1837 if (dest == stack_pointer_rtx
1838 /* Don't combine with an insn that sets a register to itself if it has
1839 a REG_EQUAL note. This may be part of a LIBCALL sequence. */
1840 || (rtx_equal_p (src, dest) && find_reg_note (insn, REG_EQUAL, NULL_RTX))
1841 /* Can't merge an ASM_OPERANDS. */
1842 || GET_CODE (src) == ASM_OPERANDS
1843 /* Can't merge a function call. */
1844 || GET_CODE (src) == CALL
1845 /* Don't eliminate a function call argument. */
1846 || (CALL_P (i3)
1847 && (find_reg_fusage (i3, USE, dest)
1848 || (REG_P (dest)
1849 && REGNO (dest) < FIRST_PSEUDO_REGISTER
1850 && global_regs[REGNO (dest)])))
1851 /* Don't substitute into an incremented register. */
1852 || FIND_REG_INC_NOTE (i3, dest)
1853 || (succ && FIND_REG_INC_NOTE (succ, dest))
1854 || (succ2 && FIND_REG_INC_NOTE (succ2, dest))
1855 /* Don't substitute into a non-local goto, this confuses CFG. */
1856 || (JUMP_P (i3) && find_reg_note (i3, REG_NON_LOCAL_GOTO, NULL_RTX))
1857 /* Make sure that DEST is not used after SUCC but before I3. */
1858 || (!all_adjacent
1859 && ((succ2
1860 && (reg_used_between_p (dest, succ2, i3)
1861 || reg_used_between_p (dest, succ, succ2)))
1862 || (!succ2 && succ && reg_used_between_p (dest, succ, i3))))
1863 /* Make sure that the value that is to be substituted for the register
1864 does not use any registers whose values alter in between. However,
1865 If the insns are adjacent, a use can't cross a set even though we
1866 think it might (this can happen for a sequence of insns each setting
1867 the same destination; last_set of that register might point to
1868 a NOTE). If INSN has a REG_EQUIV note, the register is always
1869 equivalent to the memory so the substitution is valid even if there
1870 are intervening stores. Also, don't move a volatile asm or
1871 UNSPEC_VOLATILE across any other insns. */
1872 || (! all_adjacent
1873 && (((!MEM_P (src)
1874 || ! find_reg_note (insn, REG_EQUIV, src))
1875 && use_crosses_set_p (src, DF_INSN_LUID (insn)))
1876 || (GET_CODE (src) == ASM_OPERANDS && MEM_VOLATILE_P (src))
1877 || GET_CODE (src) == UNSPEC_VOLATILE))
1878 /* Don't combine across a CALL_INSN, because that would possibly
1879 change whether the life span of some REGs crosses calls or not,
1880 and it is a pain to update that information.
1881 Exception: if source is a constant, moving it later can't hurt.
1882 Accept that as a special case. */
1883 || (DF_INSN_LUID (insn) < last_call_luid && ! CONSTANT_P (src)))
1884 return 0;
1886 /* DEST must either be a REG or CC0. */
1887 if (REG_P (dest))
1889 /* If register alignment is being enforced for multi-word items in all
1890 cases except for parameters, it is possible to have a register copy
1891 insn referencing a hard register that is not allowed to contain the
1892 mode being copied and which would not be valid as an operand of most
1893 insns. Eliminate this problem by not combining with such an insn.
1895 Also, on some machines we don't want to extend the life of a hard
1896 register. */
1898 if (REG_P (src)
1899 && ((REGNO (dest) < FIRST_PSEUDO_REGISTER
1900 && ! HARD_REGNO_MODE_OK (REGNO (dest), GET_MODE (dest)))
1901 /* Don't extend the life of a hard register unless it is
1902 user variable (if we have few registers) or it can't
1903 fit into the desired register (meaning something special
1904 is going on).
1905 Also avoid substituting a return register into I3, because
1906 reload can't handle a conflict with constraints of other
1907 inputs. */
1908 || (REGNO (src) < FIRST_PSEUDO_REGISTER
1909 && ! HARD_REGNO_MODE_OK (REGNO (src), GET_MODE (src)))))
1910 return 0;
1912 else if (GET_CODE (dest) != CC0)
1913 return 0;
1916 if (GET_CODE (PATTERN (i3)) == PARALLEL)
1917 for (i = XVECLEN (PATTERN (i3), 0) - 1; i >= 0; i--)
1918 if (GET_CODE (XVECEXP (PATTERN (i3), 0, i)) == CLOBBER)
1920 /* Don't substitute for a register intended as a clobberable
1921 operand. */
1922 rtx reg = XEXP (XVECEXP (PATTERN (i3), 0, i), 0);
1923 if (rtx_equal_p (reg, dest))
1924 return 0;
1926 /* If the clobber represents an earlyclobber operand, we must not
1927 substitute an expression containing the clobbered register.
1928 As we do not analyze the constraint strings here, we have to
1929 make the conservative assumption. However, if the register is
1930 a fixed hard reg, the clobber cannot represent any operand;
1931 we leave it up to the machine description to either accept or
1932 reject use-and-clobber patterns. */
1933 if (!REG_P (reg)
1934 || REGNO (reg) >= FIRST_PSEUDO_REGISTER
1935 || !fixed_regs[REGNO (reg)])
1936 if (reg_overlap_mentioned_p (reg, src))
1937 return 0;
1940 /* If INSN contains anything volatile, or is an `asm' (whether volatile
1941 or not), reject, unless nothing volatile comes between it and I3 */
1943 if (GET_CODE (src) == ASM_OPERANDS || volatile_refs_p (src))
1945 /* Make sure neither succ nor succ2 contains a volatile reference. */
1946 if (succ2 != 0 && volatile_refs_p (PATTERN (succ2)))
1947 return 0;
1948 if (succ != 0 && volatile_refs_p (PATTERN (succ)))
1949 return 0;
1950 /* We'll check insns between INSN and I3 below. */
1953 /* If INSN is an asm, and DEST is a hard register, reject, since it has
1954 to be an explicit register variable, and was chosen for a reason. */
1956 if (GET_CODE (src) == ASM_OPERANDS
1957 && REG_P (dest) && REGNO (dest) < FIRST_PSEUDO_REGISTER)
1958 return 0;
1960 /* If INSN contains volatile references (specifically volatile MEMs),
1961 we cannot combine across any other volatile references.
1962 Even if INSN doesn't contain volatile references, any intervening
1963 volatile insn might affect machine state. */
1965 is_volatile_p = volatile_refs_p (PATTERN (insn))
1966 ? volatile_refs_p
1967 : volatile_insn_p;
1969 for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1970 if (INSN_P (p) && p != succ && p != succ2 && is_volatile_p (PATTERN (p)))
1971 return 0;
1973 /* If INSN contains an autoincrement or autodecrement, make sure that
1974 register is not used between there and I3, and not already used in
1975 I3 either. Neither must it be used in PRED or SUCC, if they exist.
1976 Also insist that I3 not be a jump; if it were one
1977 and the incremented register were spilled, we would lose. */
1979 #ifdef AUTO_INC_DEC
1980 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1981 if (REG_NOTE_KIND (link) == REG_INC
1982 && (JUMP_P (i3)
1983 || reg_used_between_p (XEXP (link, 0), insn, i3)
1984 || (pred != NULL_RTX
1985 && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (pred)))
1986 || (pred2 != NULL_RTX
1987 && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (pred2)))
1988 || (succ != NULL_RTX
1989 && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (succ)))
1990 || (succ2 != NULL_RTX
1991 && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (succ2)))
1992 || reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i3))))
1993 return 0;
1994 #endif
1996 #ifdef HAVE_cc0
1997 /* Don't combine an insn that follows a CC0-setting insn.
1998 An insn that uses CC0 must not be separated from the one that sets it.
1999 We do, however, allow I2 to follow a CC0-setting insn if that insn
2000 is passed as I1; in that case it will be deleted also.
2001 We also allow combining in this case if all the insns are adjacent
2002 because that would leave the two CC0 insns adjacent as well.
2003 It would be more logical to test whether CC0 occurs inside I1 or I2,
2004 but that would be much slower, and this ought to be equivalent. */
2006 p = prev_nonnote_insn (insn);
2007 if (p && p != pred && NONJUMP_INSN_P (p) && sets_cc0_p (PATTERN (p))
2008 && ! all_adjacent)
2009 return 0;
2010 #endif
2012 /* If we get here, we have passed all the tests and the combination is
2013 to be allowed. */
2015 *pdest = dest;
2016 *psrc = src;
2018 return 1;
2021 /* LOC is the location within I3 that contains its pattern or the component
2022 of a PARALLEL of the pattern. We validate that it is valid for combining.
2024 One problem is if I3 modifies its output, as opposed to replacing it
2025 entirely, we can't allow the output to contain I2DEST, I1DEST or I0DEST as
2026 doing so would produce an insn that is not equivalent to the original insns.
2028 Consider:
2030 (set (reg:DI 101) (reg:DI 100))
2031 (set (subreg:SI (reg:DI 101) 0) <foo>)
2033 This is NOT equivalent to:
2035 (parallel [(set (subreg:SI (reg:DI 100) 0) <foo>)
2036 (set (reg:DI 101) (reg:DI 100))])
2038 Not only does this modify 100 (in which case it might still be valid
2039 if 100 were dead in I2), it sets 101 to the ORIGINAL value of 100.
2041 We can also run into a problem if I2 sets a register that I1
2042 uses and I1 gets directly substituted into I3 (not via I2). In that
2043 case, we would be getting the wrong value of I2DEST into I3, so we
2044 must reject the combination. This case occurs when I2 and I1 both
2045 feed into I3, rather than when I1 feeds into I2, which feeds into I3.
2046 If I1_NOT_IN_SRC is nonzero, it means that finding I1 in the source
2047 of a SET must prevent combination from occurring. The same situation
2048 can occur for I0, in which case I0_NOT_IN_SRC is set.
2050 Before doing the above check, we first try to expand a field assignment
2051 into a set of logical operations.
2053 If PI3_DEST_KILLED is nonzero, it is a pointer to a location in which
2054 we place a register that is both set and used within I3. If more than one
2055 such register is detected, we fail.
2057 Return 1 if the combination is valid, zero otherwise. */
2059 static int
2060 combinable_i3pat (rtx i3, rtx *loc, rtx i2dest, rtx i1dest, rtx i0dest,
2061 int i1_not_in_src, int i0_not_in_src, rtx *pi3dest_killed)
2063 rtx x = *loc;
2065 if (GET_CODE (x) == SET)
2067 rtx set = x ;
2068 rtx dest = SET_DEST (set);
2069 rtx src = SET_SRC (set);
2070 rtx inner_dest = dest;
2071 rtx subdest;
2073 while (GET_CODE (inner_dest) == STRICT_LOW_PART
2074 || GET_CODE (inner_dest) == SUBREG
2075 || GET_CODE (inner_dest) == ZERO_EXTRACT)
2076 inner_dest = XEXP (inner_dest, 0);
2078 /* Check for the case where I3 modifies its output, as discussed
2079 above. We don't want to prevent pseudos from being combined
2080 into the address of a MEM, so only prevent the combination if
2081 i1 or i2 set the same MEM. */
2082 if ((inner_dest != dest &&
2083 (!MEM_P (inner_dest)
2084 || rtx_equal_p (i2dest, inner_dest)
2085 || (i1dest && rtx_equal_p (i1dest, inner_dest))
2086 || (i0dest && rtx_equal_p (i0dest, inner_dest)))
2087 && (reg_overlap_mentioned_p (i2dest, inner_dest)
2088 || (i1dest && reg_overlap_mentioned_p (i1dest, inner_dest))
2089 || (i0dest && reg_overlap_mentioned_p (i0dest, inner_dest))))
2091 /* This is the same test done in can_combine_p except we can't test
2092 all_adjacent; we don't have to, since this instruction will stay
2093 in place, thus we are not considering increasing the lifetime of
2094 INNER_DEST.
2096 Also, if this insn sets a function argument, combining it with
2097 something that might need a spill could clobber a previous
2098 function argument; the all_adjacent test in can_combine_p also
2099 checks this; here, we do a more specific test for this case. */
2101 || (REG_P (inner_dest)
2102 && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
2103 && (! HARD_REGNO_MODE_OK (REGNO (inner_dest),
2104 GET_MODE (inner_dest))))
2105 || (i1_not_in_src && reg_overlap_mentioned_p (i1dest, src))
2106 || (i0_not_in_src && reg_overlap_mentioned_p (i0dest, src)))
2107 return 0;
2109 /* If DEST is used in I3, it is being killed in this insn, so
2110 record that for later. We have to consider paradoxical
2111 subregs here, since they kill the whole register, but we
2112 ignore partial subregs, STRICT_LOW_PART, etc.
2113 Never add REG_DEAD notes for the FRAME_POINTER_REGNUM or the
2114 STACK_POINTER_REGNUM, since these are always considered to be
2115 live. Similarly for ARG_POINTER_REGNUM if it is fixed. */
2116 subdest = dest;
2117 if (GET_CODE (subdest) == SUBREG
2118 && (GET_MODE_SIZE (GET_MODE (subdest))
2119 >= GET_MODE_SIZE (GET_MODE (SUBREG_REG (subdest)))))
2120 subdest = SUBREG_REG (subdest);
2121 if (pi3dest_killed
2122 && REG_P (subdest)
2123 && reg_referenced_p (subdest, PATTERN (i3))
2124 && REGNO (subdest) != FRAME_POINTER_REGNUM
2125 #if !HARD_FRAME_POINTER_IS_FRAME_POINTER
2126 && REGNO (subdest) != HARD_FRAME_POINTER_REGNUM
2127 #endif
2128 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
2129 && (REGNO (subdest) != ARG_POINTER_REGNUM
2130 || ! fixed_regs [REGNO (subdest)])
2131 #endif
2132 && REGNO (subdest) != STACK_POINTER_REGNUM)
2134 if (*pi3dest_killed)
2135 return 0;
2137 *pi3dest_killed = subdest;
2141 else if (GET_CODE (x) == PARALLEL)
2143 int i;
2145 for (i = 0; i < XVECLEN (x, 0); i++)
2146 if (! combinable_i3pat (i3, &XVECEXP (x, 0, i), i2dest, i1dest, i0dest,
2147 i1_not_in_src, i0_not_in_src, pi3dest_killed))
2148 return 0;
2151 return 1;
2154 /* Return 1 if X is an arithmetic expression that contains a multiplication
2155 and division. We don't count multiplications by powers of two here. */
2157 static int
2158 contains_muldiv (rtx x)
2160 switch (GET_CODE (x))
2162 case MOD: case DIV: case UMOD: case UDIV:
2163 return 1;
2165 case MULT:
2166 return ! (CONST_INT_P (XEXP (x, 1))
2167 && exact_log2 (UINTVAL (XEXP (x, 1))) >= 0);
2168 default:
2169 if (BINARY_P (x))
2170 return contains_muldiv (XEXP (x, 0))
2171 || contains_muldiv (XEXP (x, 1));
2173 if (UNARY_P (x))
2174 return contains_muldiv (XEXP (x, 0));
2176 return 0;
2180 /* Determine whether INSN can be used in a combination. Return nonzero if
2181 not. This is used in try_combine to detect early some cases where we
2182 can't perform combinations. */
2184 static int
2185 cant_combine_insn_p (rtx insn)
2187 rtx set;
2188 rtx src, dest;
2190 /* If this isn't really an insn, we can't do anything.
2191 This can occur when flow deletes an insn that it has merged into an
2192 auto-increment address. */
2193 if (! INSN_P (insn))
2194 return 1;
2196 /* Never combine loads and stores involving hard regs that are likely
2197 to be spilled. The register allocator can usually handle such
2198 reg-reg moves by tying. If we allow the combiner to make
2199 substitutions of likely-spilled regs, reload might die.
2200 As an exception, we allow combinations involving fixed regs; these are
2201 not available to the register allocator so there's no risk involved. */
2203 set = single_set (insn);
2204 if (! set)
2205 return 0;
2206 src = SET_SRC (set);
2207 dest = SET_DEST (set);
2208 if (GET_CODE (src) == SUBREG)
2209 src = SUBREG_REG (src);
2210 if (GET_CODE (dest) == SUBREG)
2211 dest = SUBREG_REG (dest);
2212 if (REG_P (src) && REG_P (dest)
2213 && ((HARD_REGISTER_P (src)
2214 && ! TEST_HARD_REG_BIT (fixed_reg_set, REGNO (src))
2215 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (src))))
2216 || (HARD_REGISTER_P (dest)
2217 && ! TEST_HARD_REG_BIT (fixed_reg_set, REGNO (dest))
2218 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (dest))))))
2219 return 1;
2221 return 0;
2224 struct likely_spilled_retval_info
2226 unsigned regno, nregs;
2227 unsigned mask;
2230 /* Called via note_stores by likely_spilled_retval_p. Remove from info->mask
2231 hard registers that are known to be written to / clobbered in full. */
2232 static void
2233 likely_spilled_retval_1 (rtx x, const_rtx set, void *data)
2235 struct likely_spilled_retval_info *const info =
2236 (struct likely_spilled_retval_info *) data;
2237 unsigned regno, nregs;
2238 unsigned new_mask;
2240 if (!REG_P (XEXP (set, 0)))
2241 return;
2242 regno = REGNO (x);
2243 if (regno >= info->regno + info->nregs)
2244 return;
2245 nregs = hard_regno_nregs[regno][GET_MODE (x)];
2246 if (regno + nregs <= info->regno)
2247 return;
2248 new_mask = (2U << (nregs - 1)) - 1;
2249 if (regno < info->regno)
2250 new_mask >>= info->regno - regno;
2251 else
2252 new_mask <<= regno - info->regno;
2253 info->mask &= ~new_mask;
2256 /* Return nonzero iff part of the return value is live during INSN, and
2257 it is likely spilled. This can happen when more than one insn is needed
2258 to copy the return value, e.g. when we consider to combine into the
2259 second copy insn for a complex value. */
2261 static int
2262 likely_spilled_retval_p (rtx insn)
2264 rtx use = BB_END (this_basic_block);
2265 rtx reg, p;
2266 unsigned regno, nregs;
2267 /* We assume here that no machine mode needs more than
2268 32 hard registers when the value overlaps with a register
2269 for which TARGET_FUNCTION_VALUE_REGNO_P is true. */
2270 unsigned mask;
2271 struct likely_spilled_retval_info info;
2273 if (!NONJUMP_INSN_P (use) || GET_CODE (PATTERN (use)) != USE || insn == use)
2274 return 0;
2275 reg = XEXP (PATTERN (use), 0);
2276 if (!REG_P (reg) || !targetm.calls.function_value_regno_p (REGNO (reg)))
2277 return 0;
2278 regno = REGNO (reg);
2279 nregs = hard_regno_nregs[regno][GET_MODE (reg)];
2280 if (nregs == 1)
2281 return 0;
2282 mask = (2U << (nregs - 1)) - 1;
2284 /* Disregard parts of the return value that are set later. */
2285 info.regno = regno;
2286 info.nregs = nregs;
2287 info.mask = mask;
2288 for (p = PREV_INSN (use); info.mask && p != insn; p = PREV_INSN (p))
2289 if (INSN_P (p))
2290 note_stores (PATTERN (p), likely_spilled_retval_1, &info);
2291 mask = info.mask;
2293 /* Check if any of the (probably) live return value registers is
2294 likely spilled. */
2295 nregs --;
2298 if ((mask & 1 << nregs)
2299 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (regno + nregs)))
2300 return 1;
2301 } while (nregs--);
2302 return 0;
2305 /* Adjust INSN after we made a change to its destination.
2307 Changing the destination can invalidate notes that say something about
2308 the results of the insn and a LOG_LINK pointing to the insn. */
2310 static void
2311 adjust_for_new_dest (rtx insn)
2313 /* For notes, be conservative and simply remove them. */
2314 remove_reg_equal_equiv_notes (insn);
2316 /* The new insn will have a destination that was previously the destination
2317 of an insn just above it. Call distribute_links to make a LOG_LINK from
2318 the next use of that destination. */
2319 distribute_links (alloc_insn_link (insn, NULL));
2321 df_insn_rescan (insn);
2324 /* Return TRUE if combine can reuse reg X in mode MODE.
2325 ADDED_SETS is nonzero if the original set is still required. */
2326 static bool
2327 can_change_dest_mode (rtx x, int added_sets, enum machine_mode mode)
2329 unsigned int regno;
2331 if (!REG_P(x))
2332 return false;
2334 regno = REGNO (x);
2335 /* Allow hard registers if the new mode is legal, and occupies no more
2336 registers than the old mode. */
2337 if (regno < FIRST_PSEUDO_REGISTER)
2338 return (HARD_REGNO_MODE_OK (regno, mode)
2339 && (hard_regno_nregs[regno][GET_MODE (x)]
2340 >= hard_regno_nregs[regno][mode]));
2342 /* Or a pseudo that is only used once. */
2343 return (REG_N_SETS (regno) == 1 && !added_sets
2344 && !REG_USERVAR_P (x));
2348 /* Check whether X, the destination of a set, refers to part of
2349 the register specified by REG. */
2351 static bool
2352 reg_subword_p (rtx x, rtx reg)
2354 /* Check that reg is an integer mode register. */
2355 if (!REG_P (reg) || GET_MODE_CLASS (GET_MODE (reg)) != MODE_INT)
2356 return false;
2358 if (GET_CODE (x) == STRICT_LOW_PART
2359 || GET_CODE (x) == ZERO_EXTRACT)
2360 x = XEXP (x, 0);
2362 return GET_CODE (x) == SUBREG
2363 && SUBREG_REG (x) == reg
2364 && GET_MODE_CLASS (GET_MODE (x)) == MODE_INT;
2367 /* Delete the unconditional jump INSN and adjust the CFG correspondingly.
2368 Note that the INSN should be deleted *after* removing dead edges, so
2369 that the kept edge is the fallthrough edge for a (set (pc) (pc))
2370 but not for a (set (pc) (label_ref FOO)). */
2372 static void
2373 update_cfg_for_uncondjump (rtx insn)
2375 basic_block bb = BLOCK_FOR_INSN (insn);
2376 gcc_assert (BB_END (bb) == insn);
2378 purge_dead_edges (bb);
2380 delete_insn (insn);
2381 if (EDGE_COUNT (bb->succs) == 1)
2383 rtx insn;
2385 single_succ_edge (bb)->flags |= EDGE_FALLTHRU;
2387 /* Remove barriers from the footer if there are any. */
2388 for (insn = BB_FOOTER (bb); insn; insn = NEXT_INSN (insn))
2389 if (BARRIER_P (insn))
2391 if (PREV_INSN (insn))
2392 NEXT_INSN (PREV_INSN (insn)) = NEXT_INSN (insn);
2393 else
2394 BB_FOOTER (bb) = NEXT_INSN (insn);
2395 if (NEXT_INSN (insn))
2396 PREV_INSN (NEXT_INSN (insn)) = PREV_INSN (insn);
2398 else if (LABEL_P (insn))
2399 break;
2403 /* Try to combine the insns I0, I1 and I2 into I3.
2404 Here I0, I1 and I2 appear earlier than I3.
2405 I0 and I1 can be zero; then we combine just I2 into I3, or I1 and I2 into
2408 If we are combining more than two insns and the resulting insn is not
2409 recognized, try splitting it into two insns. If that happens, I2 and I3
2410 are retained and I1/I0 are pseudo-deleted by turning them into a NOTE.
2411 Otherwise, I0, I1 and I2 are pseudo-deleted.
2413 Return 0 if the combination does not work. Then nothing is changed.
2414 If we did the combination, return the insn at which combine should
2415 resume scanning.
2417 Set NEW_DIRECT_JUMP_P to a nonzero value if try_combine creates a
2418 new direct jump instruction.
2420 LAST_COMBINED_INSN is either I3, or some insn after I3 that has
2421 been I3 passed to an earlier try_combine within the same basic
2422 block. */
2424 static rtx
2425 try_combine (rtx i3, rtx i2, rtx i1, rtx i0, int *new_direct_jump_p,
2426 rtx last_combined_insn)
2428 /* New patterns for I3 and I2, respectively. */
2429 rtx newpat, newi2pat = 0;
2430 rtvec newpat_vec_with_clobbers = 0;
2431 int substed_i2 = 0, substed_i1 = 0, substed_i0 = 0;
2432 /* Indicates need to preserve SET in I0, I1 or I2 in I3 if it is not
2433 dead. */
2434 int added_sets_0, added_sets_1, added_sets_2;
2435 /* Total number of SETs to put into I3. */
2436 int total_sets;
2437 /* Nonzero if I2's or I1's body now appears in I3. */
2438 int i2_is_used = 0, i1_is_used = 0;
2439 /* INSN_CODEs for new I3, new I2, and user of condition code. */
2440 int insn_code_number, i2_code_number = 0, other_code_number = 0;
2441 /* Contains I3 if the destination of I3 is used in its source, which means
2442 that the old life of I3 is being killed. If that usage is placed into
2443 I2 and not in I3, a REG_DEAD note must be made. */
2444 rtx i3dest_killed = 0;
2445 /* SET_DEST and SET_SRC of I2, I1 and I0. */
2446 rtx i2dest = 0, i2src = 0, i1dest = 0, i1src = 0, i0dest = 0, i0src = 0;
2447 /* Copy of SET_SRC of I1 and I0, if needed. */
2448 rtx i1src_copy = 0, i0src_copy = 0, i0src_copy2 = 0;
2449 /* Set if I2DEST was reused as a scratch register. */
2450 bool i2scratch = false;
2451 /* The PATTERNs of I0, I1, and I2, or a copy of them in certain cases. */
2452 rtx i0pat = 0, i1pat = 0, i2pat = 0;
2453 /* Indicates if I2DEST or I1DEST is in I2SRC or I1_SRC. */
2454 int i2dest_in_i2src = 0, i1dest_in_i1src = 0, i2dest_in_i1src = 0;
2455 int i0dest_in_i0src = 0, i1dest_in_i0src = 0, i2dest_in_i0src = 0;
2456 int i2dest_killed = 0, i1dest_killed = 0, i0dest_killed = 0;
2457 int i1_feeds_i2_n = 0, i0_feeds_i2_n = 0, i0_feeds_i1_n = 0;
2458 /* Notes that must be added to REG_NOTES in I3 and I2. */
2459 rtx new_i3_notes, new_i2_notes;
2460 /* Notes that we substituted I3 into I2 instead of the normal case. */
2461 int i3_subst_into_i2 = 0;
2462 /* Notes that I1, I2 or I3 is a MULT operation. */
2463 int have_mult = 0;
2464 int swap_i2i3 = 0;
2465 int changed_i3_dest = 0;
2467 int maxreg;
2468 rtx temp;
2469 struct insn_link *link;
2470 rtx other_pat = 0;
2471 rtx new_other_notes;
2472 int i;
2474 /* Only try four-insn combinations when there's high likelihood of
2475 success. Look for simple insns, such as loads of constants or
2476 binary operations involving a constant. */
2477 if (i0)
2479 int i;
2480 int ngood = 0;
2481 int nshift = 0;
2483 if (!flag_expensive_optimizations)
2484 return 0;
2486 for (i = 0; i < 4; i++)
2488 rtx insn = i == 0 ? i0 : i == 1 ? i1 : i == 2 ? i2 : i3;
2489 rtx set = single_set (insn);
2490 rtx src;
2491 if (!set)
2492 continue;
2493 src = SET_SRC (set);
2494 if (CONSTANT_P (src))
2496 ngood += 2;
2497 break;
2499 else if (BINARY_P (src) && CONSTANT_P (XEXP (src, 1)))
2500 ngood++;
2501 else if (GET_CODE (src) == ASHIFT || GET_CODE (src) == ASHIFTRT
2502 || GET_CODE (src) == LSHIFTRT)
2503 nshift++;
2505 if (ngood < 2 && nshift < 2)
2506 return 0;
2509 /* Exit early if one of the insns involved can't be used for
2510 combinations. */
2511 if (cant_combine_insn_p (i3)
2512 || cant_combine_insn_p (i2)
2513 || (i1 && cant_combine_insn_p (i1))
2514 || (i0 && cant_combine_insn_p (i0))
2515 || likely_spilled_retval_p (i3))
2516 return 0;
2518 combine_attempts++;
2519 undobuf.other_insn = 0;
2521 /* Reset the hard register usage information. */
2522 CLEAR_HARD_REG_SET (newpat_used_regs);
2524 if (dump_file && (dump_flags & TDF_DETAILS))
2526 if (i0)
2527 fprintf (dump_file, "\nTrying %d, %d, %d -> %d:\n",
2528 INSN_UID (i0), INSN_UID (i1), INSN_UID (i2), INSN_UID (i3));
2529 else if (i1)
2530 fprintf (dump_file, "\nTrying %d, %d -> %d:\n",
2531 INSN_UID (i1), INSN_UID (i2), INSN_UID (i3));
2532 else
2533 fprintf (dump_file, "\nTrying %d -> %d:\n",
2534 INSN_UID (i2), INSN_UID (i3));
2537 /* If multiple insns feed into one of I2 or I3, they can be in any
2538 order. To simplify the code below, reorder them in sequence. */
2539 if (i0 && DF_INSN_LUID (i0) > DF_INSN_LUID (i2))
2540 temp = i2, i2 = i0, i0 = temp;
2541 if (i0 && DF_INSN_LUID (i0) > DF_INSN_LUID (i1))
2542 temp = i1, i1 = i0, i0 = temp;
2543 if (i1 && DF_INSN_LUID (i1) > DF_INSN_LUID (i2))
2544 temp = i1, i1 = i2, i2 = temp;
2546 added_links_insn = 0;
2548 /* First check for one important special case that the code below will
2549 not handle. Namely, the case where I1 is zero, I2 is a PARALLEL
2550 and I3 is a SET whose SET_SRC is a SET_DEST in I2. In that case,
2551 we may be able to replace that destination with the destination of I3.
2552 This occurs in the common code where we compute both a quotient and
2553 remainder into a structure, in which case we want to do the computation
2554 directly into the structure to avoid register-register copies.
2556 Note that this case handles both multiple sets in I2 and also cases
2557 where I2 has a number of CLOBBERs inside the PARALLEL.
2559 We make very conservative checks below and only try to handle the
2560 most common cases of this. For example, we only handle the case
2561 where I2 and I3 are adjacent to avoid making difficult register
2562 usage tests. */
2564 if (i1 == 0 && NONJUMP_INSN_P (i3) && GET_CODE (PATTERN (i3)) == SET
2565 && REG_P (SET_SRC (PATTERN (i3)))
2566 && REGNO (SET_SRC (PATTERN (i3))) >= FIRST_PSEUDO_REGISTER
2567 && find_reg_note (i3, REG_DEAD, SET_SRC (PATTERN (i3)))
2568 && GET_CODE (PATTERN (i2)) == PARALLEL
2569 && ! side_effects_p (SET_DEST (PATTERN (i3)))
2570 /* If the dest of I3 is a ZERO_EXTRACT or STRICT_LOW_PART, the code
2571 below would need to check what is inside (and reg_overlap_mentioned_p
2572 doesn't support those codes anyway). Don't allow those destinations;
2573 the resulting insn isn't likely to be recognized anyway. */
2574 && GET_CODE (SET_DEST (PATTERN (i3))) != ZERO_EXTRACT
2575 && GET_CODE (SET_DEST (PATTERN (i3))) != STRICT_LOW_PART
2576 && ! reg_overlap_mentioned_p (SET_SRC (PATTERN (i3)),
2577 SET_DEST (PATTERN (i3)))
2578 && next_active_insn (i2) == i3)
2580 rtx p2 = PATTERN (i2);
2582 /* Make sure that the destination of I3,
2583 which we are going to substitute into one output of I2,
2584 is not used within another output of I2. We must avoid making this:
2585 (parallel [(set (mem (reg 69)) ...)
2586 (set (reg 69) ...)])
2587 which is not well-defined as to order of actions.
2588 (Besides, reload can't handle output reloads for this.)
2590 The problem can also happen if the dest of I3 is a memory ref,
2591 if another dest in I2 is an indirect memory ref. */
2592 for (i = 0; i < XVECLEN (p2, 0); i++)
2593 if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
2594 || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
2595 && reg_overlap_mentioned_p (SET_DEST (PATTERN (i3)),
2596 SET_DEST (XVECEXP (p2, 0, i))))
2597 break;
2599 if (i == XVECLEN (p2, 0))
2600 for (i = 0; i < XVECLEN (p2, 0); i++)
2601 if (GET_CODE (XVECEXP (p2, 0, i)) == SET
2602 && SET_DEST (XVECEXP (p2, 0, i)) == SET_SRC (PATTERN (i3)))
2604 combine_merges++;
2606 subst_insn = i3;
2607 subst_low_luid = DF_INSN_LUID (i2);
2609 added_sets_2 = added_sets_1 = added_sets_0 = 0;
2610 i2src = SET_SRC (XVECEXP (p2, 0, i));
2611 i2dest = SET_DEST (XVECEXP (p2, 0, i));
2612 i2dest_killed = dead_or_set_p (i2, i2dest);
2614 /* Replace the dest in I2 with our dest and make the resulting
2615 insn the new pattern for I3. Then skip to where we validate
2616 the pattern. Everything was set up above. */
2617 SUBST (SET_DEST (XVECEXP (p2, 0, i)), SET_DEST (PATTERN (i3)));
2618 newpat = p2;
2619 i3_subst_into_i2 = 1;
2620 goto validate_replacement;
2624 /* If I2 is setting a pseudo to a constant and I3 is setting some
2625 sub-part of it to another constant, merge them by making a new
2626 constant. */
2627 if (i1 == 0
2628 && (temp = single_set (i2)) != 0
2629 && CONST_SCALAR_INT_P (SET_SRC (temp))
2630 && GET_CODE (PATTERN (i3)) == SET
2631 && CONST_SCALAR_INT_P (SET_SRC (PATTERN (i3)))
2632 && reg_subword_p (SET_DEST (PATTERN (i3)), SET_DEST (temp)))
2634 rtx dest = SET_DEST (PATTERN (i3));
2635 int offset = -1;
2636 int width = 0;
2638 /* There are not explicit tests to make sure that this is not a
2639 float, but there is code here that would not be correct if it
2640 was. */
2641 gcc_assert (GET_MODE_CLASS (GET_MODE (SET_SRC (temp))) != MODE_FLOAT);
2643 if (GET_CODE (dest) == ZERO_EXTRACT)
2645 if (CONST_INT_P (XEXP (dest, 1))
2646 && CONST_INT_P (XEXP (dest, 2)))
2648 width = INTVAL (XEXP (dest, 1));
2649 offset = INTVAL (XEXP (dest, 2));
2650 dest = XEXP (dest, 0);
2651 if (BITS_BIG_ENDIAN)
2652 offset = GET_MODE_PRECISION (GET_MODE (dest)) - width - offset;
2655 else
2657 if (GET_CODE (dest) == STRICT_LOW_PART)
2658 dest = XEXP (dest, 0);
2659 width = GET_MODE_PRECISION (GET_MODE (dest));
2660 offset = 0;
2663 if (offset >= 0)
2665 /* If this is the low part, we're done. */
2666 if (subreg_lowpart_p (dest))
2668 /* Handle the case where inner is twice the size of outer. */
2669 else if (GET_MODE_PRECISION (GET_MODE (SET_DEST (temp)))
2670 == 2 * GET_MODE_PRECISION (GET_MODE (dest)))
2671 offset += GET_MODE_PRECISION (GET_MODE (dest));
2672 /* Otherwise give up for now. */
2673 else
2674 offset = -1;
2677 if (offset >= 0
2678 && (GET_MODE_PRECISION (GET_MODE (SET_DEST (temp)))
2679 <= HOST_BITS_PER_DOUBLE_INT))
2681 double_int m, o, i;
2682 rtx inner = SET_SRC (PATTERN (i3));
2683 rtx outer = SET_SRC (temp);
2685 o = rtx_to_double_int (outer);
2686 i = rtx_to_double_int (inner);
2688 m = double_int::mask (width);
2689 i &= m;
2690 m = m.llshift (offset, HOST_BITS_PER_DOUBLE_INT);
2691 i = i.llshift (offset, HOST_BITS_PER_DOUBLE_INT);
2692 o = o.and_not (m) | i;
2694 combine_merges++;
2695 subst_insn = i3;
2696 subst_low_luid = DF_INSN_LUID (i2);
2697 added_sets_2 = added_sets_1 = added_sets_0 = 0;
2698 i2dest = SET_DEST (temp);
2699 i2dest_killed = dead_or_set_p (i2, i2dest);
2701 /* Replace the source in I2 with the new constant and make the
2702 resulting insn the new pattern for I3. Then skip to where we
2703 validate the pattern. Everything was set up above. */
2704 SUBST (SET_SRC (temp),
2705 immed_double_int_const (o, GET_MODE (SET_DEST (temp))));
2707 newpat = PATTERN (i2);
2709 /* The dest of I3 has been replaced with the dest of I2. */
2710 changed_i3_dest = 1;
2711 goto validate_replacement;
2715 #ifndef HAVE_cc0
2716 /* If we have no I1 and I2 looks like:
2717 (parallel [(set (reg:CC X) (compare:CC OP (const_int 0)))
2718 (set Y OP)])
2719 make up a dummy I1 that is
2720 (set Y OP)
2721 and change I2 to be
2722 (set (reg:CC X) (compare:CC Y (const_int 0)))
2724 (We can ignore any trailing CLOBBERs.)
2726 This undoes a previous combination and allows us to match a branch-and-
2727 decrement insn. */
2729 if (i1 == 0 && GET_CODE (PATTERN (i2)) == PARALLEL
2730 && XVECLEN (PATTERN (i2), 0) >= 2
2731 && GET_CODE (XVECEXP (PATTERN (i2), 0, 0)) == SET
2732 && (GET_MODE_CLASS (GET_MODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 0))))
2733 == MODE_CC)
2734 && GET_CODE (SET_SRC (XVECEXP (PATTERN (i2), 0, 0))) == COMPARE
2735 && XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 1) == const0_rtx
2736 && GET_CODE (XVECEXP (PATTERN (i2), 0, 1)) == SET
2737 && REG_P (SET_DEST (XVECEXP (PATTERN (i2), 0, 1)))
2738 && rtx_equal_p (XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 0),
2739 SET_SRC (XVECEXP (PATTERN (i2), 0, 1))))
2741 for (i = XVECLEN (PATTERN (i2), 0) - 1; i >= 2; i--)
2742 if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != CLOBBER)
2743 break;
2745 if (i == 1)
2747 /* We make I1 with the same INSN_UID as I2. This gives it
2748 the same DF_INSN_LUID for value tracking. Our fake I1 will
2749 never appear in the insn stream so giving it the same INSN_UID
2750 as I2 will not cause a problem. */
2752 i1 = gen_rtx_INSN (VOIDmode, INSN_UID (i2), NULL_RTX, i2,
2753 BLOCK_FOR_INSN (i2), XVECEXP (PATTERN (i2), 0, 1),
2754 INSN_LOCATION (i2), -1, NULL_RTX);
2756 SUBST (PATTERN (i2), XVECEXP (PATTERN (i2), 0, 0));
2757 SUBST (XEXP (SET_SRC (PATTERN (i2)), 0),
2758 SET_DEST (PATTERN (i1)));
2759 SUBST_LINK (LOG_LINKS (i2), alloc_insn_link (i1, LOG_LINKS (i2)));
2762 #endif
2764 /* Verify that I2 and I1 are valid for combining. */
2765 if (! can_combine_p (i2, i3, i0, i1, NULL_RTX, NULL_RTX, &i2dest, &i2src)
2766 || (i1 && ! can_combine_p (i1, i3, i0, NULL_RTX, i2, NULL_RTX,
2767 &i1dest, &i1src))
2768 || (i0 && ! can_combine_p (i0, i3, NULL_RTX, NULL_RTX, i1, i2,
2769 &i0dest, &i0src)))
2771 undo_all ();
2772 return 0;
2775 /* Record whether I2DEST is used in I2SRC and similarly for the other
2776 cases. Knowing this will help in register status updating below. */
2777 i2dest_in_i2src = reg_overlap_mentioned_p (i2dest, i2src);
2778 i1dest_in_i1src = i1 && reg_overlap_mentioned_p (i1dest, i1src);
2779 i2dest_in_i1src = i1 && reg_overlap_mentioned_p (i2dest, i1src);
2780 i0dest_in_i0src = i0 && reg_overlap_mentioned_p (i0dest, i0src);
2781 i1dest_in_i0src = i0 && reg_overlap_mentioned_p (i1dest, i0src);
2782 i2dest_in_i0src = i0 && reg_overlap_mentioned_p (i2dest, i0src);
2783 i2dest_killed = dead_or_set_p (i2, i2dest);
2784 i1dest_killed = i1 && dead_or_set_p (i1, i1dest);
2785 i0dest_killed = i0 && dead_or_set_p (i0, i0dest);
2787 /* For the earlier insns, determine which of the subsequent ones they
2788 feed. */
2789 i1_feeds_i2_n = i1 && insn_a_feeds_b (i1, i2);
2790 i0_feeds_i1_n = i0 && insn_a_feeds_b (i0, i1);
2791 i0_feeds_i2_n = (i0 && (!i0_feeds_i1_n ? insn_a_feeds_b (i0, i2)
2792 : (!reg_overlap_mentioned_p (i1dest, i0dest)
2793 && reg_overlap_mentioned_p (i0dest, i2src))));
2795 /* Ensure that I3's pattern can be the destination of combines. */
2796 if (! combinable_i3pat (i3, &PATTERN (i3), i2dest, i1dest, i0dest,
2797 i1 && i2dest_in_i1src && !i1_feeds_i2_n,
2798 i0 && ((i2dest_in_i0src && !i0_feeds_i2_n)
2799 || (i1dest_in_i0src && !i0_feeds_i1_n)),
2800 &i3dest_killed))
2802 undo_all ();
2803 return 0;
2806 /* See if any of the insns is a MULT operation. Unless one is, we will
2807 reject a combination that is, since it must be slower. Be conservative
2808 here. */
2809 if (GET_CODE (i2src) == MULT
2810 || (i1 != 0 && GET_CODE (i1src) == MULT)
2811 || (i0 != 0 && GET_CODE (i0src) == MULT)
2812 || (GET_CODE (PATTERN (i3)) == SET
2813 && GET_CODE (SET_SRC (PATTERN (i3))) == MULT))
2814 have_mult = 1;
2816 /* If I3 has an inc, then give up if I1 or I2 uses the reg that is inc'd.
2817 We used to do this EXCEPT in one case: I3 has a post-inc in an
2818 output operand. However, that exception can give rise to insns like
2819 mov r3,(r3)+
2820 which is a famous insn on the PDP-11 where the value of r3 used as the
2821 source was model-dependent. Avoid this sort of thing. */
2823 #if 0
2824 if (!(GET_CODE (PATTERN (i3)) == SET
2825 && REG_P (SET_SRC (PATTERN (i3)))
2826 && MEM_P (SET_DEST (PATTERN (i3)))
2827 && (GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_INC
2828 || GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_DEC)))
2829 /* It's not the exception. */
2830 #endif
2831 #ifdef AUTO_INC_DEC
2833 rtx link;
2834 for (link = REG_NOTES (i3); link; link = XEXP (link, 1))
2835 if (REG_NOTE_KIND (link) == REG_INC
2836 && (reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i2))
2837 || (i1 != 0
2838 && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i1)))))
2840 undo_all ();
2841 return 0;
2844 #endif
2846 /* See if the SETs in I1 or I2 need to be kept around in the merged
2847 instruction: whenever the value set there is still needed past I3.
2848 For the SETs in I2, this is easy: we see if I2DEST dies or is set in I3.
2850 For the SET in I1, we have two cases: If I1 and I2 independently
2851 feed into I3, the set in I1 needs to be kept around if I1DEST dies
2852 or is set in I3. Otherwise (if I1 feeds I2 which feeds I3), the set
2853 in I1 needs to be kept around unless I1DEST dies or is set in either
2854 I2 or I3. The same consideration applies to I0. */
2856 added_sets_2 = !dead_or_set_p (i3, i2dest);
2858 if (i1)
2859 added_sets_1 = !(dead_or_set_p (i3, i1dest)
2860 || (i1_feeds_i2_n && dead_or_set_p (i2, i1dest)));
2861 else
2862 added_sets_1 = 0;
2864 if (i0)
2865 added_sets_0 = !(dead_or_set_p (i3, i0dest)
2866 || (i0_feeds_i2_n && dead_or_set_p (i2, i0dest))
2867 || (i0_feeds_i1_n && dead_or_set_p (i1, i0dest)));
2868 else
2869 added_sets_0 = 0;
2871 /* We are about to copy insns for the case where they need to be kept
2872 around. Check that they can be copied in the merged instruction. */
2874 if (targetm.cannot_copy_insn_p
2875 && ((added_sets_2 && targetm.cannot_copy_insn_p (i2))
2876 || (i1 && added_sets_1 && targetm.cannot_copy_insn_p (i1))
2877 || (i0 && added_sets_0 && targetm.cannot_copy_insn_p (i0))))
2879 undo_all ();
2880 return 0;
2883 /* If the set in I2 needs to be kept around, we must make a copy of
2884 PATTERN (I2), so that when we substitute I1SRC for I1DEST in
2885 PATTERN (I2), we are only substituting for the original I1DEST, not into
2886 an already-substituted copy. This also prevents making self-referential
2887 rtx. If I2 is a PARALLEL, we just need the piece that assigns I2SRC to
2888 I2DEST. */
2890 if (added_sets_2)
2892 if (GET_CODE (PATTERN (i2)) == PARALLEL)
2893 i2pat = gen_rtx_SET (VOIDmode, i2dest, copy_rtx (i2src));
2894 else
2895 i2pat = copy_rtx (PATTERN (i2));
2898 if (added_sets_1)
2900 if (GET_CODE (PATTERN (i1)) == PARALLEL)
2901 i1pat = gen_rtx_SET (VOIDmode, i1dest, copy_rtx (i1src));
2902 else
2903 i1pat = copy_rtx (PATTERN (i1));
2906 if (added_sets_0)
2908 if (GET_CODE (PATTERN (i0)) == PARALLEL)
2909 i0pat = gen_rtx_SET (VOIDmode, i0dest, copy_rtx (i0src));
2910 else
2911 i0pat = copy_rtx (PATTERN (i0));
2914 combine_merges++;
2916 /* Substitute in the latest insn for the regs set by the earlier ones. */
2918 maxreg = max_reg_num ();
2920 subst_insn = i3;
2922 #ifndef HAVE_cc0
2923 /* Many machines that don't use CC0 have insns that can both perform an
2924 arithmetic operation and set the condition code. These operations will
2925 be represented as a PARALLEL with the first element of the vector
2926 being a COMPARE of an arithmetic operation with the constant zero.
2927 The second element of the vector will set some pseudo to the result
2928 of the same arithmetic operation. If we simplify the COMPARE, we won't
2929 match such a pattern and so will generate an extra insn. Here we test
2930 for this case, where both the comparison and the operation result are
2931 needed, and make the PARALLEL by just replacing I2DEST in I3SRC with
2932 I2SRC. Later we will make the PARALLEL that contains I2. */
2934 if (i1 == 0 && added_sets_2 && GET_CODE (PATTERN (i3)) == SET
2935 && GET_CODE (SET_SRC (PATTERN (i3))) == COMPARE
2936 && CONST_INT_P (XEXP (SET_SRC (PATTERN (i3)), 1))
2937 && rtx_equal_p (XEXP (SET_SRC (PATTERN (i3)), 0), i2dest))
2939 rtx newpat_dest;
2940 rtx *cc_use_loc = NULL, cc_use_insn = NULL_RTX;
2941 rtx op0 = i2src, op1 = XEXP (SET_SRC (PATTERN (i3)), 1);
2942 enum machine_mode compare_mode, orig_compare_mode;
2943 enum rtx_code compare_code = UNKNOWN, orig_compare_code = UNKNOWN;
2945 newpat = PATTERN (i3);
2946 newpat_dest = SET_DEST (newpat);
2947 compare_mode = orig_compare_mode = GET_MODE (newpat_dest);
2949 if (undobuf.other_insn == 0
2950 && (cc_use_loc = find_single_use (SET_DEST (newpat), i3,
2951 &cc_use_insn)))
2953 compare_code = orig_compare_code = GET_CODE (*cc_use_loc);
2954 compare_code = simplify_compare_const (compare_code,
2955 op0, &op1);
2956 target_canonicalize_comparison (&compare_code, &op0, &op1, 1);
2959 /* Do the rest only if op1 is const0_rtx, which may be the
2960 result of simplification. */
2961 if (op1 == const0_rtx)
2963 /* If a single use of the CC is found, prepare to modify it
2964 when SELECT_CC_MODE returns a new CC-class mode, or when
2965 the above simplify_compare_const() returned a new comparison
2966 operator. undobuf.other_insn is assigned the CC use insn
2967 when modifying it. */
2968 if (cc_use_loc)
2970 #ifdef SELECT_CC_MODE
2971 enum machine_mode new_mode
2972 = SELECT_CC_MODE (compare_code, op0, op1);
2973 if (new_mode != orig_compare_mode
2974 && can_change_dest_mode (SET_DEST (newpat),
2975 added_sets_2, new_mode))
2977 unsigned int regno = REGNO (newpat_dest);
2978 compare_mode = new_mode;
2979 if (regno < FIRST_PSEUDO_REGISTER)
2980 newpat_dest = gen_rtx_REG (compare_mode, regno);
2981 else
2983 SUBST_MODE (regno_reg_rtx[regno], compare_mode);
2984 newpat_dest = regno_reg_rtx[regno];
2987 #endif
2988 /* Cases for modifying the CC-using comparison. */
2989 if (compare_code != orig_compare_code
2990 /* ??? Do we need to verify the zero rtx? */
2991 && XEXP (*cc_use_loc, 1) == const0_rtx)
2993 /* Replace cc_use_loc with entire new RTX. */
2994 SUBST (*cc_use_loc,
2995 gen_rtx_fmt_ee (compare_code, compare_mode,
2996 newpat_dest, const0_rtx));
2997 undobuf.other_insn = cc_use_insn;
2999 else if (compare_mode != orig_compare_mode)
3001 /* Just replace the CC reg with a new mode. */
3002 SUBST (XEXP (*cc_use_loc, 0), newpat_dest);
3003 undobuf.other_insn = cc_use_insn;
3007 /* Now we modify the current newpat:
3008 First, SET_DEST(newpat) is updated if the CC mode has been
3009 altered. For targets without SELECT_CC_MODE, this should be
3010 optimized away. */
3011 if (compare_mode != orig_compare_mode)
3012 SUBST (SET_DEST (newpat), newpat_dest);
3013 /* This is always done to propagate i2src into newpat. */
3014 SUBST (SET_SRC (newpat),
3015 gen_rtx_COMPARE (compare_mode, op0, op1));
3016 /* Create new version of i2pat if needed; the below PARALLEL
3017 creation needs this to work correctly. */
3018 if (! rtx_equal_p (i2src, op0))
3019 i2pat = gen_rtx_SET (VOIDmode, i2dest, op0);
3020 i2_is_used = 1;
3023 #endif
3025 if (i2_is_used == 0)
3027 /* It is possible that the source of I2 or I1 may be performing
3028 an unneeded operation, such as a ZERO_EXTEND of something
3029 that is known to have the high part zero. Handle that case
3030 by letting subst look at the inner insns.
3032 Another way to do this would be to have a function that tries
3033 to simplify a single insn instead of merging two or more
3034 insns. We don't do this because of the potential of infinite
3035 loops and because of the potential extra memory required.
3036 However, doing it the way we are is a bit of a kludge and
3037 doesn't catch all cases.
3039 But only do this if -fexpensive-optimizations since it slows
3040 things down and doesn't usually win.
3042 This is not done in the COMPARE case above because the
3043 unmodified I2PAT is used in the PARALLEL and so a pattern
3044 with a modified I2SRC would not match. */
3046 if (flag_expensive_optimizations)
3048 /* Pass pc_rtx so no substitutions are done, just
3049 simplifications. */
3050 if (i1)
3052 subst_low_luid = DF_INSN_LUID (i1);
3053 i1src = subst (i1src, pc_rtx, pc_rtx, 0, 0, 0);
3056 subst_low_luid = DF_INSN_LUID (i2);
3057 i2src = subst (i2src, pc_rtx, pc_rtx, 0, 0, 0);
3060 n_occurrences = 0; /* `subst' counts here */
3061 subst_low_luid = DF_INSN_LUID (i2);
3063 /* If I1 feeds into I2 and I1DEST is in I1SRC, we need to make a unique
3064 copy of I2SRC each time we substitute it, in order to avoid creating
3065 self-referential RTL when we will be substituting I1SRC for I1DEST
3066 later. Likewise if I0 feeds into I2, either directly or indirectly
3067 through I1, and I0DEST is in I0SRC. */
3068 newpat = subst (PATTERN (i3), i2dest, i2src, 0, 0,
3069 (i1_feeds_i2_n && i1dest_in_i1src)
3070 || ((i0_feeds_i2_n || (i0_feeds_i1_n && i1_feeds_i2_n))
3071 && i0dest_in_i0src));
3072 substed_i2 = 1;
3074 /* Record whether I2's body now appears within I3's body. */
3075 i2_is_used = n_occurrences;
3078 /* If we already got a failure, don't try to do more. Otherwise, try to
3079 substitute I1 if we have it. */
3081 if (i1 && GET_CODE (newpat) != CLOBBER)
3083 /* Check that an autoincrement side-effect on I1 has not been lost.
3084 This happens if I1DEST is mentioned in I2 and dies there, and
3085 has disappeared from the new pattern. */
3086 if ((FIND_REG_INC_NOTE (i1, NULL_RTX) != 0
3087 && i1_feeds_i2_n
3088 && dead_or_set_p (i2, i1dest)
3089 && !reg_overlap_mentioned_p (i1dest, newpat))
3090 /* Before we can do this substitution, we must redo the test done
3091 above (see detailed comments there) that ensures I1DEST isn't
3092 mentioned in any SETs in NEWPAT that are field assignments. */
3093 || !combinable_i3pat (NULL_RTX, &newpat, i1dest, NULL_RTX, NULL_RTX,
3094 0, 0, 0))
3096 undo_all ();
3097 return 0;
3100 n_occurrences = 0;
3101 subst_low_luid = DF_INSN_LUID (i1);
3103 /* If the following substitution will modify I1SRC, make a copy of it
3104 for the case where it is substituted for I1DEST in I2PAT later. */
3105 if (added_sets_2 && i1_feeds_i2_n)
3106 i1src_copy = copy_rtx (i1src);
3108 /* If I0 feeds into I1 and I0DEST is in I0SRC, we need to make a unique
3109 copy of I1SRC each time we substitute it, in order to avoid creating
3110 self-referential RTL when we will be substituting I0SRC for I0DEST
3111 later. */
3112 newpat = subst (newpat, i1dest, i1src, 0, 0,
3113 i0_feeds_i1_n && i0dest_in_i0src);
3114 substed_i1 = 1;
3116 /* Record whether I1's body now appears within I3's body. */
3117 i1_is_used = n_occurrences;
3120 /* Likewise for I0 if we have it. */
3122 if (i0 && GET_CODE (newpat) != CLOBBER)
3124 if ((FIND_REG_INC_NOTE (i0, NULL_RTX) != 0
3125 && ((i0_feeds_i2_n && dead_or_set_p (i2, i0dest))
3126 || (i0_feeds_i1_n && dead_or_set_p (i1, i0dest)))
3127 && !reg_overlap_mentioned_p (i0dest, newpat))
3128 || !combinable_i3pat (NULL_RTX, &newpat, i0dest, NULL_RTX, NULL_RTX,
3129 0, 0, 0))
3131 undo_all ();
3132 return 0;
3135 /* If the following substitution will modify I0SRC, make a copy of it
3136 for the case where it is substituted for I0DEST in I1PAT later. */
3137 if (added_sets_1 && i0_feeds_i1_n)
3138 i0src_copy = copy_rtx (i0src);
3139 /* And a copy for I0DEST in I2PAT substitution. */
3140 if (added_sets_2 && ((i0_feeds_i1_n && i1_feeds_i2_n)
3141 || (i0_feeds_i2_n)))
3142 i0src_copy2 = copy_rtx (i0src);
3144 n_occurrences = 0;
3145 subst_low_luid = DF_INSN_LUID (i0);
3146 newpat = subst (newpat, i0dest, i0src, 0, 0, 0);
3147 substed_i0 = 1;
3150 /* Fail if an autoincrement side-effect has been duplicated. Be careful
3151 to count all the ways that I2SRC and I1SRC can be used. */
3152 if ((FIND_REG_INC_NOTE (i2, NULL_RTX) != 0
3153 && i2_is_used + added_sets_2 > 1)
3154 || (i1 != 0 && FIND_REG_INC_NOTE (i1, NULL_RTX) != 0
3155 && (i1_is_used + added_sets_1 + (added_sets_2 && i1_feeds_i2_n)
3156 > 1))
3157 || (i0 != 0 && FIND_REG_INC_NOTE (i0, NULL_RTX) != 0
3158 && (n_occurrences + added_sets_0
3159 + (added_sets_1 && i0_feeds_i1_n)
3160 + (added_sets_2 && i0_feeds_i2_n)
3161 > 1))
3162 /* Fail if we tried to make a new register. */
3163 || max_reg_num () != maxreg
3164 /* Fail if we couldn't do something and have a CLOBBER. */
3165 || GET_CODE (newpat) == CLOBBER
3166 /* Fail if this new pattern is a MULT and we didn't have one before
3167 at the outer level. */
3168 || (GET_CODE (newpat) == SET && GET_CODE (SET_SRC (newpat)) == MULT
3169 && ! have_mult))
3171 undo_all ();
3172 return 0;
3175 /* If the actions of the earlier insns must be kept
3176 in addition to substituting them into the latest one,
3177 we must make a new PARALLEL for the latest insn
3178 to hold additional the SETs. */
3180 if (added_sets_0 || added_sets_1 || added_sets_2)
3182 int extra_sets = added_sets_0 + added_sets_1 + added_sets_2;
3183 combine_extras++;
3185 if (GET_CODE (newpat) == PARALLEL)
3187 rtvec old = XVEC (newpat, 0);
3188 total_sets = XVECLEN (newpat, 0) + extra_sets;
3189 newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
3190 memcpy (XVEC (newpat, 0)->elem, &old->elem[0],
3191 sizeof (old->elem[0]) * old->num_elem);
3193 else
3195 rtx old = newpat;
3196 total_sets = 1 + extra_sets;
3197 newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
3198 XVECEXP (newpat, 0, 0) = old;
3201 if (added_sets_0)
3202 XVECEXP (newpat, 0, --total_sets) = i0pat;
3204 if (added_sets_1)
3206 rtx t = i1pat;
3207 if (i0_feeds_i1_n)
3208 t = subst (t, i0dest, i0src_copy ? i0src_copy : i0src, 0, 0, 0);
3210 XVECEXP (newpat, 0, --total_sets) = t;
3212 if (added_sets_2)
3214 rtx t = i2pat;
3215 if (i1_feeds_i2_n)
3216 t = subst (t, i1dest, i1src_copy ? i1src_copy : i1src, 0, 0,
3217 i0_feeds_i1_n && i0dest_in_i0src);
3218 if ((i0_feeds_i1_n && i1_feeds_i2_n) || i0_feeds_i2_n)
3219 t = subst (t, i0dest, i0src_copy2 ? i0src_copy2 : i0src, 0, 0, 0);
3221 XVECEXP (newpat, 0, --total_sets) = t;
3225 validate_replacement:
3227 /* Note which hard regs this insn has as inputs. */
3228 mark_used_regs_combine (newpat);
3230 /* If recog_for_combine fails, it strips existing clobbers. If we'll
3231 consider splitting this pattern, we might need these clobbers. */
3232 if (i1 && GET_CODE (newpat) == PARALLEL
3233 && GET_CODE (XVECEXP (newpat, 0, XVECLEN (newpat, 0) - 1)) == CLOBBER)
3235 int len = XVECLEN (newpat, 0);
3237 newpat_vec_with_clobbers = rtvec_alloc (len);
3238 for (i = 0; i < len; i++)
3239 RTVEC_ELT (newpat_vec_with_clobbers, i) = XVECEXP (newpat, 0, i);
3242 /* Is the result of combination a valid instruction? */
3243 insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
3245 /* If the result isn't valid, see if it is a PARALLEL of two SETs where
3246 the second SET's destination is a register that is unused and isn't
3247 marked as an instruction that might trap in an EH region. In that case,
3248 we just need the first SET. This can occur when simplifying a divmod
3249 insn. We *must* test for this case here because the code below that
3250 splits two independent SETs doesn't handle this case correctly when it
3251 updates the register status.
3253 It's pointless doing this if we originally had two sets, one from
3254 i3, and one from i2. Combining then splitting the parallel results
3255 in the original i2 again plus an invalid insn (which we delete).
3256 The net effect is only to move instructions around, which makes
3257 debug info less accurate.
3259 Also check the case where the first SET's destination is unused.
3260 That would not cause incorrect code, but does cause an unneeded
3261 insn to remain. */
3263 if (insn_code_number < 0
3264 && !(added_sets_2 && i1 == 0)
3265 && GET_CODE (newpat) == PARALLEL
3266 && XVECLEN (newpat, 0) == 2
3267 && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
3268 && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
3269 && asm_noperands (newpat) < 0)
3271 rtx set0 = XVECEXP (newpat, 0, 0);
3272 rtx set1 = XVECEXP (newpat, 0, 1);
3274 if (((REG_P (SET_DEST (set1))
3275 && find_reg_note (i3, REG_UNUSED, SET_DEST (set1)))
3276 || (GET_CODE (SET_DEST (set1)) == SUBREG
3277 && find_reg_note (i3, REG_UNUSED, SUBREG_REG (SET_DEST (set1)))))
3278 && insn_nothrow_p (i3)
3279 && !side_effects_p (SET_SRC (set1)))
3281 newpat = set0;
3282 insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
3285 else if (((REG_P (SET_DEST (set0))
3286 && find_reg_note (i3, REG_UNUSED, SET_DEST (set0)))
3287 || (GET_CODE (SET_DEST (set0)) == SUBREG
3288 && find_reg_note (i3, REG_UNUSED,
3289 SUBREG_REG (SET_DEST (set0)))))
3290 && insn_nothrow_p (i3)
3291 && !side_effects_p (SET_SRC (set0)))
3293 newpat = set1;
3294 insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
3296 if (insn_code_number >= 0)
3297 changed_i3_dest = 1;
3301 /* If we were combining three insns and the result is a simple SET
3302 with no ASM_OPERANDS that wasn't recognized, try to split it into two
3303 insns. There are two ways to do this. It can be split using a
3304 machine-specific method (like when you have an addition of a large
3305 constant) or by combine in the function find_split_point. */
3307 if (i1 && insn_code_number < 0 && GET_CODE (newpat) == SET
3308 && asm_noperands (newpat) < 0)
3310 rtx parallel, m_split, *split;
3312 /* See if the MD file can split NEWPAT. If it can't, see if letting it
3313 use I2DEST as a scratch register will help. In the latter case,
3314 convert I2DEST to the mode of the source of NEWPAT if we can. */
3316 m_split = combine_split_insns (newpat, i3);
3318 /* We can only use I2DEST as a scratch reg if it doesn't overlap any
3319 inputs of NEWPAT. */
3321 /* ??? If I2DEST is not safe, and I1DEST exists, then it would be
3322 possible to try that as a scratch reg. This would require adding
3323 more code to make it work though. */
3325 if (m_split == 0 && ! reg_overlap_mentioned_p (i2dest, newpat))
3327 enum machine_mode new_mode = GET_MODE (SET_DEST (newpat));
3329 /* First try to split using the original register as a
3330 scratch register. */
3331 parallel = gen_rtx_PARALLEL (VOIDmode,
3332 gen_rtvec (2, newpat,
3333 gen_rtx_CLOBBER (VOIDmode,
3334 i2dest)));
3335 m_split = combine_split_insns (parallel, i3);
3337 /* If that didn't work, try changing the mode of I2DEST if
3338 we can. */
3339 if (m_split == 0
3340 && new_mode != GET_MODE (i2dest)
3341 && new_mode != VOIDmode
3342 && can_change_dest_mode (i2dest, added_sets_2, new_mode))
3344 enum machine_mode old_mode = GET_MODE (i2dest);
3345 rtx ni2dest;
3347 if (REGNO (i2dest) < FIRST_PSEUDO_REGISTER)
3348 ni2dest = gen_rtx_REG (new_mode, REGNO (i2dest));
3349 else
3351 SUBST_MODE (regno_reg_rtx[REGNO (i2dest)], new_mode);
3352 ni2dest = regno_reg_rtx[REGNO (i2dest)];
3355 parallel = (gen_rtx_PARALLEL
3356 (VOIDmode,
3357 gen_rtvec (2, newpat,
3358 gen_rtx_CLOBBER (VOIDmode,
3359 ni2dest))));
3360 m_split = combine_split_insns (parallel, i3);
3362 if (m_split == 0
3363 && REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
3365 struct undo *buf;
3367 adjust_reg_mode (regno_reg_rtx[REGNO (i2dest)], old_mode);
3368 buf = undobuf.undos;
3369 undobuf.undos = buf->next;
3370 buf->next = undobuf.frees;
3371 undobuf.frees = buf;
3375 i2scratch = m_split != 0;
3378 /* If recog_for_combine has discarded clobbers, try to use them
3379 again for the split. */
3380 if (m_split == 0 && newpat_vec_with_clobbers)
3382 parallel = gen_rtx_PARALLEL (VOIDmode, newpat_vec_with_clobbers);
3383 m_split = combine_split_insns (parallel, i3);
3386 if (m_split && NEXT_INSN (m_split) == NULL_RTX)
3388 m_split = PATTERN (m_split);
3389 insn_code_number = recog_for_combine (&m_split, i3, &new_i3_notes);
3390 if (insn_code_number >= 0)
3391 newpat = m_split;
3393 else if (m_split && NEXT_INSN (NEXT_INSN (m_split)) == NULL_RTX
3394 && (next_nonnote_nondebug_insn (i2) == i3
3395 || ! use_crosses_set_p (PATTERN (m_split), DF_INSN_LUID (i2))))
3397 rtx i2set, i3set;
3398 rtx newi3pat = PATTERN (NEXT_INSN (m_split));
3399 newi2pat = PATTERN (m_split);
3401 i3set = single_set (NEXT_INSN (m_split));
3402 i2set = single_set (m_split);
3404 i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
3406 /* If I2 or I3 has multiple SETs, we won't know how to track
3407 register status, so don't use these insns. If I2's destination
3408 is used between I2 and I3, we also can't use these insns. */
3410 if (i2_code_number >= 0 && i2set && i3set
3411 && (next_nonnote_nondebug_insn (i2) == i3
3412 || ! reg_used_between_p (SET_DEST (i2set), i2, i3)))
3413 insn_code_number = recog_for_combine (&newi3pat, i3,
3414 &new_i3_notes);
3415 if (insn_code_number >= 0)
3416 newpat = newi3pat;
3418 /* It is possible that both insns now set the destination of I3.
3419 If so, we must show an extra use of it. */
3421 if (insn_code_number >= 0)
3423 rtx new_i3_dest = SET_DEST (i3set);
3424 rtx new_i2_dest = SET_DEST (i2set);
3426 while (GET_CODE (new_i3_dest) == ZERO_EXTRACT
3427 || GET_CODE (new_i3_dest) == STRICT_LOW_PART
3428 || GET_CODE (new_i3_dest) == SUBREG)
3429 new_i3_dest = XEXP (new_i3_dest, 0);
3431 while (GET_CODE (new_i2_dest) == ZERO_EXTRACT
3432 || GET_CODE (new_i2_dest) == STRICT_LOW_PART
3433 || GET_CODE (new_i2_dest) == SUBREG)
3434 new_i2_dest = XEXP (new_i2_dest, 0);
3436 if (REG_P (new_i3_dest)
3437 && REG_P (new_i2_dest)
3438 && REGNO (new_i3_dest) == REGNO (new_i2_dest))
3439 INC_REG_N_SETS (REGNO (new_i2_dest), 1);
3443 /* If we can split it and use I2DEST, go ahead and see if that
3444 helps things be recognized. Verify that none of the registers
3445 are set between I2 and I3. */
3446 if (insn_code_number < 0
3447 && (split = find_split_point (&newpat, i3, false)) != 0
3448 #ifdef HAVE_cc0
3449 && REG_P (i2dest)
3450 #endif
3451 /* We need I2DEST in the proper mode. If it is a hard register
3452 or the only use of a pseudo, we can change its mode.
3453 Make sure we don't change a hard register to have a mode that
3454 isn't valid for it, or change the number of registers. */
3455 && (GET_MODE (*split) == GET_MODE (i2dest)
3456 || GET_MODE (*split) == VOIDmode
3457 || can_change_dest_mode (i2dest, added_sets_2,
3458 GET_MODE (*split)))
3459 && (next_nonnote_nondebug_insn (i2) == i3
3460 || ! use_crosses_set_p (*split, DF_INSN_LUID (i2)))
3461 /* We can't overwrite I2DEST if its value is still used by
3462 NEWPAT. */
3463 && ! reg_referenced_p (i2dest, newpat))
3465 rtx newdest = i2dest;
3466 enum rtx_code split_code = GET_CODE (*split);
3467 enum machine_mode split_mode = GET_MODE (*split);
3468 bool subst_done = false;
3469 newi2pat = NULL_RTX;
3471 i2scratch = true;
3473 /* *SPLIT may be part of I2SRC, so make sure we have the
3474 original expression around for later debug processing.
3475 We should not need I2SRC any more in other cases. */
3476 if (MAY_HAVE_DEBUG_INSNS)
3477 i2src = copy_rtx (i2src);
3478 else
3479 i2src = NULL;
3481 /* Get NEWDEST as a register in the proper mode. We have already
3482 validated that we can do this. */
3483 if (GET_MODE (i2dest) != split_mode && split_mode != VOIDmode)
3485 if (REGNO (i2dest) < FIRST_PSEUDO_REGISTER)
3486 newdest = gen_rtx_REG (split_mode, REGNO (i2dest));
3487 else
3489 SUBST_MODE (regno_reg_rtx[REGNO (i2dest)], split_mode);
3490 newdest = regno_reg_rtx[REGNO (i2dest)];
3494 /* If *SPLIT is a (mult FOO (const_int pow2)), convert it to
3495 an ASHIFT. This can occur if it was inside a PLUS and hence
3496 appeared to be a memory address. This is a kludge. */
3497 if (split_code == MULT
3498 && CONST_INT_P (XEXP (*split, 1))
3499 && INTVAL (XEXP (*split, 1)) > 0
3500 && (i = exact_log2 (UINTVAL (XEXP (*split, 1)))) >= 0)
3502 SUBST (*split, gen_rtx_ASHIFT (split_mode,
3503 XEXP (*split, 0), GEN_INT (i)));
3504 /* Update split_code because we may not have a multiply
3505 anymore. */
3506 split_code = GET_CODE (*split);
3509 #ifdef INSN_SCHEDULING
3510 /* If *SPLIT is a paradoxical SUBREG, when we split it, it should
3511 be written as a ZERO_EXTEND. */
3512 if (split_code == SUBREG && MEM_P (SUBREG_REG (*split)))
3514 #ifdef LOAD_EXTEND_OP
3515 /* Or as a SIGN_EXTEND if LOAD_EXTEND_OP says that that's
3516 what it really is. */
3517 if (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (*split)))
3518 == SIGN_EXTEND)
3519 SUBST (*split, gen_rtx_SIGN_EXTEND (split_mode,
3520 SUBREG_REG (*split)));
3521 else
3522 #endif
3523 SUBST (*split, gen_rtx_ZERO_EXTEND (split_mode,
3524 SUBREG_REG (*split)));
3526 #endif
3528 /* Attempt to split binary operators using arithmetic identities. */
3529 if (BINARY_P (SET_SRC (newpat))
3530 && split_mode == GET_MODE (SET_SRC (newpat))
3531 && ! side_effects_p (SET_SRC (newpat)))
3533 rtx setsrc = SET_SRC (newpat);
3534 enum machine_mode mode = GET_MODE (setsrc);
3535 enum rtx_code code = GET_CODE (setsrc);
3536 rtx src_op0 = XEXP (setsrc, 0);
3537 rtx src_op1 = XEXP (setsrc, 1);
3539 /* Split "X = Y op Y" as "Z = Y; X = Z op Z". */
3540 if (rtx_equal_p (src_op0, src_op1))
3542 newi2pat = gen_rtx_SET (VOIDmode, newdest, src_op0);
3543 SUBST (XEXP (setsrc, 0), newdest);
3544 SUBST (XEXP (setsrc, 1), newdest);
3545 subst_done = true;
3547 /* Split "((P op Q) op R) op S" where op is PLUS or MULT. */
3548 else if ((code == PLUS || code == MULT)
3549 && GET_CODE (src_op0) == code
3550 && GET_CODE (XEXP (src_op0, 0)) == code
3551 && (INTEGRAL_MODE_P (mode)
3552 || (FLOAT_MODE_P (mode)
3553 && flag_unsafe_math_optimizations)))
3555 rtx p = XEXP (XEXP (src_op0, 0), 0);
3556 rtx q = XEXP (XEXP (src_op0, 0), 1);
3557 rtx r = XEXP (src_op0, 1);
3558 rtx s = src_op1;
3560 /* Split both "((X op Y) op X) op Y" and
3561 "((X op Y) op Y) op X" as "T op T" where T is
3562 "X op Y". */
3563 if ((rtx_equal_p (p,r) && rtx_equal_p (q,s))
3564 || (rtx_equal_p (p,s) && rtx_equal_p (q,r)))
3566 newi2pat = gen_rtx_SET (VOIDmode, newdest,
3567 XEXP (src_op0, 0));
3568 SUBST (XEXP (setsrc, 0), newdest);
3569 SUBST (XEXP (setsrc, 1), newdest);
3570 subst_done = true;
3572 /* Split "((X op X) op Y) op Y)" as "T op T" where
3573 T is "X op Y". */
3574 else if (rtx_equal_p (p,q) && rtx_equal_p (r,s))
3576 rtx tmp = simplify_gen_binary (code, mode, p, r);
3577 newi2pat = gen_rtx_SET (VOIDmode, newdest, tmp);
3578 SUBST (XEXP (setsrc, 0), newdest);
3579 SUBST (XEXP (setsrc, 1), newdest);
3580 subst_done = true;
3585 if (!subst_done)
3587 newi2pat = gen_rtx_SET (VOIDmode, newdest, *split);
3588 SUBST (*split, newdest);
3591 i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
3593 /* recog_for_combine might have added CLOBBERs to newi2pat.
3594 Make sure NEWPAT does not depend on the clobbered regs. */
3595 if (GET_CODE (newi2pat) == PARALLEL)
3596 for (i = XVECLEN (newi2pat, 0) - 1; i >= 0; i--)
3597 if (GET_CODE (XVECEXP (newi2pat, 0, i)) == CLOBBER)
3599 rtx reg = XEXP (XVECEXP (newi2pat, 0, i), 0);
3600 if (reg_overlap_mentioned_p (reg, newpat))
3602 undo_all ();
3603 return 0;
3607 /* If the split point was a MULT and we didn't have one before,
3608 don't use one now. */
3609 if (i2_code_number >= 0 && ! (split_code == MULT && ! have_mult))
3610 insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
3614 /* Check for a case where we loaded from memory in a narrow mode and
3615 then sign extended it, but we need both registers. In that case,
3616 we have a PARALLEL with both loads from the same memory location.
3617 We can split this into a load from memory followed by a register-register
3618 copy. This saves at least one insn, more if register allocation can
3619 eliminate the copy.
3621 We cannot do this if the destination of the first assignment is a
3622 condition code register or cc0. We eliminate this case by making sure
3623 the SET_DEST and SET_SRC have the same mode.
3625 We cannot do this if the destination of the second assignment is
3626 a register that we have already assumed is zero-extended. Similarly
3627 for a SUBREG of such a register. */
3629 else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
3630 && GET_CODE (newpat) == PARALLEL
3631 && XVECLEN (newpat, 0) == 2
3632 && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
3633 && GET_CODE (SET_SRC (XVECEXP (newpat, 0, 0))) == SIGN_EXTEND
3634 && (GET_MODE (SET_DEST (XVECEXP (newpat, 0, 0)))
3635 == GET_MODE (SET_SRC (XVECEXP (newpat, 0, 0))))
3636 && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
3637 && rtx_equal_p (SET_SRC (XVECEXP (newpat, 0, 1)),
3638 XEXP (SET_SRC (XVECEXP (newpat, 0, 0)), 0))
3639 && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
3640 DF_INSN_LUID (i2))
3641 && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
3642 && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
3643 && ! (temp = SET_DEST (XVECEXP (newpat, 0, 1)),
3644 (REG_P (temp)
3645 && reg_stat[REGNO (temp)].nonzero_bits != 0
3646 && GET_MODE_PRECISION (GET_MODE (temp)) < BITS_PER_WORD
3647 && GET_MODE_PRECISION (GET_MODE (temp)) < HOST_BITS_PER_INT
3648 && (reg_stat[REGNO (temp)].nonzero_bits
3649 != GET_MODE_MASK (word_mode))))
3650 && ! (GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == SUBREG
3651 && (temp = SUBREG_REG (SET_DEST (XVECEXP (newpat, 0, 1))),
3652 (REG_P (temp)
3653 && reg_stat[REGNO (temp)].nonzero_bits != 0
3654 && GET_MODE_PRECISION (GET_MODE (temp)) < BITS_PER_WORD
3655 && GET_MODE_PRECISION (GET_MODE (temp)) < HOST_BITS_PER_INT
3656 && (reg_stat[REGNO (temp)].nonzero_bits
3657 != GET_MODE_MASK (word_mode)))))
3658 && ! reg_overlap_mentioned_p (SET_DEST (XVECEXP (newpat, 0, 1)),
3659 SET_SRC (XVECEXP (newpat, 0, 1)))
3660 && ! find_reg_note (i3, REG_UNUSED,
3661 SET_DEST (XVECEXP (newpat, 0, 0))))
3663 rtx ni2dest;
3665 newi2pat = XVECEXP (newpat, 0, 0);
3666 ni2dest = SET_DEST (XVECEXP (newpat, 0, 0));
3667 newpat = XVECEXP (newpat, 0, 1);
3668 SUBST (SET_SRC (newpat),
3669 gen_lowpart (GET_MODE (SET_SRC (newpat)), ni2dest));
3670 i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
3672 if (i2_code_number >= 0)
3673 insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
3675 if (insn_code_number >= 0)
3676 swap_i2i3 = 1;
3679 /* Similarly, check for a case where we have a PARALLEL of two independent
3680 SETs but we started with three insns. In this case, we can do the sets
3681 as two separate insns. This case occurs when some SET allows two
3682 other insns to combine, but the destination of that SET is still live. */
3684 else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
3685 && GET_CODE (newpat) == PARALLEL
3686 && XVECLEN (newpat, 0) == 2
3687 && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
3688 && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != ZERO_EXTRACT
3689 && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != STRICT_LOW_PART
3690 && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
3691 && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
3692 && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
3693 && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 1)),
3694 XVECEXP (newpat, 0, 0))
3695 && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 0)),
3696 XVECEXP (newpat, 0, 1))
3697 && ! (contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 0)))
3698 && contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 1)))))
3700 /* Normally, it doesn't matter which of the two is done first,
3701 but the one that references cc0 can't be the second, and
3702 one which uses any regs/memory set in between i2 and i3 can't
3703 be first. */
3704 if (!use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
3705 DF_INSN_LUID (i2))
3706 #ifdef HAVE_cc0
3707 && !reg_referenced_p (cc0_rtx, XVECEXP (newpat, 0, 0))
3708 #endif
3711 newi2pat = XVECEXP (newpat, 0, 1);
3712 newpat = XVECEXP (newpat, 0, 0);
3714 else if (!use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 0)),
3715 DF_INSN_LUID (i2))
3716 #ifdef HAVE_cc0
3717 && !reg_referenced_p (cc0_rtx, XVECEXP (newpat, 0, 1))
3718 #endif
3721 newi2pat = XVECEXP (newpat, 0, 0);
3722 newpat = XVECEXP (newpat, 0, 1);
3724 else
3726 undo_all ();
3727 return 0;
3730 i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
3732 if (i2_code_number >= 0)
3734 /* recog_for_combine might have added CLOBBERs to newi2pat.
3735 Make sure NEWPAT does not depend on the clobbered regs. */
3736 if (GET_CODE (newi2pat) == PARALLEL)
3738 for (i = XVECLEN (newi2pat, 0) - 1; i >= 0; i--)
3739 if (GET_CODE (XVECEXP (newi2pat, 0, i)) == CLOBBER)
3741 rtx reg = XEXP (XVECEXP (newi2pat, 0, i), 0);
3742 if (reg_overlap_mentioned_p (reg, newpat))
3744 undo_all ();
3745 return 0;
3750 insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
3754 /* If it still isn't recognized, fail and change things back the way they
3755 were. */
3756 if ((insn_code_number < 0
3757 /* Is the result a reasonable ASM_OPERANDS? */
3758 && (! check_asm_operands (newpat) || added_sets_1 || added_sets_2)))
3760 undo_all ();
3761 return 0;
3764 /* If we had to change another insn, make sure it is valid also. */
3765 if (undobuf.other_insn)
3767 CLEAR_HARD_REG_SET (newpat_used_regs);
3769 other_pat = PATTERN (undobuf.other_insn);
3770 other_code_number = recog_for_combine (&other_pat, undobuf.other_insn,
3771 &new_other_notes);
3773 if (other_code_number < 0 && ! check_asm_operands (other_pat))
3775 undo_all ();
3776 return 0;
3780 #ifdef HAVE_cc0
3781 /* If I2 is the CC0 setter and I3 is the CC0 user then check whether
3782 they are adjacent to each other or not. */
3784 rtx p = prev_nonnote_insn (i3);
3785 if (p && p != i2 && NONJUMP_INSN_P (p) && newi2pat
3786 && sets_cc0_p (newi2pat))
3788 undo_all ();
3789 return 0;
3792 #endif
3794 /* Only allow this combination if insn_rtx_costs reports that the
3795 replacement instructions are cheaper than the originals. */
3796 if (!combine_validate_cost (i0, i1, i2, i3, newpat, newi2pat, other_pat))
3798 undo_all ();
3799 return 0;
3802 if (MAY_HAVE_DEBUG_INSNS)
3804 struct undo *undo;
3806 for (undo = undobuf.undos; undo; undo = undo->next)
3807 if (undo->kind == UNDO_MODE)
3809 rtx reg = *undo->where.r;
3810 enum machine_mode new_mode = GET_MODE (reg);
3811 enum machine_mode old_mode = undo->old_contents.m;
3813 /* Temporarily revert mode back. */
3814 adjust_reg_mode (reg, old_mode);
3816 if (reg == i2dest && i2scratch)
3818 /* If we used i2dest as a scratch register with a
3819 different mode, substitute it for the original
3820 i2src while its original mode is temporarily
3821 restored, and then clear i2scratch so that we don't
3822 do it again later. */
3823 propagate_for_debug (i2, last_combined_insn, reg, i2src,
3824 this_basic_block);
3825 i2scratch = false;
3826 /* Put back the new mode. */
3827 adjust_reg_mode (reg, new_mode);
3829 else
3831 rtx tempreg = gen_raw_REG (old_mode, REGNO (reg));
3832 rtx first, last;
3834 if (reg == i2dest)
3836 first = i2;
3837 last = last_combined_insn;
3839 else
3841 first = i3;
3842 last = undobuf.other_insn;
3843 gcc_assert (last);
3844 if (DF_INSN_LUID (last)
3845 < DF_INSN_LUID (last_combined_insn))
3846 last = last_combined_insn;
3849 /* We're dealing with a reg that changed mode but not
3850 meaning, so we want to turn it into a subreg for
3851 the new mode. However, because of REG sharing and
3852 because its mode had already changed, we have to do
3853 it in two steps. First, replace any debug uses of
3854 reg, with its original mode temporarily restored,
3855 with this copy we have created; then, replace the
3856 copy with the SUBREG of the original shared reg,
3857 once again changed to the new mode. */
3858 propagate_for_debug (first, last, reg, tempreg,
3859 this_basic_block);
3860 adjust_reg_mode (reg, new_mode);
3861 propagate_for_debug (first, last, tempreg,
3862 lowpart_subreg (old_mode, reg, new_mode),
3863 this_basic_block);
3868 /* If we will be able to accept this, we have made a
3869 change to the destination of I3. This requires us to
3870 do a few adjustments. */
3872 if (changed_i3_dest)
3874 PATTERN (i3) = newpat;
3875 adjust_for_new_dest (i3);
3878 /* We now know that we can do this combination. Merge the insns and
3879 update the status of registers and LOG_LINKS. */
3881 if (undobuf.other_insn)
3883 rtx note, next;
3885 PATTERN (undobuf.other_insn) = other_pat;
3887 /* If any of the notes in OTHER_INSN were REG_UNUSED, ensure that they
3888 are still valid. Then add any non-duplicate notes added by
3889 recog_for_combine. */
3890 for (note = REG_NOTES (undobuf.other_insn); note; note = next)
3892 next = XEXP (note, 1);
3894 if (REG_NOTE_KIND (note) == REG_UNUSED
3895 && ! reg_set_p (XEXP (note, 0), PATTERN (undobuf.other_insn)))
3896 remove_note (undobuf.other_insn, note);
3899 distribute_notes (new_other_notes, undobuf.other_insn,
3900 undobuf.other_insn, NULL_RTX, NULL_RTX, NULL_RTX,
3901 NULL_RTX);
3904 if (swap_i2i3)
3906 rtx insn;
3907 struct insn_link *link;
3908 rtx ni2dest;
3910 /* I3 now uses what used to be its destination and which is now
3911 I2's destination. This requires us to do a few adjustments. */
3912 PATTERN (i3) = newpat;
3913 adjust_for_new_dest (i3);
3915 /* We need a LOG_LINK from I3 to I2. But we used to have one,
3916 so we still will.
3918 However, some later insn might be using I2's dest and have
3919 a LOG_LINK pointing at I3. We must remove this link.
3920 The simplest way to remove the link is to point it at I1,
3921 which we know will be a NOTE. */
3923 /* newi2pat is usually a SET here; however, recog_for_combine might
3924 have added some clobbers. */
3925 if (GET_CODE (newi2pat) == PARALLEL)
3926 ni2dest = SET_DEST (XVECEXP (newi2pat, 0, 0));
3927 else
3928 ni2dest = SET_DEST (newi2pat);
3930 for (insn = NEXT_INSN (i3);
3931 insn && (this_basic_block->next_bb == EXIT_BLOCK_PTR
3932 || insn != BB_HEAD (this_basic_block->next_bb));
3933 insn = NEXT_INSN (insn))
3935 if (INSN_P (insn) && reg_referenced_p (ni2dest, PATTERN (insn)))
3937 FOR_EACH_LOG_LINK (link, insn)
3938 if (link->insn == i3)
3939 link->insn = i1;
3941 break;
3947 rtx i3notes, i2notes, i1notes = 0, i0notes = 0;
3948 struct insn_link *i3links, *i2links, *i1links = 0, *i0links = 0;
3949 rtx midnotes = 0;
3950 int from_luid;
3951 /* Compute which registers we expect to eliminate. newi2pat may be setting
3952 either i3dest or i2dest, so we must check it. Also, i1dest may be the
3953 same as i3dest, in which case newi2pat may be setting i1dest. */
3954 rtx elim_i2 = ((newi2pat && reg_set_p (i2dest, newi2pat))
3955 || i2dest_in_i2src || i2dest_in_i1src || i2dest_in_i0src
3956 || !i2dest_killed
3957 ? 0 : i2dest);
3958 rtx elim_i1 = (i1 == 0 || i1dest_in_i1src || i1dest_in_i0src
3959 || (newi2pat && reg_set_p (i1dest, newi2pat))
3960 || !i1dest_killed
3961 ? 0 : i1dest);
3962 rtx elim_i0 = (i0 == 0 || i0dest_in_i0src
3963 || (newi2pat && reg_set_p (i0dest, newi2pat))
3964 || !i0dest_killed
3965 ? 0 : i0dest);
3967 /* Get the old REG_NOTES and LOG_LINKS from all our insns and
3968 clear them. */
3969 i3notes = REG_NOTES (i3), i3links = LOG_LINKS (i3);
3970 i2notes = REG_NOTES (i2), i2links = LOG_LINKS (i2);
3971 if (i1)
3972 i1notes = REG_NOTES (i1), i1links = LOG_LINKS (i1);
3973 if (i0)
3974 i0notes = REG_NOTES (i0), i0links = LOG_LINKS (i0);
3976 /* Ensure that we do not have something that should not be shared but
3977 occurs multiple times in the new insns. Check this by first
3978 resetting all the `used' flags and then copying anything is shared. */
3980 reset_used_flags (i3notes);
3981 reset_used_flags (i2notes);
3982 reset_used_flags (i1notes);
3983 reset_used_flags (i0notes);
3984 reset_used_flags (newpat);
3985 reset_used_flags (newi2pat);
3986 if (undobuf.other_insn)
3987 reset_used_flags (PATTERN (undobuf.other_insn));
3989 i3notes = copy_rtx_if_shared (i3notes);
3990 i2notes = copy_rtx_if_shared (i2notes);
3991 i1notes = copy_rtx_if_shared (i1notes);
3992 i0notes = copy_rtx_if_shared (i0notes);
3993 newpat = copy_rtx_if_shared (newpat);
3994 newi2pat = copy_rtx_if_shared (newi2pat);
3995 if (undobuf.other_insn)
3996 reset_used_flags (PATTERN (undobuf.other_insn));
3998 INSN_CODE (i3) = insn_code_number;
3999 PATTERN (i3) = newpat;
4001 if (CALL_P (i3) && CALL_INSN_FUNCTION_USAGE (i3))
4003 rtx call_usage = CALL_INSN_FUNCTION_USAGE (i3);
4005 reset_used_flags (call_usage);
4006 call_usage = copy_rtx (call_usage);
4008 if (substed_i2)
4010 /* I2SRC must still be meaningful at this point. Some splitting
4011 operations can invalidate I2SRC, but those operations do not
4012 apply to calls. */
4013 gcc_assert (i2src);
4014 replace_rtx (call_usage, i2dest, i2src);
4017 if (substed_i1)
4018 replace_rtx (call_usage, i1dest, i1src);
4019 if (substed_i0)
4020 replace_rtx (call_usage, i0dest, i0src);
4022 CALL_INSN_FUNCTION_USAGE (i3) = call_usage;
4025 if (undobuf.other_insn)
4026 INSN_CODE (undobuf.other_insn) = other_code_number;
4028 /* We had one special case above where I2 had more than one set and
4029 we replaced a destination of one of those sets with the destination
4030 of I3. In that case, we have to update LOG_LINKS of insns later
4031 in this basic block. Note that this (expensive) case is rare.
4033 Also, in this case, we must pretend that all REG_NOTEs for I2
4034 actually came from I3, so that REG_UNUSED notes from I2 will be
4035 properly handled. */
4037 if (i3_subst_into_i2)
4039 for (i = 0; i < XVECLEN (PATTERN (i2), 0); i++)
4040 if ((GET_CODE (XVECEXP (PATTERN (i2), 0, i)) == SET
4041 || GET_CODE (XVECEXP (PATTERN (i2), 0, i)) == CLOBBER)
4042 && REG_P (SET_DEST (XVECEXP (PATTERN (i2), 0, i)))
4043 && SET_DEST (XVECEXP (PATTERN (i2), 0, i)) != i2dest
4044 && ! find_reg_note (i2, REG_UNUSED,
4045 SET_DEST (XVECEXP (PATTERN (i2), 0, i))))
4046 for (temp = NEXT_INSN (i2);
4047 temp && (this_basic_block->next_bb == EXIT_BLOCK_PTR
4048 || BB_HEAD (this_basic_block) != temp);
4049 temp = NEXT_INSN (temp))
4050 if (temp != i3 && INSN_P (temp))
4051 FOR_EACH_LOG_LINK (link, temp)
4052 if (link->insn == i2)
4053 link->insn = i3;
4055 if (i3notes)
4057 rtx link = i3notes;
4058 while (XEXP (link, 1))
4059 link = XEXP (link, 1);
4060 XEXP (link, 1) = i2notes;
4062 else
4063 i3notes = i2notes;
4064 i2notes = 0;
4067 LOG_LINKS (i3) = NULL;
4068 REG_NOTES (i3) = 0;
4069 LOG_LINKS (i2) = NULL;
4070 REG_NOTES (i2) = 0;
4072 if (newi2pat)
4074 if (MAY_HAVE_DEBUG_INSNS && i2scratch)
4075 propagate_for_debug (i2, last_combined_insn, i2dest, i2src,
4076 this_basic_block);
4077 INSN_CODE (i2) = i2_code_number;
4078 PATTERN (i2) = newi2pat;
4080 else
4082 if (MAY_HAVE_DEBUG_INSNS && i2src)
4083 propagate_for_debug (i2, last_combined_insn, i2dest, i2src,
4084 this_basic_block);
4085 SET_INSN_DELETED (i2);
4088 if (i1)
4090 LOG_LINKS (i1) = NULL;
4091 REG_NOTES (i1) = 0;
4092 if (MAY_HAVE_DEBUG_INSNS)
4093 propagate_for_debug (i1, last_combined_insn, i1dest, i1src,
4094 this_basic_block);
4095 SET_INSN_DELETED (i1);
4098 if (i0)
4100 LOG_LINKS (i0) = NULL;
4101 REG_NOTES (i0) = 0;
4102 if (MAY_HAVE_DEBUG_INSNS)
4103 propagate_for_debug (i0, last_combined_insn, i0dest, i0src,
4104 this_basic_block);
4105 SET_INSN_DELETED (i0);
4108 /* Get death notes for everything that is now used in either I3 or
4109 I2 and used to die in a previous insn. If we built two new
4110 patterns, move from I1 to I2 then I2 to I3 so that we get the
4111 proper movement on registers that I2 modifies. */
4113 if (i0)
4114 from_luid = DF_INSN_LUID (i0);
4115 else if (i1)
4116 from_luid = DF_INSN_LUID (i1);
4117 else
4118 from_luid = DF_INSN_LUID (i2);
4119 if (newi2pat)
4120 move_deaths (newi2pat, NULL_RTX, from_luid, i2, &midnotes);
4121 move_deaths (newpat, newi2pat, from_luid, i3, &midnotes);
4123 /* Distribute all the LOG_LINKS and REG_NOTES from I1, I2, and I3. */
4124 if (i3notes)
4125 distribute_notes (i3notes, i3, i3, newi2pat ? i2 : NULL_RTX,
4126 elim_i2, elim_i1, elim_i0);
4127 if (i2notes)
4128 distribute_notes (i2notes, i2, i3, newi2pat ? i2 : NULL_RTX,
4129 elim_i2, elim_i1, elim_i0);
4130 if (i1notes)
4131 distribute_notes (i1notes, i1, i3, newi2pat ? i2 : NULL_RTX,
4132 elim_i2, elim_i1, elim_i0);
4133 if (i0notes)
4134 distribute_notes (i0notes, i0, i3, newi2pat ? i2 : NULL_RTX,
4135 elim_i2, elim_i1, elim_i0);
4136 if (midnotes)
4137 distribute_notes (midnotes, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
4138 elim_i2, elim_i1, elim_i0);
4140 /* Distribute any notes added to I2 or I3 by recog_for_combine. We
4141 know these are REG_UNUSED and want them to go to the desired insn,
4142 so we always pass it as i3. */
4144 if (newi2pat && new_i2_notes)
4145 distribute_notes (new_i2_notes, i2, i2, NULL_RTX, NULL_RTX, NULL_RTX,
4146 NULL_RTX);
4148 if (new_i3_notes)
4149 distribute_notes (new_i3_notes, i3, i3, NULL_RTX, NULL_RTX, NULL_RTX,
4150 NULL_RTX);
4152 /* If I3DEST was used in I3SRC, it really died in I3. We may need to
4153 put a REG_DEAD note for it somewhere. If NEWI2PAT exists and sets
4154 I3DEST, the death must be somewhere before I2, not I3. If we passed I3
4155 in that case, it might delete I2. Similarly for I2 and I1.
4156 Show an additional death due to the REG_DEAD note we make here. If
4157 we discard it in distribute_notes, we will decrement it again. */
4159 if (i3dest_killed)
4161 if (newi2pat && reg_set_p (i3dest_killed, newi2pat))
4162 distribute_notes (alloc_reg_note (REG_DEAD, i3dest_killed,
4163 NULL_RTX),
4164 NULL_RTX, i2, NULL_RTX, elim_i2, elim_i1, elim_i0);
4165 else
4166 distribute_notes (alloc_reg_note (REG_DEAD, i3dest_killed,
4167 NULL_RTX),
4168 NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
4169 elim_i2, elim_i1, elim_i0);
4172 if (i2dest_in_i2src)
4174 rtx new_note = alloc_reg_note (REG_DEAD, i2dest, NULL_RTX);
4175 if (newi2pat && reg_set_p (i2dest, newi2pat))
4176 distribute_notes (new_note, NULL_RTX, i2, NULL_RTX, NULL_RTX,
4177 NULL_RTX, NULL_RTX);
4178 else
4179 distribute_notes (new_note, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
4180 NULL_RTX, NULL_RTX, NULL_RTX);
4183 if (i1dest_in_i1src)
4185 rtx new_note = alloc_reg_note (REG_DEAD, i1dest, NULL_RTX);
4186 if (newi2pat && reg_set_p (i1dest, newi2pat))
4187 distribute_notes (new_note, NULL_RTX, i2, NULL_RTX, NULL_RTX,
4188 NULL_RTX, NULL_RTX);
4189 else
4190 distribute_notes (new_note, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
4191 NULL_RTX, NULL_RTX, NULL_RTX);
4194 if (i0dest_in_i0src)
4196 rtx new_note = alloc_reg_note (REG_DEAD, i0dest, NULL_RTX);
4197 if (newi2pat && reg_set_p (i0dest, newi2pat))
4198 distribute_notes (new_note, NULL_RTX, i2, NULL_RTX, NULL_RTX,
4199 NULL_RTX, NULL_RTX);
4200 else
4201 distribute_notes (new_note, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
4202 NULL_RTX, NULL_RTX, NULL_RTX);
4205 distribute_links (i3links);
4206 distribute_links (i2links);
4207 distribute_links (i1links);
4208 distribute_links (i0links);
4210 if (REG_P (i2dest))
4212 struct insn_link *link;
4213 rtx i2_insn = 0, i2_val = 0, set;
4215 /* The insn that used to set this register doesn't exist, and
4216 this life of the register may not exist either. See if one of
4217 I3's links points to an insn that sets I2DEST. If it does,
4218 that is now the last known value for I2DEST. If we don't update
4219 this and I2 set the register to a value that depended on its old
4220 contents, we will get confused. If this insn is used, thing
4221 will be set correctly in combine_instructions. */
4222 FOR_EACH_LOG_LINK (link, i3)
4223 if ((set = single_set (link->insn)) != 0
4224 && rtx_equal_p (i2dest, SET_DEST (set)))
4225 i2_insn = link->insn, i2_val = SET_SRC (set);
4227 record_value_for_reg (i2dest, i2_insn, i2_val);
4229 /* If the reg formerly set in I2 died only once and that was in I3,
4230 zero its use count so it won't make `reload' do any work. */
4231 if (! added_sets_2
4232 && (newi2pat == 0 || ! reg_mentioned_p (i2dest, newi2pat))
4233 && ! i2dest_in_i2src)
4234 INC_REG_N_SETS (REGNO (i2dest), -1);
4237 if (i1 && REG_P (i1dest))
4239 struct insn_link *link;
4240 rtx i1_insn = 0, i1_val = 0, set;
4242 FOR_EACH_LOG_LINK (link, i3)
4243 if ((set = single_set (link->insn)) != 0
4244 && rtx_equal_p (i1dest, SET_DEST (set)))
4245 i1_insn = link->insn, i1_val = SET_SRC (set);
4247 record_value_for_reg (i1dest, i1_insn, i1_val);
4249 if (! added_sets_1 && ! i1dest_in_i1src)
4250 INC_REG_N_SETS (REGNO (i1dest), -1);
4253 if (i0 && REG_P (i0dest))
4255 struct insn_link *link;
4256 rtx i0_insn = 0, i0_val = 0, set;
4258 FOR_EACH_LOG_LINK (link, i3)
4259 if ((set = single_set (link->insn)) != 0
4260 && rtx_equal_p (i0dest, SET_DEST (set)))
4261 i0_insn = link->insn, i0_val = SET_SRC (set);
4263 record_value_for_reg (i0dest, i0_insn, i0_val);
4265 if (! added_sets_0 && ! i0dest_in_i0src)
4266 INC_REG_N_SETS (REGNO (i0dest), -1);
4269 /* Update reg_stat[].nonzero_bits et al for any changes that may have
4270 been made to this insn. The order of
4271 set_nonzero_bits_and_sign_copies() is important. Because newi2pat
4272 can affect nonzero_bits of newpat */
4273 if (newi2pat)
4274 note_stores (newi2pat, set_nonzero_bits_and_sign_copies, NULL);
4275 note_stores (newpat, set_nonzero_bits_and_sign_copies, NULL);
4278 if (undobuf.other_insn != NULL_RTX)
4280 if (dump_file)
4282 fprintf (dump_file, "modifying other_insn ");
4283 dump_insn_slim (dump_file, undobuf.other_insn);
4285 df_insn_rescan (undobuf.other_insn);
4288 if (i0 && !(NOTE_P(i0) && (NOTE_KIND (i0) == NOTE_INSN_DELETED)))
4290 if (dump_file)
4292 fprintf (dump_file, "modifying insn i1 ");
4293 dump_insn_slim (dump_file, i0);
4295 df_insn_rescan (i0);
4298 if (i1 && !(NOTE_P(i1) && (NOTE_KIND (i1) == NOTE_INSN_DELETED)))
4300 if (dump_file)
4302 fprintf (dump_file, "modifying insn i1 ");
4303 dump_insn_slim (dump_file, i1);
4305 df_insn_rescan (i1);
4308 if (i2 && !(NOTE_P(i2) && (NOTE_KIND (i2) == NOTE_INSN_DELETED)))
4310 if (dump_file)
4312 fprintf (dump_file, "modifying insn i2 ");
4313 dump_insn_slim (dump_file, i2);
4315 df_insn_rescan (i2);
4318 if (i3 && !(NOTE_P(i3) && (NOTE_KIND (i3) == NOTE_INSN_DELETED)))
4320 if (dump_file)
4322 fprintf (dump_file, "modifying insn i3 ");
4323 dump_insn_slim (dump_file, i3);
4325 df_insn_rescan (i3);
4328 /* Set new_direct_jump_p if a new return or simple jump instruction
4329 has been created. Adjust the CFG accordingly. */
4331 if (returnjump_p (i3) || any_uncondjump_p (i3))
4333 *new_direct_jump_p = 1;
4334 mark_jump_label (PATTERN (i3), i3, 0);
4335 update_cfg_for_uncondjump (i3);
4338 if (undobuf.other_insn != NULL_RTX
4339 && (returnjump_p (undobuf.other_insn)
4340 || any_uncondjump_p (undobuf.other_insn)))
4342 *new_direct_jump_p = 1;
4343 update_cfg_for_uncondjump (undobuf.other_insn);
4346 /* A noop might also need cleaning up of CFG, if it comes from the
4347 simplification of a jump. */
4348 if (JUMP_P (i3)
4349 && GET_CODE (newpat) == SET
4350 && SET_SRC (newpat) == pc_rtx
4351 && SET_DEST (newpat) == pc_rtx)
4353 *new_direct_jump_p = 1;
4354 update_cfg_for_uncondjump (i3);
4357 if (undobuf.other_insn != NULL_RTX
4358 && JUMP_P (undobuf.other_insn)
4359 && GET_CODE (PATTERN (undobuf.other_insn)) == SET
4360 && SET_SRC (PATTERN (undobuf.other_insn)) == pc_rtx
4361 && SET_DEST (PATTERN (undobuf.other_insn)) == pc_rtx)
4363 *new_direct_jump_p = 1;
4364 update_cfg_for_uncondjump (undobuf.other_insn);
4367 combine_successes++;
4368 undo_commit ();
4370 if (added_links_insn
4371 && (newi2pat == 0 || DF_INSN_LUID (added_links_insn) < DF_INSN_LUID (i2))
4372 && DF_INSN_LUID (added_links_insn) < DF_INSN_LUID (i3))
4373 return added_links_insn;
4374 else
4375 return newi2pat ? i2 : i3;
4378 /* Undo all the modifications recorded in undobuf. */
4380 static void
4381 undo_all (void)
4383 struct undo *undo, *next;
4385 for (undo = undobuf.undos; undo; undo = next)
4387 next = undo->next;
4388 switch (undo->kind)
4390 case UNDO_RTX:
4391 *undo->where.r = undo->old_contents.r;
4392 break;
4393 case UNDO_INT:
4394 *undo->where.i = undo->old_contents.i;
4395 break;
4396 case UNDO_MODE:
4397 adjust_reg_mode (*undo->where.r, undo->old_contents.m);
4398 break;
4399 case UNDO_LINKS:
4400 *undo->where.l = undo->old_contents.l;
4401 break;
4402 default:
4403 gcc_unreachable ();
4406 undo->next = undobuf.frees;
4407 undobuf.frees = undo;
4410 undobuf.undos = 0;
4413 /* We've committed to accepting the changes we made. Move all
4414 of the undos to the free list. */
4416 static void
4417 undo_commit (void)
4419 struct undo *undo, *next;
4421 for (undo = undobuf.undos; undo; undo = next)
4423 next = undo->next;
4424 undo->next = undobuf.frees;
4425 undobuf.frees = undo;
4427 undobuf.undos = 0;
4430 /* Find the innermost point within the rtx at LOC, possibly LOC itself,
4431 where we have an arithmetic expression and return that point. LOC will
4432 be inside INSN.
4434 try_combine will call this function to see if an insn can be split into
4435 two insns. */
4437 static rtx *
4438 find_split_point (rtx *loc, rtx insn, bool set_src)
4440 rtx x = *loc;
4441 enum rtx_code code = GET_CODE (x);
4442 rtx *split;
4443 unsigned HOST_WIDE_INT len = 0;
4444 HOST_WIDE_INT pos = 0;
4445 int unsignedp = 0;
4446 rtx inner = NULL_RTX;
4448 /* First special-case some codes. */
4449 switch (code)
4451 case SUBREG:
4452 #ifdef INSN_SCHEDULING
4453 /* If we are making a paradoxical SUBREG invalid, it becomes a split
4454 point. */
4455 if (MEM_P (SUBREG_REG (x)))
4456 return loc;
4457 #endif
4458 return find_split_point (&SUBREG_REG (x), insn, false);
4460 case MEM:
4461 #ifdef HAVE_lo_sum
4462 /* If we have (mem (const ..)) or (mem (symbol_ref ...)), split it
4463 using LO_SUM and HIGH. */
4464 if (GET_CODE (XEXP (x, 0)) == CONST
4465 || GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
4467 enum machine_mode address_mode = get_address_mode (x);
4469 SUBST (XEXP (x, 0),
4470 gen_rtx_LO_SUM (address_mode,
4471 gen_rtx_HIGH (address_mode, XEXP (x, 0)),
4472 XEXP (x, 0)));
4473 return &XEXP (XEXP (x, 0), 0);
4475 #endif
4477 /* If we have a PLUS whose second operand is a constant and the
4478 address is not valid, perhaps will can split it up using
4479 the machine-specific way to split large constants. We use
4480 the first pseudo-reg (one of the virtual regs) as a placeholder;
4481 it will not remain in the result. */
4482 if (GET_CODE (XEXP (x, 0)) == PLUS
4483 && CONST_INT_P (XEXP (XEXP (x, 0), 1))
4484 && ! memory_address_addr_space_p (GET_MODE (x), XEXP (x, 0),
4485 MEM_ADDR_SPACE (x)))
4487 rtx reg = regno_reg_rtx[FIRST_PSEUDO_REGISTER];
4488 rtx seq = combine_split_insns (gen_rtx_SET (VOIDmode, reg,
4489 XEXP (x, 0)),
4490 subst_insn);
4492 /* This should have produced two insns, each of which sets our
4493 placeholder. If the source of the second is a valid address,
4494 we can make put both sources together and make a split point
4495 in the middle. */
4497 if (seq
4498 && NEXT_INSN (seq) != NULL_RTX
4499 && NEXT_INSN (NEXT_INSN (seq)) == NULL_RTX
4500 && NONJUMP_INSN_P (seq)
4501 && GET_CODE (PATTERN (seq)) == SET
4502 && SET_DEST (PATTERN (seq)) == reg
4503 && ! reg_mentioned_p (reg,
4504 SET_SRC (PATTERN (seq)))
4505 && NONJUMP_INSN_P (NEXT_INSN (seq))
4506 && GET_CODE (PATTERN (NEXT_INSN (seq))) == SET
4507 && SET_DEST (PATTERN (NEXT_INSN (seq))) == reg
4508 && memory_address_addr_space_p
4509 (GET_MODE (x), SET_SRC (PATTERN (NEXT_INSN (seq))),
4510 MEM_ADDR_SPACE (x)))
4512 rtx src1 = SET_SRC (PATTERN (seq));
4513 rtx src2 = SET_SRC (PATTERN (NEXT_INSN (seq)));
4515 /* Replace the placeholder in SRC2 with SRC1. If we can
4516 find where in SRC2 it was placed, that can become our
4517 split point and we can replace this address with SRC2.
4518 Just try two obvious places. */
4520 src2 = replace_rtx (src2, reg, src1);
4521 split = 0;
4522 if (XEXP (src2, 0) == src1)
4523 split = &XEXP (src2, 0);
4524 else if (GET_RTX_FORMAT (GET_CODE (XEXP (src2, 0)))[0] == 'e'
4525 && XEXP (XEXP (src2, 0), 0) == src1)
4526 split = &XEXP (XEXP (src2, 0), 0);
4528 if (split)
4530 SUBST (XEXP (x, 0), src2);
4531 return split;
4535 /* If that didn't work, perhaps the first operand is complex and
4536 needs to be computed separately, so make a split point there.
4537 This will occur on machines that just support REG + CONST
4538 and have a constant moved through some previous computation. */
4540 else if (!OBJECT_P (XEXP (XEXP (x, 0), 0))
4541 && ! (GET_CODE (XEXP (XEXP (x, 0), 0)) == SUBREG
4542 && OBJECT_P (SUBREG_REG (XEXP (XEXP (x, 0), 0)))))
4543 return &XEXP (XEXP (x, 0), 0);
4546 /* If we have a PLUS whose first operand is complex, try computing it
4547 separately by making a split there. */
4548 if (GET_CODE (XEXP (x, 0)) == PLUS
4549 && ! memory_address_addr_space_p (GET_MODE (x), XEXP (x, 0),
4550 MEM_ADDR_SPACE (x))
4551 && ! OBJECT_P (XEXP (XEXP (x, 0), 0))
4552 && ! (GET_CODE (XEXP (XEXP (x, 0), 0)) == SUBREG
4553 && OBJECT_P (SUBREG_REG (XEXP (XEXP (x, 0), 0)))))
4554 return &XEXP (XEXP (x, 0), 0);
4555 break;
4557 case SET:
4558 #ifdef HAVE_cc0
4559 /* If SET_DEST is CC0 and SET_SRC is not an operand, a COMPARE, or a
4560 ZERO_EXTRACT, the most likely reason why this doesn't match is that
4561 we need to put the operand into a register. So split at that
4562 point. */
4564 if (SET_DEST (x) == cc0_rtx
4565 && GET_CODE (SET_SRC (x)) != COMPARE
4566 && GET_CODE (SET_SRC (x)) != ZERO_EXTRACT
4567 && !OBJECT_P (SET_SRC (x))
4568 && ! (GET_CODE (SET_SRC (x)) == SUBREG
4569 && OBJECT_P (SUBREG_REG (SET_SRC (x)))))
4570 return &SET_SRC (x);
4571 #endif
4573 /* See if we can split SET_SRC as it stands. */
4574 split = find_split_point (&SET_SRC (x), insn, true);
4575 if (split && split != &SET_SRC (x))
4576 return split;
4578 /* See if we can split SET_DEST as it stands. */
4579 split = find_split_point (&SET_DEST (x), insn, false);
4580 if (split && split != &SET_DEST (x))
4581 return split;
4583 /* See if this is a bitfield assignment with everything constant. If
4584 so, this is an IOR of an AND, so split it into that. */
4585 if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
4586 && HWI_COMPUTABLE_MODE_P (GET_MODE (XEXP (SET_DEST (x), 0)))
4587 && CONST_INT_P (XEXP (SET_DEST (x), 1))
4588 && CONST_INT_P (XEXP (SET_DEST (x), 2))
4589 && CONST_INT_P (SET_SRC (x))
4590 && ((INTVAL (XEXP (SET_DEST (x), 1))
4591 + INTVAL (XEXP (SET_DEST (x), 2)))
4592 <= GET_MODE_PRECISION (GET_MODE (XEXP (SET_DEST (x), 0))))
4593 && ! side_effects_p (XEXP (SET_DEST (x), 0)))
4595 HOST_WIDE_INT pos = INTVAL (XEXP (SET_DEST (x), 2));
4596 unsigned HOST_WIDE_INT len = INTVAL (XEXP (SET_DEST (x), 1));
4597 unsigned HOST_WIDE_INT src = INTVAL (SET_SRC (x));
4598 rtx dest = XEXP (SET_DEST (x), 0);
4599 enum machine_mode mode = GET_MODE (dest);
4600 unsigned HOST_WIDE_INT mask
4601 = ((unsigned HOST_WIDE_INT) 1 << len) - 1;
4602 rtx or_mask;
4604 if (BITS_BIG_ENDIAN)
4605 pos = GET_MODE_PRECISION (mode) - len - pos;
4607 or_mask = gen_int_mode (src << pos, mode);
4608 if (src == mask)
4609 SUBST (SET_SRC (x),
4610 simplify_gen_binary (IOR, mode, dest, or_mask));
4611 else
4613 rtx negmask = gen_int_mode (~(mask << pos), mode);
4614 SUBST (SET_SRC (x),
4615 simplify_gen_binary (IOR, mode,
4616 simplify_gen_binary (AND, mode,
4617 dest, negmask),
4618 or_mask));
4621 SUBST (SET_DEST (x), dest);
4623 split = find_split_point (&SET_SRC (x), insn, true);
4624 if (split && split != &SET_SRC (x))
4625 return split;
4628 /* Otherwise, see if this is an operation that we can split into two.
4629 If so, try to split that. */
4630 code = GET_CODE (SET_SRC (x));
4632 switch (code)
4634 case AND:
4635 /* If we are AND'ing with a large constant that is only a single
4636 bit and the result is only being used in a context where we
4637 need to know if it is zero or nonzero, replace it with a bit
4638 extraction. This will avoid the large constant, which might
4639 have taken more than one insn to make. If the constant were
4640 not a valid argument to the AND but took only one insn to make,
4641 this is no worse, but if it took more than one insn, it will
4642 be better. */
4644 if (CONST_INT_P (XEXP (SET_SRC (x), 1))
4645 && REG_P (XEXP (SET_SRC (x), 0))
4646 && (pos = exact_log2 (UINTVAL (XEXP (SET_SRC (x), 1)))) >= 7
4647 && REG_P (SET_DEST (x))
4648 && (split = find_single_use (SET_DEST (x), insn, (rtx*) 0)) != 0
4649 && (GET_CODE (*split) == EQ || GET_CODE (*split) == NE)
4650 && XEXP (*split, 0) == SET_DEST (x)
4651 && XEXP (*split, 1) == const0_rtx)
4653 rtx extraction = make_extraction (GET_MODE (SET_DEST (x)),
4654 XEXP (SET_SRC (x), 0),
4655 pos, NULL_RTX, 1, 1, 0, 0);
4656 if (extraction != 0)
4658 SUBST (SET_SRC (x), extraction);
4659 return find_split_point (loc, insn, false);
4662 break;
4664 case NE:
4665 /* If STORE_FLAG_VALUE is -1, this is (NE X 0) and only one bit of X
4666 is known to be on, this can be converted into a NEG of a shift. */
4667 if (STORE_FLAG_VALUE == -1 && XEXP (SET_SRC (x), 1) == const0_rtx
4668 && GET_MODE (SET_SRC (x)) == GET_MODE (XEXP (SET_SRC (x), 0))
4669 && 1 <= (pos = exact_log2
4670 (nonzero_bits (XEXP (SET_SRC (x), 0),
4671 GET_MODE (XEXP (SET_SRC (x), 0))))))
4673 enum machine_mode mode = GET_MODE (XEXP (SET_SRC (x), 0));
4675 SUBST (SET_SRC (x),
4676 gen_rtx_NEG (mode,
4677 gen_rtx_LSHIFTRT (mode,
4678 XEXP (SET_SRC (x), 0),
4679 GEN_INT (pos))));
4681 split = find_split_point (&SET_SRC (x), insn, true);
4682 if (split && split != &SET_SRC (x))
4683 return split;
4685 break;
4687 case SIGN_EXTEND:
4688 inner = XEXP (SET_SRC (x), 0);
4690 /* We can't optimize if either mode is a partial integer
4691 mode as we don't know how many bits are significant
4692 in those modes. */
4693 if (GET_MODE_CLASS (GET_MODE (inner)) == MODE_PARTIAL_INT
4694 || GET_MODE_CLASS (GET_MODE (SET_SRC (x))) == MODE_PARTIAL_INT)
4695 break;
4697 pos = 0;
4698 len = GET_MODE_PRECISION (GET_MODE (inner));
4699 unsignedp = 0;
4700 break;
4702 case SIGN_EXTRACT:
4703 case ZERO_EXTRACT:
4704 if (CONST_INT_P (XEXP (SET_SRC (x), 1))
4705 && CONST_INT_P (XEXP (SET_SRC (x), 2)))
4707 inner = XEXP (SET_SRC (x), 0);
4708 len = INTVAL (XEXP (SET_SRC (x), 1));
4709 pos = INTVAL (XEXP (SET_SRC (x), 2));
4711 if (BITS_BIG_ENDIAN)
4712 pos = GET_MODE_PRECISION (GET_MODE (inner)) - len - pos;
4713 unsignedp = (code == ZERO_EXTRACT);
4715 break;
4717 default:
4718 break;
4721 if (len && pos >= 0
4722 && pos + len <= GET_MODE_PRECISION (GET_MODE (inner)))
4724 enum machine_mode mode = GET_MODE (SET_SRC (x));
4726 /* For unsigned, we have a choice of a shift followed by an
4727 AND or two shifts. Use two shifts for field sizes where the
4728 constant might be too large. We assume here that we can
4729 always at least get 8-bit constants in an AND insn, which is
4730 true for every current RISC. */
4732 if (unsignedp && len <= 8)
4734 SUBST (SET_SRC (x),
4735 gen_rtx_AND (mode,
4736 gen_rtx_LSHIFTRT
4737 (mode, gen_lowpart (mode, inner),
4738 GEN_INT (pos)),
4739 GEN_INT (((unsigned HOST_WIDE_INT) 1 << len)
4740 - 1)));
4742 split = find_split_point (&SET_SRC (x), insn, true);
4743 if (split && split != &SET_SRC (x))
4744 return split;
4746 else
4748 SUBST (SET_SRC (x),
4749 gen_rtx_fmt_ee
4750 (unsignedp ? LSHIFTRT : ASHIFTRT, mode,
4751 gen_rtx_ASHIFT (mode,
4752 gen_lowpart (mode, inner),
4753 GEN_INT (GET_MODE_PRECISION (mode)
4754 - len - pos)),
4755 GEN_INT (GET_MODE_PRECISION (mode) - len)));
4757 split = find_split_point (&SET_SRC (x), insn, true);
4758 if (split && split != &SET_SRC (x))
4759 return split;
4763 /* See if this is a simple operation with a constant as the second
4764 operand. It might be that this constant is out of range and hence
4765 could be used as a split point. */
4766 if (BINARY_P (SET_SRC (x))
4767 && CONSTANT_P (XEXP (SET_SRC (x), 1))
4768 && (OBJECT_P (XEXP (SET_SRC (x), 0))
4769 || (GET_CODE (XEXP (SET_SRC (x), 0)) == SUBREG
4770 && OBJECT_P (SUBREG_REG (XEXP (SET_SRC (x), 0))))))
4771 return &XEXP (SET_SRC (x), 1);
4773 /* Finally, see if this is a simple operation with its first operand
4774 not in a register. The operation might require this operand in a
4775 register, so return it as a split point. We can always do this
4776 because if the first operand were another operation, we would have
4777 already found it as a split point. */
4778 if ((BINARY_P (SET_SRC (x)) || UNARY_P (SET_SRC (x)))
4779 && ! register_operand (XEXP (SET_SRC (x), 0), VOIDmode))
4780 return &XEXP (SET_SRC (x), 0);
4782 return 0;
4784 case AND:
4785 case IOR:
4786 /* We write NOR as (and (not A) (not B)), but if we don't have a NOR,
4787 it is better to write this as (not (ior A B)) so we can split it.
4788 Similarly for IOR. */
4789 if (GET_CODE (XEXP (x, 0)) == NOT && GET_CODE (XEXP (x, 1)) == NOT)
4791 SUBST (*loc,
4792 gen_rtx_NOT (GET_MODE (x),
4793 gen_rtx_fmt_ee (code == IOR ? AND : IOR,
4794 GET_MODE (x),
4795 XEXP (XEXP (x, 0), 0),
4796 XEXP (XEXP (x, 1), 0))));
4797 return find_split_point (loc, insn, set_src);
4800 /* Many RISC machines have a large set of logical insns. If the
4801 second operand is a NOT, put it first so we will try to split the
4802 other operand first. */
4803 if (GET_CODE (XEXP (x, 1)) == NOT)
4805 rtx tem = XEXP (x, 0);
4806 SUBST (XEXP (x, 0), XEXP (x, 1));
4807 SUBST (XEXP (x, 1), tem);
4809 break;
4811 case PLUS:
4812 case MINUS:
4813 /* Canonicalization can produce (minus A (mult B C)), where C is a
4814 constant. It may be better to try splitting (plus (mult B -C) A)
4815 instead if this isn't a multiply by a power of two. */
4816 if (set_src && code == MINUS && GET_CODE (XEXP (x, 1)) == MULT
4817 && GET_CODE (XEXP (XEXP (x, 1), 1)) == CONST_INT
4818 && exact_log2 (INTVAL (XEXP (XEXP (x, 1), 1))) < 0)
4820 enum machine_mode mode = GET_MODE (x);
4821 unsigned HOST_WIDE_INT this_int = INTVAL (XEXP (XEXP (x, 1), 1));
4822 HOST_WIDE_INT other_int = trunc_int_for_mode (-this_int, mode);
4823 SUBST (*loc, gen_rtx_PLUS (mode, gen_rtx_MULT (mode,
4824 XEXP (XEXP (x, 1), 0),
4825 GEN_INT (other_int)),
4826 XEXP (x, 0)));
4827 return find_split_point (loc, insn, set_src);
4830 /* Split at a multiply-accumulate instruction. However if this is
4831 the SET_SRC, we likely do not have such an instruction and it's
4832 worthless to try this split. */
4833 if (!set_src && GET_CODE (XEXP (x, 0)) == MULT)
4834 return loc;
4836 default:
4837 break;
4840 /* Otherwise, select our actions depending on our rtx class. */
4841 switch (GET_RTX_CLASS (code))
4843 case RTX_BITFIELD_OPS: /* This is ZERO_EXTRACT and SIGN_EXTRACT. */
4844 case RTX_TERNARY:
4845 split = find_split_point (&XEXP (x, 2), insn, false);
4846 if (split)
4847 return split;
4848 /* ... fall through ... */
4849 case RTX_BIN_ARITH:
4850 case RTX_COMM_ARITH:
4851 case RTX_COMPARE:
4852 case RTX_COMM_COMPARE:
4853 split = find_split_point (&XEXP (x, 1), insn, false);
4854 if (split)
4855 return split;
4856 /* ... fall through ... */
4857 case RTX_UNARY:
4858 /* Some machines have (and (shift ...) ...) insns. If X is not
4859 an AND, but XEXP (X, 0) is, use it as our split point. */
4860 if (GET_CODE (x) != AND && GET_CODE (XEXP (x, 0)) == AND)
4861 return &XEXP (x, 0);
4863 split = find_split_point (&XEXP (x, 0), insn, false);
4864 if (split)
4865 return split;
4866 return loc;
4868 default:
4869 /* Otherwise, we don't have a split point. */
4870 return 0;
4874 /* Throughout X, replace FROM with TO, and return the result.
4875 The result is TO if X is FROM;
4876 otherwise the result is X, but its contents may have been modified.
4877 If they were modified, a record was made in undobuf so that
4878 undo_all will (among other things) return X to its original state.
4880 If the number of changes necessary is too much to record to undo,
4881 the excess changes are not made, so the result is invalid.
4882 The changes already made can still be undone.
4883 undobuf.num_undo is incremented for such changes, so by testing that
4884 the caller can tell whether the result is valid.
4886 `n_occurrences' is incremented each time FROM is replaced.
4888 IN_DEST is nonzero if we are processing the SET_DEST of a SET.
4890 IN_COND is nonzero if we are at the top level of a condition.
4892 UNIQUE_COPY is nonzero if each substitution must be unique. We do this
4893 by copying if `n_occurrences' is nonzero. */
4895 static rtx
4896 subst (rtx x, rtx from, rtx to, int in_dest, int in_cond, int unique_copy)
4898 enum rtx_code code = GET_CODE (x);
4899 enum machine_mode op0_mode = VOIDmode;
4900 const char *fmt;
4901 int len, i;
4902 rtx new_rtx;
4904 /* Two expressions are equal if they are identical copies of a shared
4905 RTX or if they are both registers with the same register number
4906 and mode. */
4908 #define COMBINE_RTX_EQUAL_P(X,Y) \
4909 ((X) == (Y) \
4910 || (REG_P (X) && REG_P (Y) \
4911 && REGNO (X) == REGNO (Y) && GET_MODE (X) == GET_MODE (Y)))
4913 if (! in_dest && COMBINE_RTX_EQUAL_P (x, from))
4915 n_occurrences++;
4916 return (unique_copy && n_occurrences > 1 ? copy_rtx (to) : to);
4919 /* If X and FROM are the same register but different modes, they
4920 will not have been seen as equal above. However, the log links code
4921 will make a LOG_LINKS entry for that case. If we do nothing, we
4922 will try to rerecognize our original insn and, when it succeeds,
4923 we will delete the feeding insn, which is incorrect.
4925 So force this insn not to match in this (rare) case. */
4926 if (! in_dest && code == REG && REG_P (from)
4927 && reg_overlap_mentioned_p (x, from))
4928 return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
4930 /* If this is an object, we are done unless it is a MEM or LO_SUM, both
4931 of which may contain things that can be combined. */
4932 if (code != MEM && code != LO_SUM && OBJECT_P (x))
4933 return x;
4935 /* It is possible to have a subexpression appear twice in the insn.
4936 Suppose that FROM is a register that appears within TO.
4937 Then, after that subexpression has been scanned once by `subst',
4938 the second time it is scanned, TO may be found. If we were
4939 to scan TO here, we would find FROM within it and create a
4940 self-referent rtl structure which is completely wrong. */
4941 if (COMBINE_RTX_EQUAL_P (x, to))
4942 return to;
4944 /* Parallel asm_operands need special attention because all of the
4945 inputs are shared across the arms. Furthermore, unsharing the
4946 rtl results in recognition failures. Failure to handle this case
4947 specially can result in circular rtl.
4949 Solve this by doing a normal pass across the first entry of the
4950 parallel, and only processing the SET_DESTs of the subsequent
4951 entries. Ug. */
4953 if (code == PARALLEL
4954 && GET_CODE (XVECEXP (x, 0, 0)) == SET
4955 && GET_CODE (SET_SRC (XVECEXP (x, 0, 0))) == ASM_OPERANDS)
4957 new_rtx = subst (XVECEXP (x, 0, 0), from, to, 0, 0, unique_copy);
4959 /* If this substitution failed, this whole thing fails. */
4960 if (GET_CODE (new_rtx) == CLOBBER
4961 && XEXP (new_rtx, 0) == const0_rtx)
4962 return new_rtx;
4964 SUBST (XVECEXP (x, 0, 0), new_rtx);
4966 for (i = XVECLEN (x, 0) - 1; i >= 1; i--)
4968 rtx dest = SET_DEST (XVECEXP (x, 0, i));
4970 if (!REG_P (dest)
4971 && GET_CODE (dest) != CC0
4972 && GET_CODE (dest) != PC)
4974 new_rtx = subst (dest, from, to, 0, 0, unique_copy);
4976 /* If this substitution failed, this whole thing fails. */
4977 if (GET_CODE (new_rtx) == CLOBBER
4978 && XEXP (new_rtx, 0) == const0_rtx)
4979 return new_rtx;
4981 SUBST (SET_DEST (XVECEXP (x, 0, i)), new_rtx);
4985 else
4987 len = GET_RTX_LENGTH (code);
4988 fmt = GET_RTX_FORMAT (code);
4990 /* We don't need to process a SET_DEST that is a register, CC0,
4991 or PC, so set up to skip this common case. All other cases
4992 where we want to suppress replacing something inside a
4993 SET_SRC are handled via the IN_DEST operand. */
4994 if (code == SET
4995 && (REG_P (SET_DEST (x))
4996 || GET_CODE (SET_DEST (x)) == CC0
4997 || GET_CODE (SET_DEST (x)) == PC))
4998 fmt = "ie";
5000 /* Get the mode of operand 0 in case X is now a SIGN_EXTEND of a
5001 constant. */
5002 if (fmt[0] == 'e')
5003 op0_mode = GET_MODE (XEXP (x, 0));
5005 for (i = 0; i < len; i++)
5007 if (fmt[i] == 'E')
5009 int j;
5010 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
5012 if (COMBINE_RTX_EQUAL_P (XVECEXP (x, i, j), from))
5014 new_rtx = (unique_copy && n_occurrences
5015 ? copy_rtx (to) : to);
5016 n_occurrences++;
5018 else
5020 new_rtx = subst (XVECEXP (x, i, j), from, to, 0, 0,
5021 unique_copy);
5023 /* If this substitution failed, this whole thing
5024 fails. */
5025 if (GET_CODE (new_rtx) == CLOBBER
5026 && XEXP (new_rtx, 0) == const0_rtx)
5027 return new_rtx;
5030 SUBST (XVECEXP (x, i, j), new_rtx);
5033 else if (fmt[i] == 'e')
5035 /* If this is a register being set, ignore it. */
5036 new_rtx = XEXP (x, i);
5037 if (in_dest
5038 && i == 0
5039 && (((code == SUBREG || code == ZERO_EXTRACT)
5040 && REG_P (new_rtx))
5041 || code == STRICT_LOW_PART))
5044 else if (COMBINE_RTX_EQUAL_P (XEXP (x, i), from))
5046 /* In general, don't install a subreg involving two
5047 modes not tieable. It can worsen register
5048 allocation, and can even make invalid reload
5049 insns, since the reg inside may need to be copied
5050 from in the outside mode, and that may be invalid
5051 if it is an fp reg copied in integer mode.
5053 We allow two exceptions to this: It is valid if
5054 it is inside another SUBREG and the mode of that
5055 SUBREG and the mode of the inside of TO is
5056 tieable and it is valid if X is a SET that copies
5057 FROM to CC0. */
5059 if (GET_CODE (to) == SUBREG
5060 && ! MODES_TIEABLE_P (GET_MODE (to),
5061 GET_MODE (SUBREG_REG (to)))
5062 && ! (code == SUBREG
5063 && MODES_TIEABLE_P (GET_MODE (x),
5064 GET_MODE (SUBREG_REG (to))))
5065 #ifdef HAVE_cc0
5066 && ! (code == SET && i == 1 && XEXP (x, 0) == cc0_rtx)
5067 #endif
5069 return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
5071 #ifdef CANNOT_CHANGE_MODE_CLASS
5072 if (code == SUBREG
5073 && REG_P (to)
5074 && REGNO (to) < FIRST_PSEUDO_REGISTER
5075 && REG_CANNOT_CHANGE_MODE_P (REGNO (to),
5076 GET_MODE (to),
5077 GET_MODE (x)))
5078 return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
5079 #endif
5081 new_rtx = (unique_copy && n_occurrences ? copy_rtx (to) : to);
5082 n_occurrences++;
5084 else
5085 /* If we are in a SET_DEST, suppress most cases unless we
5086 have gone inside a MEM, in which case we want to
5087 simplify the address. We assume here that things that
5088 are actually part of the destination have their inner
5089 parts in the first expression. This is true for SUBREG,
5090 STRICT_LOW_PART, and ZERO_EXTRACT, which are the only
5091 things aside from REG and MEM that should appear in a
5092 SET_DEST. */
5093 new_rtx = subst (XEXP (x, i), from, to,
5094 (((in_dest
5095 && (code == SUBREG || code == STRICT_LOW_PART
5096 || code == ZERO_EXTRACT))
5097 || code == SET)
5098 && i == 0),
5099 code == IF_THEN_ELSE && i == 0,
5100 unique_copy);
5102 /* If we found that we will have to reject this combination,
5103 indicate that by returning the CLOBBER ourselves, rather than
5104 an expression containing it. This will speed things up as
5105 well as prevent accidents where two CLOBBERs are considered
5106 to be equal, thus producing an incorrect simplification. */
5108 if (GET_CODE (new_rtx) == CLOBBER && XEXP (new_rtx, 0) == const0_rtx)
5109 return new_rtx;
5111 if (GET_CODE (x) == SUBREG && CONST_SCALAR_INT_P (new_rtx))
5113 enum machine_mode mode = GET_MODE (x);
5115 x = simplify_subreg (GET_MODE (x), new_rtx,
5116 GET_MODE (SUBREG_REG (x)),
5117 SUBREG_BYTE (x));
5118 if (! x)
5119 x = gen_rtx_CLOBBER (mode, const0_rtx);
5121 else if (CONST_INT_P (new_rtx)
5122 && GET_CODE (x) == ZERO_EXTEND)
5124 x = simplify_unary_operation (ZERO_EXTEND, GET_MODE (x),
5125 new_rtx, GET_MODE (XEXP (x, 0)));
5126 gcc_assert (x);
5128 else
5129 SUBST (XEXP (x, i), new_rtx);
5134 /* Check if we are loading something from the constant pool via float
5135 extension; in this case we would undo compress_float_constant
5136 optimization and degenerate constant load to an immediate value. */
5137 if (GET_CODE (x) == FLOAT_EXTEND
5138 && MEM_P (XEXP (x, 0))
5139 && MEM_READONLY_P (XEXP (x, 0)))
5141 rtx tmp = avoid_constant_pool_reference (x);
5142 if (x != tmp)
5143 return x;
5146 /* Try to simplify X. If the simplification changed the code, it is likely
5147 that further simplification will help, so loop, but limit the number
5148 of repetitions that will be performed. */
5150 for (i = 0; i < 4; i++)
5152 /* If X is sufficiently simple, don't bother trying to do anything
5153 with it. */
5154 if (code != CONST_INT && code != REG && code != CLOBBER)
5155 x = combine_simplify_rtx (x, op0_mode, in_dest, in_cond);
5157 if (GET_CODE (x) == code)
5158 break;
5160 code = GET_CODE (x);
5162 /* We no longer know the original mode of operand 0 since we
5163 have changed the form of X) */
5164 op0_mode = VOIDmode;
5167 return x;
5170 /* Simplify X, a piece of RTL. We just operate on the expression at the
5171 outer level; call `subst' to simplify recursively. Return the new
5172 expression.
5174 OP0_MODE is the original mode of XEXP (x, 0). IN_DEST is nonzero
5175 if we are inside a SET_DEST. IN_COND is nonzero if we are at the top level
5176 of a condition. */
5178 static rtx
5179 combine_simplify_rtx (rtx x, enum machine_mode op0_mode, int in_dest,
5180 int in_cond)
5182 enum rtx_code code = GET_CODE (x);
5183 enum machine_mode mode = GET_MODE (x);
5184 rtx temp;
5185 int i;
5187 /* If this is a commutative operation, put a constant last and a complex
5188 expression first. We don't need to do this for comparisons here. */
5189 if (COMMUTATIVE_ARITH_P (x)
5190 && swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
5192 temp = XEXP (x, 0);
5193 SUBST (XEXP (x, 0), XEXP (x, 1));
5194 SUBST (XEXP (x, 1), temp);
5197 /* If this is a simple operation applied to an IF_THEN_ELSE, try
5198 applying it to the arms of the IF_THEN_ELSE. This often simplifies
5199 things. Check for cases where both arms are testing the same
5200 condition.
5202 Don't do anything if all operands are very simple. */
5204 if ((BINARY_P (x)
5205 && ((!OBJECT_P (XEXP (x, 0))
5206 && ! (GET_CODE (XEXP (x, 0)) == SUBREG
5207 && OBJECT_P (SUBREG_REG (XEXP (x, 0)))))
5208 || (!OBJECT_P (XEXP (x, 1))
5209 && ! (GET_CODE (XEXP (x, 1)) == SUBREG
5210 && OBJECT_P (SUBREG_REG (XEXP (x, 1)))))))
5211 || (UNARY_P (x)
5212 && (!OBJECT_P (XEXP (x, 0))
5213 && ! (GET_CODE (XEXP (x, 0)) == SUBREG
5214 && OBJECT_P (SUBREG_REG (XEXP (x, 0)))))))
5216 rtx cond, true_rtx, false_rtx;
5218 cond = if_then_else_cond (x, &true_rtx, &false_rtx);
5219 if (cond != 0
5220 /* If everything is a comparison, what we have is highly unlikely
5221 to be simpler, so don't use it. */
5222 && ! (COMPARISON_P (x)
5223 && (COMPARISON_P (true_rtx) || COMPARISON_P (false_rtx))))
5225 rtx cop1 = const0_rtx;
5226 enum rtx_code cond_code = simplify_comparison (NE, &cond, &cop1);
5228 if (cond_code == NE && COMPARISON_P (cond))
5229 return x;
5231 /* Simplify the alternative arms; this may collapse the true and
5232 false arms to store-flag values. Be careful to use copy_rtx
5233 here since true_rtx or false_rtx might share RTL with x as a
5234 result of the if_then_else_cond call above. */
5235 true_rtx = subst (copy_rtx (true_rtx), pc_rtx, pc_rtx, 0, 0, 0);
5236 false_rtx = subst (copy_rtx (false_rtx), pc_rtx, pc_rtx, 0, 0, 0);
5238 /* If true_rtx and false_rtx are not general_operands, an if_then_else
5239 is unlikely to be simpler. */
5240 if (general_operand (true_rtx, VOIDmode)
5241 && general_operand (false_rtx, VOIDmode))
5243 enum rtx_code reversed;
5245 /* Restarting if we generate a store-flag expression will cause
5246 us to loop. Just drop through in this case. */
5248 /* If the result values are STORE_FLAG_VALUE and zero, we can
5249 just make the comparison operation. */
5250 if (true_rtx == const_true_rtx && false_rtx == const0_rtx)
5251 x = simplify_gen_relational (cond_code, mode, VOIDmode,
5252 cond, cop1);
5253 else if (true_rtx == const0_rtx && false_rtx == const_true_rtx
5254 && ((reversed = reversed_comparison_code_parts
5255 (cond_code, cond, cop1, NULL))
5256 != UNKNOWN))
5257 x = simplify_gen_relational (reversed, mode, VOIDmode,
5258 cond, cop1);
5260 /* Likewise, we can make the negate of a comparison operation
5261 if the result values are - STORE_FLAG_VALUE and zero. */
5262 else if (CONST_INT_P (true_rtx)
5263 && INTVAL (true_rtx) == - STORE_FLAG_VALUE
5264 && false_rtx == const0_rtx)
5265 x = simplify_gen_unary (NEG, mode,
5266 simplify_gen_relational (cond_code,
5267 mode, VOIDmode,
5268 cond, cop1),
5269 mode);
5270 else if (CONST_INT_P (false_rtx)
5271 && INTVAL (false_rtx) == - STORE_FLAG_VALUE
5272 && true_rtx == const0_rtx
5273 && ((reversed = reversed_comparison_code_parts
5274 (cond_code, cond, cop1, NULL))
5275 != UNKNOWN))
5276 x = simplify_gen_unary (NEG, mode,
5277 simplify_gen_relational (reversed,
5278 mode, VOIDmode,
5279 cond, cop1),
5280 mode);
5281 else
5282 return gen_rtx_IF_THEN_ELSE (mode,
5283 simplify_gen_relational (cond_code,
5284 mode,
5285 VOIDmode,
5286 cond,
5287 cop1),
5288 true_rtx, false_rtx);
5290 code = GET_CODE (x);
5291 op0_mode = VOIDmode;
5296 /* Try to fold this expression in case we have constants that weren't
5297 present before. */
5298 temp = 0;
5299 switch (GET_RTX_CLASS (code))
5301 case RTX_UNARY:
5302 if (op0_mode == VOIDmode)
5303 op0_mode = GET_MODE (XEXP (x, 0));
5304 temp = simplify_unary_operation (code, mode, XEXP (x, 0), op0_mode);
5305 break;
5306 case RTX_COMPARE:
5307 case RTX_COMM_COMPARE:
5309 enum machine_mode cmp_mode = GET_MODE (XEXP (x, 0));
5310 if (cmp_mode == VOIDmode)
5312 cmp_mode = GET_MODE (XEXP (x, 1));
5313 if (cmp_mode == VOIDmode)
5314 cmp_mode = op0_mode;
5316 temp = simplify_relational_operation (code, mode, cmp_mode,
5317 XEXP (x, 0), XEXP (x, 1));
5319 break;
5320 case RTX_COMM_ARITH:
5321 case RTX_BIN_ARITH:
5322 temp = simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1));
5323 break;
5324 case RTX_BITFIELD_OPS:
5325 case RTX_TERNARY:
5326 temp = simplify_ternary_operation (code, mode, op0_mode, XEXP (x, 0),
5327 XEXP (x, 1), XEXP (x, 2));
5328 break;
5329 default:
5330 break;
5333 if (temp)
5335 x = temp;
5336 code = GET_CODE (temp);
5337 op0_mode = VOIDmode;
5338 mode = GET_MODE (temp);
5341 /* First see if we can apply the inverse distributive law. */
5342 if (code == PLUS || code == MINUS
5343 || code == AND || code == IOR || code == XOR)
5345 x = apply_distributive_law (x);
5346 code = GET_CODE (x);
5347 op0_mode = VOIDmode;
5350 /* If CODE is an associative operation not otherwise handled, see if we
5351 can associate some operands. This can win if they are constants or
5352 if they are logically related (i.e. (a & b) & a). */
5353 if ((code == PLUS || code == MINUS || code == MULT || code == DIV
5354 || code == AND || code == IOR || code == XOR
5355 || code == SMAX || code == SMIN || code == UMAX || code == UMIN)
5356 && ((INTEGRAL_MODE_P (mode) && code != DIV)
5357 || (flag_associative_math && FLOAT_MODE_P (mode))))
5359 if (GET_CODE (XEXP (x, 0)) == code)
5361 rtx other = XEXP (XEXP (x, 0), 0);
5362 rtx inner_op0 = XEXP (XEXP (x, 0), 1);
5363 rtx inner_op1 = XEXP (x, 1);
5364 rtx inner;
5366 /* Make sure we pass the constant operand if any as the second
5367 one if this is a commutative operation. */
5368 if (CONSTANT_P (inner_op0) && COMMUTATIVE_ARITH_P (x))
5370 rtx tem = inner_op0;
5371 inner_op0 = inner_op1;
5372 inner_op1 = tem;
5374 inner = simplify_binary_operation (code == MINUS ? PLUS
5375 : code == DIV ? MULT
5376 : code,
5377 mode, inner_op0, inner_op1);
5379 /* For commutative operations, try the other pair if that one
5380 didn't simplify. */
5381 if (inner == 0 && COMMUTATIVE_ARITH_P (x))
5383 other = XEXP (XEXP (x, 0), 1);
5384 inner = simplify_binary_operation (code, mode,
5385 XEXP (XEXP (x, 0), 0),
5386 XEXP (x, 1));
5389 if (inner)
5390 return simplify_gen_binary (code, mode, other, inner);
5394 /* A little bit of algebraic simplification here. */
5395 switch (code)
5397 case MEM:
5398 /* Ensure that our address has any ASHIFTs converted to MULT in case
5399 address-recognizing predicates are called later. */
5400 temp = make_compound_operation (XEXP (x, 0), MEM);
5401 SUBST (XEXP (x, 0), temp);
5402 break;
5404 case SUBREG:
5405 if (op0_mode == VOIDmode)
5406 op0_mode = GET_MODE (SUBREG_REG (x));
5408 /* See if this can be moved to simplify_subreg. */
5409 if (CONSTANT_P (SUBREG_REG (x))
5410 && subreg_lowpart_offset (mode, op0_mode) == SUBREG_BYTE (x)
5411 /* Don't call gen_lowpart if the inner mode
5412 is VOIDmode and we cannot simplify it, as SUBREG without
5413 inner mode is invalid. */
5414 && (GET_MODE (SUBREG_REG (x)) != VOIDmode
5415 || gen_lowpart_common (mode, SUBREG_REG (x))))
5416 return gen_lowpart (mode, SUBREG_REG (x));
5418 if (GET_MODE_CLASS (GET_MODE (SUBREG_REG (x))) == MODE_CC)
5419 break;
5421 rtx temp;
5422 temp = simplify_subreg (mode, SUBREG_REG (x), op0_mode,
5423 SUBREG_BYTE (x));
5424 if (temp)
5425 return temp;
5428 /* Don't change the mode of the MEM if that would change the meaning
5429 of the address. */
5430 if (MEM_P (SUBREG_REG (x))
5431 && (MEM_VOLATILE_P (SUBREG_REG (x))
5432 || mode_dependent_address_p (XEXP (SUBREG_REG (x), 0),
5433 MEM_ADDR_SPACE (SUBREG_REG (x)))))
5434 return gen_rtx_CLOBBER (mode, const0_rtx);
5436 /* Note that we cannot do any narrowing for non-constants since
5437 we might have been counting on using the fact that some bits were
5438 zero. We now do this in the SET. */
5440 break;
5442 case NEG:
5443 temp = expand_compound_operation (XEXP (x, 0));
5445 /* For C equal to the width of MODE minus 1, (neg (ashiftrt X C)) can be
5446 replaced by (lshiftrt X C). This will convert
5447 (neg (sign_extract X 1 Y)) to (zero_extract X 1 Y). */
5449 if (GET_CODE (temp) == ASHIFTRT
5450 && CONST_INT_P (XEXP (temp, 1))
5451 && INTVAL (XEXP (temp, 1)) == GET_MODE_PRECISION (mode) - 1)
5452 return simplify_shift_const (NULL_RTX, LSHIFTRT, mode, XEXP (temp, 0),
5453 INTVAL (XEXP (temp, 1)));
5455 /* If X has only a single bit that might be nonzero, say, bit I, convert
5456 (neg X) to (ashiftrt (ashift X C-I) C-I) where C is the bitsize of
5457 MODE minus 1. This will convert (neg (zero_extract X 1 Y)) to
5458 (sign_extract X 1 Y). But only do this if TEMP isn't a register
5459 or a SUBREG of one since we'd be making the expression more
5460 complex if it was just a register. */
5462 if (!REG_P (temp)
5463 && ! (GET_CODE (temp) == SUBREG
5464 && REG_P (SUBREG_REG (temp)))
5465 && (i = exact_log2 (nonzero_bits (temp, mode))) >= 0)
5467 rtx temp1 = simplify_shift_const
5468 (NULL_RTX, ASHIFTRT, mode,
5469 simplify_shift_const (NULL_RTX, ASHIFT, mode, temp,
5470 GET_MODE_PRECISION (mode) - 1 - i),
5471 GET_MODE_PRECISION (mode) - 1 - i);
5473 /* If all we did was surround TEMP with the two shifts, we
5474 haven't improved anything, so don't use it. Otherwise,
5475 we are better off with TEMP1. */
5476 if (GET_CODE (temp1) != ASHIFTRT
5477 || GET_CODE (XEXP (temp1, 0)) != ASHIFT
5478 || XEXP (XEXP (temp1, 0), 0) != temp)
5479 return temp1;
5481 break;
5483 case TRUNCATE:
5484 /* We can't handle truncation to a partial integer mode here
5485 because we don't know the real bitsize of the partial
5486 integer mode. */
5487 if (GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
5488 break;
5490 if (HWI_COMPUTABLE_MODE_P (mode))
5491 SUBST (XEXP (x, 0),
5492 force_to_mode (XEXP (x, 0), GET_MODE (XEXP (x, 0)),
5493 GET_MODE_MASK (mode), 0));
5495 /* We can truncate a constant value and return it. */
5496 if (CONST_INT_P (XEXP (x, 0)))
5497 return gen_int_mode (INTVAL (XEXP (x, 0)), mode);
5499 /* Similarly to what we do in simplify-rtx.c, a truncate of a register
5500 whose value is a comparison can be replaced with a subreg if
5501 STORE_FLAG_VALUE permits. */
5502 if (HWI_COMPUTABLE_MODE_P (mode)
5503 && (STORE_FLAG_VALUE & ~GET_MODE_MASK (mode)) == 0
5504 && (temp = get_last_value (XEXP (x, 0)))
5505 && COMPARISON_P (temp))
5506 return gen_lowpart (mode, XEXP (x, 0));
5507 break;
5509 case CONST:
5510 /* (const (const X)) can become (const X). Do it this way rather than
5511 returning the inner CONST since CONST can be shared with a
5512 REG_EQUAL note. */
5513 if (GET_CODE (XEXP (x, 0)) == CONST)
5514 SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
5515 break;
5517 #ifdef HAVE_lo_sum
5518 case LO_SUM:
5519 /* Convert (lo_sum (high FOO) FOO) to FOO. This is necessary so we
5520 can add in an offset. find_split_point will split this address up
5521 again if it doesn't match. */
5522 if (GET_CODE (XEXP (x, 0)) == HIGH
5523 && rtx_equal_p (XEXP (XEXP (x, 0), 0), XEXP (x, 1)))
5524 return XEXP (x, 1);
5525 break;
5526 #endif
5528 case PLUS:
5529 /* (plus (xor (and <foo> (const_int pow2 - 1)) <c>) <-c>)
5530 when c is (const_int (pow2 + 1) / 2) is a sign extension of a
5531 bit-field and can be replaced by either a sign_extend or a
5532 sign_extract. The `and' may be a zero_extend and the two
5533 <c>, -<c> constants may be reversed. */
5534 if (GET_CODE (XEXP (x, 0)) == XOR
5535 && CONST_INT_P (XEXP (x, 1))
5536 && CONST_INT_P (XEXP (XEXP (x, 0), 1))
5537 && INTVAL (XEXP (x, 1)) == -INTVAL (XEXP (XEXP (x, 0), 1))
5538 && ((i = exact_log2 (UINTVAL (XEXP (XEXP (x, 0), 1)))) >= 0
5539 || (i = exact_log2 (UINTVAL (XEXP (x, 1)))) >= 0)
5540 && HWI_COMPUTABLE_MODE_P (mode)
5541 && ((GET_CODE (XEXP (XEXP (x, 0), 0)) == AND
5542 && CONST_INT_P (XEXP (XEXP (XEXP (x, 0), 0), 1))
5543 && (UINTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1))
5544 == ((unsigned HOST_WIDE_INT) 1 << (i + 1)) - 1))
5545 || (GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND
5546 && (GET_MODE_PRECISION (GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)))
5547 == (unsigned int) i + 1))))
5548 return simplify_shift_const
5549 (NULL_RTX, ASHIFTRT, mode,
5550 simplify_shift_const (NULL_RTX, ASHIFT, mode,
5551 XEXP (XEXP (XEXP (x, 0), 0), 0),
5552 GET_MODE_PRECISION (mode) - (i + 1)),
5553 GET_MODE_PRECISION (mode) - (i + 1));
5555 /* If only the low-order bit of X is possibly nonzero, (plus x -1)
5556 can become (ashiftrt (ashift (xor x 1) C) C) where C is
5557 the bitsize of the mode - 1. This allows simplification of
5558 "a = (b & 8) == 0;" */
5559 if (XEXP (x, 1) == constm1_rtx
5560 && !REG_P (XEXP (x, 0))
5561 && ! (GET_CODE (XEXP (x, 0)) == SUBREG
5562 && REG_P (SUBREG_REG (XEXP (x, 0))))
5563 && nonzero_bits (XEXP (x, 0), mode) == 1)
5564 return simplify_shift_const (NULL_RTX, ASHIFTRT, mode,
5565 simplify_shift_const (NULL_RTX, ASHIFT, mode,
5566 gen_rtx_XOR (mode, XEXP (x, 0), const1_rtx),
5567 GET_MODE_PRECISION (mode) - 1),
5568 GET_MODE_PRECISION (mode) - 1);
5570 /* If we are adding two things that have no bits in common, convert
5571 the addition into an IOR. This will often be further simplified,
5572 for example in cases like ((a & 1) + (a & 2)), which can
5573 become a & 3. */
5575 if (HWI_COMPUTABLE_MODE_P (mode)
5576 && (nonzero_bits (XEXP (x, 0), mode)
5577 & nonzero_bits (XEXP (x, 1), mode)) == 0)
5579 /* Try to simplify the expression further. */
5580 rtx tor = simplify_gen_binary (IOR, mode, XEXP (x, 0), XEXP (x, 1));
5581 temp = combine_simplify_rtx (tor, VOIDmode, in_dest, 0);
5583 /* If we could, great. If not, do not go ahead with the IOR
5584 replacement, since PLUS appears in many special purpose
5585 address arithmetic instructions. */
5586 if (GET_CODE (temp) != CLOBBER
5587 && (GET_CODE (temp) != IOR
5588 || ((XEXP (temp, 0) != XEXP (x, 0)
5589 || XEXP (temp, 1) != XEXP (x, 1))
5590 && (XEXP (temp, 0) != XEXP (x, 1)
5591 || XEXP (temp, 1) != XEXP (x, 0)))))
5592 return temp;
5594 break;
5596 case MINUS:
5597 /* (minus <foo> (and <foo> (const_int -pow2))) becomes
5598 (and <foo> (const_int pow2-1)) */
5599 if (GET_CODE (XEXP (x, 1)) == AND
5600 && CONST_INT_P (XEXP (XEXP (x, 1), 1))
5601 && exact_log2 (-UINTVAL (XEXP (XEXP (x, 1), 1))) >= 0
5602 && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
5603 return simplify_and_const_int (NULL_RTX, mode, XEXP (x, 0),
5604 -INTVAL (XEXP (XEXP (x, 1), 1)) - 1);
5605 break;
5607 case MULT:
5608 /* If we have (mult (plus A B) C), apply the distributive law and then
5609 the inverse distributive law to see if things simplify. This
5610 occurs mostly in addresses, often when unrolling loops. */
5612 if (GET_CODE (XEXP (x, 0)) == PLUS)
5614 rtx result = distribute_and_simplify_rtx (x, 0);
5615 if (result)
5616 return result;
5619 /* Try simplify a*(b/c) as (a*b)/c. */
5620 if (FLOAT_MODE_P (mode) && flag_associative_math
5621 && GET_CODE (XEXP (x, 0)) == DIV)
5623 rtx tem = simplify_binary_operation (MULT, mode,
5624 XEXP (XEXP (x, 0), 0),
5625 XEXP (x, 1));
5626 if (tem)
5627 return simplify_gen_binary (DIV, mode, tem, XEXP (XEXP (x, 0), 1));
5629 break;
5631 case UDIV:
5632 /* If this is a divide by a power of two, treat it as a shift if
5633 its first operand is a shift. */
5634 if (CONST_INT_P (XEXP (x, 1))
5635 && (i = exact_log2 (UINTVAL (XEXP (x, 1)))) >= 0
5636 && (GET_CODE (XEXP (x, 0)) == ASHIFT
5637 || GET_CODE (XEXP (x, 0)) == LSHIFTRT
5638 || GET_CODE (XEXP (x, 0)) == ASHIFTRT
5639 || GET_CODE (XEXP (x, 0)) == ROTATE
5640 || GET_CODE (XEXP (x, 0)) == ROTATERT))
5641 return simplify_shift_const (NULL_RTX, LSHIFTRT, mode, XEXP (x, 0), i);
5642 break;
5644 case EQ: case NE:
5645 case GT: case GTU: case GE: case GEU:
5646 case LT: case LTU: case LE: case LEU:
5647 case UNEQ: case LTGT:
5648 case UNGT: case UNGE:
5649 case UNLT: case UNLE:
5650 case UNORDERED: case ORDERED:
5651 /* If the first operand is a condition code, we can't do anything
5652 with it. */
5653 if (GET_CODE (XEXP (x, 0)) == COMPARE
5654 || (GET_MODE_CLASS (GET_MODE (XEXP (x, 0))) != MODE_CC
5655 && ! CC0_P (XEXP (x, 0))))
5657 rtx op0 = XEXP (x, 0);
5658 rtx op1 = XEXP (x, 1);
5659 enum rtx_code new_code;
5661 if (GET_CODE (op0) == COMPARE)
5662 op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
5664 /* Simplify our comparison, if possible. */
5665 new_code = simplify_comparison (code, &op0, &op1);
5667 /* If STORE_FLAG_VALUE is 1, we can convert (ne x 0) to simply X
5668 if only the low-order bit is possibly nonzero in X (such as when
5669 X is a ZERO_EXTRACT of one bit). Similarly, we can convert EQ to
5670 (xor X 1) or (minus 1 X); we use the former. Finally, if X is
5671 known to be either 0 or -1, NE becomes a NEG and EQ becomes
5672 (plus X 1).
5674 Remove any ZERO_EXTRACT we made when thinking this was a
5675 comparison. It may now be simpler to use, e.g., an AND. If a
5676 ZERO_EXTRACT is indeed appropriate, it will be placed back by
5677 the call to make_compound_operation in the SET case.
5679 Don't apply these optimizations if the caller would
5680 prefer a comparison rather than a value.
5681 E.g., for the condition in an IF_THEN_ELSE most targets need
5682 an explicit comparison. */
5684 if (in_cond)
5687 else if (STORE_FLAG_VALUE == 1
5688 && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
5689 && op1 == const0_rtx
5690 && mode == GET_MODE (op0)
5691 && nonzero_bits (op0, mode) == 1)
5692 return gen_lowpart (mode,
5693 expand_compound_operation (op0));
5695 else if (STORE_FLAG_VALUE == 1
5696 && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
5697 && op1 == const0_rtx
5698 && mode == GET_MODE (op0)
5699 && (num_sign_bit_copies (op0, mode)
5700 == GET_MODE_PRECISION (mode)))
5702 op0 = expand_compound_operation (op0);
5703 return simplify_gen_unary (NEG, mode,
5704 gen_lowpart (mode, op0),
5705 mode);
5708 else if (STORE_FLAG_VALUE == 1
5709 && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
5710 && op1 == const0_rtx
5711 && mode == GET_MODE (op0)
5712 && nonzero_bits (op0, mode) == 1)
5714 op0 = expand_compound_operation (op0);
5715 return simplify_gen_binary (XOR, mode,
5716 gen_lowpart (mode, op0),
5717 const1_rtx);
5720 else if (STORE_FLAG_VALUE == 1
5721 && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
5722 && op1 == const0_rtx
5723 && mode == GET_MODE (op0)
5724 && (num_sign_bit_copies (op0, mode)
5725 == GET_MODE_PRECISION (mode)))
5727 op0 = expand_compound_operation (op0);
5728 return plus_constant (mode, gen_lowpart (mode, op0), 1);
5731 /* If STORE_FLAG_VALUE is -1, we have cases similar to
5732 those above. */
5733 if (in_cond)
5736 else if (STORE_FLAG_VALUE == -1
5737 && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
5738 && op1 == const0_rtx
5739 && (num_sign_bit_copies (op0, mode)
5740 == GET_MODE_PRECISION (mode)))
5741 return gen_lowpart (mode,
5742 expand_compound_operation (op0));
5744 else if (STORE_FLAG_VALUE == -1
5745 && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
5746 && op1 == const0_rtx
5747 && mode == GET_MODE (op0)
5748 && nonzero_bits (op0, mode) == 1)
5750 op0 = expand_compound_operation (op0);
5751 return simplify_gen_unary (NEG, mode,
5752 gen_lowpart (mode, op0),
5753 mode);
5756 else if (STORE_FLAG_VALUE == -1
5757 && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
5758 && op1 == const0_rtx
5759 && mode == GET_MODE (op0)
5760 && (num_sign_bit_copies (op0, mode)
5761 == GET_MODE_PRECISION (mode)))
5763 op0 = expand_compound_operation (op0);
5764 return simplify_gen_unary (NOT, mode,
5765 gen_lowpart (mode, op0),
5766 mode);
5769 /* If X is 0/1, (eq X 0) is X-1. */
5770 else if (STORE_FLAG_VALUE == -1
5771 && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
5772 && op1 == const0_rtx
5773 && mode == GET_MODE (op0)
5774 && nonzero_bits (op0, mode) == 1)
5776 op0 = expand_compound_operation (op0);
5777 return plus_constant (mode, gen_lowpart (mode, op0), -1);
5780 /* If STORE_FLAG_VALUE says to just test the sign bit and X has just
5781 one bit that might be nonzero, we can convert (ne x 0) to
5782 (ashift x c) where C puts the bit in the sign bit. Remove any
5783 AND with STORE_FLAG_VALUE when we are done, since we are only
5784 going to test the sign bit. */
5785 if (new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
5786 && HWI_COMPUTABLE_MODE_P (mode)
5787 && val_signbit_p (mode, STORE_FLAG_VALUE)
5788 && op1 == const0_rtx
5789 && mode == GET_MODE (op0)
5790 && (i = exact_log2 (nonzero_bits (op0, mode))) >= 0)
5792 x = simplify_shift_const (NULL_RTX, ASHIFT, mode,
5793 expand_compound_operation (op0),
5794 GET_MODE_PRECISION (mode) - 1 - i);
5795 if (GET_CODE (x) == AND && XEXP (x, 1) == const_true_rtx)
5796 return XEXP (x, 0);
5797 else
5798 return x;
5801 /* If the code changed, return a whole new comparison.
5802 We also need to avoid using SUBST in cases where
5803 simplify_comparison has widened a comparison with a CONST_INT,
5804 since in that case the wider CONST_INT may fail the sanity
5805 checks in do_SUBST. */
5806 if (new_code != code
5807 || (CONST_INT_P (op1)
5808 && GET_MODE (op0) != GET_MODE (XEXP (x, 0))
5809 && GET_MODE (op0) != GET_MODE (XEXP (x, 1))))
5810 return gen_rtx_fmt_ee (new_code, mode, op0, op1);
5812 /* Otherwise, keep this operation, but maybe change its operands.
5813 This also converts (ne (compare FOO BAR) 0) to (ne FOO BAR). */
5814 SUBST (XEXP (x, 0), op0);
5815 SUBST (XEXP (x, 1), op1);
5817 break;
5819 case IF_THEN_ELSE:
5820 return simplify_if_then_else (x);
5822 case ZERO_EXTRACT:
5823 case SIGN_EXTRACT:
5824 case ZERO_EXTEND:
5825 case SIGN_EXTEND:
5826 /* If we are processing SET_DEST, we are done. */
5827 if (in_dest)
5828 return x;
5830 return expand_compound_operation (x);
5832 case SET:
5833 return simplify_set (x);
5835 case AND:
5836 case IOR:
5837 return simplify_logical (x);
5839 case ASHIFT:
5840 case LSHIFTRT:
5841 case ASHIFTRT:
5842 case ROTATE:
5843 case ROTATERT:
5844 /* If this is a shift by a constant amount, simplify it. */
5845 if (CONST_INT_P (XEXP (x, 1)))
5846 return simplify_shift_const (x, code, mode, XEXP (x, 0),
5847 INTVAL (XEXP (x, 1)));
5849 else if (SHIFT_COUNT_TRUNCATED && !REG_P (XEXP (x, 1)))
5850 SUBST (XEXP (x, 1),
5851 force_to_mode (XEXP (x, 1), GET_MODE (XEXP (x, 1)),
5852 ((unsigned HOST_WIDE_INT) 1
5853 << exact_log2 (GET_MODE_BITSIZE (GET_MODE (x))))
5854 - 1,
5855 0));
5856 break;
5858 default:
5859 break;
5862 return x;
5865 /* Simplify X, an IF_THEN_ELSE expression. Return the new expression. */
5867 static rtx
5868 simplify_if_then_else (rtx x)
5870 enum machine_mode mode = GET_MODE (x);
5871 rtx cond = XEXP (x, 0);
5872 rtx true_rtx = XEXP (x, 1);
5873 rtx false_rtx = XEXP (x, 2);
5874 enum rtx_code true_code = GET_CODE (cond);
5875 int comparison_p = COMPARISON_P (cond);
5876 rtx temp;
5877 int i;
5878 enum rtx_code false_code;
5879 rtx reversed;
5881 /* Simplify storing of the truth value. */
5882 if (comparison_p && true_rtx == const_true_rtx && false_rtx == const0_rtx)
5883 return simplify_gen_relational (true_code, mode, VOIDmode,
5884 XEXP (cond, 0), XEXP (cond, 1));
5886 /* Also when the truth value has to be reversed. */
5887 if (comparison_p
5888 && true_rtx == const0_rtx && false_rtx == const_true_rtx
5889 && (reversed = reversed_comparison (cond, mode)))
5890 return reversed;
5892 /* Sometimes we can simplify the arm of an IF_THEN_ELSE if a register used
5893 in it is being compared against certain values. Get the true and false
5894 comparisons and see if that says anything about the value of each arm. */
5896 if (comparison_p
5897 && ((false_code = reversed_comparison_code (cond, NULL))
5898 != UNKNOWN)
5899 && REG_P (XEXP (cond, 0)))
5901 HOST_WIDE_INT nzb;
5902 rtx from = XEXP (cond, 0);
5903 rtx true_val = XEXP (cond, 1);
5904 rtx false_val = true_val;
5905 int swapped = 0;
5907 /* If FALSE_CODE is EQ, swap the codes and arms. */
5909 if (false_code == EQ)
5911 swapped = 1, true_code = EQ, false_code = NE;
5912 temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
5915 /* If we are comparing against zero and the expression being tested has
5916 only a single bit that might be nonzero, that is its value when it is
5917 not equal to zero. Similarly if it is known to be -1 or 0. */
5919 if (true_code == EQ && true_val == const0_rtx
5920 && exact_log2 (nzb = nonzero_bits (from, GET_MODE (from))) >= 0)
5922 false_code = EQ;
5923 false_val = gen_int_mode (nzb, GET_MODE (from));
5925 else if (true_code == EQ && true_val == const0_rtx
5926 && (num_sign_bit_copies (from, GET_MODE (from))
5927 == GET_MODE_PRECISION (GET_MODE (from))))
5929 false_code = EQ;
5930 false_val = constm1_rtx;
5933 /* Now simplify an arm if we know the value of the register in the
5934 branch and it is used in the arm. Be careful due to the potential
5935 of locally-shared RTL. */
5937 if (reg_mentioned_p (from, true_rtx))
5938 true_rtx = subst (known_cond (copy_rtx (true_rtx), true_code,
5939 from, true_val),
5940 pc_rtx, pc_rtx, 0, 0, 0);
5941 if (reg_mentioned_p (from, false_rtx))
5942 false_rtx = subst (known_cond (copy_rtx (false_rtx), false_code,
5943 from, false_val),
5944 pc_rtx, pc_rtx, 0, 0, 0);
5946 SUBST (XEXP (x, 1), swapped ? false_rtx : true_rtx);
5947 SUBST (XEXP (x, 2), swapped ? true_rtx : false_rtx);
5949 true_rtx = XEXP (x, 1);
5950 false_rtx = XEXP (x, 2);
5951 true_code = GET_CODE (cond);
5954 /* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
5955 reversed, do so to avoid needing two sets of patterns for
5956 subtract-and-branch insns. Similarly if we have a constant in the true
5957 arm, the false arm is the same as the first operand of the comparison, or
5958 the false arm is more complicated than the true arm. */
5960 if (comparison_p
5961 && reversed_comparison_code (cond, NULL) != UNKNOWN
5962 && (true_rtx == pc_rtx
5963 || (CONSTANT_P (true_rtx)
5964 && !CONST_INT_P (false_rtx) && false_rtx != pc_rtx)
5965 || true_rtx == const0_rtx
5966 || (OBJECT_P (true_rtx) && !OBJECT_P (false_rtx))
5967 || (GET_CODE (true_rtx) == SUBREG && OBJECT_P (SUBREG_REG (true_rtx))
5968 && !OBJECT_P (false_rtx))
5969 || reg_mentioned_p (true_rtx, false_rtx)
5970 || rtx_equal_p (false_rtx, XEXP (cond, 0))))
5972 true_code = reversed_comparison_code (cond, NULL);
5973 SUBST (XEXP (x, 0), reversed_comparison (cond, GET_MODE (cond)));
5974 SUBST (XEXP (x, 1), false_rtx);
5975 SUBST (XEXP (x, 2), true_rtx);
5977 temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
5978 cond = XEXP (x, 0);
5980 /* It is possible that the conditional has been simplified out. */
5981 true_code = GET_CODE (cond);
5982 comparison_p = COMPARISON_P (cond);
5985 /* If the two arms are identical, we don't need the comparison. */
5987 if (rtx_equal_p (true_rtx, false_rtx) && ! side_effects_p (cond))
5988 return true_rtx;
5990 /* Convert a == b ? b : a to "a". */
5991 if (true_code == EQ && ! side_effects_p (cond)
5992 && !HONOR_NANS (mode)
5993 && rtx_equal_p (XEXP (cond, 0), false_rtx)
5994 && rtx_equal_p (XEXP (cond, 1), true_rtx))
5995 return false_rtx;
5996 else if (true_code == NE && ! side_effects_p (cond)
5997 && !HONOR_NANS (mode)
5998 && rtx_equal_p (XEXP (cond, 0), true_rtx)
5999 && rtx_equal_p (XEXP (cond, 1), false_rtx))
6000 return true_rtx;
6002 /* Look for cases where we have (abs x) or (neg (abs X)). */
6004 if (GET_MODE_CLASS (mode) == MODE_INT
6005 && comparison_p
6006 && XEXP (cond, 1) == const0_rtx
6007 && GET_CODE (false_rtx) == NEG
6008 && rtx_equal_p (true_rtx, XEXP (false_rtx, 0))
6009 && rtx_equal_p (true_rtx, XEXP (cond, 0))
6010 && ! side_effects_p (true_rtx))
6011 switch (true_code)
6013 case GT:
6014 case GE:
6015 return simplify_gen_unary (ABS, mode, true_rtx, mode);
6016 case LT:
6017 case LE:
6018 return
6019 simplify_gen_unary (NEG, mode,
6020 simplify_gen_unary (ABS, mode, true_rtx, mode),
6021 mode);
6022 default:
6023 break;
6026 /* Look for MIN or MAX. */
6028 if ((! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
6029 && comparison_p
6030 && rtx_equal_p (XEXP (cond, 0), true_rtx)
6031 && rtx_equal_p (XEXP (cond, 1), false_rtx)
6032 && ! side_effects_p (cond))
6033 switch (true_code)
6035 case GE:
6036 case GT:
6037 return simplify_gen_binary (SMAX, mode, true_rtx, false_rtx);
6038 case LE:
6039 case LT:
6040 return simplify_gen_binary (SMIN, mode, true_rtx, false_rtx);
6041 case GEU:
6042 case GTU:
6043 return simplify_gen_binary (UMAX, mode, true_rtx, false_rtx);
6044 case LEU:
6045 case LTU:
6046 return simplify_gen_binary (UMIN, mode, true_rtx, false_rtx);
6047 default:
6048 break;
6051 /* If we have (if_then_else COND (OP Z C1) Z) and OP is an identity when its
6052 second operand is zero, this can be done as (OP Z (mult COND C2)) where
6053 C2 = C1 * STORE_FLAG_VALUE. Similarly if OP has an outer ZERO_EXTEND or
6054 SIGN_EXTEND as long as Z is already extended (so we don't destroy it).
6055 We can do this kind of thing in some cases when STORE_FLAG_VALUE is
6056 neither 1 or -1, but it isn't worth checking for. */
6058 if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
6059 && comparison_p
6060 && GET_MODE_CLASS (mode) == MODE_INT
6061 && ! side_effects_p (x))
6063 rtx t = make_compound_operation (true_rtx, SET);
6064 rtx f = make_compound_operation (false_rtx, SET);
6065 rtx cond_op0 = XEXP (cond, 0);
6066 rtx cond_op1 = XEXP (cond, 1);
6067 enum rtx_code op = UNKNOWN, extend_op = UNKNOWN;
6068 enum machine_mode m = mode;
6069 rtx z = 0, c1 = NULL_RTX;
6071 if ((GET_CODE (t) == PLUS || GET_CODE (t) == MINUS
6072 || GET_CODE (t) == IOR || GET_CODE (t) == XOR
6073 || GET_CODE (t) == ASHIFT
6074 || GET_CODE (t) == LSHIFTRT || GET_CODE (t) == ASHIFTRT)
6075 && rtx_equal_p (XEXP (t, 0), f))
6076 c1 = XEXP (t, 1), op = GET_CODE (t), z = f;
6078 /* If an identity-zero op is commutative, check whether there
6079 would be a match if we swapped the operands. */
6080 else if ((GET_CODE (t) == PLUS || GET_CODE (t) == IOR
6081 || GET_CODE (t) == XOR)
6082 && rtx_equal_p (XEXP (t, 1), f))
6083 c1 = XEXP (t, 0), op = GET_CODE (t), z = f;
6084 else if (GET_CODE (t) == SIGN_EXTEND
6085 && (GET_CODE (XEXP (t, 0)) == PLUS
6086 || GET_CODE (XEXP (t, 0)) == MINUS
6087 || GET_CODE (XEXP (t, 0)) == IOR
6088 || GET_CODE (XEXP (t, 0)) == XOR
6089 || GET_CODE (XEXP (t, 0)) == ASHIFT
6090 || GET_CODE (XEXP (t, 0)) == LSHIFTRT
6091 || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
6092 && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
6093 && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
6094 && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
6095 && (num_sign_bit_copies (f, GET_MODE (f))
6096 > (unsigned int)
6097 (GET_MODE_PRECISION (mode)
6098 - GET_MODE_PRECISION (GET_MODE (XEXP (XEXP (t, 0), 0))))))
6100 c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
6101 extend_op = SIGN_EXTEND;
6102 m = GET_MODE (XEXP (t, 0));
6104 else if (GET_CODE (t) == SIGN_EXTEND
6105 && (GET_CODE (XEXP (t, 0)) == PLUS
6106 || GET_CODE (XEXP (t, 0)) == IOR
6107 || GET_CODE (XEXP (t, 0)) == XOR)
6108 && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
6109 && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
6110 && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
6111 && (num_sign_bit_copies (f, GET_MODE (f))
6112 > (unsigned int)
6113 (GET_MODE_PRECISION (mode)
6114 - GET_MODE_PRECISION (GET_MODE (XEXP (XEXP (t, 0), 1))))))
6116 c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
6117 extend_op = SIGN_EXTEND;
6118 m = GET_MODE (XEXP (t, 0));
6120 else if (GET_CODE (t) == ZERO_EXTEND
6121 && (GET_CODE (XEXP (t, 0)) == PLUS
6122 || GET_CODE (XEXP (t, 0)) == MINUS
6123 || GET_CODE (XEXP (t, 0)) == IOR
6124 || GET_CODE (XEXP (t, 0)) == XOR
6125 || GET_CODE (XEXP (t, 0)) == ASHIFT
6126 || GET_CODE (XEXP (t, 0)) == LSHIFTRT
6127 || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
6128 && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
6129 && HWI_COMPUTABLE_MODE_P (mode)
6130 && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
6131 && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
6132 && ((nonzero_bits (f, GET_MODE (f))
6133 & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 0))))
6134 == 0))
6136 c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
6137 extend_op = ZERO_EXTEND;
6138 m = GET_MODE (XEXP (t, 0));
6140 else if (GET_CODE (t) == ZERO_EXTEND
6141 && (GET_CODE (XEXP (t, 0)) == PLUS
6142 || GET_CODE (XEXP (t, 0)) == IOR
6143 || GET_CODE (XEXP (t, 0)) == XOR)
6144 && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
6145 && HWI_COMPUTABLE_MODE_P (mode)
6146 && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
6147 && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
6148 && ((nonzero_bits (f, GET_MODE (f))
6149 & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 1))))
6150 == 0))
6152 c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
6153 extend_op = ZERO_EXTEND;
6154 m = GET_MODE (XEXP (t, 0));
6157 if (z)
6159 temp = subst (simplify_gen_relational (true_code, m, VOIDmode,
6160 cond_op0, cond_op1),
6161 pc_rtx, pc_rtx, 0, 0, 0);
6162 temp = simplify_gen_binary (MULT, m, temp,
6163 simplify_gen_binary (MULT, m, c1,
6164 const_true_rtx));
6165 temp = subst (temp, pc_rtx, pc_rtx, 0, 0, 0);
6166 temp = simplify_gen_binary (op, m, gen_lowpart (m, z), temp);
6168 if (extend_op != UNKNOWN)
6169 temp = simplify_gen_unary (extend_op, mode, temp, m);
6171 return temp;
6175 /* If we have (if_then_else (ne A 0) C1 0) and either A is known to be 0 or
6176 1 and C1 is a single bit or A is known to be 0 or -1 and C1 is the
6177 negation of a single bit, we can convert this operation to a shift. We
6178 can actually do this more generally, but it doesn't seem worth it. */
6180 if (true_code == NE && XEXP (cond, 1) == const0_rtx
6181 && false_rtx == const0_rtx && CONST_INT_P (true_rtx)
6182 && ((1 == nonzero_bits (XEXP (cond, 0), mode)
6183 && (i = exact_log2 (UINTVAL (true_rtx))) >= 0)
6184 || ((num_sign_bit_copies (XEXP (cond, 0), mode)
6185 == GET_MODE_PRECISION (mode))
6186 && (i = exact_log2 (-UINTVAL (true_rtx))) >= 0)))
6187 return
6188 simplify_shift_const (NULL_RTX, ASHIFT, mode,
6189 gen_lowpart (mode, XEXP (cond, 0)), i);
6191 /* (IF_THEN_ELSE (NE REG 0) (0) (8)) is REG for nonzero_bits (REG) == 8. */
6192 if (true_code == NE && XEXP (cond, 1) == const0_rtx
6193 && false_rtx == const0_rtx && CONST_INT_P (true_rtx)
6194 && GET_MODE (XEXP (cond, 0)) == mode
6195 && (UINTVAL (true_rtx) & GET_MODE_MASK (mode))
6196 == nonzero_bits (XEXP (cond, 0), mode)
6197 && (i = exact_log2 (UINTVAL (true_rtx) & GET_MODE_MASK (mode))) >= 0)
6198 return XEXP (cond, 0);
6200 return x;
6203 /* Simplify X, a SET expression. Return the new expression. */
6205 static rtx
6206 simplify_set (rtx x)
6208 rtx src = SET_SRC (x);
6209 rtx dest = SET_DEST (x);
6210 enum machine_mode mode
6211 = GET_MODE (src) != VOIDmode ? GET_MODE (src) : GET_MODE (dest);
6212 rtx other_insn;
6213 rtx *cc_use;
6215 /* (set (pc) (return)) gets written as (return). */
6216 if (GET_CODE (dest) == PC && ANY_RETURN_P (src))
6217 return src;
6219 /* Now that we know for sure which bits of SRC we are using, see if we can
6220 simplify the expression for the object knowing that we only need the
6221 low-order bits. */
6223 if (GET_MODE_CLASS (mode) == MODE_INT && HWI_COMPUTABLE_MODE_P (mode))
6225 src = force_to_mode (src, mode, ~(unsigned HOST_WIDE_INT) 0, 0);
6226 SUBST (SET_SRC (x), src);
6229 /* If we are setting CC0 or if the source is a COMPARE, look for the use of
6230 the comparison result and try to simplify it unless we already have used
6231 undobuf.other_insn. */
6232 if ((GET_MODE_CLASS (mode) == MODE_CC
6233 || GET_CODE (src) == COMPARE
6234 || CC0_P (dest))
6235 && (cc_use = find_single_use (dest, subst_insn, &other_insn)) != 0
6236 && (undobuf.other_insn == 0 || other_insn == undobuf.other_insn)
6237 && COMPARISON_P (*cc_use)
6238 && rtx_equal_p (XEXP (*cc_use, 0), dest))
6240 enum rtx_code old_code = GET_CODE (*cc_use);
6241 enum rtx_code new_code;
6242 rtx op0, op1, tmp;
6243 int other_changed = 0;
6244 rtx inner_compare = NULL_RTX;
6245 enum machine_mode compare_mode = GET_MODE (dest);
6247 if (GET_CODE (src) == COMPARE)
6249 op0 = XEXP (src, 0), op1 = XEXP (src, 1);
6250 if (GET_CODE (op0) == COMPARE && op1 == const0_rtx)
6252 inner_compare = op0;
6253 op0 = XEXP (inner_compare, 0), op1 = XEXP (inner_compare, 1);
6256 else
6257 op0 = src, op1 = CONST0_RTX (GET_MODE (src));
6259 tmp = simplify_relational_operation (old_code, compare_mode, VOIDmode,
6260 op0, op1);
6261 if (!tmp)
6262 new_code = old_code;
6263 else if (!CONSTANT_P (tmp))
6265 new_code = GET_CODE (tmp);
6266 op0 = XEXP (tmp, 0);
6267 op1 = XEXP (tmp, 1);
6269 else
6271 rtx pat = PATTERN (other_insn);
6272 undobuf.other_insn = other_insn;
6273 SUBST (*cc_use, tmp);
6275 /* Attempt to simplify CC user. */
6276 if (GET_CODE (pat) == SET)
6278 rtx new_rtx = simplify_rtx (SET_SRC (pat));
6279 if (new_rtx != NULL_RTX)
6280 SUBST (SET_SRC (pat), new_rtx);
6283 /* Convert X into a no-op move. */
6284 SUBST (SET_DEST (x), pc_rtx);
6285 SUBST (SET_SRC (x), pc_rtx);
6286 return x;
6289 /* Simplify our comparison, if possible. */
6290 new_code = simplify_comparison (new_code, &op0, &op1);
6292 #ifdef SELECT_CC_MODE
6293 /* If this machine has CC modes other than CCmode, check to see if we
6294 need to use a different CC mode here. */
6295 if (GET_MODE_CLASS (GET_MODE (op0)) == MODE_CC)
6296 compare_mode = GET_MODE (op0);
6297 else if (inner_compare
6298 && GET_MODE_CLASS (GET_MODE (inner_compare)) == MODE_CC
6299 && new_code == old_code
6300 && op0 == XEXP (inner_compare, 0)
6301 && op1 == XEXP (inner_compare, 1))
6302 compare_mode = GET_MODE (inner_compare);
6303 else
6304 compare_mode = SELECT_CC_MODE (new_code, op0, op1);
6306 #ifndef HAVE_cc0
6307 /* If the mode changed, we have to change SET_DEST, the mode in the
6308 compare, and the mode in the place SET_DEST is used. If SET_DEST is
6309 a hard register, just build new versions with the proper mode. If it
6310 is a pseudo, we lose unless it is only time we set the pseudo, in
6311 which case we can safely change its mode. */
6312 if (compare_mode != GET_MODE (dest))
6314 if (can_change_dest_mode (dest, 0, compare_mode))
6316 unsigned int regno = REGNO (dest);
6317 rtx new_dest;
6319 if (regno < FIRST_PSEUDO_REGISTER)
6320 new_dest = gen_rtx_REG (compare_mode, regno);
6321 else
6323 SUBST_MODE (regno_reg_rtx[regno], compare_mode);
6324 new_dest = regno_reg_rtx[regno];
6327 SUBST (SET_DEST (x), new_dest);
6328 SUBST (XEXP (*cc_use, 0), new_dest);
6329 other_changed = 1;
6331 dest = new_dest;
6334 #endif /* cc0 */
6335 #endif /* SELECT_CC_MODE */
6337 /* If the code changed, we have to build a new comparison in
6338 undobuf.other_insn. */
6339 if (new_code != old_code)
6341 int other_changed_previously = other_changed;
6342 unsigned HOST_WIDE_INT mask;
6343 rtx old_cc_use = *cc_use;
6345 SUBST (*cc_use, gen_rtx_fmt_ee (new_code, GET_MODE (*cc_use),
6346 dest, const0_rtx));
6347 other_changed = 1;
6349 /* If the only change we made was to change an EQ into an NE or
6350 vice versa, OP0 has only one bit that might be nonzero, and OP1
6351 is zero, check if changing the user of the condition code will
6352 produce a valid insn. If it won't, we can keep the original code
6353 in that insn by surrounding our operation with an XOR. */
6355 if (((old_code == NE && new_code == EQ)
6356 || (old_code == EQ && new_code == NE))
6357 && ! other_changed_previously && op1 == const0_rtx
6358 && HWI_COMPUTABLE_MODE_P (GET_MODE (op0))
6359 && exact_log2 (mask = nonzero_bits (op0, GET_MODE (op0))) >= 0)
6361 rtx pat = PATTERN (other_insn), note = 0;
6363 if ((recog_for_combine (&pat, other_insn, &note) < 0
6364 && ! check_asm_operands (pat)))
6366 *cc_use = old_cc_use;
6367 other_changed = 0;
6369 op0 = simplify_gen_binary (XOR, GET_MODE (op0),
6370 op0, GEN_INT (mask));
6375 if (other_changed)
6376 undobuf.other_insn = other_insn;
6378 /* Otherwise, if we didn't previously have a COMPARE in the
6379 correct mode, we need one. */
6380 if (GET_CODE (src) != COMPARE || GET_MODE (src) != compare_mode)
6382 SUBST (SET_SRC (x), gen_rtx_COMPARE (compare_mode, op0, op1));
6383 src = SET_SRC (x);
6385 else if (GET_MODE (op0) == compare_mode && op1 == const0_rtx)
6387 SUBST (SET_SRC (x), op0);
6388 src = SET_SRC (x);
6390 /* Otherwise, update the COMPARE if needed. */
6391 else if (XEXP (src, 0) != op0 || XEXP (src, 1) != op1)
6393 SUBST (SET_SRC (x), gen_rtx_COMPARE (compare_mode, op0, op1));
6394 src = SET_SRC (x);
6397 else
6399 /* Get SET_SRC in a form where we have placed back any
6400 compound expressions. Then do the checks below. */
6401 src = make_compound_operation (src, SET);
6402 SUBST (SET_SRC (x), src);
6405 /* If we have (set x (subreg:m1 (op:m2 ...) 0)) with OP being some operation,
6406 and X being a REG or (subreg (reg)), we may be able to convert this to
6407 (set (subreg:m2 x) (op)).
6409 We can always do this if M1 is narrower than M2 because that means that
6410 we only care about the low bits of the result.
6412 However, on machines without WORD_REGISTER_OPERATIONS defined, we cannot
6413 perform a narrower operation than requested since the high-order bits will
6414 be undefined. On machine where it is defined, this transformation is safe
6415 as long as M1 and M2 have the same number of words. */
6417 if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
6418 && !OBJECT_P (SUBREG_REG (src))
6419 && (((GET_MODE_SIZE (GET_MODE (src)) + (UNITS_PER_WORD - 1))
6420 / UNITS_PER_WORD)
6421 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))
6422 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))
6423 #ifndef WORD_REGISTER_OPERATIONS
6424 && (GET_MODE_SIZE (GET_MODE (src))
6425 < GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
6426 #endif
6427 #ifdef CANNOT_CHANGE_MODE_CLASS
6428 && ! (REG_P (dest) && REGNO (dest) < FIRST_PSEUDO_REGISTER
6429 && REG_CANNOT_CHANGE_MODE_P (REGNO (dest),
6430 GET_MODE (SUBREG_REG (src)),
6431 GET_MODE (src)))
6432 #endif
6433 && (REG_P (dest)
6434 || (GET_CODE (dest) == SUBREG
6435 && REG_P (SUBREG_REG (dest)))))
6437 SUBST (SET_DEST (x),
6438 gen_lowpart (GET_MODE (SUBREG_REG (src)),
6439 dest));
6440 SUBST (SET_SRC (x), SUBREG_REG (src));
6442 src = SET_SRC (x), dest = SET_DEST (x);
6445 #ifdef HAVE_cc0
6446 /* If we have (set (cc0) (subreg ...)), we try to remove the subreg
6447 in SRC. */
6448 if (dest == cc0_rtx
6449 && GET_CODE (src) == SUBREG
6450 && subreg_lowpart_p (src)
6451 && (GET_MODE_PRECISION (GET_MODE (src))
6452 < GET_MODE_PRECISION (GET_MODE (SUBREG_REG (src)))))
6454 rtx inner = SUBREG_REG (src);
6455 enum machine_mode inner_mode = GET_MODE (inner);
6457 /* Here we make sure that we don't have a sign bit on. */
6458 if (val_signbit_known_clear_p (GET_MODE (src),
6459 nonzero_bits (inner, inner_mode)))
6461 SUBST (SET_SRC (x), inner);
6462 src = SET_SRC (x);
6465 #endif
6467 #ifdef LOAD_EXTEND_OP
6468 /* If we have (set FOO (subreg:M (mem:N BAR) 0)) with M wider than N, this
6469 would require a paradoxical subreg. Replace the subreg with a
6470 zero_extend to avoid the reload that would otherwise be required. */
6472 if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
6473 && INTEGRAL_MODE_P (GET_MODE (SUBREG_REG (src)))
6474 && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))) != UNKNOWN
6475 && SUBREG_BYTE (src) == 0
6476 && paradoxical_subreg_p (src)
6477 && MEM_P (SUBREG_REG (src)))
6479 SUBST (SET_SRC (x),
6480 gen_rtx_fmt_e (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))),
6481 GET_MODE (src), SUBREG_REG (src)));
6483 src = SET_SRC (x);
6485 #endif
6487 /* If we don't have a conditional move, SET_SRC is an IF_THEN_ELSE, and we
6488 are comparing an item known to be 0 or -1 against 0, use a logical
6489 operation instead. Check for one of the arms being an IOR of the other
6490 arm with some value. We compute three terms to be IOR'ed together. In
6491 practice, at most two will be nonzero. Then we do the IOR's. */
6493 if (GET_CODE (dest) != PC
6494 && GET_CODE (src) == IF_THEN_ELSE
6495 && GET_MODE_CLASS (GET_MODE (src)) == MODE_INT
6496 && (GET_CODE (XEXP (src, 0)) == EQ || GET_CODE (XEXP (src, 0)) == NE)
6497 && XEXP (XEXP (src, 0), 1) == const0_rtx
6498 && GET_MODE (src) == GET_MODE (XEXP (XEXP (src, 0), 0))
6499 #ifdef HAVE_conditional_move
6500 && ! can_conditionally_move_p (GET_MODE (src))
6501 #endif
6502 && (num_sign_bit_copies (XEXP (XEXP (src, 0), 0),
6503 GET_MODE (XEXP (XEXP (src, 0), 0)))
6504 == GET_MODE_PRECISION (GET_MODE (XEXP (XEXP (src, 0), 0))))
6505 && ! side_effects_p (src))
6507 rtx true_rtx = (GET_CODE (XEXP (src, 0)) == NE
6508 ? XEXP (src, 1) : XEXP (src, 2));
6509 rtx false_rtx = (GET_CODE (XEXP (src, 0)) == NE
6510 ? XEXP (src, 2) : XEXP (src, 1));
6511 rtx term1 = const0_rtx, term2, term3;
6513 if (GET_CODE (true_rtx) == IOR
6514 && rtx_equal_p (XEXP (true_rtx, 0), false_rtx))
6515 term1 = false_rtx, true_rtx = XEXP (true_rtx, 1), false_rtx = const0_rtx;
6516 else if (GET_CODE (true_rtx) == IOR
6517 && rtx_equal_p (XEXP (true_rtx, 1), false_rtx))
6518 term1 = false_rtx, true_rtx = XEXP (true_rtx, 0), false_rtx = const0_rtx;
6519 else if (GET_CODE (false_rtx) == IOR
6520 && rtx_equal_p (XEXP (false_rtx, 0), true_rtx))
6521 term1 = true_rtx, false_rtx = XEXP (false_rtx, 1), true_rtx = const0_rtx;
6522 else if (GET_CODE (false_rtx) == IOR
6523 && rtx_equal_p (XEXP (false_rtx, 1), true_rtx))
6524 term1 = true_rtx, false_rtx = XEXP (false_rtx, 0), true_rtx = const0_rtx;
6526 term2 = simplify_gen_binary (AND, GET_MODE (src),
6527 XEXP (XEXP (src, 0), 0), true_rtx);
6528 term3 = simplify_gen_binary (AND, GET_MODE (src),
6529 simplify_gen_unary (NOT, GET_MODE (src),
6530 XEXP (XEXP (src, 0), 0),
6531 GET_MODE (src)),
6532 false_rtx);
6534 SUBST (SET_SRC (x),
6535 simplify_gen_binary (IOR, GET_MODE (src),
6536 simplify_gen_binary (IOR, GET_MODE (src),
6537 term1, term2),
6538 term3));
6540 src = SET_SRC (x);
6543 /* If either SRC or DEST is a CLOBBER of (const_int 0), make this
6544 whole thing fail. */
6545 if (GET_CODE (src) == CLOBBER && XEXP (src, 0) == const0_rtx)
6546 return src;
6547 else if (GET_CODE (dest) == CLOBBER && XEXP (dest, 0) == const0_rtx)
6548 return dest;
6549 else
6550 /* Convert this into a field assignment operation, if possible. */
6551 return make_field_assignment (x);
6554 /* Simplify, X, and AND, IOR, or XOR operation, and return the simplified
6555 result. */
6557 static rtx
6558 simplify_logical (rtx x)
6560 enum machine_mode mode = GET_MODE (x);
6561 rtx op0 = XEXP (x, 0);
6562 rtx op1 = XEXP (x, 1);
6564 switch (GET_CODE (x))
6566 case AND:
6567 /* We can call simplify_and_const_int only if we don't lose
6568 any (sign) bits when converting INTVAL (op1) to
6569 "unsigned HOST_WIDE_INT". */
6570 if (CONST_INT_P (op1)
6571 && (HWI_COMPUTABLE_MODE_P (mode)
6572 || INTVAL (op1) > 0))
6574 x = simplify_and_const_int (x, mode, op0, INTVAL (op1));
6575 if (GET_CODE (x) != AND)
6576 return x;
6578 op0 = XEXP (x, 0);
6579 op1 = XEXP (x, 1);
6582 /* If we have any of (and (ior A B) C) or (and (xor A B) C),
6583 apply the distributive law and then the inverse distributive
6584 law to see if things simplify. */
6585 if (GET_CODE (op0) == IOR || GET_CODE (op0) == XOR)
6587 rtx result = distribute_and_simplify_rtx (x, 0);
6588 if (result)
6589 return result;
6591 if (GET_CODE (op1) == IOR || GET_CODE (op1) == XOR)
6593 rtx result = distribute_and_simplify_rtx (x, 1);
6594 if (result)
6595 return result;
6597 break;
6599 case IOR:
6600 /* If we have (ior (and A B) C), apply the distributive law and then
6601 the inverse distributive law to see if things simplify. */
6603 if (GET_CODE (op0) == AND)
6605 rtx result = distribute_and_simplify_rtx (x, 0);
6606 if (result)
6607 return result;
6610 if (GET_CODE (op1) == AND)
6612 rtx result = distribute_and_simplify_rtx (x, 1);
6613 if (result)
6614 return result;
6616 break;
6618 default:
6619 gcc_unreachable ();
6622 return x;
6625 /* We consider ZERO_EXTRACT, SIGN_EXTRACT, and SIGN_EXTEND as "compound
6626 operations" because they can be replaced with two more basic operations.
6627 ZERO_EXTEND is also considered "compound" because it can be replaced with
6628 an AND operation, which is simpler, though only one operation.
6630 The function expand_compound_operation is called with an rtx expression
6631 and will convert it to the appropriate shifts and AND operations,
6632 simplifying at each stage.
6634 The function make_compound_operation is called to convert an expression
6635 consisting of shifts and ANDs into the equivalent compound expression.
6636 It is the inverse of this function, loosely speaking. */
6638 static rtx
6639 expand_compound_operation (rtx x)
6641 unsigned HOST_WIDE_INT pos = 0, len;
6642 int unsignedp = 0;
6643 unsigned int modewidth;
6644 rtx tem;
6646 switch (GET_CODE (x))
6648 case ZERO_EXTEND:
6649 unsignedp = 1;
6650 case SIGN_EXTEND:
6651 /* We can't necessarily use a const_int for a multiword mode;
6652 it depends on implicitly extending the value.
6653 Since we don't know the right way to extend it,
6654 we can't tell whether the implicit way is right.
6656 Even for a mode that is no wider than a const_int,
6657 we can't win, because we need to sign extend one of its bits through
6658 the rest of it, and we don't know which bit. */
6659 if (CONST_INT_P (XEXP (x, 0)))
6660 return x;
6662 /* Return if (subreg:MODE FROM 0) is not a safe replacement for
6663 (zero_extend:MODE FROM) or (sign_extend:MODE FROM). It is for any MEM
6664 because (SUBREG (MEM...)) is guaranteed to cause the MEM to be
6665 reloaded. If not for that, MEM's would very rarely be safe.
6667 Reject MODEs bigger than a word, because we might not be able
6668 to reference a two-register group starting with an arbitrary register
6669 (and currently gen_lowpart might crash for a SUBREG). */
6671 if (GET_MODE_SIZE (GET_MODE (XEXP (x, 0))) > UNITS_PER_WORD)
6672 return x;
6674 /* Reject MODEs that aren't scalar integers because turning vector
6675 or complex modes into shifts causes problems. */
6677 if (! SCALAR_INT_MODE_P (GET_MODE (XEXP (x, 0))))
6678 return x;
6680 len = GET_MODE_PRECISION (GET_MODE (XEXP (x, 0)));
6681 /* If the inner object has VOIDmode (the only way this can happen
6682 is if it is an ASM_OPERANDS), we can't do anything since we don't
6683 know how much masking to do. */
6684 if (len == 0)
6685 return x;
6687 break;
6689 case ZERO_EXTRACT:
6690 unsignedp = 1;
6692 /* ... fall through ... */
6694 case SIGN_EXTRACT:
6695 /* If the operand is a CLOBBER, just return it. */
6696 if (GET_CODE (XEXP (x, 0)) == CLOBBER)
6697 return XEXP (x, 0);
6699 if (!CONST_INT_P (XEXP (x, 1))
6700 || !CONST_INT_P (XEXP (x, 2))
6701 || GET_MODE (XEXP (x, 0)) == VOIDmode)
6702 return x;
6704 /* Reject MODEs that aren't scalar integers because turning vector
6705 or complex modes into shifts causes problems. */
6707 if (! SCALAR_INT_MODE_P (GET_MODE (XEXP (x, 0))))
6708 return x;
6710 len = INTVAL (XEXP (x, 1));
6711 pos = INTVAL (XEXP (x, 2));
6713 /* This should stay within the object being extracted, fail otherwise. */
6714 if (len + pos > GET_MODE_PRECISION (GET_MODE (XEXP (x, 0))))
6715 return x;
6717 if (BITS_BIG_ENDIAN)
6718 pos = GET_MODE_PRECISION (GET_MODE (XEXP (x, 0))) - len - pos;
6720 break;
6722 default:
6723 return x;
6725 /* Convert sign extension to zero extension, if we know that the high
6726 bit is not set, as this is easier to optimize. It will be converted
6727 back to cheaper alternative in make_extraction. */
6728 if (GET_CODE (x) == SIGN_EXTEND
6729 && (HWI_COMPUTABLE_MODE_P (GET_MODE (x))
6730 && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
6731 & ~(((unsigned HOST_WIDE_INT)
6732 GET_MODE_MASK (GET_MODE (XEXP (x, 0))))
6733 >> 1))
6734 == 0)))
6736 rtx temp = gen_rtx_ZERO_EXTEND (GET_MODE (x), XEXP (x, 0));
6737 rtx temp2 = expand_compound_operation (temp);
6739 /* Make sure this is a profitable operation. */
6740 if (set_src_cost (x, optimize_this_for_speed_p)
6741 > set_src_cost (temp2, optimize_this_for_speed_p))
6742 return temp2;
6743 else if (set_src_cost (x, optimize_this_for_speed_p)
6744 > set_src_cost (temp, optimize_this_for_speed_p))
6745 return temp;
6746 else
6747 return x;
6750 /* We can optimize some special cases of ZERO_EXTEND. */
6751 if (GET_CODE (x) == ZERO_EXTEND)
6753 /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI if we
6754 know that the last value didn't have any inappropriate bits
6755 set. */
6756 if (GET_CODE (XEXP (x, 0)) == TRUNCATE
6757 && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
6758 && HWI_COMPUTABLE_MODE_P (GET_MODE (x))
6759 && (nonzero_bits (XEXP (XEXP (x, 0), 0), GET_MODE (x))
6760 & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6761 return XEXP (XEXP (x, 0), 0);
6763 /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)). */
6764 if (GET_CODE (XEXP (x, 0)) == SUBREG
6765 && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
6766 && subreg_lowpart_p (XEXP (x, 0))
6767 && HWI_COMPUTABLE_MODE_P (GET_MODE (x))
6768 && (nonzero_bits (SUBREG_REG (XEXP (x, 0)), GET_MODE (x))
6769 & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6770 return SUBREG_REG (XEXP (x, 0));
6772 /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI when foo
6773 is a comparison and STORE_FLAG_VALUE permits. This is like
6774 the first case, but it works even when GET_MODE (x) is larger
6775 than HOST_WIDE_INT. */
6776 if (GET_CODE (XEXP (x, 0)) == TRUNCATE
6777 && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
6778 && COMPARISON_P (XEXP (XEXP (x, 0), 0))
6779 && (GET_MODE_PRECISION (GET_MODE (XEXP (x, 0)))
6780 <= HOST_BITS_PER_WIDE_INT)
6781 && (STORE_FLAG_VALUE & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6782 return XEXP (XEXP (x, 0), 0);
6784 /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)). */
6785 if (GET_CODE (XEXP (x, 0)) == SUBREG
6786 && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
6787 && subreg_lowpart_p (XEXP (x, 0))
6788 && COMPARISON_P (SUBREG_REG (XEXP (x, 0)))
6789 && (GET_MODE_PRECISION (GET_MODE (XEXP (x, 0)))
6790 <= HOST_BITS_PER_WIDE_INT)
6791 && (STORE_FLAG_VALUE & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6792 return SUBREG_REG (XEXP (x, 0));
6796 /* If we reach here, we want to return a pair of shifts. The inner
6797 shift is a left shift of BITSIZE - POS - LEN bits. The outer
6798 shift is a right shift of BITSIZE - LEN bits. It is arithmetic or
6799 logical depending on the value of UNSIGNEDP.
6801 If this was a ZERO_EXTEND or ZERO_EXTRACT, this pair of shifts will be
6802 converted into an AND of a shift.
6804 We must check for the case where the left shift would have a negative
6805 count. This can happen in a case like (x >> 31) & 255 on machines
6806 that can't shift by a constant. On those machines, we would first
6807 combine the shift with the AND to produce a variable-position
6808 extraction. Then the constant of 31 would be substituted in
6809 to produce such a position. */
6811 modewidth = GET_MODE_PRECISION (GET_MODE (x));
6812 if (modewidth >= pos + len)
6814 enum machine_mode mode = GET_MODE (x);
6815 tem = gen_lowpart (mode, XEXP (x, 0));
6816 if (!tem || GET_CODE (tem) == CLOBBER)
6817 return x;
6818 tem = simplify_shift_const (NULL_RTX, ASHIFT, mode,
6819 tem, modewidth - pos - len);
6820 tem = simplify_shift_const (NULL_RTX, unsignedp ? LSHIFTRT : ASHIFTRT,
6821 mode, tem, modewidth - len);
6823 else if (unsignedp && len < HOST_BITS_PER_WIDE_INT)
6824 tem = simplify_and_const_int (NULL_RTX, GET_MODE (x),
6825 simplify_shift_const (NULL_RTX, LSHIFTRT,
6826 GET_MODE (x),
6827 XEXP (x, 0), pos),
6828 ((unsigned HOST_WIDE_INT) 1 << len) - 1);
6829 else
6830 /* Any other cases we can't handle. */
6831 return x;
6833 /* If we couldn't do this for some reason, return the original
6834 expression. */
6835 if (GET_CODE (tem) == CLOBBER)
6836 return x;
6838 return tem;
6841 /* X is a SET which contains an assignment of one object into
6842 a part of another (such as a bit-field assignment, STRICT_LOW_PART,
6843 or certain SUBREGS). If possible, convert it into a series of
6844 logical operations.
6846 We half-heartedly support variable positions, but do not at all
6847 support variable lengths. */
6849 static const_rtx
6850 expand_field_assignment (const_rtx x)
6852 rtx inner;
6853 rtx pos; /* Always counts from low bit. */
6854 int len;
6855 rtx mask, cleared, masked;
6856 enum machine_mode compute_mode;
6858 /* Loop until we find something we can't simplify. */
6859 while (1)
6861 if (GET_CODE (SET_DEST (x)) == STRICT_LOW_PART
6862 && GET_CODE (XEXP (SET_DEST (x), 0)) == SUBREG)
6864 inner = SUBREG_REG (XEXP (SET_DEST (x), 0));
6865 len = GET_MODE_PRECISION (GET_MODE (XEXP (SET_DEST (x), 0)));
6866 pos = GEN_INT (subreg_lsb (XEXP (SET_DEST (x), 0)));
6868 else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
6869 && CONST_INT_P (XEXP (SET_DEST (x), 1)))
6871 inner = XEXP (SET_DEST (x), 0);
6872 len = INTVAL (XEXP (SET_DEST (x), 1));
6873 pos = XEXP (SET_DEST (x), 2);
6875 /* A constant position should stay within the width of INNER. */
6876 if (CONST_INT_P (pos)
6877 && INTVAL (pos) + len > GET_MODE_PRECISION (GET_MODE (inner)))
6878 break;
6880 if (BITS_BIG_ENDIAN)
6882 if (CONST_INT_P (pos))
6883 pos = GEN_INT (GET_MODE_PRECISION (GET_MODE (inner)) - len
6884 - INTVAL (pos));
6885 else if (GET_CODE (pos) == MINUS
6886 && CONST_INT_P (XEXP (pos, 1))
6887 && (INTVAL (XEXP (pos, 1))
6888 == GET_MODE_PRECISION (GET_MODE (inner)) - len))
6889 /* If position is ADJUST - X, new position is X. */
6890 pos = XEXP (pos, 0);
6891 else
6892 pos = simplify_gen_binary (MINUS, GET_MODE (pos),
6893 GEN_INT (GET_MODE_PRECISION (
6894 GET_MODE (inner))
6895 - len),
6896 pos);
6900 /* A SUBREG between two modes that occupy the same numbers of words
6901 can be done by moving the SUBREG to the source. */
6902 else if (GET_CODE (SET_DEST (x)) == SUBREG
6903 /* We need SUBREGs to compute nonzero_bits properly. */
6904 && nonzero_sign_valid
6905 && (((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
6906 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
6907 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
6908 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
6910 x = gen_rtx_SET (VOIDmode, SUBREG_REG (SET_DEST (x)),
6911 gen_lowpart
6912 (GET_MODE (SUBREG_REG (SET_DEST (x))),
6913 SET_SRC (x)));
6914 continue;
6916 else
6917 break;
6919 while (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
6920 inner = SUBREG_REG (inner);
6922 compute_mode = GET_MODE (inner);
6924 /* Don't attempt bitwise arithmetic on non scalar integer modes. */
6925 if (! SCALAR_INT_MODE_P (compute_mode))
6927 enum machine_mode imode;
6929 /* Don't do anything for vector or complex integral types. */
6930 if (! FLOAT_MODE_P (compute_mode))
6931 break;
6933 /* Try to find an integral mode to pun with. */
6934 imode = mode_for_size (GET_MODE_BITSIZE (compute_mode), MODE_INT, 0);
6935 if (imode == BLKmode)
6936 break;
6938 compute_mode = imode;
6939 inner = gen_lowpart (imode, inner);
6942 /* Compute a mask of LEN bits, if we can do this on the host machine. */
6943 if (len >= HOST_BITS_PER_WIDE_INT)
6944 break;
6946 /* Now compute the equivalent expression. Make a copy of INNER
6947 for the SET_DEST in case it is a MEM into which we will substitute;
6948 we don't want shared RTL in that case. */
6949 mask = GEN_INT (((unsigned HOST_WIDE_INT) 1 << len) - 1);
6950 cleared = simplify_gen_binary (AND, compute_mode,
6951 simplify_gen_unary (NOT, compute_mode,
6952 simplify_gen_binary (ASHIFT,
6953 compute_mode,
6954 mask, pos),
6955 compute_mode),
6956 inner);
6957 masked = simplify_gen_binary (ASHIFT, compute_mode,
6958 simplify_gen_binary (
6959 AND, compute_mode,
6960 gen_lowpart (compute_mode, SET_SRC (x)),
6961 mask),
6962 pos);
6964 x = gen_rtx_SET (VOIDmode, copy_rtx (inner),
6965 simplify_gen_binary (IOR, compute_mode,
6966 cleared, masked));
6969 return x;
6972 /* Return an RTX for a reference to LEN bits of INNER. If POS_RTX is nonzero,
6973 it is an RTX that represents the (variable) starting position; otherwise,
6974 POS is the (constant) starting bit position. Both are counted from the LSB.
6976 UNSIGNEDP is nonzero for an unsigned reference and zero for a signed one.
6978 IN_DEST is nonzero if this is a reference in the destination of a SET.
6979 This is used when a ZERO_ or SIGN_EXTRACT isn't needed. If nonzero,
6980 a STRICT_LOW_PART will be used, if zero, ZERO_EXTEND or SIGN_EXTEND will
6981 be used.
6983 IN_COMPARE is nonzero if we are in a COMPARE. This means that a
6984 ZERO_EXTRACT should be built even for bits starting at bit 0.
6986 MODE is the desired mode of the result (if IN_DEST == 0).
6988 The result is an RTX for the extraction or NULL_RTX if the target
6989 can't handle it. */
6991 static rtx
6992 make_extraction (enum machine_mode mode, rtx inner, HOST_WIDE_INT pos,
6993 rtx pos_rtx, unsigned HOST_WIDE_INT len, int unsignedp,
6994 int in_dest, int in_compare)
6996 /* This mode describes the size of the storage area
6997 to fetch the overall value from. Within that, we
6998 ignore the POS lowest bits, etc. */
6999 enum machine_mode is_mode = GET_MODE (inner);
7000 enum machine_mode inner_mode;
7001 enum machine_mode wanted_inner_mode;
7002 enum machine_mode wanted_inner_reg_mode = word_mode;
7003 enum machine_mode pos_mode = word_mode;
7004 enum machine_mode extraction_mode = word_mode;
7005 enum machine_mode tmode = mode_for_size (len, MODE_INT, 1);
7006 rtx new_rtx = 0;
7007 rtx orig_pos_rtx = pos_rtx;
7008 HOST_WIDE_INT orig_pos;
7010 if (pos_rtx && CONST_INT_P (pos_rtx))
7011 pos = INTVAL (pos_rtx), pos_rtx = 0;
7013 if (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
7015 /* If going from (subreg:SI (mem:QI ...)) to (mem:QI ...),
7016 consider just the QI as the memory to extract from.
7017 The subreg adds or removes high bits; its mode is
7018 irrelevant to the meaning of this extraction,
7019 since POS and LEN count from the lsb. */
7020 if (MEM_P (SUBREG_REG (inner)))
7021 is_mode = GET_MODE (SUBREG_REG (inner));
7022 inner = SUBREG_REG (inner);
7024 else if (GET_CODE (inner) == ASHIFT
7025 && CONST_INT_P (XEXP (inner, 1))
7026 && pos_rtx == 0 && pos == 0
7027 && len > UINTVAL (XEXP (inner, 1)))
7029 /* We're extracting the least significant bits of an rtx
7030 (ashift X (const_int C)), where LEN > C. Extract the
7031 least significant (LEN - C) bits of X, giving an rtx
7032 whose mode is MODE, then shift it left C times. */
7033 new_rtx = make_extraction (mode, XEXP (inner, 0),
7034 0, 0, len - INTVAL (XEXP (inner, 1)),
7035 unsignedp, in_dest, in_compare);
7036 if (new_rtx != 0)
7037 return gen_rtx_ASHIFT (mode, new_rtx, XEXP (inner, 1));
7039 else if (GET_CODE (inner) == TRUNCATE)
7040 inner = XEXP (inner, 0);
7042 inner_mode = GET_MODE (inner);
7044 /* See if this can be done without an extraction. We never can if the
7045 width of the field is not the same as that of some integer mode. For
7046 registers, we can only avoid the extraction if the position is at the
7047 low-order bit and this is either not in the destination or we have the
7048 appropriate STRICT_LOW_PART operation available.
7050 For MEM, we can avoid an extract if the field starts on an appropriate
7051 boundary and we can change the mode of the memory reference. */
7053 if (tmode != BLKmode
7054 && ((pos_rtx == 0 && (pos % BITS_PER_WORD) == 0
7055 && !MEM_P (inner)
7056 && (inner_mode == tmode
7057 || !REG_P (inner)
7058 || TRULY_NOOP_TRUNCATION_MODES_P (tmode, inner_mode)
7059 || reg_truncated_to_mode (tmode, inner))
7060 && (! in_dest
7061 || (REG_P (inner)
7062 && have_insn_for (STRICT_LOW_PART, tmode))))
7063 || (MEM_P (inner) && pos_rtx == 0
7064 && (pos
7065 % (STRICT_ALIGNMENT ? GET_MODE_ALIGNMENT (tmode)
7066 : BITS_PER_UNIT)) == 0
7067 /* We can't do this if we are widening INNER_MODE (it
7068 may not be aligned, for one thing). */
7069 && GET_MODE_PRECISION (inner_mode) >= GET_MODE_PRECISION (tmode)
7070 && (inner_mode == tmode
7071 || (! mode_dependent_address_p (XEXP (inner, 0),
7072 MEM_ADDR_SPACE (inner))
7073 && ! MEM_VOLATILE_P (inner))))))
7075 /* If INNER is a MEM, make a new MEM that encompasses just the desired
7076 field. If the original and current mode are the same, we need not
7077 adjust the offset. Otherwise, we do if bytes big endian.
7079 If INNER is not a MEM, get a piece consisting of just the field
7080 of interest (in this case POS % BITS_PER_WORD must be 0). */
7082 if (MEM_P (inner))
7084 HOST_WIDE_INT offset;
7086 /* POS counts from lsb, but make OFFSET count in memory order. */
7087 if (BYTES_BIG_ENDIAN)
7088 offset = (GET_MODE_PRECISION (is_mode) - len - pos) / BITS_PER_UNIT;
7089 else
7090 offset = pos / BITS_PER_UNIT;
7092 new_rtx = adjust_address_nv (inner, tmode, offset);
7094 else if (REG_P (inner))
7096 if (tmode != inner_mode)
7098 /* We can't call gen_lowpart in a DEST since we
7099 always want a SUBREG (see below) and it would sometimes
7100 return a new hard register. */
7101 if (pos || in_dest)
7103 HOST_WIDE_INT final_word = pos / BITS_PER_WORD;
7105 if (WORDS_BIG_ENDIAN
7106 && GET_MODE_SIZE (inner_mode) > UNITS_PER_WORD)
7107 final_word = ((GET_MODE_SIZE (inner_mode)
7108 - GET_MODE_SIZE (tmode))
7109 / UNITS_PER_WORD) - final_word;
7111 final_word *= UNITS_PER_WORD;
7112 if (BYTES_BIG_ENDIAN &&
7113 GET_MODE_SIZE (inner_mode) > GET_MODE_SIZE (tmode))
7114 final_word += (GET_MODE_SIZE (inner_mode)
7115 - GET_MODE_SIZE (tmode)) % UNITS_PER_WORD;
7117 /* Avoid creating invalid subregs, for example when
7118 simplifying (x>>32)&255. */
7119 if (!validate_subreg (tmode, inner_mode, inner, final_word))
7120 return NULL_RTX;
7122 new_rtx = gen_rtx_SUBREG (tmode, inner, final_word);
7124 else
7125 new_rtx = gen_lowpart (tmode, inner);
7127 else
7128 new_rtx = inner;
7130 else
7131 new_rtx = force_to_mode (inner, tmode,
7132 len >= HOST_BITS_PER_WIDE_INT
7133 ? ~(unsigned HOST_WIDE_INT) 0
7134 : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
7137 /* If this extraction is going into the destination of a SET,
7138 make a STRICT_LOW_PART unless we made a MEM. */
7140 if (in_dest)
7141 return (MEM_P (new_rtx) ? new_rtx
7142 : (GET_CODE (new_rtx) != SUBREG
7143 ? gen_rtx_CLOBBER (tmode, const0_rtx)
7144 : gen_rtx_STRICT_LOW_PART (VOIDmode, new_rtx)));
7146 if (mode == tmode)
7147 return new_rtx;
7149 if (CONST_SCALAR_INT_P (new_rtx))
7150 return simplify_unary_operation (unsignedp ? ZERO_EXTEND : SIGN_EXTEND,
7151 mode, new_rtx, tmode);
7153 /* If we know that no extraneous bits are set, and that the high
7154 bit is not set, convert the extraction to the cheaper of
7155 sign and zero extension, that are equivalent in these cases. */
7156 if (flag_expensive_optimizations
7157 && (HWI_COMPUTABLE_MODE_P (tmode)
7158 && ((nonzero_bits (new_rtx, tmode)
7159 & ~(((unsigned HOST_WIDE_INT)GET_MODE_MASK (tmode)) >> 1))
7160 == 0)))
7162 rtx temp = gen_rtx_ZERO_EXTEND (mode, new_rtx);
7163 rtx temp1 = gen_rtx_SIGN_EXTEND (mode, new_rtx);
7165 /* Prefer ZERO_EXTENSION, since it gives more information to
7166 backends. */
7167 if (set_src_cost (temp, optimize_this_for_speed_p)
7168 <= set_src_cost (temp1, optimize_this_for_speed_p))
7169 return temp;
7170 return temp1;
7173 /* Otherwise, sign- or zero-extend unless we already are in the
7174 proper mode. */
7176 return (gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND,
7177 mode, new_rtx));
7180 /* Unless this is a COMPARE or we have a funny memory reference,
7181 don't do anything with zero-extending field extracts starting at
7182 the low-order bit since they are simple AND operations. */
7183 if (pos_rtx == 0 && pos == 0 && ! in_dest
7184 && ! in_compare && unsignedp)
7185 return 0;
7187 /* Unless INNER is not MEM, reject this if we would be spanning bytes or
7188 if the position is not a constant and the length is not 1. In all
7189 other cases, we would only be going outside our object in cases when
7190 an original shift would have been undefined. */
7191 if (MEM_P (inner)
7192 && ((pos_rtx == 0 && pos + len > GET_MODE_PRECISION (is_mode))
7193 || (pos_rtx != 0 && len != 1)))
7194 return 0;
7196 enum extraction_pattern pattern = (in_dest ? EP_insv
7197 : unsignedp ? EP_extzv : EP_extv);
7199 /* If INNER is not from memory, we want it to have the mode of a register
7200 extraction pattern's structure operand, or word_mode if there is no
7201 such pattern. The same applies to extraction_mode and pos_mode
7202 and their respective operands.
7204 For memory, assume that the desired extraction_mode and pos_mode
7205 are the same as for a register operation, since at present we don't
7206 have named patterns for aligned memory structures. */
7207 struct extraction_insn insn;
7208 if (get_best_reg_extraction_insn (&insn, pattern,
7209 GET_MODE_BITSIZE (inner_mode), mode))
7211 wanted_inner_reg_mode = insn.struct_mode;
7212 pos_mode = insn.pos_mode;
7213 extraction_mode = insn.field_mode;
7216 /* Never narrow an object, since that might not be safe. */
7218 if (mode != VOIDmode
7219 && GET_MODE_SIZE (extraction_mode) < GET_MODE_SIZE (mode))
7220 extraction_mode = mode;
7222 if (!MEM_P (inner))
7223 wanted_inner_mode = wanted_inner_reg_mode;
7224 else
7226 /* Be careful not to go beyond the extracted object and maintain the
7227 natural alignment of the memory. */
7228 wanted_inner_mode = smallest_mode_for_size (len, MODE_INT);
7229 while (pos % GET_MODE_BITSIZE (wanted_inner_mode) + len
7230 > GET_MODE_BITSIZE (wanted_inner_mode))
7232 wanted_inner_mode = GET_MODE_WIDER_MODE (wanted_inner_mode);
7233 gcc_assert (wanted_inner_mode != VOIDmode);
7237 orig_pos = pos;
7239 if (BITS_BIG_ENDIAN)
7241 /* POS is passed as if BITS_BIG_ENDIAN == 0, so we need to convert it to
7242 BITS_BIG_ENDIAN style. If position is constant, compute new
7243 position. Otherwise, build subtraction.
7244 Note that POS is relative to the mode of the original argument.
7245 If it's a MEM we need to recompute POS relative to that.
7246 However, if we're extracting from (or inserting into) a register,
7247 we want to recompute POS relative to wanted_inner_mode. */
7248 int width = (MEM_P (inner)
7249 ? GET_MODE_BITSIZE (is_mode)
7250 : GET_MODE_BITSIZE (wanted_inner_mode));
7252 if (pos_rtx == 0)
7253 pos = width - len - pos;
7254 else
7255 pos_rtx
7256 = gen_rtx_MINUS (GET_MODE (pos_rtx), GEN_INT (width - len), pos_rtx);
7257 /* POS may be less than 0 now, but we check for that below.
7258 Note that it can only be less than 0 if !MEM_P (inner). */
7261 /* If INNER has a wider mode, and this is a constant extraction, try to
7262 make it smaller and adjust the byte to point to the byte containing
7263 the value. */
7264 if (wanted_inner_mode != VOIDmode
7265 && inner_mode != wanted_inner_mode
7266 && ! pos_rtx
7267 && GET_MODE_SIZE (wanted_inner_mode) < GET_MODE_SIZE (is_mode)
7268 && MEM_P (inner)
7269 && ! mode_dependent_address_p (XEXP (inner, 0), MEM_ADDR_SPACE (inner))
7270 && ! MEM_VOLATILE_P (inner))
7272 int offset = 0;
7274 /* The computations below will be correct if the machine is big
7275 endian in both bits and bytes or little endian in bits and bytes.
7276 If it is mixed, we must adjust. */
7278 /* If bytes are big endian and we had a paradoxical SUBREG, we must
7279 adjust OFFSET to compensate. */
7280 if (BYTES_BIG_ENDIAN
7281 && GET_MODE_SIZE (inner_mode) < GET_MODE_SIZE (is_mode))
7282 offset -= GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (inner_mode);
7284 /* We can now move to the desired byte. */
7285 offset += (pos / GET_MODE_BITSIZE (wanted_inner_mode))
7286 * GET_MODE_SIZE (wanted_inner_mode);
7287 pos %= GET_MODE_BITSIZE (wanted_inner_mode);
7289 if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN
7290 && is_mode != wanted_inner_mode)
7291 offset = (GET_MODE_SIZE (is_mode)
7292 - GET_MODE_SIZE (wanted_inner_mode) - offset);
7294 inner = adjust_address_nv (inner, wanted_inner_mode, offset);
7297 /* If INNER is not memory, get it into the proper mode. If we are changing
7298 its mode, POS must be a constant and smaller than the size of the new
7299 mode. */
7300 else if (!MEM_P (inner))
7302 /* On the LHS, don't create paradoxical subregs implicitely truncating
7303 the register unless TRULY_NOOP_TRUNCATION. */
7304 if (in_dest
7305 && !TRULY_NOOP_TRUNCATION_MODES_P (GET_MODE (inner),
7306 wanted_inner_mode))
7307 return NULL_RTX;
7309 if (GET_MODE (inner) != wanted_inner_mode
7310 && (pos_rtx != 0
7311 || orig_pos + len > GET_MODE_BITSIZE (wanted_inner_mode)))
7312 return NULL_RTX;
7314 if (orig_pos < 0)
7315 return NULL_RTX;
7317 inner = force_to_mode (inner, wanted_inner_mode,
7318 pos_rtx
7319 || len + orig_pos >= HOST_BITS_PER_WIDE_INT
7320 ? ~(unsigned HOST_WIDE_INT) 0
7321 : ((((unsigned HOST_WIDE_INT) 1 << len) - 1)
7322 << orig_pos),
7326 /* Adjust mode of POS_RTX, if needed. If we want a wider mode, we
7327 have to zero extend. Otherwise, we can just use a SUBREG. */
7328 if (pos_rtx != 0
7329 && GET_MODE_SIZE (pos_mode) > GET_MODE_SIZE (GET_MODE (pos_rtx)))
7331 rtx temp = gen_rtx_ZERO_EXTEND (pos_mode, pos_rtx);
7333 /* If we know that no extraneous bits are set, and that the high
7334 bit is not set, convert extraction to cheaper one - either
7335 SIGN_EXTENSION or ZERO_EXTENSION, that are equivalent in these
7336 cases. */
7337 if (flag_expensive_optimizations
7338 && (HWI_COMPUTABLE_MODE_P (GET_MODE (pos_rtx))
7339 && ((nonzero_bits (pos_rtx, GET_MODE (pos_rtx))
7340 & ~(((unsigned HOST_WIDE_INT)
7341 GET_MODE_MASK (GET_MODE (pos_rtx)))
7342 >> 1))
7343 == 0)))
7345 rtx temp1 = gen_rtx_SIGN_EXTEND (pos_mode, pos_rtx);
7347 /* Prefer ZERO_EXTENSION, since it gives more information to
7348 backends. */
7349 if (set_src_cost (temp1, optimize_this_for_speed_p)
7350 < set_src_cost (temp, optimize_this_for_speed_p))
7351 temp = temp1;
7353 pos_rtx = temp;
7356 /* Make POS_RTX unless we already have it and it is correct. If we don't
7357 have a POS_RTX but we do have an ORIG_POS_RTX, the latter must
7358 be a CONST_INT. */
7359 if (pos_rtx == 0 && orig_pos_rtx != 0 && INTVAL (orig_pos_rtx) == pos)
7360 pos_rtx = orig_pos_rtx;
7362 else if (pos_rtx == 0)
7363 pos_rtx = GEN_INT (pos);
7365 /* Make the required operation. See if we can use existing rtx. */
7366 new_rtx = gen_rtx_fmt_eee (unsignedp ? ZERO_EXTRACT : SIGN_EXTRACT,
7367 extraction_mode, inner, GEN_INT (len), pos_rtx);
7368 if (! in_dest)
7369 new_rtx = gen_lowpart (mode, new_rtx);
7371 return new_rtx;
7374 /* See if X contains an ASHIFT of COUNT or more bits that can be commuted
7375 with any other operations in X. Return X without that shift if so. */
7377 static rtx
7378 extract_left_shift (rtx x, int count)
7380 enum rtx_code code = GET_CODE (x);
7381 enum machine_mode mode = GET_MODE (x);
7382 rtx tem;
7384 switch (code)
7386 case ASHIFT:
7387 /* This is the shift itself. If it is wide enough, we will return
7388 either the value being shifted if the shift count is equal to
7389 COUNT or a shift for the difference. */
7390 if (CONST_INT_P (XEXP (x, 1))
7391 && INTVAL (XEXP (x, 1)) >= count)
7392 return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (x, 0),
7393 INTVAL (XEXP (x, 1)) - count);
7394 break;
7396 case NEG: case NOT:
7397 if ((tem = extract_left_shift (XEXP (x, 0), count)) != 0)
7398 return simplify_gen_unary (code, mode, tem, mode);
7400 break;
7402 case PLUS: case IOR: case XOR: case AND:
7403 /* If we can safely shift this constant and we find the inner shift,
7404 make a new operation. */
7405 if (CONST_INT_P (XEXP (x, 1))
7406 && (UINTVAL (XEXP (x, 1))
7407 & ((((unsigned HOST_WIDE_INT) 1 << count)) - 1)) == 0
7408 && (tem = extract_left_shift (XEXP (x, 0), count)) != 0)
7409 return simplify_gen_binary (code, mode, tem,
7410 GEN_INT (INTVAL (XEXP (x, 1)) >> count));
7412 break;
7414 default:
7415 break;
7418 return 0;
7421 /* Look at the expression rooted at X. Look for expressions
7422 equivalent to ZERO_EXTRACT, SIGN_EXTRACT, ZERO_EXTEND, SIGN_EXTEND.
7423 Form these expressions.
7425 Return the new rtx, usually just X.
7427 Also, for machines like the VAX that don't have logical shift insns,
7428 try to convert logical to arithmetic shift operations in cases where
7429 they are equivalent. This undoes the canonicalizations to logical
7430 shifts done elsewhere.
7432 We try, as much as possible, to re-use rtl expressions to save memory.
7434 IN_CODE says what kind of expression we are processing. Normally, it is
7435 SET. In a memory address (inside a MEM, PLUS or minus, the latter two
7436 being kludges), it is MEM. When processing the arguments of a comparison
7437 or a COMPARE against zero, it is COMPARE. */
7440 make_compound_operation (rtx x, enum rtx_code in_code)
7442 enum rtx_code code = GET_CODE (x);
7443 enum machine_mode mode = GET_MODE (x);
7444 int mode_width = GET_MODE_PRECISION (mode);
7445 rtx rhs, lhs;
7446 enum rtx_code next_code;
7447 int i, j;
7448 rtx new_rtx = 0;
7449 rtx tem;
7450 const char *fmt;
7452 /* Select the code to be used in recursive calls. Once we are inside an
7453 address, we stay there. If we have a comparison, set to COMPARE,
7454 but once inside, go back to our default of SET. */
7456 next_code = (code == MEM ? MEM
7457 : ((code == PLUS || code == MINUS)
7458 && SCALAR_INT_MODE_P (mode)) ? MEM
7459 : ((code == COMPARE || COMPARISON_P (x))
7460 && XEXP (x, 1) == const0_rtx) ? COMPARE
7461 : in_code == COMPARE ? SET : in_code);
7463 /* Process depending on the code of this operation. If NEW is set
7464 nonzero, it will be returned. */
7466 switch (code)
7468 case ASHIFT:
7469 /* Convert shifts by constants into multiplications if inside
7470 an address. */
7471 if (in_code == MEM && CONST_INT_P (XEXP (x, 1))
7472 && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
7473 && INTVAL (XEXP (x, 1)) >= 0
7474 && SCALAR_INT_MODE_P (mode))
7476 HOST_WIDE_INT count = INTVAL (XEXP (x, 1));
7477 HOST_WIDE_INT multval = (HOST_WIDE_INT) 1 << count;
7479 new_rtx = make_compound_operation (XEXP (x, 0), next_code);
7480 if (GET_CODE (new_rtx) == NEG)
7482 new_rtx = XEXP (new_rtx, 0);
7483 multval = -multval;
7485 multval = trunc_int_for_mode (multval, mode);
7486 new_rtx = gen_rtx_MULT (mode, new_rtx, GEN_INT (multval));
7488 break;
7490 case PLUS:
7491 lhs = XEXP (x, 0);
7492 rhs = XEXP (x, 1);
7493 lhs = make_compound_operation (lhs, next_code);
7494 rhs = make_compound_operation (rhs, next_code);
7495 if (GET_CODE (lhs) == MULT && GET_CODE (XEXP (lhs, 0)) == NEG
7496 && SCALAR_INT_MODE_P (mode))
7498 tem = simplify_gen_binary (MULT, mode, XEXP (XEXP (lhs, 0), 0),
7499 XEXP (lhs, 1));
7500 new_rtx = simplify_gen_binary (MINUS, mode, rhs, tem);
7502 else if (GET_CODE (lhs) == MULT
7503 && (CONST_INT_P (XEXP (lhs, 1)) && INTVAL (XEXP (lhs, 1)) < 0))
7505 tem = simplify_gen_binary (MULT, mode, XEXP (lhs, 0),
7506 simplify_gen_unary (NEG, mode,
7507 XEXP (lhs, 1),
7508 mode));
7509 new_rtx = simplify_gen_binary (MINUS, mode, rhs, tem);
7511 else
7513 SUBST (XEXP (x, 0), lhs);
7514 SUBST (XEXP (x, 1), rhs);
7515 goto maybe_swap;
7517 x = gen_lowpart (mode, new_rtx);
7518 goto maybe_swap;
7520 case MINUS:
7521 lhs = XEXP (x, 0);
7522 rhs = XEXP (x, 1);
7523 lhs = make_compound_operation (lhs, next_code);
7524 rhs = make_compound_operation (rhs, next_code);
7525 if (GET_CODE (rhs) == MULT && GET_CODE (XEXP (rhs, 0)) == NEG
7526 && SCALAR_INT_MODE_P (mode))
7528 tem = simplify_gen_binary (MULT, mode, XEXP (XEXP (rhs, 0), 0),
7529 XEXP (rhs, 1));
7530 new_rtx = simplify_gen_binary (PLUS, mode, tem, lhs);
7532 else if (GET_CODE (rhs) == MULT
7533 && (CONST_INT_P (XEXP (rhs, 1)) && INTVAL (XEXP (rhs, 1)) < 0))
7535 tem = simplify_gen_binary (MULT, mode, XEXP (rhs, 0),
7536 simplify_gen_unary (NEG, mode,
7537 XEXP (rhs, 1),
7538 mode));
7539 new_rtx = simplify_gen_binary (PLUS, mode, tem, lhs);
7541 else
7543 SUBST (XEXP (x, 0), lhs);
7544 SUBST (XEXP (x, 1), rhs);
7545 return x;
7547 return gen_lowpart (mode, new_rtx);
7549 case AND:
7550 /* If the second operand is not a constant, we can't do anything
7551 with it. */
7552 if (!CONST_INT_P (XEXP (x, 1)))
7553 break;
7555 /* If the constant is a power of two minus one and the first operand
7556 is a logical right shift, make an extraction. */
7557 if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
7558 && (i = exact_log2 (UINTVAL (XEXP (x, 1)) + 1)) >= 0)
7560 new_rtx = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
7561 new_rtx = make_extraction (mode, new_rtx, 0, XEXP (XEXP (x, 0), 1), i, 1,
7562 0, in_code == COMPARE);
7565 /* Same as previous, but for (subreg (lshiftrt ...)) in first op. */
7566 else if (GET_CODE (XEXP (x, 0)) == SUBREG
7567 && subreg_lowpart_p (XEXP (x, 0))
7568 && GET_CODE (SUBREG_REG (XEXP (x, 0))) == LSHIFTRT
7569 && (i = exact_log2 (UINTVAL (XEXP (x, 1)) + 1)) >= 0)
7571 new_rtx = make_compound_operation (XEXP (SUBREG_REG (XEXP (x, 0)), 0),
7572 next_code);
7573 new_rtx = make_extraction (GET_MODE (SUBREG_REG (XEXP (x, 0))), new_rtx, 0,
7574 XEXP (SUBREG_REG (XEXP (x, 0)), 1), i, 1,
7575 0, in_code == COMPARE);
7577 /* Same as previous, but for (xor/ior (lshiftrt...) (lshiftrt...)). */
7578 else if ((GET_CODE (XEXP (x, 0)) == XOR
7579 || GET_CODE (XEXP (x, 0)) == IOR)
7580 && GET_CODE (XEXP (XEXP (x, 0), 0)) == LSHIFTRT
7581 && GET_CODE (XEXP (XEXP (x, 0), 1)) == LSHIFTRT
7582 && (i = exact_log2 (UINTVAL (XEXP (x, 1)) + 1)) >= 0)
7584 /* Apply the distributive law, and then try to make extractions. */
7585 new_rtx = gen_rtx_fmt_ee (GET_CODE (XEXP (x, 0)), mode,
7586 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 0),
7587 XEXP (x, 1)),
7588 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 1),
7589 XEXP (x, 1)));
7590 new_rtx = make_compound_operation (new_rtx, in_code);
7593 /* If we are have (and (rotate X C) M) and C is larger than the number
7594 of bits in M, this is an extraction. */
7596 else if (GET_CODE (XEXP (x, 0)) == ROTATE
7597 && CONST_INT_P (XEXP (XEXP (x, 0), 1))
7598 && (i = exact_log2 (UINTVAL (XEXP (x, 1)) + 1)) >= 0
7599 && i <= INTVAL (XEXP (XEXP (x, 0), 1)))
7601 new_rtx = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
7602 new_rtx = make_extraction (mode, new_rtx,
7603 (GET_MODE_PRECISION (mode)
7604 - INTVAL (XEXP (XEXP (x, 0), 1))),
7605 NULL_RTX, i, 1, 0, in_code == COMPARE);
7608 /* On machines without logical shifts, if the operand of the AND is
7609 a logical shift and our mask turns off all the propagated sign
7610 bits, we can replace the logical shift with an arithmetic shift. */
7611 else if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
7612 && !have_insn_for (LSHIFTRT, mode)
7613 && have_insn_for (ASHIFTRT, mode)
7614 && CONST_INT_P (XEXP (XEXP (x, 0), 1))
7615 && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
7616 && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
7617 && mode_width <= HOST_BITS_PER_WIDE_INT)
7619 unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
7621 mask >>= INTVAL (XEXP (XEXP (x, 0), 1));
7622 if ((INTVAL (XEXP (x, 1)) & ~mask) == 0)
7623 SUBST (XEXP (x, 0),
7624 gen_rtx_ASHIFTRT (mode,
7625 make_compound_operation
7626 (XEXP (XEXP (x, 0), 0), next_code),
7627 XEXP (XEXP (x, 0), 1)));
7630 /* If the constant is one less than a power of two, this might be
7631 representable by an extraction even if no shift is present.
7632 If it doesn't end up being a ZERO_EXTEND, we will ignore it unless
7633 we are in a COMPARE. */
7634 else if ((i = exact_log2 (UINTVAL (XEXP (x, 1)) + 1)) >= 0)
7635 new_rtx = make_extraction (mode,
7636 make_compound_operation (XEXP (x, 0),
7637 next_code),
7638 0, NULL_RTX, i, 1, 0, in_code == COMPARE);
7640 /* If we are in a comparison and this is an AND with a power of two,
7641 convert this into the appropriate bit extract. */
7642 else if (in_code == COMPARE
7643 && (i = exact_log2 (UINTVAL (XEXP (x, 1)))) >= 0)
7644 new_rtx = make_extraction (mode,
7645 make_compound_operation (XEXP (x, 0),
7646 next_code),
7647 i, NULL_RTX, 1, 1, 0, 1);
7649 break;
7651 case LSHIFTRT:
7652 /* If the sign bit is known to be zero, replace this with an
7653 arithmetic shift. */
7654 if (have_insn_for (ASHIFTRT, mode)
7655 && ! have_insn_for (LSHIFTRT, mode)
7656 && mode_width <= HOST_BITS_PER_WIDE_INT
7657 && (nonzero_bits (XEXP (x, 0), mode) & (1 << (mode_width - 1))) == 0)
7659 new_rtx = gen_rtx_ASHIFTRT (mode,
7660 make_compound_operation (XEXP (x, 0),
7661 next_code),
7662 XEXP (x, 1));
7663 break;
7666 /* ... fall through ... */
7668 case ASHIFTRT:
7669 lhs = XEXP (x, 0);
7670 rhs = XEXP (x, 1);
7672 /* If we have (ashiftrt (ashift foo C1) C2) with C2 >= C1,
7673 this is a SIGN_EXTRACT. */
7674 if (CONST_INT_P (rhs)
7675 && GET_CODE (lhs) == ASHIFT
7676 && CONST_INT_P (XEXP (lhs, 1))
7677 && INTVAL (rhs) >= INTVAL (XEXP (lhs, 1))
7678 && INTVAL (XEXP (lhs, 1)) >= 0
7679 && INTVAL (rhs) < mode_width)
7681 new_rtx = make_compound_operation (XEXP (lhs, 0), next_code);
7682 new_rtx = make_extraction (mode, new_rtx,
7683 INTVAL (rhs) - INTVAL (XEXP (lhs, 1)),
7684 NULL_RTX, mode_width - INTVAL (rhs),
7685 code == LSHIFTRT, 0, in_code == COMPARE);
7686 break;
7689 /* See if we have operations between an ASHIFTRT and an ASHIFT.
7690 If so, try to merge the shifts into a SIGN_EXTEND. We could
7691 also do this for some cases of SIGN_EXTRACT, but it doesn't
7692 seem worth the effort; the case checked for occurs on Alpha. */
7694 if (!OBJECT_P (lhs)
7695 && ! (GET_CODE (lhs) == SUBREG
7696 && (OBJECT_P (SUBREG_REG (lhs))))
7697 && CONST_INT_P (rhs)
7698 && INTVAL (rhs) < HOST_BITS_PER_WIDE_INT
7699 && INTVAL (rhs) < mode_width
7700 && (new_rtx = extract_left_shift (lhs, INTVAL (rhs))) != 0)
7701 new_rtx = make_extraction (mode, make_compound_operation (new_rtx, next_code),
7702 0, NULL_RTX, mode_width - INTVAL (rhs),
7703 code == LSHIFTRT, 0, in_code == COMPARE);
7705 break;
7707 case SUBREG:
7708 /* Call ourselves recursively on the inner expression. If we are
7709 narrowing the object and it has a different RTL code from
7710 what it originally did, do this SUBREG as a force_to_mode. */
7712 rtx inner = SUBREG_REG (x), simplified;
7713 enum rtx_code subreg_code = in_code;
7715 /* If in_code is COMPARE, it isn't always safe to pass it through
7716 to the recursive make_compound_operation call. */
7717 if (subreg_code == COMPARE
7718 && (!subreg_lowpart_p (x)
7719 || GET_CODE (inner) == SUBREG
7720 /* (subreg:SI (and:DI (reg:DI) (const_int 0x800000000)) 0)
7721 is (const_int 0), rather than
7722 (subreg:SI (lshiftrt:DI (reg:DI) (const_int 35)) 0). */
7723 || (GET_CODE (inner) == AND
7724 && CONST_INT_P (XEXP (inner, 1))
7725 && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (inner))
7726 && exact_log2 (UINTVAL (XEXP (inner, 1)))
7727 >= GET_MODE_BITSIZE (mode))))
7728 subreg_code = SET;
7730 tem = make_compound_operation (inner, subreg_code);
7732 simplified
7733 = simplify_subreg (mode, tem, GET_MODE (inner), SUBREG_BYTE (x));
7734 if (simplified)
7735 tem = simplified;
7737 if (GET_CODE (tem) != GET_CODE (inner)
7738 && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (inner))
7739 && subreg_lowpart_p (x))
7741 rtx newer
7742 = force_to_mode (tem, mode, ~(unsigned HOST_WIDE_INT) 0, 0);
7744 /* If we have something other than a SUBREG, we might have
7745 done an expansion, so rerun ourselves. */
7746 if (GET_CODE (newer) != SUBREG)
7747 newer = make_compound_operation (newer, in_code);
7749 /* force_to_mode can expand compounds. If it just re-expanded the
7750 compound, use gen_lowpart to convert to the desired mode. */
7751 if (rtx_equal_p (newer, x)
7752 /* Likewise if it re-expanded the compound only partially.
7753 This happens for SUBREG of ZERO_EXTRACT if they extract
7754 the same number of bits. */
7755 || (GET_CODE (newer) == SUBREG
7756 && (GET_CODE (SUBREG_REG (newer)) == LSHIFTRT
7757 || GET_CODE (SUBREG_REG (newer)) == ASHIFTRT)
7758 && GET_CODE (inner) == AND
7759 && rtx_equal_p (SUBREG_REG (newer), XEXP (inner, 0))))
7760 return gen_lowpart (GET_MODE (x), tem);
7762 return newer;
7765 if (simplified)
7766 return tem;
7768 break;
7770 default:
7771 break;
7774 if (new_rtx)
7776 x = gen_lowpart (mode, new_rtx);
7777 code = GET_CODE (x);
7780 /* Now recursively process each operand of this operation. We need to
7781 handle ZERO_EXTEND specially so that we don't lose track of the
7782 inner mode. */
7783 if (GET_CODE (x) == ZERO_EXTEND)
7785 new_rtx = make_compound_operation (XEXP (x, 0), next_code);
7786 tem = simplify_const_unary_operation (ZERO_EXTEND, GET_MODE (x),
7787 new_rtx, GET_MODE (XEXP (x, 0)));
7788 if (tem)
7789 return tem;
7790 SUBST (XEXP (x, 0), new_rtx);
7791 return x;
7794 fmt = GET_RTX_FORMAT (code);
7795 for (i = 0; i < GET_RTX_LENGTH (code); i++)
7796 if (fmt[i] == 'e')
7798 new_rtx = make_compound_operation (XEXP (x, i), next_code);
7799 SUBST (XEXP (x, i), new_rtx);
7801 else if (fmt[i] == 'E')
7802 for (j = 0; j < XVECLEN (x, i); j++)
7804 new_rtx = make_compound_operation (XVECEXP (x, i, j), next_code);
7805 SUBST (XVECEXP (x, i, j), new_rtx);
7808 maybe_swap:
7809 /* If this is a commutative operation, the changes to the operands
7810 may have made it noncanonical. */
7811 if (COMMUTATIVE_ARITH_P (x)
7812 && swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
7814 tem = XEXP (x, 0);
7815 SUBST (XEXP (x, 0), XEXP (x, 1));
7816 SUBST (XEXP (x, 1), tem);
7819 return x;
7822 /* Given M see if it is a value that would select a field of bits
7823 within an item, but not the entire word. Return -1 if not.
7824 Otherwise, return the starting position of the field, where 0 is the
7825 low-order bit.
7827 *PLEN is set to the length of the field. */
7829 static int
7830 get_pos_from_mask (unsigned HOST_WIDE_INT m, unsigned HOST_WIDE_INT *plen)
7832 /* Get the bit number of the first 1 bit from the right, -1 if none. */
7833 int pos = m ? ctz_hwi (m) : -1;
7834 int len = 0;
7836 if (pos >= 0)
7837 /* Now shift off the low-order zero bits and see if we have a
7838 power of two minus 1. */
7839 len = exact_log2 ((m >> pos) + 1);
7841 if (len <= 0)
7842 pos = -1;
7844 *plen = len;
7845 return pos;
7848 /* If X refers to a register that equals REG in value, replace these
7849 references with REG. */
7850 static rtx
7851 canon_reg_for_combine (rtx x, rtx reg)
7853 rtx op0, op1, op2;
7854 const char *fmt;
7855 int i;
7856 bool copied;
7858 enum rtx_code code = GET_CODE (x);
7859 switch (GET_RTX_CLASS (code))
7861 case RTX_UNARY:
7862 op0 = canon_reg_for_combine (XEXP (x, 0), reg);
7863 if (op0 != XEXP (x, 0))
7864 return simplify_gen_unary (GET_CODE (x), GET_MODE (x), op0,
7865 GET_MODE (reg));
7866 break;
7868 case RTX_BIN_ARITH:
7869 case RTX_COMM_ARITH:
7870 op0 = canon_reg_for_combine (XEXP (x, 0), reg);
7871 op1 = canon_reg_for_combine (XEXP (x, 1), reg);
7872 if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
7873 return simplify_gen_binary (GET_CODE (x), GET_MODE (x), op0, op1);
7874 break;
7876 case RTX_COMPARE:
7877 case RTX_COMM_COMPARE:
7878 op0 = canon_reg_for_combine (XEXP (x, 0), reg);
7879 op1 = canon_reg_for_combine (XEXP (x, 1), reg);
7880 if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
7881 return simplify_gen_relational (GET_CODE (x), GET_MODE (x),
7882 GET_MODE (op0), op0, op1);
7883 break;
7885 case RTX_TERNARY:
7886 case RTX_BITFIELD_OPS:
7887 op0 = canon_reg_for_combine (XEXP (x, 0), reg);
7888 op1 = canon_reg_for_combine (XEXP (x, 1), reg);
7889 op2 = canon_reg_for_combine (XEXP (x, 2), reg);
7890 if (op0 != XEXP (x, 0) || op1 != XEXP (x, 1) || op2 != XEXP (x, 2))
7891 return simplify_gen_ternary (GET_CODE (x), GET_MODE (x),
7892 GET_MODE (op0), op0, op1, op2);
7894 case RTX_OBJ:
7895 if (REG_P (x))
7897 if (rtx_equal_p (get_last_value (reg), x)
7898 || rtx_equal_p (reg, get_last_value (x)))
7899 return reg;
7900 else
7901 break;
7904 /* fall through */
7906 default:
7907 fmt = GET_RTX_FORMAT (code);
7908 copied = false;
7909 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7910 if (fmt[i] == 'e')
7912 rtx op = canon_reg_for_combine (XEXP (x, i), reg);
7913 if (op != XEXP (x, i))
7915 if (!copied)
7917 copied = true;
7918 x = copy_rtx (x);
7920 XEXP (x, i) = op;
7923 else if (fmt[i] == 'E')
7925 int j;
7926 for (j = 0; j < XVECLEN (x, i); j++)
7928 rtx op = canon_reg_for_combine (XVECEXP (x, i, j), reg);
7929 if (op != XVECEXP (x, i, j))
7931 if (!copied)
7933 copied = true;
7934 x = copy_rtx (x);
7936 XVECEXP (x, i, j) = op;
7941 break;
7944 return x;
7947 /* Return X converted to MODE. If the value is already truncated to
7948 MODE we can just return a subreg even though in the general case we
7949 would need an explicit truncation. */
7951 static rtx
7952 gen_lowpart_or_truncate (enum machine_mode mode, rtx x)
7954 if (!CONST_INT_P (x)
7955 && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (x))
7956 && !TRULY_NOOP_TRUNCATION_MODES_P (mode, GET_MODE (x))
7957 && !(REG_P (x) && reg_truncated_to_mode (mode, x)))
7959 /* Bit-cast X into an integer mode. */
7960 if (!SCALAR_INT_MODE_P (GET_MODE (x)))
7961 x = gen_lowpart (int_mode_for_mode (GET_MODE (x)), x);
7962 x = simplify_gen_unary (TRUNCATE, int_mode_for_mode (mode),
7963 x, GET_MODE (x));
7966 return gen_lowpart (mode, x);
7969 /* See if X can be simplified knowing that we will only refer to it in
7970 MODE and will only refer to those bits that are nonzero in MASK.
7971 If other bits are being computed or if masking operations are done
7972 that select a superset of the bits in MASK, they can sometimes be
7973 ignored.
7975 Return a possibly simplified expression, but always convert X to
7976 MODE. If X is a CONST_INT, AND the CONST_INT with MASK.
7978 If JUST_SELECT is nonzero, don't optimize by noticing that bits in MASK
7979 are all off in X. This is used when X will be complemented, by either
7980 NOT, NEG, or XOR. */
7982 static rtx
7983 force_to_mode (rtx x, enum machine_mode mode, unsigned HOST_WIDE_INT mask,
7984 int just_select)
7986 enum rtx_code code = GET_CODE (x);
7987 int next_select = just_select || code == XOR || code == NOT || code == NEG;
7988 enum machine_mode op_mode;
7989 unsigned HOST_WIDE_INT fuller_mask, nonzero;
7990 rtx op0, op1, temp;
7992 /* If this is a CALL or ASM_OPERANDS, don't do anything. Some of the
7993 code below will do the wrong thing since the mode of such an
7994 expression is VOIDmode.
7996 Also do nothing if X is a CLOBBER; this can happen if X was
7997 the return value from a call to gen_lowpart. */
7998 if (code == CALL || code == ASM_OPERANDS || code == CLOBBER)
7999 return x;
8001 /* We want to perform the operation is its present mode unless we know
8002 that the operation is valid in MODE, in which case we do the operation
8003 in MODE. */
8004 op_mode = ((GET_MODE_CLASS (mode) == GET_MODE_CLASS (GET_MODE (x))
8005 && have_insn_for (code, mode))
8006 ? mode : GET_MODE (x));
8008 /* It is not valid to do a right-shift in a narrower mode
8009 than the one it came in with. */
8010 if ((code == LSHIFTRT || code == ASHIFTRT)
8011 && GET_MODE_PRECISION (mode) < GET_MODE_PRECISION (GET_MODE (x)))
8012 op_mode = GET_MODE (x);
8014 /* Truncate MASK to fit OP_MODE. */
8015 if (op_mode)
8016 mask &= GET_MODE_MASK (op_mode);
8018 /* When we have an arithmetic operation, or a shift whose count we
8019 do not know, we need to assume that all bits up to the highest-order
8020 bit in MASK will be needed. This is how we form such a mask. */
8021 if (mask & ((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT - 1)))
8022 fuller_mask = ~(unsigned HOST_WIDE_INT) 0;
8023 else
8024 fuller_mask = (((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mask) + 1))
8025 - 1);
8027 /* Determine what bits of X are guaranteed to be (non)zero. */
8028 nonzero = nonzero_bits (x, mode);
8030 /* If none of the bits in X are needed, return a zero. */
8031 if (!just_select && (nonzero & mask) == 0 && !side_effects_p (x))
8032 x = const0_rtx;
8034 /* If X is a CONST_INT, return a new one. Do this here since the
8035 test below will fail. */
8036 if (CONST_INT_P (x))
8038 if (SCALAR_INT_MODE_P (mode))
8039 return gen_int_mode (INTVAL (x) & mask, mode);
8040 else
8042 x = GEN_INT (INTVAL (x) & mask);
8043 return gen_lowpart_common (mode, x);
8047 /* If X is narrower than MODE and we want all the bits in X's mode, just
8048 get X in the proper mode. */
8049 if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode)
8050 && (GET_MODE_MASK (GET_MODE (x)) & ~mask) == 0)
8051 return gen_lowpart (mode, x);
8053 /* We can ignore the effect of a SUBREG if it narrows the mode or
8054 if the constant masks to zero all the bits the mode doesn't have. */
8055 if (GET_CODE (x) == SUBREG
8056 && subreg_lowpart_p (x)
8057 && ((GET_MODE_SIZE (GET_MODE (x))
8058 < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8059 || (0 == (mask
8060 & GET_MODE_MASK (GET_MODE (x))
8061 & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x)))))))
8062 return force_to_mode (SUBREG_REG (x), mode, mask, next_select);
8064 /* The arithmetic simplifications here only work for scalar integer modes. */
8065 if (!SCALAR_INT_MODE_P (mode) || !SCALAR_INT_MODE_P (GET_MODE (x)))
8066 return gen_lowpart_or_truncate (mode, x);
8068 switch (code)
8070 case CLOBBER:
8071 /* If X is a (clobber (const_int)), return it since we know we are
8072 generating something that won't match. */
8073 return x;
8075 case SIGN_EXTEND:
8076 case ZERO_EXTEND:
8077 case ZERO_EXTRACT:
8078 case SIGN_EXTRACT:
8079 x = expand_compound_operation (x);
8080 if (GET_CODE (x) != code)
8081 return force_to_mode (x, mode, mask, next_select);
8082 break;
8084 case TRUNCATE:
8085 /* Similarly for a truncate. */
8086 return force_to_mode (XEXP (x, 0), mode, mask, next_select);
8088 case AND:
8089 /* If this is an AND with a constant, convert it into an AND
8090 whose constant is the AND of that constant with MASK. If it
8091 remains an AND of MASK, delete it since it is redundant. */
8093 if (CONST_INT_P (XEXP (x, 1)))
8095 x = simplify_and_const_int (x, op_mode, XEXP (x, 0),
8096 mask & INTVAL (XEXP (x, 1)));
8098 /* If X is still an AND, see if it is an AND with a mask that
8099 is just some low-order bits. If so, and it is MASK, we don't
8100 need it. */
8102 if (GET_CODE (x) == AND && CONST_INT_P (XEXP (x, 1))
8103 && ((INTVAL (XEXP (x, 1)) & GET_MODE_MASK (GET_MODE (x)))
8104 == mask))
8105 x = XEXP (x, 0);
8107 /* If it remains an AND, try making another AND with the bits
8108 in the mode mask that aren't in MASK turned on. If the
8109 constant in the AND is wide enough, this might make a
8110 cheaper constant. */
8112 if (GET_CODE (x) == AND && CONST_INT_P (XEXP (x, 1))
8113 && GET_MODE_MASK (GET_MODE (x)) != mask
8114 && HWI_COMPUTABLE_MODE_P (GET_MODE (x)))
8116 unsigned HOST_WIDE_INT cval
8117 = UINTVAL (XEXP (x, 1))
8118 | (GET_MODE_MASK (GET_MODE (x)) & ~mask);
8119 int width = GET_MODE_PRECISION (GET_MODE (x));
8120 rtx y;
8122 /* If MODE is narrower than HOST_WIDE_INT and CVAL is a negative
8123 number, sign extend it. */
8124 if (width > 0 && width < HOST_BITS_PER_WIDE_INT
8125 && (cval & ((unsigned HOST_WIDE_INT) 1 << (width - 1))) != 0)
8126 cval |= (unsigned HOST_WIDE_INT) -1 << width;
8128 y = simplify_gen_binary (AND, GET_MODE (x),
8129 XEXP (x, 0), GEN_INT (cval));
8130 if (set_src_cost (y, optimize_this_for_speed_p)
8131 < set_src_cost (x, optimize_this_for_speed_p))
8132 x = y;
8135 break;
8138 goto binop;
8140 case PLUS:
8141 /* In (and (plus FOO C1) M), if M is a mask that just turns off
8142 low-order bits (as in an alignment operation) and FOO is already
8143 aligned to that boundary, mask C1 to that boundary as well.
8144 This may eliminate that PLUS and, later, the AND. */
8147 unsigned int width = GET_MODE_PRECISION (mode);
8148 unsigned HOST_WIDE_INT smask = mask;
8150 /* If MODE is narrower than HOST_WIDE_INT and mask is a negative
8151 number, sign extend it. */
8153 if (width < HOST_BITS_PER_WIDE_INT
8154 && (smask & ((unsigned HOST_WIDE_INT) 1 << (width - 1))) != 0)
8155 smask |= (unsigned HOST_WIDE_INT) (-1) << width;
8157 if (CONST_INT_P (XEXP (x, 1))
8158 && exact_log2 (- smask) >= 0
8159 && (nonzero_bits (XEXP (x, 0), mode) & ~smask) == 0
8160 && (INTVAL (XEXP (x, 1)) & ~smask) != 0)
8161 return force_to_mode (plus_constant (GET_MODE (x), XEXP (x, 0),
8162 (INTVAL (XEXP (x, 1)) & smask)),
8163 mode, smask, next_select);
8166 /* ... fall through ... */
8168 case MULT:
8169 /* For PLUS, MINUS and MULT, we need any bits less significant than the
8170 most significant bit in MASK since carries from those bits will
8171 affect the bits we are interested in. */
8172 mask = fuller_mask;
8173 goto binop;
8175 case MINUS:
8176 /* If X is (minus C Y) where C's least set bit is larger than any bit
8177 in the mask, then we may replace with (neg Y). */
8178 if (CONST_INT_P (XEXP (x, 0))
8179 && (((unsigned HOST_WIDE_INT) (INTVAL (XEXP (x, 0))
8180 & -INTVAL (XEXP (x, 0))))
8181 > mask))
8183 x = simplify_gen_unary (NEG, GET_MODE (x), XEXP (x, 1),
8184 GET_MODE (x));
8185 return force_to_mode (x, mode, mask, next_select);
8188 /* Similarly, if C contains every bit in the fuller_mask, then we may
8189 replace with (not Y). */
8190 if (CONST_INT_P (XEXP (x, 0))
8191 && ((UINTVAL (XEXP (x, 0)) | fuller_mask) == UINTVAL (XEXP (x, 0))))
8193 x = simplify_gen_unary (NOT, GET_MODE (x),
8194 XEXP (x, 1), GET_MODE (x));
8195 return force_to_mode (x, mode, mask, next_select);
8198 mask = fuller_mask;
8199 goto binop;
8201 case IOR:
8202 case XOR:
8203 /* If X is (ior (lshiftrt FOO C1) C2), try to commute the IOR and
8204 LSHIFTRT so we end up with an (and (lshiftrt (ior ...) ...) ...)
8205 operation which may be a bitfield extraction. Ensure that the
8206 constant we form is not wider than the mode of X. */
8208 if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
8209 && CONST_INT_P (XEXP (XEXP (x, 0), 1))
8210 && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
8211 && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
8212 && CONST_INT_P (XEXP (x, 1))
8213 && ((INTVAL (XEXP (XEXP (x, 0), 1))
8214 + floor_log2 (INTVAL (XEXP (x, 1))))
8215 < GET_MODE_PRECISION (GET_MODE (x)))
8216 && (UINTVAL (XEXP (x, 1))
8217 & ~nonzero_bits (XEXP (x, 0), GET_MODE (x))) == 0)
8219 temp = GEN_INT ((INTVAL (XEXP (x, 1)) & mask)
8220 << INTVAL (XEXP (XEXP (x, 0), 1)));
8221 temp = simplify_gen_binary (GET_CODE (x), GET_MODE (x),
8222 XEXP (XEXP (x, 0), 0), temp);
8223 x = simplify_gen_binary (LSHIFTRT, GET_MODE (x), temp,
8224 XEXP (XEXP (x, 0), 1));
8225 return force_to_mode (x, mode, mask, next_select);
8228 binop:
8229 /* For most binary operations, just propagate into the operation and
8230 change the mode if we have an operation of that mode. */
8232 op0 = force_to_mode (XEXP (x, 0), mode, mask, next_select);
8233 op1 = force_to_mode (XEXP (x, 1), mode, mask, next_select);
8235 /* If we ended up truncating both operands, truncate the result of the
8236 operation instead. */
8237 if (GET_CODE (op0) == TRUNCATE
8238 && GET_CODE (op1) == TRUNCATE)
8240 op0 = XEXP (op0, 0);
8241 op1 = XEXP (op1, 0);
8244 op0 = gen_lowpart_or_truncate (op_mode, op0);
8245 op1 = gen_lowpart_or_truncate (op_mode, op1);
8247 if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
8248 x = simplify_gen_binary (code, op_mode, op0, op1);
8249 break;
8251 case ASHIFT:
8252 /* For left shifts, do the same, but just for the first operand.
8253 However, we cannot do anything with shifts where we cannot
8254 guarantee that the counts are smaller than the size of the mode
8255 because such a count will have a different meaning in a
8256 wider mode. */
8258 if (! (CONST_INT_P (XEXP (x, 1))
8259 && INTVAL (XEXP (x, 1)) >= 0
8260 && INTVAL (XEXP (x, 1)) < GET_MODE_PRECISION (mode))
8261 && ! (GET_MODE (XEXP (x, 1)) != VOIDmode
8262 && (nonzero_bits (XEXP (x, 1), GET_MODE (XEXP (x, 1)))
8263 < (unsigned HOST_WIDE_INT) GET_MODE_PRECISION (mode))))
8264 break;
8266 /* If the shift count is a constant and we can do arithmetic in
8267 the mode of the shift, refine which bits we need. Otherwise, use the
8268 conservative form of the mask. */
8269 if (CONST_INT_P (XEXP (x, 1))
8270 && INTVAL (XEXP (x, 1)) >= 0
8271 && INTVAL (XEXP (x, 1)) < GET_MODE_PRECISION (op_mode)
8272 && HWI_COMPUTABLE_MODE_P (op_mode))
8273 mask >>= INTVAL (XEXP (x, 1));
8274 else
8275 mask = fuller_mask;
8277 op0 = gen_lowpart_or_truncate (op_mode,
8278 force_to_mode (XEXP (x, 0), op_mode,
8279 mask, next_select));
8281 if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
8282 x = simplify_gen_binary (code, op_mode, op0, XEXP (x, 1));
8283 break;
8285 case LSHIFTRT:
8286 /* Here we can only do something if the shift count is a constant,
8287 this shift constant is valid for the host, and we can do arithmetic
8288 in OP_MODE. */
8290 if (CONST_INT_P (XEXP (x, 1))
8291 && INTVAL (XEXP (x, 1)) >= 0
8292 && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
8293 && HWI_COMPUTABLE_MODE_P (op_mode))
8295 rtx inner = XEXP (x, 0);
8296 unsigned HOST_WIDE_INT inner_mask;
8298 /* Select the mask of the bits we need for the shift operand. */
8299 inner_mask = mask << INTVAL (XEXP (x, 1));
8301 /* We can only change the mode of the shift if we can do arithmetic
8302 in the mode of the shift and INNER_MASK is no wider than the
8303 width of X's mode. */
8304 if ((inner_mask & ~GET_MODE_MASK (GET_MODE (x))) != 0)
8305 op_mode = GET_MODE (x);
8307 inner = force_to_mode (inner, op_mode, inner_mask, next_select);
8309 if (GET_MODE (x) != op_mode || inner != XEXP (x, 0))
8310 x = simplify_gen_binary (LSHIFTRT, op_mode, inner, XEXP (x, 1));
8313 /* If we have (and (lshiftrt FOO C1) C2) where the combination of the
8314 shift and AND produces only copies of the sign bit (C2 is one less
8315 than a power of two), we can do this with just a shift. */
8317 if (GET_CODE (x) == LSHIFTRT
8318 && CONST_INT_P (XEXP (x, 1))
8319 /* The shift puts one of the sign bit copies in the least significant
8320 bit. */
8321 && ((INTVAL (XEXP (x, 1))
8322 + num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0))))
8323 >= GET_MODE_PRECISION (GET_MODE (x)))
8324 && exact_log2 (mask + 1) >= 0
8325 /* Number of bits left after the shift must be more than the mask
8326 needs. */
8327 && ((INTVAL (XEXP (x, 1)) + exact_log2 (mask + 1))
8328 <= GET_MODE_PRECISION (GET_MODE (x)))
8329 /* Must be more sign bit copies than the mask needs. */
8330 && ((int) num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
8331 >= exact_log2 (mask + 1)))
8332 x = simplify_gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0),
8333 GEN_INT (GET_MODE_PRECISION (GET_MODE (x))
8334 - exact_log2 (mask + 1)));
8336 goto shiftrt;
8338 case ASHIFTRT:
8339 /* If we are just looking for the sign bit, we don't need this shift at
8340 all, even if it has a variable count. */
8341 if (val_signbit_p (GET_MODE (x), mask))
8342 return force_to_mode (XEXP (x, 0), mode, mask, next_select);
8344 /* If this is a shift by a constant, get a mask that contains those bits
8345 that are not copies of the sign bit. We then have two cases: If
8346 MASK only includes those bits, this can be a logical shift, which may
8347 allow simplifications. If MASK is a single-bit field not within
8348 those bits, we are requesting a copy of the sign bit and hence can
8349 shift the sign bit to the appropriate location. */
8351 if (CONST_INT_P (XEXP (x, 1)) && INTVAL (XEXP (x, 1)) >= 0
8352 && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8354 int i;
8356 /* If the considered data is wider than HOST_WIDE_INT, we can't
8357 represent a mask for all its bits in a single scalar.
8358 But we only care about the lower bits, so calculate these. */
8360 if (GET_MODE_PRECISION (GET_MODE (x)) > HOST_BITS_PER_WIDE_INT)
8362 nonzero = ~(unsigned HOST_WIDE_INT) 0;
8364 /* GET_MODE_PRECISION (GET_MODE (x)) - INTVAL (XEXP (x, 1))
8365 is the number of bits a full-width mask would have set.
8366 We need only shift if these are fewer than nonzero can
8367 hold. If not, we must keep all bits set in nonzero. */
8369 if (GET_MODE_PRECISION (GET_MODE (x)) - INTVAL (XEXP (x, 1))
8370 < HOST_BITS_PER_WIDE_INT)
8371 nonzero >>= INTVAL (XEXP (x, 1))
8372 + HOST_BITS_PER_WIDE_INT
8373 - GET_MODE_PRECISION (GET_MODE (x)) ;
8375 else
8377 nonzero = GET_MODE_MASK (GET_MODE (x));
8378 nonzero >>= INTVAL (XEXP (x, 1));
8381 if ((mask & ~nonzero) == 0)
8383 x = simplify_shift_const (NULL_RTX, LSHIFTRT, GET_MODE (x),
8384 XEXP (x, 0), INTVAL (XEXP (x, 1)));
8385 if (GET_CODE (x) != ASHIFTRT)
8386 return force_to_mode (x, mode, mask, next_select);
8389 else if ((i = exact_log2 (mask)) >= 0)
8391 x = simplify_shift_const
8392 (NULL_RTX, LSHIFTRT, GET_MODE (x), XEXP (x, 0),
8393 GET_MODE_PRECISION (GET_MODE (x)) - 1 - i);
8395 if (GET_CODE (x) != ASHIFTRT)
8396 return force_to_mode (x, mode, mask, next_select);
8400 /* If MASK is 1, convert this to an LSHIFTRT. This can be done
8401 even if the shift count isn't a constant. */
8402 if (mask == 1)
8403 x = simplify_gen_binary (LSHIFTRT, GET_MODE (x),
8404 XEXP (x, 0), XEXP (x, 1));
8406 shiftrt:
8408 /* If this is a zero- or sign-extension operation that just affects bits
8409 we don't care about, remove it. Be sure the call above returned
8410 something that is still a shift. */
8412 if ((GET_CODE (x) == LSHIFTRT || GET_CODE (x) == ASHIFTRT)
8413 && CONST_INT_P (XEXP (x, 1))
8414 && INTVAL (XEXP (x, 1)) >= 0
8415 && (INTVAL (XEXP (x, 1))
8416 <= GET_MODE_PRECISION (GET_MODE (x)) - (floor_log2 (mask) + 1))
8417 && GET_CODE (XEXP (x, 0)) == ASHIFT
8418 && XEXP (XEXP (x, 0), 1) == XEXP (x, 1))
8419 return force_to_mode (XEXP (XEXP (x, 0), 0), mode, mask,
8420 next_select);
8422 break;
8424 case ROTATE:
8425 case ROTATERT:
8426 /* If the shift count is constant and we can do computations
8427 in the mode of X, compute where the bits we care about are.
8428 Otherwise, we can't do anything. Don't change the mode of
8429 the shift or propagate MODE into the shift, though. */
8430 if (CONST_INT_P (XEXP (x, 1))
8431 && INTVAL (XEXP (x, 1)) >= 0)
8433 temp = simplify_binary_operation (code == ROTATE ? ROTATERT : ROTATE,
8434 GET_MODE (x), GEN_INT (mask),
8435 XEXP (x, 1));
8436 if (temp && CONST_INT_P (temp))
8437 SUBST (XEXP (x, 0),
8438 force_to_mode (XEXP (x, 0), GET_MODE (x),
8439 INTVAL (temp), next_select));
8441 break;
8443 case NEG:
8444 /* If we just want the low-order bit, the NEG isn't needed since it
8445 won't change the low-order bit. */
8446 if (mask == 1)
8447 return force_to_mode (XEXP (x, 0), mode, mask, just_select);
8449 /* We need any bits less significant than the most significant bit in
8450 MASK since carries from those bits will affect the bits we are
8451 interested in. */
8452 mask = fuller_mask;
8453 goto unop;
8455 case NOT:
8456 /* (not FOO) is (xor FOO CONST), so if FOO is an LSHIFTRT, we can do the
8457 same as the XOR case above. Ensure that the constant we form is not
8458 wider than the mode of X. */
8460 if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
8461 && CONST_INT_P (XEXP (XEXP (x, 0), 1))
8462 && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
8463 && (INTVAL (XEXP (XEXP (x, 0), 1)) + floor_log2 (mask)
8464 < GET_MODE_PRECISION (GET_MODE (x)))
8465 && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT)
8467 temp = gen_int_mode (mask << INTVAL (XEXP (XEXP (x, 0), 1)),
8468 GET_MODE (x));
8469 temp = simplify_gen_binary (XOR, GET_MODE (x),
8470 XEXP (XEXP (x, 0), 0), temp);
8471 x = simplify_gen_binary (LSHIFTRT, GET_MODE (x),
8472 temp, XEXP (XEXP (x, 0), 1));
8474 return force_to_mode (x, mode, mask, next_select);
8477 /* (and (not FOO) CONST) is (not (or FOO (not CONST))), so we must
8478 use the full mask inside the NOT. */
8479 mask = fuller_mask;
8481 unop:
8482 op0 = gen_lowpart_or_truncate (op_mode,
8483 force_to_mode (XEXP (x, 0), mode, mask,
8484 next_select));
8485 if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
8486 x = simplify_gen_unary (code, op_mode, op0, op_mode);
8487 break;
8489 case NE:
8490 /* (and (ne FOO 0) CONST) can be (and FOO CONST) if CONST is included
8491 in STORE_FLAG_VALUE and FOO has a single bit that might be nonzero,
8492 which is equal to STORE_FLAG_VALUE. */
8493 if ((mask & ~STORE_FLAG_VALUE) == 0
8494 && XEXP (x, 1) == const0_rtx
8495 && GET_MODE (XEXP (x, 0)) == mode
8496 && exact_log2 (nonzero_bits (XEXP (x, 0), mode)) >= 0
8497 && (nonzero_bits (XEXP (x, 0), mode)
8498 == (unsigned HOST_WIDE_INT) STORE_FLAG_VALUE))
8499 return force_to_mode (XEXP (x, 0), mode, mask, next_select);
8501 break;
8503 case IF_THEN_ELSE:
8504 /* We have no way of knowing if the IF_THEN_ELSE can itself be
8505 written in a narrower mode. We play it safe and do not do so. */
8507 SUBST (XEXP (x, 1),
8508 gen_lowpart_or_truncate (GET_MODE (x),
8509 force_to_mode (XEXP (x, 1), mode,
8510 mask, next_select)));
8511 SUBST (XEXP (x, 2),
8512 gen_lowpart_or_truncate (GET_MODE (x),
8513 force_to_mode (XEXP (x, 2), mode,
8514 mask, next_select)));
8515 break;
8517 default:
8518 break;
8521 /* Ensure we return a value of the proper mode. */
8522 return gen_lowpart_or_truncate (mode, x);
8525 /* Return nonzero if X is an expression that has one of two values depending on
8526 whether some other value is zero or nonzero. In that case, we return the
8527 value that is being tested, *PTRUE is set to the value if the rtx being
8528 returned has a nonzero value, and *PFALSE is set to the other alternative.
8530 If we return zero, we set *PTRUE and *PFALSE to X. */
8532 static rtx
8533 if_then_else_cond (rtx x, rtx *ptrue, rtx *pfalse)
8535 enum machine_mode mode = GET_MODE (x);
8536 enum rtx_code code = GET_CODE (x);
8537 rtx cond0, cond1, true0, true1, false0, false1;
8538 unsigned HOST_WIDE_INT nz;
8540 /* If we are comparing a value against zero, we are done. */
8541 if ((code == NE || code == EQ)
8542 && XEXP (x, 1) == const0_rtx)
8544 *ptrue = (code == NE) ? const_true_rtx : const0_rtx;
8545 *pfalse = (code == NE) ? const0_rtx : const_true_rtx;
8546 return XEXP (x, 0);
8549 /* If this is a unary operation whose operand has one of two values, apply
8550 our opcode to compute those values. */
8551 else if (UNARY_P (x)
8552 && (cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0)) != 0)
8554 *ptrue = simplify_gen_unary (code, mode, true0, GET_MODE (XEXP (x, 0)));
8555 *pfalse = simplify_gen_unary (code, mode, false0,
8556 GET_MODE (XEXP (x, 0)));
8557 return cond0;
8560 /* If this is a COMPARE, do nothing, since the IF_THEN_ELSE we would
8561 make can't possibly match and would suppress other optimizations. */
8562 else if (code == COMPARE)
8565 /* If this is a binary operation, see if either side has only one of two
8566 values. If either one does or if both do and they are conditional on
8567 the same value, compute the new true and false values. */
8568 else if (BINARY_P (x))
8570 cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0);
8571 cond1 = if_then_else_cond (XEXP (x, 1), &true1, &false1);
8573 if ((cond0 != 0 || cond1 != 0)
8574 && ! (cond0 != 0 && cond1 != 0 && ! rtx_equal_p (cond0, cond1)))
8576 /* If if_then_else_cond returned zero, then true/false are the
8577 same rtl. We must copy one of them to prevent invalid rtl
8578 sharing. */
8579 if (cond0 == 0)
8580 true0 = copy_rtx (true0);
8581 else if (cond1 == 0)
8582 true1 = copy_rtx (true1);
8584 if (COMPARISON_P (x))
8586 *ptrue = simplify_gen_relational (code, mode, VOIDmode,
8587 true0, true1);
8588 *pfalse = simplify_gen_relational (code, mode, VOIDmode,
8589 false0, false1);
8591 else
8593 *ptrue = simplify_gen_binary (code, mode, true0, true1);
8594 *pfalse = simplify_gen_binary (code, mode, false0, false1);
8597 return cond0 ? cond0 : cond1;
8600 /* See if we have PLUS, IOR, XOR, MINUS or UMAX, where one of the
8601 operands is zero when the other is nonzero, and vice-versa,
8602 and STORE_FLAG_VALUE is 1 or -1. */
8604 if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
8605 && (code == PLUS || code == IOR || code == XOR || code == MINUS
8606 || code == UMAX)
8607 && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
8609 rtx op0 = XEXP (XEXP (x, 0), 1);
8610 rtx op1 = XEXP (XEXP (x, 1), 1);
8612 cond0 = XEXP (XEXP (x, 0), 0);
8613 cond1 = XEXP (XEXP (x, 1), 0);
8615 if (COMPARISON_P (cond0)
8616 && COMPARISON_P (cond1)
8617 && ((GET_CODE (cond0) == reversed_comparison_code (cond1, NULL)
8618 && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
8619 && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
8620 || ((swap_condition (GET_CODE (cond0))
8621 == reversed_comparison_code (cond1, NULL))
8622 && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
8623 && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
8624 && ! side_effects_p (x))
8626 *ptrue = simplify_gen_binary (MULT, mode, op0, const_true_rtx);
8627 *pfalse = simplify_gen_binary (MULT, mode,
8628 (code == MINUS
8629 ? simplify_gen_unary (NEG, mode,
8630 op1, mode)
8631 : op1),
8632 const_true_rtx);
8633 return cond0;
8637 /* Similarly for MULT, AND and UMIN, except that for these the result
8638 is always zero. */
8639 if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
8640 && (code == MULT || code == AND || code == UMIN)
8641 && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
8643 cond0 = XEXP (XEXP (x, 0), 0);
8644 cond1 = XEXP (XEXP (x, 1), 0);
8646 if (COMPARISON_P (cond0)
8647 && COMPARISON_P (cond1)
8648 && ((GET_CODE (cond0) == reversed_comparison_code (cond1, NULL)
8649 && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
8650 && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
8651 || ((swap_condition (GET_CODE (cond0))
8652 == reversed_comparison_code (cond1, NULL))
8653 && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
8654 && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
8655 && ! side_effects_p (x))
8657 *ptrue = *pfalse = const0_rtx;
8658 return cond0;
8663 else if (code == IF_THEN_ELSE)
8665 /* If we have IF_THEN_ELSE already, extract the condition and
8666 canonicalize it if it is NE or EQ. */
8667 cond0 = XEXP (x, 0);
8668 *ptrue = XEXP (x, 1), *pfalse = XEXP (x, 2);
8669 if (GET_CODE (cond0) == NE && XEXP (cond0, 1) == const0_rtx)
8670 return XEXP (cond0, 0);
8671 else if (GET_CODE (cond0) == EQ && XEXP (cond0, 1) == const0_rtx)
8673 *ptrue = XEXP (x, 2), *pfalse = XEXP (x, 1);
8674 return XEXP (cond0, 0);
8676 else
8677 return cond0;
8680 /* If X is a SUBREG, we can narrow both the true and false values
8681 if the inner expression, if there is a condition. */
8682 else if (code == SUBREG
8683 && 0 != (cond0 = if_then_else_cond (SUBREG_REG (x),
8684 &true0, &false0)))
8686 true0 = simplify_gen_subreg (mode, true0,
8687 GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
8688 false0 = simplify_gen_subreg (mode, false0,
8689 GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
8690 if (true0 && false0)
8692 *ptrue = true0;
8693 *pfalse = false0;
8694 return cond0;
8698 /* If X is a constant, this isn't special and will cause confusions
8699 if we treat it as such. Likewise if it is equivalent to a constant. */
8700 else if (CONSTANT_P (x)
8701 || ((cond0 = get_last_value (x)) != 0 && CONSTANT_P (cond0)))
8704 /* If we're in BImode, canonicalize on 0 and STORE_FLAG_VALUE, as that
8705 will be least confusing to the rest of the compiler. */
8706 else if (mode == BImode)
8708 *ptrue = GEN_INT (STORE_FLAG_VALUE), *pfalse = const0_rtx;
8709 return x;
8712 /* If X is known to be either 0 or -1, those are the true and
8713 false values when testing X. */
8714 else if (x == constm1_rtx || x == const0_rtx
8715 || (mode != VOIDmode
8716 && num_sign_bit_copies (x, mode) == GET_MODE_PRECISION (mode)))
8718 *ptrue = constm1_rtx, *pfalse = const0_rtx;
8719 return x;
8722 /* Likewise for 0 or a single bit. */
8723 else if (HWI_COMPUTABLE_MODE_P (mode)
8724 && exact_log2 (nz = nonzero_bits (x, mode)) >= 0)
8726 *ptrue = gen_int_mode (nz, mode), *pfalse = const0_rtx;
8727 return x;
8730 /* Otherwise fail; show no condition with true and false values the same. */
8731 *ptrue = *pfalse = x;
8732 return 0;
8735 /* Return the value of expression X given the fact that condition COND
8736 is known to be true when applied to REG as its first operand and VAL
8737 as its second. X is known to not be shared and so can be modified in
8738 place.
8740 We only handle the simplest cases, and specifically those cases that
8741 arise with IF_THEN_ELSE expressions. */
8743 static rtx
8744 known_cond (rtx x, enum rtx_code cond, rtx reg, rtx val)
8746 enum rtx_code code = GET_CODE (x);
8747 rtx temp;
8748 const char *fmt;
8749 int i, j;
8751 if (side_effects_p (x))
8752 return x;
8754 /* If either operand of the condition is a floating point value,
8755 then we have to avoid collapsing an EQ comparison. */
8756 if (cond == EQ
8757 && rtx_equal_p (x, reg)
8758 && ! FLOAT_MODE_P (GET_MODE (x))
8759 && ! FLOAT_MODE_P (GET_MODE (val)))
8760 return val;
8762 if (cond == UNEQ && rtx_equal_p (x, reg))
8763 return val;
8765 /* If X is (abs REG) and we know something about REG's relationship
8766 with zero, we may be able to simplify this. */
8768 if (code == ABS && rtx_equal_p (XEXP (x, 0), reg) && val == const0_rtx)
8769 switch (cond)
8771 case GE: case GT: case EQ:
8772 return XEXP (x, 0);
8773 case LT: case LE:
8774 return simplify_gen_unary (NEG, GET_MODE (XEXP (x, 0)),
8775 XEXP (x, 0),
8776 GET_MODE (XEXP (x, 0)));
8777 default:
8778 break;
8781 /* The only other cases we handle are MIN, MAX, and comparisons if the
8782 operands are the same as REG and VAL. */
8784 else if (COMPARISON_P (x) || COMMUTATIVE_ARITH_P (x))
8786 if (rtx_equal_p (XEXP (x, 0), val))
8787 cond = swap_condition (cond), temp = val, val = reg, reg = temp;
8789 if (rtx_equal_p (XEXP (x, 0), reg) && rtx_equal_p (XEXP (x, 1), val))
8791 if (COMPARISON_P (x))
8793 if (comparison_dominates_p (cond, code))
8794 return const_true_rtx;
8796 code = reversed_comparison_code (x, NULL);
8797 if (code != UNKNOWN
8798 && comparison_dominates_p (cond, code))
8799 return const0_rtx;
8800 else
8801 return x;
8803 else if (code == SMAX || code == SMIN
8804 || code == UMIN || code == UMAX)
8806 int unsignedp = (code == UMIN || code == UMAX);
8808 /* Do not reverse the condition when it is NE or EQ.
8809 This is because we cannot conclude anything about
8810 the value of 'SMAX (x, y)' when x is not equal to y,
8811 but we can when x equals y. */
8812 if ((code == SMAX || code == UMAX)
8813 && ! (cond == EQ || cond == NE))
8814 cond = reverse_condition (cond);
8816 switch (cond)
8818 case GE: case GT:
8819 return unsignedp ? x : XEXP (x, 1);
8820 case LE: case LT:
8821 return unsignedp ? x : XEXP (x, 0);
8822 case GEU: case GTU:
8823 return unsignedp ? XEXP (x, 1) : x;
8824 case LEU: case LTU:
8825 return unsignedp ? XEXP (x, 0) : x;
8826 default:
8827 break;
8832 else if (code == SUBREG)
8834 enum machine_mode inner_mode = GET_MODE (SUBREG_REG (x));
8835 rtx new_rtx, r = known_cond (SUBREG_REG (x), cond, reg, val);
8837 if (SUBREG_REG (x) != r)
8839 /* We must simplify subreg here, before we lose track of the
8840 original inner_mode. */
8841 new_rtx = simplify_subreg (GET_MODE (x), r,
8842 inner_mode, SUBREG_BYTE (x));
8843 if (new_rtx)
8844 return new_rtx;
8845 else
8846 SUBST (SUBREG_REG (x), r);
8849 return x;
8851 /* We don't have to handle SIGN_EXTEND here, because even in the
8852 case of replacing something with a modeless CONST_INT, a
8853 CONST_INT is already (supposed to be) a valid sign extension for
8854 its narrower mode, which implies it's already properly
8855 sign-extended for the wider mode. Now, for ZERO_EXTEND, the
8856 story is different. */
8857 else if (code == ZERO_EXTEND)
8859 enum machine_mode inner_mode = GET_MODE (XEXP (x, 0));
8860 rtx new_rtx, r = known_cond (XEXP (x, 0), cond, reg, val);
8862 if (XEXP (x, 0) != r)
8864 /* We must simplify the zero_extend here, before we lose
8865 track of the original inner_mode. */
8866 new_rtx = simplify_unary_operation (ZERO_EXTEND, GET_MODE (x),
8867 r, inner_mode);
8868 if (new_rtx)
8869 return new_rtx;
8870 else
8871 SUBST (XEXP (x, 0), r);
8874 return x;
8877 fmt = GET_RTX_FORMAT (code);
8878 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
8880 if (fmt[i] == 'e')
8881 SUBST (XEXP (x, i), known_cond (XEXP (x, i), cond, reg, val));
8882 else if (fmt[i] == 'E')
8883 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
8884 SUBST (XVECEXP (x, i, j), known_cond (XVECEXP (x, i, j),
8885 cond, reg, val));
8888 return x;
8891 /* See if X and Y are equal for the purposes of seeing if we can rewrite an
8892 assignment as a field assignment. */
8894 static int
8895 rtx_equal_for_field_assignment_p (rtx x, rtx y)
8897 if (x == y || rtx_equal_p (x, y))
8898 return 1;
8900 if (x == 0 || y == 0 || GET_MODE (x) != GET_MODE (y))
8901 return 0;
8903 /* Check for a paradoxical SUBREG of a MEM compared with the MEM.
8904 Note that all SUBREGs of MEM are paradoxical; otherwise they
8905 would have been rewritten. */
8906 if (MEM_P (x) && GET_CODE (y) == SUBREG
8907 && MEM_P (SUBREG_REG (y))
8908 && rtx_equal_p (SUBREG_REG (y),
8909 gen_lowpart (GET_MODE (SUBREG_REG (y)), x)))
8910 return 1;
8912 if (MEM_P (y) && GET_CODE (x) == SUBREG
8913 && MEM_P (SUBREG_REG (x))
8914 && rtx_equal_p (SUBREG_REG (x),
8915 gen_lowpart (GET_MODE (SUBREG_REG (x)), y)))
8916 return 1;
8918 /* We used to see if get_last_value of X and Y were the same but that's
8919 not correct. In one direction, we'll cause the assignment to have
8920 the wrong destination and in the case, we'll import a register into this
8921 insn that might have already have been dead. So fail if none of the
8922 above cases are true. */
8923 return 0;
8926 /* See if X, a SET operation, can be rewritten as a bit-field assignment.
8927 Return that assignment if so.
8929 We only handle the most common cases. */
8931 static rtx
8932 make_field_assignment (rtx x)
8934 rtx dest = SET_DEST (x);
8935 rtx src = SET_SRC (x);
8936 rtx assign;
8937 rtx rhs, lhs;
8938 HOST_WIDE_INT c1;
8939 HOST_WIDE_INT pos;
8940 unsigned HOST_WIDE_INT len;
8941 rtx other;
8942 enum machine_mode mode;
8944 /* If SRC was (and (not (ashift (const_int 1) POS)) DEST), this is
8945 a clear of a one-bit field. We will have changed it to
8946 (and (rotate (const_int -2) POS) DEST), so check for that. Also check
8947 for a SUBREG. */
8949 if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == ROTATE
8950 && CONST_INT_P (XEXP (XEXP (src, 0), 0))
8951 && INTVAL (XEXP (XEXP (src, 0), 0)) == -2
8952 && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
8954 assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
8955 1, 1, 1, 0);
8956 if (assign != 0)
8957 return gen_rtx_SET (VOIDmode, assign, const0_rtx);
8958 return x;
8961 if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == SUBREG
8962 && subreg_lowpart_p (XEXP (src, 0))
8963 && (GET_MODE_SIZE (GET_MODE (XEXP (src, 0)))
8964 < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (src, 0)))))
8965 && GET_CODE (SUBREG_REG (XEXP (src, 0))) == ROTATE
8966 && CONST_INT_P (XEXP (SUBREG_REG (XEXP (src, 0)), 0))
8967 && INTVAL (XEXP (SUBREG_REG (XEXP (src, 0)), 0)) == -2
8968 && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
8970 assign = make_extraction (VOIDmode, dest, 0,
8971 XEXP (SUBREG_REG (XEXP (src, 0)), 1),
8972 1, 1, 1, 0);
8973 if (assign != 0)
8974 return gen_rtx_SET (VOIDmode, assign, const0_rtx);
8975 return x;
8978 /* If SRC is (ior (ashift (const_int 1) POS) DEST), this is a set of a
8979 one-bit field. */
8980 if (GET_CODE (src) == IOR && GET_CODE (XEXP (src, 0)) == ASHIFT
8981 && XEXP (XEXP (src, 0), 0) == const1_rtx
8982 && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
8984 assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
8985 1, 1, 1, 0);
8986 if (assign != 0)
8987 return gen_rtx_SET (VOIDmode, assign, const1_rtx);
8988 return x;
8991 /* If DEST is already a field assignment, i.e. ZERO_EXTRACT, and the
8992 SRC is an AND with all bits of that field set, then we can discard
8993 the AND. */
8994 if (GET_CODE (dest) == ZERO_EXTRACT
8995 && CONST_INT_P (XEXP (dest, 1))
8996 && GET_CODE (src) == AND
8997 && CONST_INT_P (XEXP (src, 1)))
8999 HOST_WIDE_INT width = INTVAL (XEXP (dest, 1));
9000 unsigned HOST_WIDE_INT and_mask = INTVAL (XEXP (src, 1));
9001 unsigned HOST_WIDE_INT ze_mask;
9003 if (width >= HOST_BITS_PER_WIDE_INT)
9004 ze_mask = -1;
9005 else
9006 ze_mask = ((unsigned HOST_WIDE_INT)1 << width) - 1;
9008 /* Complete overlap. We can remove the source AND. */
9009 if ((and_mask & ze_mask) == ze_mask)
9010 return gen_rtx_SET (VOIDmode, dest, XEXP (src, 0));
9012 /* Partial overlap. We can reduce the source AND. */
9013 if ((and_mask & ze_mask) != and_mask)
9015 mode = GET_MODE (src);
9016 src = gen_rtx_AND (mode, XEXP (src, 0),
9017 gen_int_mode (and_mask & ze_mask, mode));
9018 return gen_rtx_SET (VOIDmode, dest, src);
9022 /* The other case we handle is assignments into a constant-position
9023 field. They look like (ior/xor (and DEST C1) OTHER). If C1 represents
9024 a mask that has all one bits except for a group of zero bits and
9025 OTHER is known to have zeros where C1 has ones, this is such an
9026 assignment. Compute the position and length from C1. Shift OTHER
9027 to the appropriate position, force it to the required mode, and
9028 make the extraction. Check for the AND in both operands. */
9030 if (GET_CODE (src) != IOR && GET_CODE (src) != XOR)
9031 return x;
9033 rhs = expand_compound_operation (XEXP (src, 0));
9034 lhs = expand_compound_operation (XEXP (src, 1));
9036 if (GET_CODE (rhs) == AND
9037 && CONST_INT_P (XEXP (rhs, 1))
9038 && rtx_equal_for_field_assignment_p (XEXP (rhs, 0), dest))
9039 c1 = INTVAL (XEXP (rhs, 1)), other = lhs;
9040 else if (GET_CODE (lhs) == AND
9041 && CONST_INT_P (XEXP (lhs, 1))
9042 && rtx_equal_for_field_assignment_p (XEXP (lhs, 0), dest))
9043 c1 = INTVAL (XEXP (lhs, 1)), other = rhs;
9044 else
9045 return x;
9047 pos = get_pos_from_mask ((~c1) & GET_MODE_MASK (GET_MODE (dest)), &len);
9048 if (pos < 0 || pos + len > GET_MODE_PRECISION (GET_MODE (dest))
9049 || GET_MODE_PRECISION (GET_MODE (dest)) > HOST_BITS_PER_WIDE_INT
9050 || (c1 & nonzero_bits (other, GET_MODE (dest))) != 0)
9051 return x;
9053 assign = make_extraction (VOIDmode, dest, pos, NULL_RTX, len, 1, 1, 0);
9054 if (assign == 0)
9055 return x;
9057 /* The mode to use for the source is the mode of the assignment, or of
9058 what is inside a possible STRICT_LOW_PART. */
9059 mode = (GET_CODE (assign) == STRICT_LOW_PART
9060 ? GET_MODE (XEXP (assign, 0)) : GET_MODE (assign));
9062 /* Shift OTHER right POS places and make it the source, restricting it
9063 to the proper length and mode. */
9065 src = canon_reg_for_combine (simplify_shift_const (NULL_RTX, LSHIFTRT,
9066 GET_MODE (src),
9067 other, pos),
9068 dest);
9069 src = force_to_mode (src, mode,
9070 GET_MODE_PRECISION (mode) >= HOST_BITS_PER_WIDE_INT
9071 ? ~(unsigned HOST_WIDE_INT) 0
9072 : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
9075 /* If SRC is masked by an AND that does not make a difference in
9076 the value being stored, strip it. */
9077 if (GET_CODE (assign) == ZERO_EXTRACT
9078 && CONST_INT_P (XEXP (assign, 1))
9079 && INTVAL (XEXP (assign, 1)) < HOST_BITS_PER_WIDE_INT
9080 && GET_CODE (src) == AND
9081 && CONST_INT_P (XEXP (src, 1))
9082 && UINTVAL (XEXP (src, 1))
9083 == ((unsigned HOST_WIDE_INT) 1 << INTVAL (XEXP (assign, 1))) - 1)
9084 src = XEXP (src, 0);
9086 return gen_rtx_SET (VOIDmode, assign, src);
9089 /* See if X is of the form (+ (* a c) (* b c)) and convert to (* (+ a b) c)
9090 if so. */
9092 static rtx
9093 apply_distributive_law (rtx x)
9095 enum rtx_code code = GET_CODE (x);
9096 enum rtx_code inner_code;
9097 rtx lhs, rhs, other;
9098 rtx tem;
9100 /* Distributivity is not true for floating point as it can change the
9101 value. So we don't do it unless -funsafe-math-optimizations. */
9102 if (FLOAT_MODE_P (GET_MODE (x))
9103 && ! flag_unsafe_math_optimizations)
9104 return x;
9106 /* The outer operation can only be one of the following: */
9107 if (code != IOR && code != AND && code != XOR
9108 && code != PLUS && code != MINUS)
9109 return x;
9111 lhs = XEXP (x, 0);
9112 rhs = XEXP (x, 1);
9114 /* If either operand is a primitive we can't do anything, so get out
9115 fast. */
9116 if (OBJECT_P (lhs) || OBJECT_P (rhs))
9117 return x;
9119 lhs = expand_compound_operation (lhs);
9120 rhs = expand_compound_operation (rhs);
9121 inner_code = GET_CODE (lhs);
9122 if (inner_code != GET_CODE (rhs))
9123 return x;
9125 /* See if the inner and outer operations distribute. */
9126 switch (inner_code)
9128 case LSHIFTRT:
9129 case ASHIFTRT:
9130 case AND:
9131 case IOR:
9132 /* These all distribute except over PLUS. */
9133 if (code == PLUS || code == MINUS)
9134 return x;
9135 break;
9137 case MULT:
9138 if (code != PLUS && code != MINUS)
9139 return x;
9140 break;
9142 case ASHIFT:
9143 /* This is also a multiply, so it distributes over everything. */
9144 break;
9146 /* This used to handle SUBREG, but this turned out to be counter-
9147 productive, since (subreg (op ...)) usually is not handled by
9148 insn patterns, and this "optimization" therefore transformed
9149 recognizable patterns into unrecognizable ones. Therefore the
9150 SUBREG case was removed from here.
9152 It is possible that distributing SUBREG over arithmetic operations
9153 leads to an intermediate result than can then be optimized further,
9154 e.g. by moving the outer SUBREG to the other side of a SET as done
9155 in simplify_set. This seems to have been the original intent of
9156 handling SUBREGs here.
9158 However, with current GCC this does not appear to actually happen,
9159 at least on major platforms. If some case is found where removing
9160 the SUBREG case here prevents follow-on optimizations, distributing
9161 SUBREGs ought to be re-added at that place, e.g. in simplify_set. */
9163 default:
9164 return x;
9167 /* Set LHS and RHS to the inner operands (A and B in the example
9168 above) and set OTHER to the common operand (C in the example).
9169 There is only one way to do this unless the inner operation is
9170 commutative. */
9171 if (COMMUTATIVE_ARITH_P (lhs)
9172 && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 0)))
9173 other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 1);
9174 else if (COMMUTATIVE_ARITH_P (lhs)
9175 && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 1)))
9176 other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 0);
9177 else if (COMMUTATIVE_ARITH_P (lhs)
9178 && rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 0)))
9179 other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 1);
9180 else if (rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 1)))
9181 other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 0);
9182 else
9183 return x;
9185 /* Form the new inner operation, seeing if it simplifies first. */
9186 tem = simplify_gen_binary (code, GET_MODE (x), lhs, rhs);
9188 /* There is one exception to the general way of distributing:
9189 (a | c) ^ (b | c) -> (a ^ b) & ~c */
9190 if (code == XOR && inner_code == IOR)
9192 inner_code = AND;
9193 other = simplify_gen_unary (NOT, GET_MODE (x), other, GET_MODE (x));
9196 /* We may be able to continuing distributing the result, so call
9197 ourselves recursively on the inner operation before forming the
9198 outer operation, which we return. */
9199 return simplify_gen_binary (inner_code, GET_MODE (x),
9200 apply_distributive_law (tem), other);
9203 /* See if X is of the form (* (+ A B) C), and if so convert to
9204 (+ (* A C) (* B C)) and try to simplify.
9206 Most of the time, this results in no change. However, if some of
9207 the operands are the same or inverses of each other, simplifications
9208 will result.
9210 For example, (and (ior A B) (not B)) can occur as the result of
9211 expanding a bit field assignment. When we apply the distributive
9212 law to this, we get (ior (and (A (not B))) (and (B (not B)))),
9213 which then simplifies to (and (A (not B))).
9215 Note that no checks happen on the validity of applying the inverse
9216 distributive law. This is pointless since we can do it in the
9217 few places where this routine is called.
9219 N is the index of the term that is decomposed (the arithmetic operation,
9220 i.e. (+ A B) in the first example above). !N is the index of the term that
9221 is distributed, i.e. of C in the first example above. */
9222 static rtx
9223 distribute_and_simplify_rtx (rtx x, int n)
9225 enum machine_mode mode;
9226 enum rtx_code outer_code, inner_code;
9227 rtx decomposed, distributed, inner_op0, inner_op1, new_op0, new_op1, tmp;
9229 /* Distributivity is not true for floating point as it can change the
9230 value. So we don't do it unless -funsafe-math-optimizations. */
9231 if (FLOAT_MODE_P (GET_MODE (x))
9232 && ! flag_unsafe_math_optimizations)
9233 return NULL_RTX;
9235 decomposed = XEXP (x, n);
9236 if (!ARITHMETIC_P (decomposed))
9237 return NULL_RTX;
9239 mode = GET_MODE (x);
9240 outer_code = GET_CODE (x);
9241 distributed = XEXP (x, !n);
9243 inner_code = GET_CODE (decomposed);
9244 inner_op0 = XEXP (decomposed, 0);
9245 inner_op1 = XEXP (decomposed, 1);
9247 /* Special case (and (xor B C) (not A)), which is equivalent to
9248 (xor (ior A B) (ior A C)) */
9249 if (outer_code == AND && inner_code == XOR && GET_CODE (distributed) == NOT)
9251 distributed = XEXP (distributed, 0);
9252 outer_code = IOR;
9255 if (n == 0)
9257 /* Distribute the second term. */
9258 new_op0 = simplify_gen_binary (outer_code, mode, inner_op0, distributed);
9259 new_op1 = simplify_gen_binary (outer_code, mode, inner_op1, distributed);
9261 else
9263 /* Distribute the first term. */
9264 new_op0 = simplify_gen_binary (outer_code, mode, distributed, inner_op0);
9265 new_op1 = simplify_gen_binary (outer_code, mode, distributed, inner_op1);
9268 tmp = apply_distributive_law (simplify_gen_binary (inner_code, mode,
9269 new_op0, new_op1));
9270 if (GET_CODE (tmp) != outer_code
9271 && (set_src_cost (tmp, optimize_this_for_speed_p)
9272 < set_src_cost (x, optimize_this_for_speed_p)))
9273 return tmp;
9275 return NULL_RTX;
9278 /* Simplify a logical `and' of VAROP with the constant CONSTOP, to be done
9279 in MODE. Return an equivalent form, if different from (and VAROP
9280 (const_int CONSTOP)). Otherwise, return NULL_RTX. */
9282 static rtx
9283 simplify_and_const_int_1 (enum machine_mode mode, rtx varop,
9284 unsigned HOST_WIDE_INT constop)
9286 unsigned HOST_WIDE_INT nonzero;
9287 unsigned HOST_WIDE_INT orig_constop;
9288 rtx orig_varop;
9289 int i;
9291 orig_varop = varop;
9292 orig_constop = constop;
9293 if (GET_CODE (varop) == CLOBBER)
9294 return NULL_RTX;
9296 /* Simplify VAROP knowing that we will be only looking at some of the
9297 bits in it.
9299 Note by passing in CONSTOP, we guarantee that the bits not set in
9300 CONSTOP are not significant and will never be examined. We must
9301 ensure that is the case by explicitly masking out those bits
9302 before returning. */
9303 varop = force_to_mode (varop, mode, constop, 0);
9305 /* If VAROP is a CLOBBER, we will fail so return it. */
9306 if (GET_CODE (varop) == CLOBBER)
9307 return varop;
9309 /* If VAROP is a CONST_INT, then we need to apply the mask in CONSTOP
9310 to VAROP and return the new constant. */
9311 if (CONST_INT_P (varop))
9312 return gen_int_mode (INTVAL (varop) & constop, mode);
9314 /* See what bits may be nonzero in VAROP. Unlike the general case of
9315 a call to nonzero_bits, here we don't care about bits outside
9316 MODE. */
9318 nonzero = nonzero_bits (varop, mode) & GET_MODE_MASK (mode);
9320 /* Turn off all bits in the constant that are known to already be zero.
9321 Thus, if the AND isn't needed at all, we will have CONSTOP == NONZERO_BITS
9322 which is tested below. */
9324 constop &= nonzero;
9326 /* If we don't have any bits left, return zero. */
9327 if (constop == 0)
9328 return const0_rtx;
9330 /* If VAROP is a NEG of something known to be zero or 1 and CONSTOP is
9331 a power of two, we can replace this with an ASHIFT. */
9332 if (GET_CODE (varop) == NEG && nonzero_bits (XEXP (varop, 0), mode) == 1
9333 && (i = exact_log2 (constop)) >= 0)
9334 return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (varop, 0), i);
9336 /* If VAROP is an IOR or XOR, apply the AND to both branches of the IOR
9337 or XOR, then try to apply the distributive law. This may eliminate
9338 operations if either branch can be simplified because of the AND.
9339 It may also make some cases more complex, but those cases probably
9340 won't match a pattern either with or without this. */
9342 if (GET_CODE (varop) == IOR || GET_CODE (varop) == XOR)
9343 return
9344 gen_lowpart
9345 (mode,
9346 apply_distributive_law
9347 (simplify_gen_binary (GET_CODE (varop), GET_MODE (varop),
9348 simplify_and_const_int (NULL_RTX,
9349 GET_MODE (varop),
9350 XEXP (varop, 0),
9351 constop),
9352 simplify_and_const_int (NULL_RTX,
9353 GET_MODE (varop),
9354 XEXP (varop, 1),
9355 constop))));
9357 /* If VAROP is PLUS, and the constant is a mask of low bits, distribute
9358 the AND and see if one of the operands simplifies to zero. If so, we
9359 may eliminate it. */
9361 if (GET_CODE (varop) == PLUS
9362 && exact_log2 (constop + 1) >= 0)
9364 rtx o0, o1;
9366 o0 = simplify_and_const_int (NULL_RTX, mode, XEXP (varop, 0), constop);
9367 o1 = simplify_and_const_int (NULL_RTX, mode, XEXP (varop, 1), constop);
9368 if (o0 == const0_rtx)
9369 return o1;
9370 if (o1 == const0_rtx)
9371 return o0;
9374 /* Make a SUBREG if necessary. If we can't make it, fail. */
9375 varop = gen_lowpart (mode, varop);
9376 if (varop == NULL_RTX || GET_CODE (varop) == CLOBBER)
9377 return NULL_RTX;
9379 /* If we are only masking insignificant bits, return VAROP. */
9380 if (constop == nonzero)
9381 return varop;
9383 if (varop == orig_varop && constop == orig_constop)
9384 return NULL_RTX;
9386 /* Otherwise, return an AND. */
9387 return simplify_gen_binary (AND, mode, varop, gen_int_mode (constop, mode));
9391 /* We have X, a logical `and' of VAROP with the constant CONSTOP, to be done
9392 in MODE.
9394 Return an equivalent form, if different from X. Otherwise, return X. If
9395 X is zero, we are to always construct the equivalent form. */
9397 static rtx
9398 simplify_and_const_int (rtx x, enum machine_mode mode, rtx varop,
9399 unsigned HOST_WIDE_INT constop)
9401 rtx tem = simplify_and_const_int_1 (mode, varop, constop);
9402 if (tem)
9403 return tem;
9405 if (!x)
9406 x = simplify_gen_binary (AND, GET_MODE (varop), varop,
9407 gen_int_mode (constop, mode));
9408 if (GET_MODE (x) != mode)
9409 x = gen_lowpart (mode, x);
9410 return x;
9413 /* Given a REG, X, compute which bits in X can be nonzero.
9414 We don't care about bits outside of those defined in MODE.
9416 For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
9417 a shift, AND, or zero_extract, we can do better. */
9419 static rtx
9420 reg_nonzero_bits_for_combine (const_rtx x, enum machine_mode mode,
9421 const_rtx known_x ATTRIBUTE_UNUSED,
9422 enum machine_mode known_mode ATTRIBUTE_UNUSED,
9423 unsigned HOST_WIDE_INT known_ret ATTRIBUTE_UNUSED,
9424 unsigned HOST_WIDE_INT *nonzero)
9426 rtx tem;
9427 reg_stat_type *rsp;
9429 /* If X is a register whose nonzero bits value is current, use it.
9430 Otherwise, if X is a register whose value we can find, use that
9431 value. Otherwise, use the previously-computed global nonzero bits
9432 for this register. */
9434 rsp = &reg_stat[REGNO (x)];
9435 if (rsp->last_set_value != 0
9436 && (rsp->last_set_mode == mode
9437 || (GET_MODE_CLASS (rsp->last_set_mode) == MODE_INT
9438 && GET_MODE_CLASS (mode) == MODE_INT))
9439 && ((rsp->last_set_label >= label_tick_ebb_start
9440 && rsp->last_set_label < label_tick)
9441 || (rsp->last_set_label == label_tick
9442 && DF_INSN_LUID (rsp->last_set) < subst_low_luid)
9443 || (REGNO (x) >= FIRST_PSEUDO_REGISTER
9444 && REG_N_SETS (REGNO (x)) == 1
9445 && !REGNO_REG_SET_P
9446 (DF_LR_IN (ENTRY_BLOCK_PTR->next_bb), REGNO (x)))))
9448 *nonzero &= rsp->last_set_nonzero_bits;
9449 return NULL;
9452 tem = get_last_value (x);
9454 if (tem)
9456 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
9457 /* If X is narrower than MODE and TEM is a non-negative
9458 constant that would appear negative in the mode of X,
9459 sign-extend it for use in reg_nonzero_bits because some
9460 machines (maybe most) will actually do the sign-extension
9461 and this is the conservative approach.
9463 ??? For 2.5, try to tighten up the MD files in this regard
9464 instead of this kludge. */
9466 if (GET_MODE_PRECISION (GET_MODE (x)) < GET_MODE_PRECISION (mode)
9467 && CONST_INT_P (tem)
9468 && INTVAL (tem) > 0
9469 && val_signbit_known_set_p (GET_MODE (x), INTVAL (tem)))
9470 tem = GEN_INT (INTVAL (tem) | ~GET_MODE_MASK (GET_MODE (x)));
9471 #endif
9472 return tem;
9474 else if (nonzero_sign_valid && rsp->nonzero_bits)
9476 unsigned HOST_WIDE_INT mask = rsp->nonzero_bits;
9478 if (GET_MODE_PRECISION (GET_MODE (x)) < GET_MODE_PRECISION (mode))
9479 /* We don't know anything about the upper bits. */
9480 mask |= GET_MODE_MASK (mode) ^ GET_MODE_MASK (GET_MODE (x));
9481 *nonzero &= mask;
9484 return NULL;
9487 /* Return the number of bits at the high-order end of X that are known to
9488 be equal to the sign bit. X will be used in mode MODE; if MODE is
9489 VOIDmode, X will be used in its own mode. The returned value will always
9490 be between 1 and the number of bits in MODE. */
9492 static rtx
9493 reg_num_sign_bit_copies_for_combine (const_rtx x, enum machine_mode mode,
9494 const_rtx known_x ATTRIBUTE_UNUSED,
9495 enum machine_mode known_mode
9496 ATTRIBUTE_UNUSED,
9497 unsigned int known_ret ATTRIBUTE_UNUSED,
9498 unsigned int *result)
9500 rtx tem;
9501 reg_stat_type *rsp;
9503 rsp = &reg_stat[REGNO (x)];
9504 if (rsp->last_set_value != 0
9505 && rsp->last_set_mode == mode
9506 && ((rsp->last_set_label >= label_tick_ebb_start
9507 && rsp->last_set_label < label_tick)
9508 || (rsp->last_set_label == label_tick
9509 && DF_INSN_LUID (rsp->last_set) < subst_low_luid)
9510 || (REGNO (x) >= FIRST_PSEUDO_REGISTER
9511 && REG_N_SETS (REGNO (x)) == 1
9512 && !REGNO_REG_SET_P
9513 (DF_LR_IN (ENTRY_BLOCK_PTR->next_bb), REGNO (x)))))
9515 *result = rsp->last_set_sign_bit_copies;
9516 return NULL;
9519 tem = get_last_value (x);
9520 if (tem != 0)
9521 return tem;
9523 if (nonzero_sign_valid && rsp->sign_bit_copies != 0
9524 && GET_MODE_PRECISION (GET_MODE (x)) == GET_MODE_PRECISION (mode))
9525 *result = rsp->sign_bit_copies;
9527 return NULL;
9530 /* Return the number of "extended" bits there are in X, when interpreted
9531 as a quantity in MODE whose signedness is indicated by UNSIGNEDP. For
9532 unsigned quantities, this is the number of high-order zero bits.
9533 For signed quantities, this is the number of copies of the sign bit
9534 minus 1. In both case, this function returns the number of "spare"
9535 bits. For example, if two quantities for which this function returns
9536 at least 1 are added, the addition is known not to overflow.
9538 This function will always return 0 unless called during combine, which
9539 implies that it must be called from a define_split. */
9541 unsigned int
9542 extended_count (const_rtx x, enum machine_mode mode, int unsignedp)
9544 if (nonzero_sign_valid == 0)
9545 return 0;
9547 return (unsignedp
9548 ? (HWI_COMPUTABLE_MODE_P (mode)
9549 ? (unsigned int) (GET_MODE_PRECISION (mode) - 1
9550 - floor_log2 (nonzero_bits (x, mode)))
9551 : 0)
9552 : num_sign_bit_copies (x, mode) - 1);
9555 /* This function is called from `simplify_shift_const' to merge two
9556 outer operations. Specifically, we have already found that we need
9557 to perform operation *POP0 with constant *PCONST0 at the outermost
9558 position. We would now like to also perform OP1 with constant CONST1
9559 (with *POP0 being done last).
9561 Return 1 if we can do the operation and update *POP0 and *PCONST0 with
9562 the resulting operation. *PCOMP_P is set to 1 if we would need to
9563 complement the innermost operand, otherwise it is unchanged.
9565 MODE is the mode in which the operation will be done. No bits outside
9566 the width of this mode matter. It is assumed that the width of this mode
9567 is smaller than or equal to HOST_BITS_PER_WIDE_INT.
9569 If *POP0 or OP1 are UNKNOWN, it means no operation is required. Only NEG, PLUS,
9570 IOR, XOR, and AND are supported. We may set *POP0 to SET if the proper
9571 result is simply *PCONST0.
9573 If the resulting operation cannot be expressed as one operation, we
9574 return 0 and do not change *POP0, *PCONST0, and *PCOMP_P. */
9576 static int
9577 merge_outer_ops (enum rtx_code *pop0, HOST_WIDE_INT *pconst0, enum rtx_code op1, HOST_WIDE_INT const1, enum machine_mode mode, int *pcomp_p)
9579 enum rtx_code op0 = *pop0;
9580 HOST_WIDE_INT const0 = *pconst0;
9582 const0 &= GET_MODE_MASK (mode);
9583 const1 &= GET_MODE_MASK (mode);
9585 /* If OP0 is an AND, clear unimportant bits in CONST1. */
9586 if (op0 == AND)
9587 const1 &= const0;
9589 /* If OP0 or OP1 is UNKNOWN, this is easy. Similarly if they are the same or
9590 if OP0 is SET. */
9592 if (op1 == UNKNOWN || op0 == SET)
9593 return 1;
9595 else if (op0 == UNKNOWN)
9596 op0 = op1, const0 = const1;
9598 else if (op0 == op1)
9600 switch (op0)
9602 case AND:
9603 const0 &= const1;
9604 break;
9605 case IOR:
9606 const0 |= const1;
9607 break;
9608 case XOR:
9609 const0 ^= const1;
9610 break;
9611 case PLUS:
9612 const0 += const1;
9613 break;
9614 case NEG:
9615 op0 = UNKNOWN;
9616 break;
9617 default:
9618 break;
9622 /* Otherwise, if either is a PLUS or NEG, we can't do anything. */
9623 else if (op0 == PLUS || op1 == PLUS || op0 == NEG || op1 == NEG)
9624 return 0;
9626 /* If the two constants aren't the same, we can't do anything. The
9627 remaining six cases can all be done. */
9628 else if (const0 != const1)
9629 return 0;
9631 else
9632 switch (op0)
9634 case IOR:
9635 if (op1 == AND)
9636 /* (a & b) | b == b */
9637 op0 = SET;
9638 else /* op1 == XOR */
9639 /* (a ^ b) | b == a | b */
9641 break;
9643 case XOR:
9644 if (op1 == AND)
9645 /* (a & b) ^ b == (~a) & b */
9646 op0 = AND, *pcomp_p = 1;
9647 else /* op1 == IOR */
9648 /* (a | b) ^ b == a & ~b */
9649 op0 = AND, const0 = ~const0;
9650 break;
9652 case AND:
9653 if (op1 == IOR)
9654 /* (a | b) & b == b */
9655 op0 = SET;
9656 else /* op1 == XOR */
9657 /* (a ^ b) & b) == (~a) & b */
9658 *pcomp_p = 1;
9659 break;
9660 default:
9661 break;
9664 /* Check for NO-OP cases. */
9665 const0 &= GET_MODE_MASK (mode);
9666 if (const0 == 0
9667 && (op0 == IOR || op0 == XOR || op0 == PLUS))
9668 op0 = UNKNOWN;
9669 else if (const0 == 0 && op0 == AND)
9670 op0 = SET;
9671 else if ((unsigned HOST_WIDE_INT) const0 == GET_MODE_MASK (mode)
9672 && op0 == AND)
9673 op0 = UNKNOWN;
9675 *pop0 = op0;
9677 /* ??? Slightly redundant with the above mask, but not entirely.
9678 Moving this above means we'd have to sign-extend the mode mask
9679 for the final test. */
9680 if (op0 != UNKNOWN && op0 != NEG)
9681 *pconst0 = trunc_int_for_mode (const0, mode);
9683 return 1;
9686 /* A helper to simplify_shift_const_1 to determine the mode we can perform
9687 the shift in. The original shift operation CODE is performed on OP in
9688 ORIG_MODE. Return the wider mode MODE if we can perform the operation
9689 in that mode. Return ORIG_MODE otherwise. We can also assume that the
9690 result of the shift is subject to operation OUTER_CODE with operand
9691 OUTER_CONST. */
9693 static enum machine_mode
9694 try_widen_shift_mode (enum rtx_code code, rtx op, int count,
9695 enum machine_mode orig_mode, enum machine_mode mode,
9696 enum rtx_code outer_code, HOST_WIDE_INT outer_const)
9698 if (orig_mode == mode)
9699 return mode;
9700 gcc_assert (GET_MODE_PRECISION (mode) > GET_MODE_PRECISION (orig_mode));
9702 /* In general we can't perform in wider mode for right shift and rotate. */
9703 switch (code)
9705 case ASHIFTRT:
9706 /* We can still widen if the bits brought in from the left are identical
9707 to the sign bit of ORIG_MODE. */
9708 if (num_sign_bit_copies (op, mode)
9709 > (unsigned) (GET_MODE_PRECISION (mode)
9710 - GET_MODE_PRECISION (orig_mode)))
9711 return mode;
9712 return orig_mode;
9714 case LSHIFTRT:
9715 /* Similarly here but with zero bits. */
9716 if (HWI_COMPUTABLE_MODE_P (mode)
9717 && (nonzero_bits (op, mode) & ~GET_MODE_MASK (orig_mode)) == 0)
9718 return mode;
9720 /* We can also widen if the bits brought in will be masked off. This
9721 operation is performed in ORIG_MODE. */
9722 if (outer_code == AND)
9724 int care_bits = low_bitmask_len (orig_mode, outer_const);
9726 if (care_bits >= 0
9727 && GET_MODE_PRECISION (orig_mode) - care_bits >= count)
9728 return mode;
9730 /* fall through */
9732 case ROTATE:
9733 return orig_mode;
9735 case ROTATERT:
9736 gcc_unreachable ();
9738 default:
9739 return mode;
9743 /* Simplify a shift of VAROP by ORIG_COUNT bits. CODE says what kind
9744 of shift. The result of the shift is RESULT_MODE. Return NULL_RTX
9745 if we cannot simplify it. Otherwise, return a simplified value.
9747 The shift is normally computed in the widest mode we find in VAROP, as
9748 long as it isn't a different number of words than RESULT_MODE. Exceptions
9749 are ASHIFTRT and ROTATE, which are always done in their original mode. */
9751 static rtx
9752 simplify_shift_const_1 (enum rtx_code code, enum machine_mode result_mode,
9753 rtx varop, int orig_count)
9755 enum rtx_code orig_code = code;
9756 rtx orig_varop = varop;
9757 int count;
9758 enum machine_mode mode = result_mode;
9759 enum machine_mode shift_mode, tmode;
9760 unsigned int mode_words
9761 = (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
9762 /* We form (outer_op (code varop count) (outer_const)). */
9763 enum rtx_code outer_op = UNKNOWN;
9764 HOST_WIDE_INT outer_const = 0;
9765 int complement_p = 0;
9766 rtx new_rtx, x;
9768 /* Make sure and truncate the "natural" shift on the way in. We don't
9769 want to do this inside the loop as it makes it more difficult to
9770 combine shifts. */
9771 if (SHIFT_COUNT_TRUNCATED)
9772 orig_count &= GET_MODE_BITSIZE (mode) - 1;
9774 /* If we were given an invalid count, don't do anything except exactly
9775 what was requested. */
9777 if (orig_count < 0 || orig_count >= (int) GET_MODE_PRECISION (mode))
9778 return NULL_RTX;
9780 count = orig_count;
9782 /* Unless one of the branches of the `if' in this loop does a `continue',
9783 we will `break' the loop after the `if'. */
9785 while (count != 0)
9787 /* If we have an operand of (clobber (const_int 0)), fail. */
9788 if (GET_CODE (varop) == CLOBBER)
9789 return NULL_RTX;
9791 /* Convert ROTATERT to ROTATE. */
9792 if (code == ROTATERT)
9794 unsigned int bitsize = GET_MODE_PRECISION (result_mode);
9795 code = ROTATE;
9796 if (VECTOR_MODE_P (result_mode))
9797 count = bitsize / GET_MODE_NUNITS (result_mode) - count;
9798 else
9799 count = bitsize - count;
9802 shift_mode = try_widen_shift_mode (code, varop, count, result_mode,
9803 mode, outer_op, outer_const);
9805 /* Handle cases where the count is greater than the size of the mode
9806 minus 1. For ASHIFT, use the size minus one as the count (this can
9807 occur when simplifying (lshiftrt (ashiftrt ..))). For rotates,
9808 take the count modulo the size. For other shifts, the result is
9809 zero.
9811 Since these shifts are being produced by the compiler by combining
9812 multiple operations, each of which are defined, we know what the
9813 result is supposed to be. */
9815 if (count > (GET_MODE_PRECISION (shift_mode) - 1))
9817 if (code == ASHIFTRT)
9818 count = GET_MODE_PRECISION (shift_mode) - 1;
9819 else if (code == ROTATE || code == ROTATERT)
9820 count %= GET_MODE_PRECISION (shift_mode);
9821 else
9823 /* We can't simply return zero because there may be an
9824 outer op. */
9825 varop = const0_rtx;
9826 count = 0;
9827 break;
9831 /* If we discovered we had to complement VAROP, leave. Making a NOT
9832 here would cause an infinite loop. */
9833 if (complement_p)
9834 break;
9836 /* An arithmetic right shift of a quantity known to be -1 or 0
9837 is a no-op. */
9838 if (code == ASHIFTRT
9839 && (num_sign_bit_copies (varop, shift_mode)
9840 == GET_MODE_PRECISION (shift_mode)))
9842 count = 0;
9843 break;
9846 /* If we are doing an arithmetic right shift and discarding all but
9847 the sign bit copies, this is equivalent to doing a shift by the
9848 bitsize minus one. Convert it into that shift because it will often
9849 allow other simplifications. */
9851 if (code == ASHIFTRT
9852 && (count + num_sign_bit_copies (varop, shift_mode)
9853 >= GET_MODE_PRECISION (shift_mode)))
9854 count = GET_MODE_PRECISION (shift_mode) - 1;
9856 /* We simplify the tests below and elsewhere by converting
9857 ASHIFTRT to LSHIFTRT if we know the sign bit is clear.
9858 `make_compound_operation' will convert it to an ASHIFTRT for
9859 those machines (such as VAX) that don't have an LSHIFTRT. */
9860 if (code == ASHIFTRT
9861 && val_signbit_known_clear_p (shift_mode,
9862 nonzero_bits (varop, shift_mode)))
9863 code = LSHIFTRT;
9865 if (((code == LSHIFTRT
9866 && HWI_COMPUTABLE_MODE_P (shift_mode)
9867 && !(nonzero_bits (varop, shift_mode) >> count))
9868 || (code == ASHIFT
9869 && HWI_COMPUTABLE_MODE_P (shift_mode)
9870 && !((nonzero_bits (varop, shift_mode) << count)
9871 & GET_MODE_MASK (shift_mode))))
9872 && !side_effects_p (varop))
9873 varop = const0_rtx;
9875 switch (GET_CODE (varop))
9877 case SIGN_EXTEND:
9878 case ZERO_EXTEND:
9879 case SIGN_EXTRACT:
9880 case ZERO_EXTRACT:
9881 new_rtx = expand_compound_operation (varop);
9882 if (new_rtx != varop)
9884 varop = new_rtx;
9885 continue;
9887 break;
9889 case MEM:
9890 /* If we have (xshiftrt (mem ...) C) and C is MODE_WIDTH
9891 minus the width of a smaller mode, we can do this with a
9892 SIGN_EXTEND or ZERO_EXTEND from the narrower memory location. */
9893 if ((code == ASHIFTRT || code == LSHIFTRT)
9894 && ! mode_dependent_address_p (XEXP (varop, 0),
9895 MEM_ADDR_SPACE (varop))
9896 && ! MEM_VOLATILE_P (varop)
9897 && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
9898 MODE_INT, 1)) != BLKmode)
9900 new_rtx = adjust_address_nv (varop, tmode,
9901 BYTES_BIG_ENDIAN ? 0
9902 : count / BITS_PER_UNIT);
9904 varop = gen_rtx_fmt_e (code == ASHIFTRT ? SIGN_EXTEND
9905 : ZERO_EXTEND, mode, new_rtx);
9906 count = 0;
9907 continue;
9909 break;
9911 case SUBREG:
9912 /* If VAROP is a SUBREG, strip it as long as the inner operand has
9913 the same number of words as what we've seen so far. Then store
9914 the widest mode in MODE. */
9915 if (subreg_lowpart_p (varop)
9916 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9917 > GET_MODE_SIZE (GET_MODE (varop)))
9918 && (unsigned int) ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9919 + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
9920 == mode_words
9921 && GET_MODE_CLASS (GET_MODE (varop)) == MODE_INT
9922 && GET_MODE_CLASS (GET_MODE (SUBREG_REG (varop))) == MODE_INT)
9924 varop = SUBREG_REG (varop);
9925 if (GET_MODE_SIZE (GET_MODE (varop)) > GET_MODE_SIZE (mode))
9926 mode = GET_MODE (varop);
9927 continue;
9929 break;
9931 case MULT:
9932 /* Some machines use MULT instead of ASHIFT because MULT
9933 is cheaper. But it is still better on those machines to
9934 merge two shifts into one. */
9935 if (CONST_INT_P (XEXP (varop, 1))
9936 && exact_log2 (UINTVAL (XEXP (varop, 1))) >= 0)
9938 varop
9939 = simplify_gen_binary (ASHIFT, GET_MODE (varop),
9940 XEXP (varop, 0),
9941 GEN_INT (exact_log2 (
9942 UINTVAL (XEXP (varop, 1)))));
9943 continue;
9945 break;
9947 case UDIV:
9948 /* Similar, for when divides are cheaper. */
9949 if (CONST_INT_P (XEXP (varop, 1))
9950 && exact_log2 (UINTVAL (XEXP (varop, 1))) >= 0)
9952 varop
9953 = simplify_gen_binary (LSHIFTRT, GET_MODE (varop),
9954 XEXP (varop, 0),
9955 GEN_INT (exact_log2 (
9956 UINTVAL (XEXP (varop, 1)))));
9957 continue;
9959 break;
9961 case ASHIFTRT:
9962 /* If we are extracting just the sign bit of an arithmetic
9963 right shift, that shift is not needed. However, the sign
9964 bit of a wider mode may be different from what would be
9965 interpreted as the sign bit in a narrower mode, so, if
9966 the result is narrower, don't discard the shift. */
9967 if (code == LSHIFTRT
9968 && count == (GET_MODE_BITSIZE (result_mode) - 1)
9969 && (GET_MODE_BITSIZE (result_mode)
9970 >= GET_MODE_BITSIZE (GET_MODE (varop))))
9972 varop = XEXP (varop, 0);
9973 continue;
9976 /* ... fall through ... */
9978 case LSHIFTRT:
9979 case ASHIFT:
9980 case ROTATE:
9981 /* Here we have two nested shifts. The result is usually the
9982 AND of a new shift with a mask. We compute the result below. */
9983 if (CONST_INT_P (XEXP (varop, 1))
9984 && INTVAL (XEXP (varop, 1)) >= 0
9985 && INTVAL (XEXP (varop, 1)) < GET_MODE_PRECISION (GET_MODE (varop))
9986 && HWI_COMPUTABLE_MODE_P (result_mode)
9987 && HWI_COMPUTABLE_MODE_P (mode)
9988 && !VECTOR_MODE_P (result_mode))
9990 enum rtx_code first_code = GET_CODE (varop);
9991 unsigned int first_count = INTVAL (XEXP (varop, 1));
9992 unsigned HOST_WIDE_INT mask;
9993 rtx mask_rtx;
9995 /* We have one common special case. We can't do any merging if
9996 the inner code is an ASHIFTRT of a smaller mode. However, if
9997 we have (ashift:M1 (subreg:M1 (ashiftrt:M2 FOO C1) 0) C2)
9998 with C2 == GET_MODE_BITSIZE (M1) - GET_MODE_BITSIZE (M2),
9999 we can convert it to
10000 (ashiftrt:M1 (ashift:M1 (and:M1 (subreg:M1 FOO 0) C3) C2) C1).
10001 This simplifies certain SIGN_EXTEND operations. */
10002 if (code == ASHIFT && first_code == ASHIFTRT
10003 && count == (GET_MODE_PRECISION (result_mode)
10004 - GET_MODE_PRECISION (GET_MODE (varop))))
10006 /* C3 has the low-order C1 bits zero. */
10008 mask = GET_MODE_MASK (mode)
10009 & ~(((unsigned HOST_WIDE_INT) 1 << first_count) - 1);
10011 varop = simplify_and_const_int (NULL_RTX, result_mode,
10012 XEXP (varop, 0), mask);
10013 varop = simplify_shift_const (NULL_RTX, ASHIFT, result_mode,
10014 varop, count);
10015 count = first_count;
10016 code = ASHIFTRT;
10017 continue;
10020 /* If this was (ashiftrt (ashift foo C1) C2) and FOO has more
10021 than C1 high-order bits equal to the sign bit, we can convert
10022 this to either an ASHIFT or an ASHIFTRT depending on the
10023 two counts.
10025 We cannot do this if VAROP's mode is not SHIFT_MODE. */
10027 if (code == ASHIFTRT && first_code == ASHIFT
10028 && GET_MODE (varop) == shift_mode
10029 && (num_sign_bit_copies (XEXP (varop, 0), shift_mode)
10030 > first_count))
10032 varop = XEXP (varop, 0);
10033 count -= first_count;
10034 if (count < 0)
10036 count = -count;
10037 code = ASHIFT;
10040 continue;
10043 /* There are some cases we can't do. If CODE is ASHIFTRT,
10044 we can only do this if FIRST_CODE is also ASHIFTRT.
10046 We can't do the case when CODE is ROTATE and FIRST_CODE is
10047 ASHIFTRT.
10049 If the mode of this shift is not the mode of the outer shift,
10050 we can't do this if either shift is a right shift or ROTATE.
10052 Finally, we can't do any of these if the mode is too wide
10053 unless the codes are the same.
10055 Handle the case where the shift codes are the same
10056 first. */
10058 if (code == first_code)
10060 if (GET_MODE (varop) != result_mode
10061 && (code == ASHIFTRT || code == LSHIFTRT
10062 || code == ROTATE))
10063 break;
10065 count += first_count;
10066 varop = XEXP (varop, 0);
10067 continue;
10070 if (code == ASHIFTRT
10071 || (code == ROTATE && first_code == ASHIFTRT)
10072 || GET_MODE_PRECISION (mode) > HOST_BITS_PER_WIDE_INT
10073 || (GET_MODE (varop) != result_mode
10074 && (first_code == ASHIFTRT || first_code == LSHIFTRT
10075 || first_code == ROTATE
10076 || code == ROTATE)))
10077 break;
10079 /* To compute the mask to apply after the shift, shift the
10080 nonzero bits of the inner shift the same way the
10081 outer shift will. */
10083 mask_rtx = GEN_INT (nonzero_bits (varop, GET_MODE (varop)));
10085 mask_rtx
10086 = simplify_const_binary_operation (code, result_mode, mask_rtx,
10087 GEN_INT (count));
10089 /* Give up if we can't compute an outer operation to use. */
10090 if (mask_rtx == 0
10091 || !CONST_INT_P (mask_rtx)
10092 || ! merge_outer_ops (&outer_op, &outer_const, AND,
10093 INTVAL (mask_rtx),
10094 result_mode, &complement_p))
10095 break;
10097 /* If the shifts are in the same direction, we add the
10098 counts. Otherwise, we subtract them. */
10099 if ((code == ASHIFTRT || code == LSHIFTRT)
10100 == (first_code == ASHIFTRT || first_code == LSHIFTRT))
10101 count += first_count;
10102 else
10103 count -= first_count;
10105 /* If COUNT is positive, the new shift is usually CODE,
10106 except for the two exceptions below, in which case it is
10107 FIRST_CODE. If the count is negative, FIRST_CODE should
10108 always be used */
10109 if (count > 0
10110 && ((first_code == ROTATE && code == ASHIFT)
10111 || (first_code == ASHIFTRT && code == LSHIFTRT)))
10112 code = first_code;
10113 else if (count < 0)
10114 code = first_code, count = -count;
10116 varop = XEXP (varop, 0);
10117 continue;
10120 /* If we have (A << B << C) for any shift, we can convert this to
10121 (A << C << B). This wins if A is a constant. Only try this if
10122 B is not a constant. */
10124 else if (GET_CODE (varop) == code
10125 && CONST_INT_P (XEXP (varop, 0))
10126 && !CONST_INT_P (XEXP (varop, 1)))
10128 rtx new_rtx = simplify_const_binary_operation (code, mode,
10129 XEXP (varop, 0),
10130 GEN_INT (count));
10131 varop = gen_rtx_fmt_ee (code, mode, new_rtx, XEXP (varop, 1));
10132 count = 0;
10133 continue;
10135 break;
10137 case NOT:
10138 if (VECTOR_MODE_P (mode))
10139 break;
10141 /* Make this fit the case below. */
10142 varop = gen_rtx_XOR (mode, XEXP (varop, 0), constm1_rtx);
10143 continue;
10145 case IOR:
10146 case AND:
10147 case XOR:
10148 /* If we have (xshiftrt (ior (plus X (const_int -1)) X) C)
10149 with C the size of VAROP - 1 and the shift is logical if
10150 STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
10151 we have an (le X 0) operation. If we have an arithmetic shift
10152 and STORE_FLAG_VALUE is 1 or we have a logical shift with
10153 STORE_FLAG_VALUE of -1, we have a (neg (le X 0)) operation. */
10155 if (GET_CODE (varop) == IOR && GET_CODE (XEXP (varop, 0)) == PLUS
10156 && XEXP (XEXP (varop, 0), 1) == constm1_rtx
10157 && (STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
10158 && (code == LSHIFTRT || code == ASHIFTRT)
10159 && count == (GET_MODE_PRECISION (GET_MODE (varop)) - 1)
10160 && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
10162 count = 0;
10163 varop = gen_rtx_LE (GET_MODE (varop), XEXP (varop, 1),
10164 const0_rtx);
10166 if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
10167 varop = gen_rtx_NEG (GET_MODE (varop), varop);
10169 continue;
10172 /* If we have (shift (logical)), move the logical to the outside
10173 to allow it to possibly combine with another logical and the
10174 shift to combine with another shift. This also canonicalizes to
10175 what a ZERO_EXTRACT looks like. Also, some machines have
10176 (and (shift)) insns. */
10178 if (CONST_INT_P (XEXP (varop, 1))
10179 /* We can't do this if we have (ashiftrt (xor)) and the
10180 constant has its sign bit set in shift_mode. */
10181 && !(code == ASHIFTRT && GET_CODE (varop) == XOR
10182 && 0 > trunc_int_for_mode (INTVAL (XEXP (varop, 1)),
10183 shift_mode))
10184 && (new_rtx = simplify_const_binary_operation (code, result_mode,
10185 XEXP (varop, 1),
10186 GEN_INT (count))) != 0
10187 && CONST_INT_P (new_rtx)
10188 && merge_outer_ops (&outer_op, &outer_const, GET_CODE (varop),
10189 INTVAL (new_rtx), result_mode, &complement_p))
10191 varop = XEXP (varop, 0);
10192 continue;
10195 /* If we can't do that, try to simplify the shift in each arm of the
10196 logical expression, make a new logical expression, and apply
10197 the inverse distributive law. This also can't be done
10198 for some (ashiftrt (xor)). */
10199 if (CONST_INT_P (XEXP (varop, 1))
10200 && !(code == ASHIFTRT && GET_CODE (varop) == XOR
10201 && 0 > trunc_int_for_mode (INTVAL (XEXP (varop, 1)),
10202 shift_mode)))
10204 rtx lhs = simplify_shift_const (NULL_RTX, code, shift_mode,
10205 XEXP (varop, 0), count);
10206 rtx rhs = simplify_shift_const (NULL_RTX, code, shift_mode,
10207 XEXP (varop, 1), count);
10209 varop = simplify_gen_binary (GET_CODE (varop), shift_mode,
10210 lhs, rhs);
10211 varop = apply_distributive_law (varop);
10213 count = 0;
10214 continue;
10216 break;
10218 case EQ:
10219 /* Convert (lshiftrt (eq FOO 0) C) to (xor FOO 1) if STORE_FLAG_VALUE
10220 says that the sign bit can be tested, FOO has mode MODE, C is
10221 GET_MODE_PRECISION (MODE) - 1, and FOO has only its low-order bit
10222 that may be nonzero. */
10223 if (code == LSHIFTRT
10224 && XEXP (varop, 1) == const0_rtx
10225 && GET_MODE (XEXP (varop, 0)) == result_mode
10226 && count == (GET_MODE_PRECISION (result_mode) - 1)
10227 && HWI_COMPUTABLE_MODE_P (result_mode)
10228 && STORE_FLAG_VALUE == -1
10229 && nonzero_bits (XEXP (varop, 0), result_mode) == 1
10230 && merge_outer_ops (&outer_op, &outer_const, XOR, 1, result_mode,
10231 &complement_p))
10233 varop = XEXP (varop, 0);
10234 count = 0;
10235 continue;
10237 break;
10239 case NEG:
10240 /* (lshiftrt (neg A) C) where A is either 0 or 1 and C is one less
10241 than the number of bits in the mode is equivalent to A. */
10242 if (code == LSHIFTRT
10243 && count == (GET_MODE_PRECISION (result_mode) - 1)
10244 && nonzero_bits (XEXP (varop, 0), result_mode) == 1)
10246 varop = XEXP (varop, 0);
10247 count = 0;
10248 continue;
10251 /* NEG commutes with ASHIFT since it is multiplication. Move the
10252 NEG outside to allow shifts to combine. */
10253 if (code == ASHIFT
10254 && merge_outer_ops (&outer_op, &outer_const, NEG, 0, result_mode,
10255 &complement_p))
10257 varop = XEXP (varop, 0);
10258 continue;
10260 break;
10262 case PLUS:
10263 /* (lshiftrt (plus A -1) C) where A is either 0 or 1 and C
10264 is one less than the number of bits in the mode is
10265 equivalent to (xor A 1). */
10266 if (code == LSHIFTRT
10267 && count == (GET_MODE_PRECISION (result_mode) - 1)
10268 && XEXP (varop, 1) == constm1_rtx
10269 && nonzero_bits (XEXP (varop, 0), result_mode) == 1
10270 && merge_outer_ops (&outer_op, &outer_const, XOR, 1, result_mode,
10271 &complement_p))
10273 count = 0;
10274 varop = XEXP (varop, 0);
10275 continue;
10278 /* If we have (xshiftrt (plus FOO BAR) C), and the only bits
10279 that might be nonzero in BAR are those being shifted out and those
10280 bits are known zero in FOO, we can replace the PLUS with FOO.
10281 Similarly in the other operand order. This code occurs when
10282 we are computing the size of a variable-size array. */
10284 if ((code == ASHIFTRT || code == LSHIFTRT)
10285 && count < HOST_BITS_PER_WIDE_INT
10286 && nonzero_bits (XEXP (varop, 1), result_mode) >> count == 0
10287 && (nonzero_bits (XEXP (varop, 1), result_mode)
10288 & nonzero_bits (XEXP (varop, 0), result_mode)) == 0)
10290 varop = XEXP (varop, 0);
10291 continue;
10293 else if ((code == ASHIFTRT || code == LSHIFTRT)
10294 && count < HOST_BITS_PER_WIDE_INT
10295 && HWI_COMPUTABLE_MODE_P (result_mode)
10296 && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
10297 >> count)
10298 && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
10299 & nonzero_bits (XEXP (varop, 1),
10300 result_mode)))
10302 varop = XEXP (varop, 1);
10303 continue;
10306 /* (ashift (plus foo C) N) is (plus (ashift foo N) C'). */
10307 if (code == ASHIFT
10308 && CONST_INT_P (XEXP (varop, 1))
10309 && (new_rtx = simplify_const_binary_operation (ASHIFT, result_mode,
10310 XEXP (varop, 1),
10311 GEN_INT (count))) != 0
10312 && CONST_INT_P (new_rtx)
10313 && merge_outer_ops (&outer_op, &outer_const, PLUS,
10314 INTVAL (new_rtx), result_mode, &complement_p))
10316 varop = XEXP (varop, 0);
10317 continue;
10320 /* Check for 'PLUS signbit', which is the canonical form of 'XOR
10321 signbit', and attempt to change the PLUS to an XOR and move it to
10322 the outer operation as is done above in the AND/IOR/XOR case
10323 leg for shift(logical). See details in logical handling above
10324 for reasoning in doing so. */
10325 if (code == LSHIFTRT
10326 && CONST_INT_P (XEXP (varop, 1))
10327 && mode_signbit_p (result_mode, XEXP (varop, 1))
10328 && (new_rtx = simplify_const_binary_operation (code, result_mode,
10329 XEXP (varop, 1),
10330 GEN_INT (count))) != 0
10331 && CONST_INT_P (new_rtx)
10332 && merge_outer_ops (&outer_op, &outer_const, XOR,
10333 INTVAL (new_rtx), result_mode, &complement_p))
10335 varop = XEXP (varop, 0);
10336 continue;
10339 break;
10341 case MINUS:
10342 /* If we have (xshiftrt (minus (ashiftrt X C)) X) C)
10343 with C the size of VAROP - 1 and the shift is logical if
10344 STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
10345 we have a (gt X 0) operation. If the shift is arithmetic with
10346 STORE_FLAG_VALUE of 1 or logical with STORE_FLAG_VALUE == -1,
10347 we have a (neg (gt X 0)) operation. */
10349 if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
10350 && GET_CODE (XEXP (varop, 0)) == ASHIFTRT
10351 && count == (GET_MODE_PRECISION (GET_MODE (varop)) - 1)
10352 && (code == LSHIFTRT || code == ASHIFTRT)
10353 && CONST_INT_P (XEXP (XEXP (varop, 0), 1))
10354 && INTVAL (XEXP (XEXP (varop, 0), 1)) == count
10355 && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
10357 count = 0;
10358 varop = gen_rtx_GT (GET_MODE (varop), XEXP (varop, 1),
10359 const0_rtx);
10361 if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
10362 varop = gen_rtx_NEG (GET_MODE (varop), varop);
10364 continue;
10366 break;
10368 case TRUNCATE:
10369 /* Change (lshiftrt (truncate (lshiftrt))) to (truncate (lshiftrt))
10370 if the truncate does not affect the value. */
10371 if (code == LSHIFTRT
10372 && GET_CODE (XEXP (varop, 0)) == LSHIFTRT
10373 && CONST_INT_P (XEXP (XEXP (varop, 0), 1))
10374 && (INTVAL (XEXP (XEXP (varop, 0), 1))
10375 >= (GET_MODE_PRECISION (GET_MODE (XEXP (varop, 0)))
10376 - GET_MODE_PRECISION (GET_MODE (varop)))))
10378 rtx varop_inner = XEXP (varop, 0);
10380 varop_inner
10381 = gen_rtx_LSHIFTRT (GET_MODE (varop_inner),
10382 XEXP (varop_inner, 0),
10383 GEN_INT
10384 (count + INTVAL (XEXP (varop_inner, 1))));
10385 varop = gen_rtx_TRUNCATE (GET_MODE (varop), varop_inner);
10386 count = 0;
10387 continue;
10389 break;
10391 default:
10392 break;
10395 break;
10398 shift_mode = try_widen_shift_mode (code, varop, count, result_mode, mode,
10399 outer_op, outer_const);
10401 /* We have now finished analyzing the shift. The result should be
10402 a shift of type CODE with SHIFT_MODE shifting VAROP COUNT places. If
10403 OUTER_OP is non-UNKNOWN, it is an operation that needs to be applied
10404 to the result of the shift. OUTER_CONST is the relevant constant,
10405 but we must turn off all bits turned off in the shift. */
10407 if (outer_op == UNKNOWN
10408 && orig_code == code && orig_count == count
10409 && varop == orig_varop
10410 && shift_mode == GET_MODE (varop))
10411 return NULL_RTX;
10413 /* Make a SUBREG if necessary. If we can't make it, fail. */
10414 varop = gen_lowpart (shift_mode, varop);
10415 if (varop == NULL_RTX || GET_CODE (varop) == CLOBBER)
10416 return NULL_RTX;
10418 /* If we have an outer operation and we just made a shift, it is
10419 possible that we could have simplified the shift were it not
10420 for the outer operation. So try to do the simplification
10421 recursively. */
10423 if (outer_op != UNKNOWN)
10424 x = simplify_shift_const_1 (code, shift_mode, varop, count);
10425 else
10426 x = NULL_RTX;
10428 if (x == NULL_RTX)
10429 x = simplify_gen_binary (code, shift_mode, varop, GEN_INT (count));
10431 /* If we were doing an LSHIFTRT in a wider mode than it was originally,
10432 turn off all the bits that the shift would have turned off. */
10433 if (orig_code == LSHIFTRT && result_mode != shift_mode)
10434 x = simplify_and_const_int (NULL_RTX, shift_mode, x,
10435 GET_MODE_MASK (result_mode) >> orig_count);
10437 /* Do the remainder of the processing in RESULT_MODE. */
10438 x = gen_lowpart_or_truncate (result_mode, x);
10440 /* If COMPLEMENT_P is set, we have to complement X before doing the outer
10441 operation. */
10442 if (complement_p)
10443 x = simplify_gen_unary (NOT, result_mode, x, result_mode);
10445 if (outer_op != UNKNOWN)
10447 if (GET_RTX_CLASS (outer_op) != RTX_UNARY
10448 && GET_MODE_PRECISION (result_mode) < HOST_BITS_PER_WIDE_INT)
10449 outer_const = trunc_int_for_mode (outer_const, result_mode);
10451 if (outer_op == AND)
10452 x = simplify_and_const_int (NULL_RTX, result_mode, x, outer_const);
10453 else if (outer_op == SET)
10455 /* This means that we have determined that the result is
10456 equivalent to a constant. This should be rare. */
10457 if (!side_effects_p (x))
10458 x = GEN_INT (outer_const);
10460 else if (GET_RTX_CLASS (outer_op) == RTX_UNARY)
10461 x = simplify_gen_unary (outer_op, result_mode, x, result_mode);
10462 else
10463 x = simplify_gen_binary (outer_op, result_mode, x,
10464 GEN_INT (outer_const));
10467 return x;
10470 /* Simplify a shift of VAROP by COUNT bits. CODE says what kind of shift.
10471 The result of the shift is RESULT_MODE. If we cannot simplify it,
10472 return X or, if it is NULL, synthesize the expression with
10473 simplify_gen_binary. Otherwise, return a simplified value.
10475 The shift is normally computed in the widest mode we find in VAROP, as
10476 long as it isn't a different number of words than RESULT_MODE. Exceptions
10477 are ASHIFTRT and ROTATE, which are always done in their original mode. */
10479 static rtx
10480 simplify_shift_const (rtx x, enum rtx_code code, enum machine_mode result_mode,
10481 rtx varop, int count)
10483 rtx tem = simplify_shift_const_1 (code, result_mode, varop, count);
10484 if (tem)
10485 return tem;
10487 if (!x)
10488 x = simplify_gen_binary (code, GET_MODE (varop), varop, GEN_INT (count));
10489 if (GET_MODE (x) != result_mode)
10490 x = gen_lowpart (result_mode, x);
10491 return x;
10495 /* Like recog, but we receive the address of a pointer to a new pattern.
10496 We try to match the rtx that the pointer points to.
10497 If that fails, we may try to modify or replace the pattern,
10498 storing the replacement into the same pointer object.
10500 Modifications include deletion or addition of CLOBBERs.
10502 PNOTES is a pointer to a location where any REG_UNUSED notes added for
10503 the CLOBBERs are placed.
10505 The value is the final insn code from the pattern ultimately matched,
10506 or -1. */
10508 static int
10509 recog_for_combine (rtx *pnewpat, rtx insn, rtx *pnotes)
10511 rtx pat = *pnewpat;
10512 rtx pat_without_clobbers;
10513 int insn_code_number;
10514 int num_clobbers_to_add = 0;
10515 int i;
10516 rtx notes = NULL_RTX;
10517 rtx old_notes, old_pat;
10518 int old_icode;
10520 /* If PAT is a PARALLEL, check to see if it contains the CLOBBER
10521 we use to indicate that something didn't match. If we find such a
10522 thing, force rejection. */
10523 if (GET_CODE (pat) == PARALLEL)
10524 for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
10525 if (GET_CODE (XVECEXP (pat, 0, i)) == CLOBBER
10526 && XEXP (XVECEXP (pat, 0, i), 0) == const0_rtx)
10527 return -1;
10529 old_pat = PATTERN (insn);
10530 old_notes = REG_NOTES (insn);
10531 PATTERN (insn) = pat;
10532 REG_NOTES (insn) = NULL_RTX;
10534 insn_code_number = recog (pat, insn, &num_clobbers_to_add);
10535 if (dump_file && (dump_flags & TDF_DETAILS))
10537 if (insn_code_number < 0)
10538 fputs ("Failed to match this instruction:\n", dump_file);
10539 else
10540 fputs ("Successfully matched this instruction:\n", dump_file);
10541 print_rtl_single (dump_file, pat);
10544 /* If it isn't, there is the possibility that we previously had an insn
10545 that clobbered some register as a side effect, but the combined
10546 insn doesn't need to do that. So try once more without the clobbers
10547 unless this represents an ASM insn. */
10549 if (insn_code_number < 0 && ! check_asm_operands (pat)
10550 && GET_CODE (pat) == PARALLEL)
10552 int pos;
10554 for (pos = 0, i = 0; i < XVECLEN (pat, 0); i++)
10555 if (GET_CODE (XVECEXP (pat, 0, i)) != CLOBBER)
10557 if (i != pos)
10558 SUBST (XVECEXP (pat, 0, pos), XVECEXP (pat, 0, i));
10559 pos++;
10562 SUBST_INT (XVECLEN (pat, 0), pos);
10564 if (pos == 1)
10565 pat = XVECEXP (pat, 0, 0);
10567 PATTERN (insn) = pat;
10568 insn_code_number = recog (pat, insn, &num_clobbers_to_add);
10569 if (dump_file && (dump_flags & TDF_DETAILS))
10571 if (insn_code_number < 0)
10572 fputs ("Failed to match this instruction:\n", dump_file);
10573 else
10574 fputs ("Successfully matched this instruction:\n", dump_file);
10575 print_rtl_single (dump_file, pat);
10579 pat_without_clobbers = pat;
10581 PATTERN (insn) = old_pat;
10582 REG_NOTES (insn) = old_notes;
10584 /* Recognize all noop sets, these will be killed by followup pass. */
10585 if (insn_code_number < 0 && GET_CODE (pat) == SET && set_noop_p (pat))
10586 insn_code_number = NOOP_MOVE_INSN_CODE, num_clobbers_to_add = 0;
10588 /* If we had any clobbers to add, make a new pattern than contains
10589 them. Then check to make sure that all of them are dead. */
10590 if (num_clobbers_to_add)
10592 rtx newpat = gen_rtx_PARALLEL (VOIDmode,
10593 rtvec_alloc (GET_CODE (pat) == PARALLEL
10594 ? (XVECLEN (pat, 0)
10595 + num_clobbers_to_add)
10596 : num_clobbers_to_add + 1));
10598 if (GET_CODE (pat) == PARALLEL)
10599 for (i = 0; i < XVECLEN (pat, 0); i++)
10600 XVECEXP (newpat, 0, i) = XVECEXP (pat, 0, i);
10601 else
10602 XVECEXP (newpat, 0, 0) = pat;
10604 add_clobbers (newpat, insn_code_number);
10606 for (i = XVECLEN (newpat, 0) - num_clobbers_to_add;
10607 i < XVECLEN (newpat, 0); i++)
10609 if (REG_P (XEXP (XVECEXP (newpat, 0, i), 0))
10610 && ! reg_dead_at_p (XEXP (XVECEXP (newpat, 0, i), 0), insn))
10611 return -1;
10612 if (GET_CODE (XEXP (XVECEXP (newpat, 0, i), 0)) != SCRATCH)
10614 gcc_assert (REG_P (XEXP (XVECEXP (newpat, 0, i), 0)));
10615 notes = alloc_reg_note (REG_UNUSED,
10616 XEXP (XVECEXP (newpat, 0, i), 0), notes);
10619 pat = newpat;
10622 if (insn_code_number >= 0
10623 && insn_code_number != NOOP_MOVE_INSN_CODE)
10625 old_pat = PATTERN (insn);
10626 old_notes = REG_NOTES (insn);
10627 old_icode = INSN_CODE (insn);
10628 PATTERN (insn) = pat;
10629 REG_NOTES (insn) = notes;
10631 /* Allow targets to reject combined insn. */
10632 if (!targetm.legitimate_combined_insn (insn))
10634 if (dump_file && (dump_flags & TDF_DETAILS))
10635 fputs ("Instruction not appropriate for target.",
10636 dump_file);
10638 /* Callers expect recog_for_combine to strip
10639 clobbers from the pattern on failure. */
10640 pat = pat_without_clobbers;
10641 notes = NULL_RTX;
10643 insn_code_number = -1;
10646 PATTERN (insn) = old_pat;
10647 REG_NOTES (insn) = old_notes;
10648 INSN_CODE (insn) = old_icode;
10651 *pnewpat = pat;
10652 *pnotes = notes;
10654 return insn_code_number;
10657 /* Like gen_lowpart_general but for use by combine. In combine it
10658 is not possible to create any new pseudoregs. However, it is
10659 safe to create invalid memory addresses, because combine will
10660 try to recognize them and all they will do is make the combine
10661 attempt fail.
10663 If for some reason this cannot do its job, an rtx
10664 (clobber (const_int 0)) is returned.
10665 An insn containing that will not be recognized. */
10667 static rtx
10668 gen_lowpart_for_combine (enum machine_mode omode, rtx x)
10670 enum machine_mode imode = GET_MODE (x);
10671 unsigned int osize = GET_MODE_SIZE (omode);
10672 unsigned int isize = GET_MODE_SIZE (imode);
10673 rtx result;
10675 if (omode == imode)
10676 return x;
10678 /* We can only support MODE being wider than a word if X is a
10679 constant integer or has a mode the same size. */
10680 if (GET_MODE_SIZE (omode) > UNITS_PER_WORD
10681 && ! (CONST_SCALAR_INT_P (x) || isize == osize))
10682 goto fail;
10684 /* X might be a paradoxical (subreg (mem)). In that case, gen_lowpart
10685 won't know what to do. So we will strip off the SUBREG here and
10686 process normally. */
10687 if (GET_CODE (x) == SUBREG && MEM_P (SUBREG_REG (x)))
10689 x = SUBREG_REG (x);
10691 /* For use in case we fall down into the address adjustments
10692 further below, we need to adjust the known mode and size of
10693 x; imode and isize, since we just adjusted x. */
10694 imode = GET_MODE (x);
10696 if (imode == omode)
10697 return x;
10699 isize = GET_MODE_SIZE (imode);
10702 result = gen_lowpart_common (omode, x);
10704 if (result)
10705 return result;
10707 if (MEM_P (x))
10709 int offset = 0;
10711 /* Refuse to work on a volatile memory ref or one with a mode-dependent
10712 address. */
10713 if (MEM_VOLATILE_P (x)
10714 || mode_dependent_address_p (XEXP (x, 0), MEM_ADDR_SPACE (x)))
10715 goto fail;
10717 /* If we want to refer to something bigger than the original memref,
10718 generate a paradoxical subreg instead. That will force a reload
10719 of the original memref X. */
10720 if (isize < osize)
10721 return gen_rtx_SUBREG (omode, x, 0);
10723 if (WORDS_BIG_ENDIAN)
10724 offset = MAX (isize, UNITS_PER_WORD) - MAX (osize, UNITS_PER_WORD);
10726 /* Adjust the address so that the address-after-the-data is
10727 unchanged. */
10728 if (BYTES_BIG_ENDIAN)
10729 offset -= MIN (UNITS_PER_WORD, osize) - MIN (UNITS_PER_WORD, isize);
10731 return adjust_address_nv (x, omode, offset);
10734 /* If X is a comparison operator, rewrite it in a new mode. This
10735 probably won't match, but may allow further simplifications. */
10736 else if (COMPARISON_P (x))
10737 return gen_rtx_fmt_ee (GET_CODE (x), omode, XEXP (x, 0), XEXP (x, 1));
10739 /* If we couldn't simplify X any other way, just enclose it in a
10740 SUBREG. Normally, this SUBREG won't match, but some patterns may
10741 include an explicit SUBREG or we may simplify it further in combine. */
10742 else
10744 int offset = 0;
10745 rtx res;
10747 offset = subreg_lowpart_offset (omode, imode);
10748 if (imode == VOIDmode)
10750 imode = int_mode_for_mode (omode);
10751 x = gen_lowpart_common (imode, x);
10752 if (x == NULL)
10753 goto fail;
10755 res = simplify_gen_subreg (omode, x, imode, offset);
10756 if (res)
10757 return res;
10760 fail:
10761 return gen_rtx_CLOBBER (omode, const0_rtx);
10764 /* Try to simplify a comparison between OP0 and a constant OP1,
10765 where CODE is the comparison code that will be tested, into a
10766 (CODE OP0 const0_rtx) form.
10768 The result is a possibly different comparison code to use.
10769 *POP1 may be updated. */
10771 static enum rtx_code
10772 simplify_compare_const (enum rtx_code code, rtx op0, rtx *pop1)
10774 enum machine_mode mode = GET_MODE (op0);
10775 unsigned int mode_width = GET_MODE_PRECISION (mode);
10776 HOST_WIDE_INT const_op = INTVAL (*pop1);
10778 /* Get the constant we are comparing against and turn off all bits
10779 not on in our mode. */
10780 if (mode != VOIDmode)
10781 const_op = trunc_int_for_mode (const_op, mode);
10783 /* If we are comparing against a constant power of two and the value
10784 being compared can only have that single bit nonzero (e.g., it was
10785 `and'ed with that bit), we can replace this with a comparison
10786 with zero. */
10787 if (const_op
10788 && (code == EQ || code == NE || code == GE || code == GEU
10789 || code == LT || code == LTU)
10790 && mode_width <= HOST_BITS_PER_WIDE_INT
10791 && exact_log2 (const_op) >= 0
10792 && nonzero_bits (op0, mode) == (unsigned HOST_WIDE_INT) const_op)
10794 code = (code == EQ || code == GE || code == GEU ? NE : EQ);
10795 const_op = 0;
10798 /* Similarly, if we are comparing a value known to be either -1 or
10799 0 with -1, change it to the opposite comparison against zero. */
10800 if (const_op == -1
10801 && (code == EQ || code == NE || code == GT || code == LE
10802 || code == GEU || code == LTU)
10803 && num_sign_bit_copies (op0, mode) == mode_width)
10805 code = (code == EQ || code == LE || code == GEU ? NE : EQ);
10806 const_op = 0;
10809 /* Do some canonicalizations based on the comparison code. We prefer
10810 comparisons against zero and then prefer equality comparisons.
10811 If we can reduce the size of a constant, we will do that too. */
10812 switch (code)
10814 case LT:
10815 /* < C is equivalent to <= (C - 1) */
10816 if (const_op > 0)
10818 const_op -= 1;
10819 code = LE;
10820 /* ... fall through to LE case below. */
10822 else
10823 break;
10825 case LE:
10826 /* <= C is equivalent to < (C + 1); we do this for C < 0 */
10827 if (const_op < 0)
10829 const_op += 1;
10830 code = LT;
10833 /* If we are doing a <= 0 comparison on a value known to have
10834 a zero sign bit, we can replace this with == 0. */
10835 else if (const_op == 0
10836 && mode_width <= HOST_BITS_PER_WIDE_INT
10837 && (nonzero_bits (op0, mode)
10838 & ((unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
10839 == 0)
10840 code = EQ;
10841 break;
10843 case GE:
10844 /* >= C is equivalent to > (C - 1). */
10845 if (const_op > 0)
10847 const_op -= 1;
10848 code = GT;
10849 /* ... fall through to GT below. */
10851 else
10852 break;
10854 case GT:
10855 /* > C is equivalent to >= (C + 1); we do this for C < 0. */
10856 if (const_op < 0)
10858 const_op += 1;
10859 code = GE;
10862 /* If we are doing a > 0 comparison on a value known to have
10863 a zero sign bit, we can replace this with != 0. */
10864 else if (const_op == 0
10865 && mode_width <= HOST_BITS_PER_WIDE_INT
10866 && (nonzero_bits (op0, mode)
10867 & ((unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
10868 == 0)
10869 code = NE;
10870 break;
10872 case LTU:
10873 /* < C is equivalent to <= (C - 1). */
10874 if (const_op > 0)
10876 const_op -= 1;
10877 code = LEU;
10878 /* ... fall through ... */
10880 /* (unsigned) < 0x80000000 is equivalent to >= 0. */
10881 else if (mode_width <= HOST_BITS_PER_WIDE_INT
10882 && (unsigned HOST_WIDE_INT) const_op
10883 == (unsigned HOST_WIDE_INT) 1 << (mode_width - 1))
10885 const_op = 0;
10886 code = GE;
10887 break;
10889 else
10890 break;
10892 case LEU:
10893 /* unsigned <= 0 is equivalent to == 0 */
10894 if (const_op == 0)
10895 code = EQ;
10896 /* (unsigned) <= 0x7fffffff is equivalent to >= 0. */
10897 else if (mode_width <= HOST_BITS_PER_WIDE_INT
10898 && (unsigned HOST_WIDE_INT) const_op
10899 == ((unsigned HOST_WIDE_INT) 1 << (mode_width - 1)) - 1)
10901 const_op = 0;
10902 code = GE;
10904 break;
10906 case GEU:
10907 /* >= C is equivalent to > (C - 1). */
10908 if (const_op > 1)
10910 const_op -= 1;
10911 code = GTU;
10912 /* ... fall through ... */
10915 /* (unsigned) >= 0x80000000 is equivalent to < 0. */
10916 else if (mode_width <= HOST_BITS_PER_WIDE_INT
10917 && (unsigned HOST_WIDE_INT) const_op
10918 == (unsigned HOST_WIDE_INT) 1 << (mode_width - 1))
10920 const_op = 0;
10921 code = LT;
10922 break;
10924 else
10925 break;
10927 case GTU:
10928 /* unsigned > 0 is equivalent to != 0 */
10929 if (const_op == 0)
10930 code = NE;
10931 /* (unsigned) > 0x7fffffff is equivalent to < 0. */
10932 else if (mode_width <= HOST_BITS_PER_WIDE_INT
10933 && (unsigned HOST_WIDE_INT) const_op
10934 == ((unsigned HOST_WIDE_INT) 1 << (mode_width - 1)) - 1)
10936 const_op = 0;
10937 code = LT;
10939 break;
10941 default:
10942 break;
10945 *pop1 = GEN_INT (const_op);
10946 return code;
10949 /* Simplify a comparison between *POP0 and *POP1 where CODE is the
10950 comparison code that will be tested.
10952 The result is a possibly different comparison code to use. *POP0 and
10953 *POP1 may be updated.
10955 It is possible that we might detect that a comparison is either always
10956 true or always false. However, we do not perform general constant
10957 folding in combine, so this knowledge isn't useful. Such tautologies
10958 should have been detected earlier. Hence we ignore all such cases. */
10960 static enum rtx_code
10961 simplify_comparison (enum rtx_code code, rtx *pop0, rtx *pop1)
10963 rtx op0 = *pop0;
10964 rtx op1 = *pop1;
10965 rtx tem, tem1;
10966 int i;
10967 enum machine_mode mode, tmode;
10969 /* Try a few ways of applying the same transformation to both operands. */
10970 while (1)
10972 #ifndef WORD_REGISTER_OPERATIONS
10973 /* The test below this one won't handle SIGN_EXTENDs on these machines,
10974 so check specially. */
10975 if (code != GTU && code != GEU && code != LTU && code != LEU
10976 && GET_CODE (op0) == ASHIFTRT && GET_CODE (op1) == ASHIFTRT
10977 && GET_CODE (XEXP (op0, 0)) == ASHIFT
10978 && GET_CODE (XEXP (op1, 0)) == ASHIFT
10979 && GET_CODE (XEXP (XEXP (op0, 0), 0)) == SUBREG
10980 && GET_CODE (XEXP (XEXP (op1, 0), 0)) == SUBREG
10981 && (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0)))
10982 == GET_MODE (SUBREG_REG (XEXP (XEXP (op1, 0), 0))))
10983 && CONST_INT_P (XEXP (op0, 1))
10984 && XEXP (op0, 1) == XEXP (op1, 1)
10985 && XEXP (op0, 1) == XEXP (XEXP (op0, 0), 1)
10986 && XEXP (op0, 1) == XEXP (XEXP (op1, 0), 1)
10987 && (INTVAL (XEXP (op0, 1))
10988 == (GET_MODE_PRECISION (GET_MODE (op0))
10989 - (GET_MODE_PRECISION
10990 (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0))))))))
10992 op0 = SUBREG_REG (XEXP (XEXP (op0, 0), 0));
10993 op1 = SUBREG_REG (XEXP (XEXP (op1, 0), 0));
10995 #endif
10997 /* If both operands are the same constant shift, see if we can ignore the
10998 shift. We can if the shift is a rotate or if the bits shifted out of
10999 this shift are known to be zero for both inputs and if the type of
11000 comparison is compatible with the shift. */
11001 if (GET_CODE (op0) == GET_CODE (op1)
11002 && HWI_COMPUTABLE_MODE_P (GET_MODE(op0))
11003 && ((GET_CODE (op0) == ROTATE && (code == NE || code == EQ))
11004 || ((GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFT)
11005 && (code != GT && code != LT && code != GE && code != LE))
11006 || (GET_CODE (op0) == ASHIFTRT
11007 && (code != GTU && code != LTU
11008 && code != GEU && code != LEU)))
11009 && CONST_INT_P (XEXP (op0, 1))
11010 && INTVAL (XEXP (op0, 1)) >= 0
11011 && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
11012 && XEXP (op0, 1) == XEXP (op1, 1))
11014 enum machine_mode mode = GET_MODE (op0);
11015 unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
11016 int shift_count = INTVAL (XEXP (op0, 1));
11018 if (GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFTRT)
11019 mask &= (mask >> shift_count) << shift_count;
11020 else if (GET_CODE (op0) == ASHIFT)
11021 mask = (mask & (mask << shift_count)) >> shift_count;
11023 if ((nonzero_bits (XEXP (op0, 0), mode) & ~mask) == 0
11024 && (nonzero_bits (XEXP (op1, 0), mode) & ~mask) == 0)
11025 op0 = XEXP (op0, 0), op1 = XEXP (op1, 0);
11026 else
11027 break;
11030 /* If both operands are AND's of a paradoxical SUBREG by constant, the
11031 SUBREGs are of the same mode, and, in both cases, the AND would
11032 be redundant if the comparison was done in the narrower mode,
11033 do the comparison in the narrower mode (e.g., we are AND'ing with 1
11034 and the operand's possibly nonzero bits are 0xffffff01; in that case
11035 if we only care about QImode, we don't need the AND). This case
11036 occurs if the output mode of an scc insn is not SImode and
11037 STORE_FLAG_VALUE == 1 (e.g., the 386).
11039 Similarly, check for a case where the AND's are ZERO_EXTEND
11040 operations from some narrower mode even though a SUBREG is not
11041 present. */
11043 else if (GET_CODE (op0) == AND && GET_CODE (op1) == AND
11044 && CONST_INT_P (XEXP (op0, 1))
11045 && CONST_INT_P (XEXP (op1, 1)))
11047 rtx inner_op0 = XEXP (op0, 0);
11048 rtx inner_op1 = XEXP (op1, 0);
11049 HOST_WIDE_INT c0 = INTVAL (XEXP (op0, 1));
11050 HOST_WIDE_INT c1 = INTVAL (XEXP (op1, 1));
11051 int changed = 0;
11053 if (paradoxical_subreg_p (inner_op0)
11054 && GET_CODE (inner_op1) == SUBREG
11055 && (GET_MODE (SUBREG_REG (inner_op0))
11056 == GET_MODE (SUBREG_REG (inner_op1)))
11057 && (GET_MODE_PRECISION (GET_MODE (SUBREG_REG (inner_op0)))
11058 <= HOST_BITS_PER_WIDE_INT)
11059 && (0 == ((~c0) & nonzero_bits (SUBREG_REG (inner_op0),
11060 GET_MODE (SUBREG_REG (inner_op0)))))
11061 && (0 == ((~c1) & nonzero_bits (SUBREG_REG (inner_op1),
11062 GET_MODE (SUBREG_REG (inner_op1))))))
11064 op0 = SUBREG_REG (inner_op0);
11065 op1 = SUBREG_REG (inner_op1);
11067 /* The resulting comparison is always unsigned since we masked
11068 off the original sign bit. */
11069 code = unsigned_condition (code);
11071 changed = 1;
11074 else if (c0 == c1)
11075 for (tmode = GET_CLASS_NARROWEST_MODE
11076 (GET_MODE_CLASS (GET_MODE (op0)));
11077 tmode != GET_MODE (op0); tmode = GET_MODE_WIDER_MODE (tmode))
11078 if ((unsigned HOST_WIDE_INT) c0 == GET_MODE_MASK (tmode))
11080 op0 = gen_lowpart (tmode, inner_op0);
11081 op1 = gen_lowpart (tmode, inner_op1);
11082 code = unsigned_condition (code);
11083 changed = 1;
11084 break;
11087 if (! changed)
11088 break;
11091 /* If both operands are NOT, we can strip off the outer operation
11092 and adjust the comparison code for swapped operands; similarly for
11093 NEG, except that this must be an equality comparison. */
11094 else if ((GET_CODE (op0) == NOT && GET_CODE (op1) == NOT)
11095 || (GET_CODE (op0) == NEG && GET_CODE (op1) == NEG
11096 && (code == EQ || code == NE)))
11097 op0 = XEXP (op0, 0), op1 = XEXP (op1, 0), code = swap_condition (code);
11099 else
11100 break;
11103 /* If the first operand is a constant, swap the operands and adjust the
11104 comparison code appropriately, but don't do this if the second operand
11105 is already a constant integer. */
11106 if (swap_commutative_operands_p (op0, op1))
11108 tem = op0, op0 = op1, op1 = tem;
11109 code = swap_condition (code);
11112 /* We now enter a loop during which we will try to simplify the comparison.
11113 For the most part, we only are concerned with comparisons with zero,
11114 but some things may really be comparisons with zero but not start
11115 out looking that way. */
11117 while (CONST_INT_P (op1))
11119 enum machine_mode mode = GET_MODE (op0);
11120 unsigned int mode_width = GET_MODE_PRECISION (mode);
11121 unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
11122 int equality_comparison_p;
11123 int sign_bit_comparison_p;
11124 int unsigned_comparison_p;
11125 HOST_WIDE_INT const_op;
11127 /* We only want to handle integral modes. This catches VOIDmode,
11128 CCmode, and the floating-point modes. An exception is that we
11129 can handle VOIDmode if OP0 is a COMPARE or a comparison
11130 operation. */
11132 if (GET_MODE_CLASS (mode) != MODE_INT
11133 && ! (mode == VOIDmode
11134 && (GET_CODE (op0) == COMPARE || COMPARISON_P (op0))))
11135 break;
11137 /* Try to simplify the compare to constant, possibly changing the
11138 comparison op, and/or changing op1 to zero. */
11139 code = simplify_compare_const (code, op0, &op1);
11140 const_op = INTVAL (op1);
11142 /* Compute some predicates to simplify code below. */
11144 equality_comparison_p = (code == EQ || code == NE);
11145 sign_bit_comparison_p = ((code == LT || code == GE) && const_op == 0);
11146 unsigned_comparison_p = (code == LTU || code == LEU || code == GTU
11147 || code == GEU);
11149 /* If this is a sign bit comparison and we can do arithmetic in
11150 MODE, say that we will only be needing the sign bit of OP0. */
11151 if (sign_bit_comparison_p && HWI_COMPUTABLE_MODE_P (mode))
11152 op0 = force_to_mode (op0, mode,
11153 (unsigned HOST_WIDE_INT) 1
11154 << (GET_MODE_PRECISION (mode) - 1),
11157 /* Now try cases based on the opcode of OP0. If none of the cases
11158 does a "continue", we exit this loop immediately after the
11159 switch. */
11161 switch (GET_CODE (op0))
11163 case ZERO_EXTRACT:
11164 /* If we are extracting a single bit from a variable position in
11165 a constant that has only a single bit set and are comparing it
11166 with zero, we can convert this into an equality comparison
11167 between the position and the location of the single bit. */
11168 /* Except we can't if SHIFT_COUNT_TRUNCATED is set, since we might
11169 have already reduced the shift count modulo the word size. */
11170 if (!SHIFT_COUNT_TRUNCATED
11171 && CONST_INT_P (XEXP (op0, 0))
11172 && XEXP (op0, 1) == const1_rtx
11173 && equality_comparison_p && const_op == 0
11174 && (i = exact_log2 (UINTVAL (XEXP (op0, 0)))) >= 0)
11176 if (BITS_BIG_ENDIAN)
11177 i = BITS_PER_WORD - 1 - i;
11179 op0 = XEXP (op0, 2);
11180 op1 = GEN_INT (i);
11181 const_op = i;
11183 /* Result is nonzero iff shift count is equal to I. */
11184 code = reverse_condition (code);
11185 continue;
11188 /* ... fall through ... */
11190 case SIGN_EXTRACT:
11191 tem = expand_compound_operation (op0);
11192 if (tem != op0)
11194 op0 = tem;
11195 continue;
11197 break;
11199 case NOT:
11200 /* If testing for equality, we can take the NOT of the constant. */
11201 if (equality_comparison_p
11202 && (tem = simplify_unary_operation (NOT, mode, op1, mode)) != 0)
11204 op0 = XEXP (op0, 0);
11205 op1 = tem;
11206 continue;
11209 /* If just looking at the sign bit, reverse the sense of the
11210 comparison. */
11211 if (sign_bit_comparison_p)
11213 op0 = XEXP (op0, 0);
11214 code = (code == GE ? LT : GE);
11215 continue;
11217 break;
11219 case NEG:
11220 /* If testing for equality, we can take the NEG of the constant. */
11221 if (equality_comparison_p
11222 && (tem = simplify_unary_operation (NEG, mode, op1, mode)) != 0)
11224 op0 = XEXP (op0, 0);
11225 op1 = tem;
11226 continue;
11229 /* The remaining cases only apply to comparisons with zero. */
11230 if (const_op != 0)
11231 break;
11233 /* When X is ABS or is known positive,
11234 (neg X) is < 0 if and only if X != 0. */
11236 if (sign_bit_comparison_p
11237 && (GET_CODE (XEXP (op0, 0)) == ABS
11238 || (mode_width <= HOST_BITS_PER_WIDE_INT
11239 && (nonzero_bits (XEXP (op0, 0), mode)
11240 & ((unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
11241 == 0)))
11243 op0 = XEXP (op0, 0);
11244 code = (code == LT ? NE : EQ);
11245 continue;
11248 /* If we have NEG of something whose two high-order bits are the
11249 same, we know that "(-a) < 0" is equivalent to "a > 0". */
11250 if (num_sign_bit_copies (op0, mode) >= 2)
11252 op0 = XEXP (op0, 0);
11253 code = swap_condition (code);
11254 continue;
11256 break;
11258 case ROTATE:
11259 /* If we are testing equality and our count is a constant, we
11260 can perform the inverse operation on our RHS. */
11261 if (equality_comparison_p && CONST_INT_P (XEXP (op0, 1))
11262 && (tem = simplify_binary_operation (ROTATERT, mode,
11263 op1, XEXP (op0, 1))) != 0)
11265 op0 = XEXP (op0, 0);
11266 op1 = tem;
11267 continue;
11270 /* If we are doing a < 0 or >= 0 comparison, it means we are testing
11271 a particular bit. Convert it to an AND of a constant of that
11272 bit. This will be converted into a ZERO_EXTRACT. */
11273 if (const_op == 0 && sign_bit_comparison_p
11274 && CONST_INT_P (XEXP (op0, 1))
11275 && mode_width <= HOST_BITS_PER_WIDE_INT)
11277 op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
11278 ((unsigned HOST_WIDE_INT) 1
11279 << (mode_width - 1
11280 - INTVAL (XEXP (op0, 1)))));
11281 code = (code == LT ? NE : EQ);
11282 continue;
11285 /* Fall through. */
11287 case ABS:
11288 /* ABS is ignorable inside an equality comparison with zero. */
11289 if (const_op == 0 && equality_comparison_p)
11291 op0 = XEXP (op0, 0);
11292 continue;
11294 break;
11296 case SIGN_EXTEND:
11297 /* Can simplify (compare (zero/sign_extend FOO) CONST) to
11298 (compare FOO CONST) if CONST fits in FOO's mode and we
11299 are either testing inequality or have an unsigned
11300 comparison with ZERO_EXTEND or a signed comparison with
11301 SIGN_EXTEND. But don't do it if we don't have a compare
11302 insn of the given mode, since we'd have to revert it
11303 later on, and then we wouldn't know whether to sign- or
11304 zero-extend. */
11305 mode = GET_MODE (XEXP (op0, 0));
11306 if (GET_MODE_CLASS (mode) == MODE_INT
11307 && ! unsigned_comparison_p
11308 && HWI_COMPUTABLE_MODE_P (mode)
11309 && trunc_int_for_mode (const_op, mode) == const_op
11310 && have_insn_for (COMPARE, mode))
11312 op0 = XEXP (op0, 0);
11313 continue;
11315 break;
11317 case SUBREG:
11318 /* Check for the case where we are comparing A - C1 with C2, that is
11320 (subreg:MODE (plus (A) (-C1))) op (C2)
11322 with C1 a constant, and try to lift the SUBREG, i.e. to do the
11323 comparison in the wider mode. One of the following two conditions
11324 must be true in order for this to be valid:
11326 1. The mode extension results in the same bit pattern being added
11327 on both sides and the comparison is equality or unsigned. As
11328 C2 has been truncated to fit in MODE, the pattern can only be
11329 all 0s or all 1s.
11331 2. The mode extension results in the sign bit being copied on
11332 each side.
11334 The difficulty here is that we have predicates for A but not for
11335 (A - C1) so we need to check that C1 is within proper bounds so
11336 as to perturbate A as little as possible. */
11338 if (mode_width <= HOST_BITS_PER_WIDE_INT
11339 && subreg_lowpart_p (op0)
11340 && GET_MODE_PRECISION (GET_MODE (SUBREG_REG (op0))) > mode_width
11341 && GET_CODE (SUBREG_REG (op0)) == PLUS
11342 && CONST_INT_P (XEXP (SUBREG_REG (op0), 1)))
11344 enum machine_mode inner_mode = GET_MODE (SUBREG_REG (op0));
11345 rtx a = XEXP (SUBREG_REG (op0), 0);
11346 HOST_WIDE_INT c1 = -INTVAL (XEXP (SUBREG_REG (op0), 1));
11348 if ((c1 > 0
11349 && (unsigned HOST_WIDE_INT) c1
11350 < (unsigned HOST_WIDE_INT) 1 << (mode_width - 1)
11351 && (equality_comparison_p || unsigned_comparison_p)
11352 /* (A - C1) zero-extends if it is positive and sign-extends
11353 if it is negative, C2 both zero- and sign-extends. */
11354 && ((0 == (nonzero_bits (a, inner_mode)
11355 & ~GET_MODE_MASK (mode))
11356 && const_op >= 0)
11357 /* (A - C1) sign-extends if it is positive and 1-extends
11358 if it is negative, C2 both sign- and 1-extends. */
11359 || (num_sign_bit_copies (a, inner_mode)
11360 > (unsigned int) (GET_MODE_PRECISION (inner_mode)
11361 - mode_width)
11362 && const_op < 0)))
11363 || ((unsigned HOST_WIDE_INT) c1
11364 < (unsigned HOST_WIDE_INT) 1 << (mode_width - 2)
11365 /* (A - C1) always sign-extends, like C2. */
11366 && num_sign_bit_copies (a, inner_mode)
11367 > (unsigned int) (GET_MODE_PRECISION (inner_mode)
11368 - (mode_width - 1))))
11370 op0 = SUBREG_REG (op0);
11371 continue;
11375 /* If the inner mode is narrower and we are extracting the low part,
11376 we can treat the SUBREG as if it were a ZERO_EXTEND. */
11377 if (subreg_lowpart_p (op0)
11378 && GET_MODE_PRECISION (GET_MODE (SUBREG_REG (op0))) < mode_width)
11379 /* Fall through */ ;
11380 else
11381 break;
11383 /* ... fall through ... */
11385 case ZERO_EXTEND:
11386 mode = GET_MODE (XEXP (op0, 0));
11387 if (GET_MODE_CLASS (mode) == MODE_INT
11388 && (unsigned_comparison_p || equality_comparison_p)
11389 && HWI_COMPUTABLE_MODE_P (mode)
11390 && (unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (mode)
11391 && const_op >= 0
11392 && have_insn_for (COMPARE, mode))
11394 op0 = XEXP (op0, 0);
11395 continue;
11397 break;
11399 case PLUS:
11400 /* (eq (plus X A) B) -> (eq X (minus B A)). We can only do
11401 this for equality comparisons due to pathological cases involving
11402 overflows. */
11403 if (equality_comparison_p
11404 && 0 != (tem = simplify_binary_operation (MINUS, mode,
11405 op1, XEXP (op0, 1))))
11407 op0 = XEXP (op0, 0);
11408 op1 = tem;
11409 continue;
11412 /* (plus (abs X) (const_int -1)) is < 0 if and only if X == 0. */
11413 if (const_op == 0 && XEXP (op0, 1) == constm1_rtx
11414 && GET_CODE (XEXP (op0, 0)) == ABS && sign_bit_comparison_p)
11416 op0 = XEXP (XEXP (op0, 0), 0);
11417 code = (code == LT ? EQ : NE);
11418 continue;
11420 break;
11422 case MINUS:
11423 /* We used to optimize signed comparisons against zero, but that
11424 was incorrect. Unsigned comparisons against zero (GTU, LEU)
11425 arrive here as equality comparisons, or (GEU, LTU) are
11426 optimized away. No need to special-case them. */
11428 /* (eq (minus A B) C) -> (eq A (plus B C)) or
11429 (eq B (minus A C)), whichever simplifies. We can only do
11430 this for equality comparisons due to pathological cases involving
11431 overflows. */
11432 if (equality_comparison_p
11433 && 0 != (tem = simplify_binary_operation (PLUS, mode,
11434 XEXP (op0, 1), op1)))
11436 op0 = XEXP (op0, 0);
11437 op1 = tem;
11438 continue;
11441 if (equality_comparison_p
11442 && 0 != (tem = simplify_binary_operation (MINUS, mode,
11443 XEXP (op0, 0), op1)))
11445 op0 = XEXP (op0, 1);
11446 op1 = tem;
11447 continue;
11450 /* The sign bit of (minus (ashiftrt X C) X), where C is the number
11451 of bits in X minus 1, is one iff X > 0. */
11452 if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == ASHIFTRT
11453 && CONST_INT_P (XEXP (XEXP (op0, 0), 1))
11454 && UINTVAL (XEXP (XEXP (op0, 0), 1)) == mode_width - 1
11455 && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
11457 op0 = XEXP (op0, 1);
11458 code = (code == GE ? LE : GT);
11459 continue;
11461 break;
11463 case XOR:
11464 /* (eq (xor A B) C) -> (eq A (xor B C)). This is a simplification
11465 if C is zero or B is a constant. */
11466 if (equality_comparison_p
11467 && 0 != (tem = simplify_binary_operation (XOR, mode,
11468 XEXP (op0, 1), op1)))
11470 op0 = XEXP (op0, 0);
11471 op1 = tem;
11472 continue;
11474 break;
11476 case EQ: case NE:
11477 case UNEQ: case LTGT:
11478 case LT: case LTU: case UNLT: case LE: case LEU: case UNLE:
11479 case GT: case GTU: case UNGT: case GE: case GEU: case UNGE:
11480 case UNORDERED: case ORDERED:
11481 /* We can't do anything if OP0 is a condition code value, rather
11482 than an actual data value. */
11483 if (const_op != 0
11484 || CC0_P (XEXP (op0, 0))
11485 || GET_MODE_CLASS (GET_MODE (XEXP (op0, 0))) == MODE_CC)
11486 break;
11488 /* Get the two operands being compared. */
11489 if (GET_CODE (XEXP (op0, 0)) == COMPARE)
11490 tem = XEXP (XEXP (op0, 0), 0), tem1 = XEXP (XEXP (op0, 0), 1);
11491 else
11492 tem = XEXP (op0, 0), tem1 = XEXP (op0, 1);
11494 /* Check for the cases where we simply want the result of the
11495 earlier test or the opposite of that result. */
11496 if (code == NE || code == EQ
11497 || (val_signbit_known_set_p (GET_MODE (op0), STORE_FLAG_VALUE)
11498 && (code == LT || code == GE)))
11500 enum rtx_code new_code;
11501 if (code == LT || code == NE)
11502 new_code = GET_CODE (op0);
11503 else
11504 new_code = reversed_comparison_code (op0, NULL);
11506 if (new_code != UNKNOWN)
11508 code = new_code;
11509 op0 = tem;
11510 op1 = tem1;
11511 continue;
11514 break;
11516 case IOR:
11517 /* The sign bit of (ior (plus X (const_int -1)) X) is nonzero
11518 iff X <= 0. */
11519 if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == PLUS
11520 && XEXP (XEXP (op0, 0), 1) == constm1_rtx
11521 && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
11523 op0 = XEXP (op0, 1);
11524 code = (code == GE ? GT : LE);
11525 continue;
11527 break;
11529 case AND:
11530 /* Convert (and (xshift 1 X) Y) to (and (lshiftrt Y X) 1). This
11531 will be converted to a ZERO_EXTRACT later. */
11532 if (const_op == 0 && equality_comparison_p
11533 && GET_CODE (XEXP (op0, 0)) == ASHIFT
11534 && XEXP (XEXP (op0, 0), 0) == const1_rtx)
11536 op0 = gen_rtx_LSHIFTRT (mode, XEXP (op0, 1),
11537 XEXP (XEXP (op0, 0), 1));
11538 op0 = simplify_and_const_int (NULL_RTX, mode, op0, 1);
11539 continue;
11542 /* If we are comparing (and (lshiftrt X C1) C2) for equality with
11543 zero and X is a comparison and C1 and C2 describe only bits set
11544 in STORE_FLAG_VALUE, we can compare with X. */
11545 if (const_op == 0 && equality_comparison_p
11546 && mode_width <= HOST_BITS_PER_WIDE_INT
11547 && CONST_INT_P (XEXP (op0, 1))
11548 && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
11549 && CONST_INT_P (XEXP (XEXP (op0, 0), 1))
11550 && INTVAL (XEXP (XEXP (op0, 0), 1)) >= 0
11551 && INTVAL (XEXP (XEXP (op0, 0), 1)) < HOST_BITS_PER_WIDE_INT)
11553 mask = ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
11554 << INTVAL (XEXP (XEXP (op0, 0), 1)));
11555 if ((~STORE_FLAG_VALUE & mask) == 0
11556 && (COMPARISON_P (XEXP (XEXP (op0, 0), 0))
11557 || ((tem = get_last_value (XEXP (XEXP (op0, 0), 0))) != 0
11558 && COMPARISON_P (tem))))
11560 op0 = XEXP (XEXP (op0, 0), 0);
11561 continue;
11565 /* If we are doing an equality comparison of an AND of a bit equal
11566 to the sign bit, replace this with a LT or GE comparison of
11567 the underlying value. */
11568 if (equality_comparison_p
11569 && const_op == 0
11570 && CONST_INT_P (XEXP (op0, 1))
11571 && mode_width <= HOST_BITS_PER_WIDE_INT
11572 && ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
11573 == (unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
11575 op0 = XEXP (op0, 0);
11576 code = (code == EQ ? GE : LT);
11577 continue;
11580 /* If this AND operation is really a ZERO_EXTEND from a narrower
11581 mode, the constant fits within that mode, and this is either an
11582 equality or unsigned comparison, try to do this comparison in
11583 the narrower mode.
11585 Note that in:
11587 (ne:DI (and:DI (reg:DI 4) (const_int 0xffffffff)) (const_int 0))
11588 -> (ne:DI (reg:SI 4) (const_int 0))
11590 unless TRULY_NOOP_TRUNCATION allows it or the register is
11591 known to hold a value of the required mode the
11592 transformation is invalid. */
11593 if ((equality_comparison_p || unsigned_comparison_p)
11594 && CONST_INT_P (XEXP (op0, 1))
11595 && (i = exact_log2 ((UINTVAL (XEXP (op0, 1))
11596 & GET_MODE_MASK (mode))
11597 + 1)) >= 0
11598 && const_op >> i == 0
11599 && (tmode = mode_for_size (i, MODE_INT, 1)) != BLKmode
11600 && (TRULY_NOOP_TRUNCATION_MODES_P (tmode, GET_MODE (op0))
11601 || (REG_P (XEXP (op0, 0))
11602 && reg_truncated_to_mode (tmode, XEXP (op0, 0)))))
11604 op0 = gen_lowpart (tmode, XEXP (op0, 0));
11605 continue;
11608 /* If this is (and:M1 (subreg:M2 X 0) (const_int C1)) where C1
11609 fits in both M1 and M2 and the SUBREG is either paradoxical
11610 or represents the low part, permute the SUBREG and the AND
11611 and try again. */
11612 if (GET_CODE (XEXP (op0, 0)) == SUBREG)
11614 unsigned HOST_WIDE_INT c1;
11615 tmode = GET_MODE (SUBREG_REG (XEXP (op0, 0)));
11616 /* Require an integral mode, to avoid creating something like
11617 (AND:SF ...). */
11618 if (SCALAR_INT_MODE_P (tmode)
11619 /* It is unsafe to commute the AND into the SUBREG if the
11620 SUBREG is paradoxical and WORD_REGISTER_OPERATIONS is
11621 not defined. As originally written the upper bits
11622 have a defined value due to the AND operation.
11623 However, if we commute the AND inside the SUBREG then
11624 they no longer have defined values and the meaning of
11625 the code has been changed. */
11626 && (0
11627 #ifdef WORD_REGISTER_OPERATIONS
11628 || (mode_width > GET_MODE_PRECISION (tmode)
11629 && mode_width <= BITS_PER_WORD)
11630 #endif
11631 || (mode_width <= GET_MODE_PRECISION (tmode)
11632 && subreg_lowpart_p (XEXP (op0, 0))))
11633 && CONST_INT_P (XEXP (op0, 1))
11634 && mode_width <= HOST_BITS_PER_WIDE_INT
11635 && HWI_COMPUTABLE_MODE_P (tmode)
11636 && ((c1 = INTVAL (XEXP (op0, 1))) & ~mask) == 0
11637 && (c1 & ~GET_MODE_MASK (tmode)) == 0
11638 && c1 != mask
11639 && c1 != GET_MODE_MASK (tmode))
11641 op0 = simplify_gen_binary (AND, tmode,
11642 SUBREG_REG (XEXP (op0, 0)),
11643 gen_int_mode (c1, tmode));
11644 op0 = gen_lowpart (mode, op0);
11645 continue;
11649 /* Convert (ne (and (not X) 1) 0) to (eq (and X 1) 0). */
11650 if (const_op == 0 && equality_comparison_p
11651 && XEXP (op0, 1) == const1_rtx
11652 && GET_CODE (XEXP (op0, 0)) == NOT)
11654 op0 = simplify_and_const_int (NULL_RTX, mode,
11655 XEXP (XEXP (op0, 0), 0), 1);
11656 code = (code == NE ? EQ : NE);
11657 continue;
11660 /* Convert (ne (and (lshiftrt (not X)) 1) 0) to
11661 (eq (and (lshiftrt X) 1) 0).
11662 Also handle the case where (not X) is expressed using xor. */
11663 if (const_op == 0 && equality_comparison_p
11664 && XEXP (op0, 1) == const1_rtx
11665 && GET_CODE (XEXP (op0, 0)) == LSHIFTRT)
11667 rtx shift_op = XEXP (XEXP (op0, 0), 0);
11668 rtx shift_count = XEXP (XEXP (op0, 0), 1);
11670 if (GET_CODE (shift_op) == NOT
11671 || (GET_CODE (shift_op) == XOR
11672 && CONST_INT_P (XEXP (shift_op, 1))
11673 && CONST_INT_P (shift_count)
11674 && HWI_COMPUTABLE_MODE_P (mode)
11675 && (UINTVAL (XEXP (shift_op, 1))
11676 == (unsigned HOST_WIDE_INT) 1
11677 << INTVAL (shift_count))))
11680 = gen_rtx_LSHIFTRT (mode, XEXP (shift_op, 0), shift_count);
11681 op0 = simplify_and_const_int (NULL_RTX, mode, op0, 1);
11682 code = (code == NE ? EQ : NE);
11683 continue;
11686 break;
11688 case ASHIFT:
11689 /* If we have (compare (ashift FOO N) (const_int C)) and
11690 the high order N bits of FOO (N+1 if an inequality comparison)
11691 are known to be zero, we can do this by comparing FOO with C
11692 shifted right N bits so long as the low-order N bits of C are
11693 zero. */
11694 if (CONST_INT_P (XEXP (op0, 1))
11695 && INTVAL (XEXP (op0, 1)) >= 0
11696 && ((INTVAL (XEXP (op0, 1)) + ! equality_comparison_p)
11697 < HOST_BITS_PER_WIDE_INT)
11698 && (((unsigned HOST_WIDE_INT) const_op
11699 & (((unsigned HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1)))
11700 - 1)) == 0)
11701 && mode_width <= HOST_BITS_PER_WIDE_INT
11702 && (nonzero_bits (XEXP (op0, 0), mode)
11703 & ~(mask >> (INTVAL (XEXP (op0, 1))
11704 + ! equality_comparison_p))) == 0)
11706 /* We must perform a logical shift, not an arithmetic one,
11707 as we want the top N bits of C to be zero. */
11708 unsigned HOST_WIDE_INT temp = const_op & GET_MODE_MASK (mode);
11710 temp >>= INTVAL (XEXP (op0, 1));
11711 op1 = gen_int_mode (temp, mode);
11712 op0 = XEXP (op0, 0);
11713 continue;
11716 /* If we are doing a sign bit comparison, it means we are testing
11717 a particular bit. Convert it to the appropriate AND. */
11718 if (sign_bit_comparison_p && CONST_INT_P (XEXP (op0, 1))
11719 && mode_width <= HOST_BITS_PER_WIDE_INT)
11721 op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
11722 ((unsigned HOST_WIDE_INT) 1
11723 << (mode_width - 1
11724 - INTVAL (XEXP (op0, 1)))));
11725 code = (code == LT ? NE : EQ);
11726 continue;
11729 /* If this an equality comparison with zero and we are shifting
11730 the low bit to the sign bit, we can convert this to an AND of the
11731 low-order bit. */
11732 if (const_op == 0 && equality_comparison_p
11733 && CONST_INT_P (XEXP (op0, 1))
11734 && UINTVAL (XEXP (op0, 1)) == mode_width - 1)
11736 op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0), 1);
11737 continue;
11739 break;
11741 case ASHIFTRT:
11742 /* If this is an equality comparison with zero, we can do this
11743 as a logical shift, which might be much simpler. */
11744 if (equality_comparison_p && const_op == 0
11745 && CONST_INT_P (XEXP (op0, 1)))
11747 op0 = simplify_shift_const (NULL_RTX, LSHIFTRT, mode,
11748 XEXP (op0, 0),
11749 INTVAL (XEXP (op0, 1)));
11750 continue;
11753 /* If OP0 is a sign extension and CODE is not an unsigned comparison,
11754 do the comparison in a narrower mode. */
11755 if (! unsigned_comparison_p
11756 && CONST_INT_P (XEXP (op0, 1))
11757 && GET_CODE (XEXP (op0, 0)) == ASHIFT
11758 && XEXP (op0, 1) == XEXP (XEXP (op0, 0), 1)
11759 && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
11760 MODE_INT, 1)) != BLKmode
11761 && (((unsigned HOST_WIDE_INT) const_op
11762 + (GET_MODE_MASK (tmode) >> 1) + 1)
11763 <= GET_MODE_MASK (tmode)))
11765 op0 = gen_lowpart (tmode, XEXP (XEXP (op0, 0), 0));
11766 continue;
11769 /* Likewise if OP0 is a PLUS of a sign extension with a
11770 constant, which is usually represented with the PLUS
11771 between the shifts. */
11772 if (! unsigned_comparison_p
11773 && CONST_INT_P (XEXP (op0, 1))
11774 && GET_CODE (XEXP (op0, 0)) == PLUS
11775 && CONST_INT_P (XEXP (XEXP (op0, 0), 1))
11776 && GET_CODE (XEXP (XEXP (op0, 0), 0)) == ASHIFT
11777 && XEXP (op0, 1) == XEXP (XEXP (XEXP (op0, 0), 0), 1)
11778 && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
11779 MODE_INT, 1)) != BLKmode
11780 && (((unsigned HOST_WIDE_INT) const_op
11781 + (GET_MODE_MASK (tmode) >> 1) + 1)
11782 <= GET_MODE_MASK (tmode)))
11784 rtx inner = XEXP (XEXP (XEXP (op0, 0), 0), 0);
11785 rtx add_const = XEXP (XEXP (op0, 0), 1);
11786 rtx new_const = simplify_gen_binary (ASHIFTRT, GET_MODE (op0),
11787 add_const, XEXP (op0, 1));
11789 op0 = simplify_gen_binary (PLUS, tmode,
11790 gen_lowpart (tmode, inner),
11791 new_const);
11792 continue;
11795 /* ... fall through ... */
11796 case LSHIFTRT:
11797 /* If we have (compare (xshiftrt FOO N) (const_int C)) and
11798 the low order N bits of FOO are known to be zero, we can do this
11799 by comparing FOO with C shifted left N bits so long as no
11800 overflow occurs. Even if the low order N bits of FOO aren't known
11801 to be zero, if the comparison is >= or < we can use the same
11802 optimization and for > or <= by setting all the low
11803 order N bits in the comparison constant. */
11804 if (CONST_INT_P (XEXP (op0, 1))
11805 && INTVAL (XEXP (op0, 1)) > 0
11806 && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
11807 && mode_width <= HOST_BITS_PER_WIDE_INT
11808 && (((unsigned HOST_WIDE_INT) const_op
11809 + (GET_CODE (op0) != LSHIFTRT
11810 ? ((GET_MODE_MASK (mode) >> INTVAL (XEXP (op0, 1)) >> 1)
11811 + 1)
11812 : 0))
11813 <= GET_MODE_MASK (mode) >> INTVAL (XEXP (op0, 1))))
11815 unsigned HOST_WIDE_INT low_bits
11816 = (nonzero_bits (XEXP (op0, 0), mode)
11817 & (((unsigned HOST_WIDE_INT) 1
11818 << INTVAL (XEXP (op0, 1))) - 1));
11819 if (low_bits == 0 || !equality_comparison_p)
11821 /* If the shift was logical, then we must make the condition
11822 unsigned. */
11823 if (GET_CODE (op0) == LSHIFTRT)
11824 code = unsigned_condition (code);
11826 const_op <<= INTVAL (XEXP (op0, 1));
11827 if (low_bits != 0
11828 && (code == GT || code == GTU
11829 || code == LE || code == LEU))
11830 const_op
11831 |= (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1);
11832 op1 = GEN_INT (const_op);
11833 op0 = XEXP (op0, 0);
11834 continue;
11838 /* If we are using this shift to extract just the sign bit, we
11839 can replace this with an LT or GE comparison. */
11840 if (const_op == 0
11841 && (equality_comparison_p || sign_bit_comparison_p)
11842 && CONST_INT_P (XEXP (op0, 1))
11843 && UINTVAL (XEXP (op0, 1)) == mode_width - 1)
11845 op0 = XEXP (op0, 0);
11846 code = (code == NE || code == GT ? LT : GE);
11847 continue;
11849 break;
11851 default:
11852 break;
11855 break;
11858 /* Now make any compound operations involved in this comparison. Then,
11859 check for an outmost SUBREG on OP0 that is not doing anything or is
11860 paradoxical. The latter transformation must only be performed when
11861 it is known that the "extra" bits will be the same in op0 and op1 or
11862 that they don't matter. There are three cases to consider:
11864 1. SUBREG_REG (op0) is a register. In this case the bits are don't
11865 care bits and we can assume they have any convenient value. So
11866 making the transformation is safe.
11868 2. SUBREG_REG (op0) is a memory and LOAD_EXTEND_OP is not defined.
11869 In this case the upper bits of op0 are undefined. We should not make
11870 the simplification in that case as we do not know the contents of
11871 those bits.
11873 3. SUBREG_REG (op0) is a memory and LOAD_EXTEND_OP is defined and not
11874 UNKNOWN. In that case we know those bits are zeros or ones. We must
11875 also be sure that they are the same as the upper bits of op1.
11877 We can never remove a SUBREG for a non-equality comparison because
11878 the sign bit is in a different place in the underlying object. */
11880 op0 = make_compound_operation (op0, op1 == const0_rtx ? COMPARE : SET);
11881 op1 = make_compound_operation (op1, SET);
11883 if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
11884 && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
11885 && GET_MODE_CLASS (GET_MODE (SUBREG_REG (op0))) == MODE_INT
11886 && (code == NE || code == EQ))
11888 if (paradoxical_subreg_p (op0))
11890 /* For paradoxical subregs, allow case 1 as above. Case 3 isn't
11891 implemented. */
11892 if (REG_P (SUBREG_REG (op0)))
11894 op0 = SUBREG_REG (op0);
11895 op1 = gen_lowpart (GET_MODE (op0), op1);
11898 else if ((GET_MODE_PRECISION (GET_MODE (SUBREG_REG (op0)))
11899 <= HOST_BITS_PER_WIDE_INT)
11900 && (nonzero_bits (SUBREG_REG (op0),
11901 GET_MODE (SUBREG_REG (op0)))
11902 & ~GET_MODE_MASK (GET_MODE (op0))) == 0)
11904 tem = gen_lowpart (GET_MODE (SUBREG_REG (op0)), op1);
11906 if ((nonzero_bits (tem, GET_MODE (SUBREG_REG (op0)))
11907 & ~GET_MODE_MASK (GET_MODE (op0))) == 0)
11908 op0 = SUBREG_REG (op0), op1 = tem;
11912 /* We now do the opposite procedure: Some machines don't have compare
11913 insns in all modes. If OP0's mode is an integer mode smaller than a
11914 word and we can't do a compare in that mode, see if there is a larger
11915 mode for which we can do the compare. There are a number of cases in
11916 which we can use the wider mode. */
11918 mode = GET_MODE (op0);
11919 if (mode != VOIDmode && GET_MODE_CLASS (mode) == MODE_INT
11920 && GET_MODE_SIZE (mode) < UNITS_PER_WORD
11921 && ! have_insn_for (COMPARE, mode))
11922 for (tmode = GET_MODE_WIDER_MODE (mode);
11923 (tmode != VOIDmode && HWI_COMPUTABLE_MODE_P (tmode));
11924 tmode = GET_MODE_WIDER_MODE (tmode))
11925 if (have_insn_for (COMPARE, tmode))
11927 int zero_extended;
11929 /* If this is a test for negative, we can make an explicit
11930 test of the sign bit. Test this first so we can use
11931 a paradoxical subreg to extend OP0. */
11933 if (op1 == const0_rtx && (code == LT || code == GE)
11934 && HWI_COMPUTABLE_MODE_P (mode))
11936 op0 = simplify_gen_binary (AND, tmode,
11937 gen_lowpart (tmode, op0),
11938 GEN_INT ((unsigned HOST_WIDE_INT) 1
11939 << (GET_MODE_BITSIZE (mode)
11940 - 1)));
11941 code = (code == LT) ? NE : EQ;
11942 break;
11945 /* If the only nonzero bits in OP0 and OP1 are those in the
11946 narrower mode and this is an equality or unsigned comparison,
11947 we can use the wider mode. Similarly for sign-extended
11948 values, in which case it is true for all comparisons. */
11949 zero_extended = ((code == EQ || code == NE
11950 || code == GEU || code == GTU
11951 || code == LEU || code == LTU)
11952 && (nonzero_bits (op0, tmode)
11953 & ~GET_MODE_MASK (mode)) == 0
11954 && ((CONST_INT_P (op1)
11955 || (nonzero_bits (op1, tmode)
11956 & ~GET_MODE_MASK (mode)) == 0)));
11958 if (zero_extended
11959 || ((num_sign_bit_copies (op0, tmode)
11960 > (unsigned int) (GET_MODE_PRECISION (tmode)
11961 - GET_MODE_PRECISION (mode)))
11962 && (num_sign_bit_copies (op1, tmode)
11963 > (unsigned int) (GET_MODE_PRECISION (tmode)
11964 - GET_MODE_PRECISION (mode)))))
11966 /* If OP0 is an AND and we don't have an AND in MODE either,
11967 make a new AND in the proper mode. */
11968 if (GET_CODE (op0) == AND
11969 && !have_insn_for (AND, mode))
11970 op0 = simplify_gen_binary (AND, tmode,
11971 gen_lowpart (tmode,
11972 XEXP (op0, 0)),
11973 gen_lowpart (tmode,
11974 XEXP (op0, 1)));
11975 else
11977 if (zero_extended)
11979 op0 = simplify_gen_unary (ZERO_EXTEND, tmode, op0, mode);
11980 op1 = simplify_gen_unary (ZERO_EXTEND, tmode, op1, mode);
11982 else
11984 op0 = simplify_gen_unary (SIGN_EXTEND, tmode, op0, mode);
11985 op1 = simplify_gen_unary (SIGN_EXTEND, tmode, op1, mode);
11987 break;
11992 /* If this machine only supports a subset of valid comparisons, see if we
11993 can convert an unsupported one into a supported one. */
11994 target_canonicalize_comparison (&code, &op0, &op1, 0);
11996 *pop0 = op0;
11997 *pop1 = op1;
11999 return code;
12002 /* Utility function for record_value_for_reg. Count number of
12003 rtxs in X. */
12004 static int
12005 count_rtxs (rtx x)
12007 enum rtx_code code = GET_CODE (x);
12008 const char *fmt;
12009 int i, j, ret = 1;
12011 if (GET_RTX_CLASS (code) == RTX_BIN_ARITH
12012 || GET_RTX_CLASS (code) == RTX_COMM_ARITH)
12014 rtx x0 = XEXP (x, 0);
12015 rtx x1 = XEXP (x, 1);
12017 if (x0 == x1)
12018 return 1 + 2 * count_rtxs (x0);
12020 if ((GET_RTX_CLASS (GET_CODE (x1)) == RTX_BIN_ARITH
12021 || GET_RTX_CLASS (GET_CODE (x1)) == RTX_COMM_ARITH)
12022 && (x0 == XEXP (x1, 0) || x0 == XEXP (x1, 1)))
12023 return 2 + 2 * count_rtxs (x0)
12024 + count_rtxs (x == XEXP (x1, 0)
12025 ? XEXP (x1, 1) : XEXP (x1, 0));
12027 if ((GET_RTX_CLASS (GET_CODE (x0)) == RTX_BIN_ARITH
12028 || GET_RTX_CLASS (GET_CODE (x0)) == RTX_COMM_ARITH)
12029 && (x1 == XEXP (x0, 0) || x1 == XEXP (x0, 1)))
12030 return 2 + 2 * count_rtxs (x1)
12031 + count_rtxs (x == XEXP (x0, 0)
12032 ? XEXP (x0, 1) : XEXP (x0, 0));
12035 fmt = GET_RTX_FORMAT (code);
12036 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
12037 if (fmt[i] == 'e')
12038 ret += count_rtxs (XEXP (x, i));
12039 else if (fmt[i] == 'E')
12040 for (j = 0; j < XVECLEN (x, i); j++)
12041 ret += count_rtxs (XVECEXP (x, i, j));
12043 return ret;
12046 /* Utility function for following routine. Called when X is part of a value
12047 being stored into last_set_value. Sets last_set_table_tick
12048 for each register mentioned. Similar to mention_regs in cse.c */
12050 static void
12051 update_table_tick (rtx x)
12053 enum rtx_code code = GET_CODE (x);
12054 const char *fmt = GET_RTX_FORMAT (code);
12055 int i, j;
12057 if (code == REG)
12059 unsigned int regno = REGNO (x);
12060 unsigned int endregno = END_REGNO (x);
12061 unsigned int r;
12063 for (r = regno; r < endregno; r++)
12065 reg_stat_type *rsp = &reg_stat[r];
12066 rsp->last_set_table_tick = label_tick;
12069 return;
12072 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
12073 if (fmt[i] == 'e')
12075 /* Check for identical subexpressions. If x contains
12076 identical subexpression we only have to traverse one of
12077 them. */
12078 if (i == 0 && ARITHMETIC_P (x))
12080 /* Note that at this point x1 has already been
12081 processed. */
12082 rtx x0 = XEXP (x, 0);
12083 rtx x1 = XEXP (x, 1);
12085 /* If x0 and x1 are identical then there is no need to
12086 process x0. */
12087 if (x0 == x1)
12088 break;
12090 /* If x0 is identical to a subexpression of x1 then while
12091 processing x1, x0 has already been processed. Thus we
12092 are done with x. */
12093 if (ARITHMETIC_P (x1)
12094 && (x0 == XEXP (x1, 0) || x0 == XEXP (x1, 1)))
12095 break;
12097 /* If x1 is identical to a subexpression of x0 then we
12098 still have to process the rest of x0. */
12099 if (ARITHMETIC_P (x0)
12100 && (x1 == XEXP (x0, 0) || x1 == XEXP (x0, 1)))
12102 update_table_tick (XEXP (x0, x1 == XEXP (x0, 0) ? 1 : 0));
12103 break;
12107 update_table_tick (XEXP (x, i));
12109 else if (fmt[i] == 'E')
12110 for (j = 0; j < XVECLEN (x, i); j++)
12111 update_table_tick (XVECEXP (x, i, j));
12114 /* Record that REG is set to VALUE in insn INSN. If VALUE is zero, we
12115 are saying that the register is clobbered and we no longer know its
12116 value. If INSN is zero, don't update reg_stat[].last_set; this is
12117 only permitted with VALUE also zero and is used to invalidate the
12118 register. */
12120 static void
12121 record_value_for_reg (rtx reg, rtx insn, rtx value)
12123 unsigned int regno = REGNO (reg);
12124 unsigned int endregno = END_REGNO (reg);
12125 unsigned int i;
12126 reg_stat_type *rsp;
12128 /* If VALUE contains REG and we have a previous value for REG, substitute
12129 the previous value. */
12130 if (value && insn && reg_overlap_mentioned_p (reg, value))
12132 rtx tem;
12134 /* Set things up so get_last_value is allowed to see anything set up to
12135 our insn. */
12136 subst_low_luid = DF_INSN_LUID (insn);
12137 tem = get_last_value (reg);
12139 /* If TEM is simply a binary operation with two CLOBBERs as operands,
12140 it isn't going to be useful and will take a lot of time to process,
12141 so just use the CLOBBER. */
12143 if (tem)
12145 if (ARITHMETIC_P (tem)
12146 && GET_CODE (XEXP (tem, 0)) == CLOBBER
12147 && GET_CODE (XEXP (tem, 1)) == CLOBBER)
12148 tem = XEXP (tem, 0);
12149 else if (count_occurrences (value, reg, 1) >= 2)
12151 /* If there are two or more occurrences of REG in VALUE,
12152 prevent the value from growing too much. */
12153 if (count_rtxs (tem) > MAX_LAST_VALUE_RTL)
12154 tem = gen_rtx_CLOBBER (GET_MODE (tem), const0_rtx);
12157 value = replace_rtx (copy_rtx (value), reg, tem);
12161 /* For each register modified, show we don't know its value, that
12162 we don't know about its bitwise content, that its value has been
12163 updated, and that we don't know the location of the death of the
12164 register. */
12165 for (i = regno; i < endregno; i++)
12167 rsp = &reg_stat[i];
12169 if (insn)
12170 rsp->last_set = insn;
12172 rsp->last_set_value = 0;
12173 rsp->last_set_mode = VOIDmode;
12174 rsp->last_set_nonzero_bits = 0;
12175 rsp->last_set_sign_bit_copies = 0;
12176 rsp->last_death = 0;
12177 rsp->truncated_to_mode = VOIDmode;
12180 /* Mark registers that are being referenced in this value. */
12181 if (value)
12182 update_table_tick (value);
12184 /* Now update the status of each register being set.
12185 If someone is using this register in this block, set this register
12186 to invalid since we will get confused between the two lives in this
12187 basic block. This makes using this register always invalid. In cse, we
12188 scan the table to invalidate all entries using this register, but this
12189 is too much work for us. */
12191 for (i = regno; i < endregno; i++)
12193 rsp = &reg_stat[i];
12194 rsp->last_set_label = label_tick;
12195 if (!insn
12196 || (value && rsp->last_set_table_tick >= label_tick_ebb_start))
12197 rsp->last_set_invalid = 1;
12198 else
12199 rsp->last_set_invalid = 0;
12202 /* The value being assigned might refer to X (like in "x++;"). In that
12203 case, we must replace it with (clobber (const_int 0)) to prevent
12204 infinite loops. */
12205 rsp = &reg_stat[regno];
12206 if (value && !get_last_value_validate (&value, insn, label_tick, 0))
12208 value = copy_rtx (value);
12209 if (!get_last_value_validate (&value, insn, label_tick, 1))
12210 value = 0;
12213 /* For the main register being modified, update the value, the mode, the
12214 nonzero bits, and the number of sign bit copies. */
12216 rsp->last_set_value = value;
12218 if (value)
12220 enum machine_mode mode = GET_MODE (reg);
12221 subst_low_luid = DF_INSN_LUID (insn);
12222 rsp->last_set_mode = mode;
12223 if (GET_MODE_CLASS (mode) == MODE_INT
12224 && HWI_COMPUTABLE_MODE_P (mode))
12225 mode = nonzero_bits_mode;
12226 rsp->last_set_nonzero_bits = nonzero_bits (value, mode);
12227 rsp->last_set_sign_bit_copies
12228 = num_sign_bit_copies (value, GET_MODE (reg));
12232 /* Called via note_stores from record_dead_and_set_regs to handle one
12233 SET or CLOBBER in an insn. DATA is the instruction in which the
12234 set is occurring. */
12236 static void
12237 record_dead_and_set_regs_1 (rtx dest, const_rtx setter, void *data)
12239 rtx record_dead_insn = (rtx) data;
12241 if (GET_CODE (dest) == SUBREG)
12242 dest = SUBREG_REG (dest);
12244 if (!record_dead_insn)
12246 if (REG_P (dest))
12247 record_value_for_reg (dest, NULL_RTX, NULL_RTX);
12248 return;
12251 if (REG_P (dest))
12253 /* If we are setting the whole register, we know its value. Otherwise
12254 show that we don't know the value. We can handle SUBREG in
12255 some cases. */
12256 if (GET_CODE (setter) == SET && dest == SET_DEST (setter))
12257 record_value_for_reg (dest, record_dead_insn, SET_SRC (setter));
12258 else if (GET_CODE (setter) == SET
12259 && GET_CODE (SET_DEST (setter)) == SUBREG
12260 && SUBREG_REG (SET_DEST (setter)) == dest
12261 && GET_MODE_PRECISION (GET_MODE (dest)) <= BITS_PER_WORD
12262 && subreg_lowpart_p (SET_DEST (setter)))
12263 record_value_for_reg (dest, record_dead_insn,
12264 gen_lowpart (GET_MODE (dest),
12265 SET_SRC (setter)));
12266 else
12267 record_value_for_reg (dest, record_dead_insn, NULL_RTX);
12269 else if (MEM_P (dest)
12270 /* Ignore pushes, they clobber nothing. */
12271 && ! push_operand (dest, GET_MODE (dest)))
12272 mem_last_set = DF_INSN_LUID (record_dead_insn);
12275 /* Update the records of when each REG was most recently set or killed
12276 for the things done by INSN. This is the last thing done in processing
12277 INSN in the combiner loop.
12279 We update reg_stat[], in particular fields last_set, last_set_value,
12280 last_set_mode, last_set_nonzero_bits, last_set_sign_bit_copies,
12281 last_death, and also the similar information mem_last_set (which insn
12282 most recently modified memory) and last_call_luid (which insn was the
12283 most recent subroutine call). */
12285 static void
12286 record_dead_and_set_regs (rtx insn)
12288 rtx link;
12289 unsigned int i;
12291 for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
12293 if (REG_NOTE_KIND (link) == REG_DEAD
12294 && REG_P (XEXP (link, 0)))
12296 unsigned int regno = REGNO (XEXP (link, 0));
12297 unsigned int endregno = END_REGNO (XEXP (link, 0));
12299 for (i = regno; i < endregno; i++)
12301 reg_stat_type *rsp;
12303 rsp = &reg_stat[i];
12304 rsp->last_death = insn;
12307 else if (REG_NOTE_KIND (link) == REG_INC)
12308 record_value_for_reg (XEXP (link, 0), insn, NULL_RTX);
12311 if (CALL_P (insn))
12313 hard_reg_set_iterator hrsi;
12314 EXECUTE_IF_SET_IN_HARD_REG_SET (regs_invalidated_by_call, 0, i, hrsi)
12316 reg_stat_type *rsp;
12318 rsp = &reg_stat[i];
12319 rsp->last_set_invalid = 1;
12320 rsp->last_set = insn;
12321 rsp->last_set_value = 0;
12322 rsp->last_set_mode = VOIDmode;
12323 rsp->last_set_nonzero_bits = 0;
12324 rsp->last_set_sign_bit_copies = 0;
12325 rsp->last_death = 0;
12326 rsp->truncated_to_mode = VOIDmode;
12329 last_call_luid = mem_last_set = DF_INSN_LUID (insn);
12331 /* We can't combine into a call pattern. Remember, though, that
12332 the return value register is set at this LUID. We could
12333 still replace a register with the return value from the
12334 wrong subroutine call! */
12335 note_stores (PATTERN (insn), record_dead_and_set_regs_1, NULL_RTX);
12337 else
12338 note_stores (PATTERN (insn), record_dead_and_set_regs_1, insn);
12341 /* If a SUBREG has the promoted bit set, it is in fact a property of the
12342 register present in the SUBREG, so for each such SUBREG go back and
12343 adjust nonzero and sign bit information of the registers that are
12344 known to have some zero/sign bits set.
12346 This is needed because when combine blows the SUBREGs away, the
12347 information on zero/sign bits is lost and further combines can be
12348 missed because of that. */
12350 static void
12351 record_promoted_value (rtx insn, rtx subreg)
12353 struct insn_link *links;
12354 rtx set;
12355 unsigned int regno = REGNO (SUBREG_REG (subreg));
12356 enum machine_mode mode = GET_MODE (subreg);
12358 if (GET_MODE_PRECISION (mode) > HOST_BITS_PER_WIDE_INT)
12359 return;
12361 for (links = LOG_LINKS (insn); links;)
12363 reg_stat_type *rsp;
12365 insn = links->insn;
12366 set = single_set (insn);
12368 if (! set || !REG_P (SET_DEST (set))
12369 || REGNO (SET_DEST (set)) != regno
12370 || GET_MODE (SET_DEST (set)) != GET_MODE (SUBREG_REG (subreg)))
12372 links = links->next;
12373 continue;
12376 rsp = &reg_stat[regno];
12377 if (rsp->last_set == insn)
12379 if (SUBREG_PROMOTED_UNSIGNED_P (subreg) > 0)
12380 rsp->last_set_nonzero_bits &= GET_MODE_MASK (mode);
12383 if (REG_P (SET_SRC (set)))
12385 regno = REGNO (SET_SRC (set));
12386 links = LOG_LINKS (insn);
12388 else
12389 break;
12393 /* Check if X, a register, is known to contain a value already
12394 truncated to MODE. In this case we can use a subreg to refer to
12395 the truncated value even though in the generic case we would need
12396 an explicit truncation. */
12398 static bool
12399 reg_truncated_to_mode (enum machine_mode mode, const_rtx x)
12401 reg_stat_type *rsp = &reg_stat[REGNO (x)];
12402 enum machine_mode truncated = rsp->truncated_to_mode;
12404 if (truncated == 0
12405 || rsp->truncation_label < label_tick_ebb_start)
12406 return false;
12407 if (GET_MODE_SIZE (truncated) <= GET_MODE_SIZE (mode))
12408 return true;
12409 if (TRULY_NOOP_TRUNCATION_MODES_P (mode, truncated))
12410 return true;
12411 return false;
12414 /* Callback for for_each_rtx. If *P is a hard reg or a subreg record the mode
12415 that the register is accessed in. For non-TRULY_NOOP_TRUNCATION targets we
12416 might be able to turn a truncate into a subreg using this information.
12417 Return -1 if traversing *P is complete or 0 otherwise. */
12419 static int
12420 record_truncated_value (rtx *p, void *data ATTRIBUTE_UNUSED)
12422 rtx x = *p;
12423 enum machine_mode truncated_mode;
12424 reg_stat_type *rsp;
12426 if (GET_CODE (x) == SUBREG && REG_P (SUBREG_REG (x)))
12428 enum machine_mode original_mode = GET_MODE (SUBREG_REG (x));
12429 truncated_mode = GET_MODE (x);
12431 if (GET_MODE_SIZE (original_mode) <= GET_MODE_SIZE (truncated_mode))
12432 return -1;
12434 if (TRULY_NOOP_TRUNCATION_MODES_P (truncated_mode, original_mode))
12435 return -1;
12437 x = SUBREG_REG (x);
12439 /* ??? For hard-regs we now record everything. We might be able to
12440 optimize this using last_set_mode. */
12441 else if (REG_P (x) && REGNO (x) < FIRST_PSEUDO_REGISTER)
12442 truncated_mode = GET_MODE (x);
12443 else
12444 return 0;
12446 rsp = &reg_stat[REGNO (x)];
12447 if (rsp->truncated_to_mode == 0
12448 || rsp->truncation_label < label_tick_ebb_start
12449 || (GET_MODE_SIZE (truncated_mode)
12450 < GET_MODE_SIZE (rsp->truncated_to_mode)))
12452 rsp->truncated_to_mode = truncated_mode;
12453 rsp->truncation_label = label_tick;
12456 return -1;
12459 /* Callback for note_uses. Find hardregs and subregs of pseudos and
12460 the modes they are used in. This can help truning TRUNCATEs into
12461 SUBREGs. */
12463 static void
12464 record_truncated_values (rtx *x, void *data ATTRIBUTE_UNUSED)
12466 for_each_rtx (x, record_truncated_value, NULL);
12469 /* Scan X for promoted SUBREGs. For each one found,
12470 note what it implies to the registers used in it. */
12472 static void
12473 check_promoted_subreg (rtx insn, rtx x)
12475 if (GET_CODE (x) == SUBREG
12476 && SUBREG_PROMOTED_VAR_P (x)
12477 && REG_P (SUBREG_REG (x)))
12478 record_promoted_value (insn, x);
12479 else
12481 const char *format = GET_RTX_FORMAT (GET_CODE (x));
12482 int i, j;
12484 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
12485 switch (format[i])
12487 case 'e':
12488 check_promoted_subreg (insn, XEXP (x, i));
12489 break;
12490 case 'V':
12491 case 'E':
12492 if (XVEC (x, i) != 0)
12493 for (j = 0; j < XVECLEN (x, i); j++)
12494 check_promoted_subreg (insn, XVECEXP (x, i, j));
12495 break;
12500 /* Verify that all the registers and memory references mentioned in *LOC are
12501 still valid. *LOC was part of a value set in INSN when label_tick was
12502 equal to TICK. Return 0 if some are not. If REPLACE is nonzero, replace
12503 the invalid references with (clobber (const_int 0)) and return 1. This
12504 replacement is useful because we often can get useful information about
12505 the form of a value (e.g., if it was produced by a shift that always
12506 produces -1 or 0) even though we don't know exactly what registers it
12507 was produced from. */
12509 static int
12510 get_last_value_validate (rtx *loc, rtx insn, int tick, int replace)
12512 rtx x = *loc;
12513 const char *fmt = GET_RTX_FORMAT (GET_CODE (x));
12514 int len = GET_RTX_LENGTH (GET_CODE (x));
12515 int i, j;
12517 if (REG_P (x))
12519 unsigned int regno = REGNO (x);
12520 unsigned int endregno = END_REGNO (x);
12521 unsigned int j;
12523 for (j = regno; j < endregno; j++)
12525 reg_stat_type *rsp = &reg_stat[j];
12526 if (rsp->last_set_invalid
12527 /* If this is a pseudo-register that was only set once and not
12528 live at the beginning of the function, it is always valid. */
12529 || (! (regno >= FIRST_PSEUDO_REGISTER
12530 && REG_N_SETS (regno) == 1
12531 && (!REGNO_REG_SET_P
12532 (DF_LR_IN (ENTRY_BLOCK_PTR->next_bb), regno)))
12533 && rsp->last_set_label > tick))
12535 if (replace)
12536 *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
12537 return replace;
12541 return 1;
12543 /* If this is a memory reference, make sure that there were no stores after
12544 it that might have clobbered the value. We don't have alias info, so we
12545 assume any store invalidates it. Moreover, we only have local UIDs, so
12546 we also assume that there were stores in the intervening basic blocks. */
12547 else if (MEM_P (x) && !MEM_READONLY_P (x)
12548 && (tick != label_tick || DF_INSN_LUID (insn) <= mem_last_set))
12550 if (replace)
12551 *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
12552 return replace;
12555 for (i = 0; i < len; i++)
12557 if (fmt[i] == 'e')
12559 /* Check for identical subexpressions. If x contains
12560 identical subexpression we only have to traverse one of
12561 them. */
12562 if (i == 1 && ARITHMETIC_P (x))
12564 /* Note that at this point x0 has already been checked
12565 and found valid. */
12566 rtx x0 = XEXP (x, 0);
12567 rtx x1 = XEXP (x, 1);
12569 /* If x0 and x1 are identical then x is also valid. */
12570 if (x0 == x1)
12571 return 1;
12573 /* If x1 is identical to a subexpression of x0 then
12574 while checking x0, x1 has already been checked. Thus
12575 it is valid and so as x. */
12576 if (ARITHMETIC_P (x0)
12577 && (x1 == XEXP (x0, 0) || x1 == XEXP (x0, 1)))
12578 return 1;
12580 /* If x0 is identical to a subexpression of x1 then x is
12581 valid iff the rest of x1 is valid. */
12582 if (ARITHMETIC_P (x1)
12583 && (x0 == XEXP (x1, 0) || x0 == XEXP (x1, 1)))
12584 return
12585 get_last_value_validate (&XEXP (x1,
12586 x0 == XEXP (x1, 0) ? 1 : 0),
12587 insn, tick, replace);
12590 if (get_last_value_validate (&XEXP (x, i), insn, tick,
12591 replace) == 0)
12592 return 0;
12594 else if (fmt[i] == 'E')
12595 for (j = 0; j < XVECLEN (x, i); j++)
12596 if (get_last_value_validate (&XVECEXP (x, i, j),
12597 insn, tick, replace) == 0)
12598 return 0;
12601 /* If we haven't found a reason for it to be invalid, it is valid. */
12602 return 1;
12605 /* Get the last value assigned to X, if known. Some registers
12606 in the value may be replaced with (clobber (const_int 0)) if their value
12607 is known longer known reliably. */
12609 static rtx
12610 get_last_value (const_rtx x)
12612 unsigned int regno;
12613 rtx value;
12614 reg_stat_type *rsp;
12616 /* If this is a non-paradoxical SUBREG, get the value of its operand and
12617 then convert it to the desired mode. If this is a paradoxical SUBREG,
12618 we cannot predict what values the "extra" bits might have. */
12619 if (GET_CODE (x) == SUBREG
12620 && subreg_lowpart_p (x)
12621 && !paradoxical_subreg_p (x)
12622 && (value = get_last_value (SUBREG_REG (x))) != 0)
12623 return gen_lowpart (GET_MODE (x), value);
12625 if (!REG_P (x))
12626 return 0;
12628 regno = REGNO (x);
12629 rsp = &reg_stat[regno];
12630 value = rsp->last_set_value;
12632 /* If we don't have a value, or if it isn't for this basic block and
12633 it's either a hard register, set more than once, or it's a live
12634 at the beginning of the function, return 0.
12636 Because if it's not live at the beginning of the function then the reg
12637 is always set before being used (is never used without being set).
12638 And, if it's set only once, and it's always set before use, then all
12639 uses must have the same last value, even if it's not from this basic
12640 block. */
12642 if (value == 0
12643 || (rsp->last_set_label < label_tick_ebb_start
12644 && (regno < FIRST_PSEUDO_REGISTER
12645 || REG_N_SETS (regno) != 1
12646 || REGNO_REG_SET_P
12647 (DF_LR_IN (ENTRY_BLOCK_PTR->next_bb), regno))))
12648 return 0;
12650 /* If the value was set in a later insn than the ones we are processing,
12651 we can't use it even if the register was only set once. */
12652 if (rsp->last_set_label == label_tick
12653 && DF_INSN_LUID (rsp->last_set) >= subst_low_luid)
12654 return 0;
12656 /* If the value has all its registers valid, return it. */
12657 if (get_last_value_validate (&value, rsp->last_set, rsp->last_set_label, 0))
12658 return value;
12660 /* Otherwise, make a copy and replace any invalid register with
12661 (clobber (const_int 0)). If that fails for some reason, return 0. */
12663 value = copy_rtx (value);
12664 if (get_last_value_validate (&value, rsp->last_set, rsp->last_set_label, 1))
12665 return value;
12667 return 0;
12670 /* Return nonzero if expression X refers to a REG or to memory
12671 that is set in an instruction more recent than FROM_LUID. */
12673 static int
12674 use_crosses_set_p (const_rtx x, int from_luid)
12676 const char *fmt;
12677 int i;
12678 enum rtx_code code = GET_CODE (x);
12680 if (code == REG)
12682 unsigned int regno = REGNO (x);
12683 unsigned endreg = END_REGNO (x);
12685 #ifdef PUSH_ROUNDING
12686 /* Don't allow uses of the stack pointer to be moved,
12687 because we don't know whether the move crosses a push insn. */
12688 if (regno == STACK_POINTER_REGNUM && PUSH_ARGS)
12689 return 1;
12690 #endif
12691 for (; regno < endreg; regno++)
12693 reg_stat_type *rsp = &reg_stat[regno];
12694 if (rsp->last_set
12695 && rsp->last_set_label == label_tick
12696 && DF_INSN_LUID (rsp->last_set) > from_luid)
12697 return 1;
12699 return 0;
12702 if (code == MEM && mem_last_set > from_luid)
12703 return 1;
12705 fmt = GET_RTX_FORMAT (code);
12707 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
12709 if (fmt[i] == 'E')
12711 int j;
12712 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
12713 if (use_crosses_set_p (XVECEXP (x, i, j), from_luid))
12714 return 1;
12716 else if (fmt[i] == 'e'
12717 && use_crosses_set_p (XEXP (x, i), from_luid))
12718 return 1;
12720 return 0;
12723 /* Define three variables used for communication between the following
12724 routines. */
12726 static unsigned int reg_dead_regno, reg_dead_endregno;
12727 static int reg_dead_flag;
12729 /* Function called via note_stores from reg_dead_at_p.
12731 If DEST is within [reg_dead_regno, reg_dead_endregno), set
12732 reg_dead_flag to 1 if X is a CLOBBER and to -1 it is a SET. */
12734 static void
12735 reg_dead_at_p_1 (rtx dest, const_rtx x, void *data ATTRIBUTE_UNUSED)
12737 unsigned int regno, endregno;
12739 if (!REG_P (dest))
12740 return;
12742 regno = REGNO (dest);
12743 endregno = END_REGNO (dest);
12744 if (reg_dead_endregno > regno && reg_dead_regno < endregno)
12745 reg_dead_flag = (GET_CODE (x) == CLOBBER) ? 1 : -1;
12748 /* Return nonzero if REG is known to be dead at INSN.
12750 We scan backwards from INSN. If we hit a REG_DEAD note or a CLOBBER
12751 referencing REG, it is dead. If we hit a SET referencing REG, it is
12752 live. Otherwise, see if it is live or dead at the start of the basic
12753 block we are in. Hard regs marked as being live in NEWPAT_USED_REGS
12754 must be assumed to be always live. */
12756 static int
12757 reg_dead_at_p (rtx reg, rtx insn)
12759 basic_block block;
12760 unsigned int i;
12762 /* Set variables for reg_dead_at_p_1. */
12763 reg_dead_regno = REGNO (reg);
12764 reg_dead_endregno = END_REGNO (reg);
12766 reg_dead_flag = 0;
12768 /* Check that reg isn't mentioned in NEWPAT_USED_REGS. For fixed registers
12769 we allow the machine description to decide whether use-and-clobber
12770 patterns are OK. */
12771 if (reg_dead_regno < FIRST_PSEUDO_REGISTER)
12773 for (i = reg_dead_regno; i < reg_dead_endregno; i++)
12774 if (!fixed_regs[i] && TEST_HARD_REG_BIT (newpat_used_regs, i))
12775 return 0;
12778 /* Scan backwards until we find a REG_DEAD note, SET, CLOBBER, or
12779 beginning of basic block. */
12780 block = BLOCK_FOR_INSN (insn);
12781 for (;;)
12783 if (INSN_P (insn))
12785 note_stores (PATTERN (insn), reg_dead_at_p_1, NULL);
12786 if (reg_dead_flag)
12787 return reg_dead_flag == 1 ? 1 : 0;
12789 if (find_regno_note (insn, REG_DEAD, reg_dead_regno))
12790 return 1;
12793 if (insn == BB_HEAD (block))
12794 break;
12796 insn = PREV_INSN (insn);
12799 /* Look at live-in sets for the basic block that we were in. */
12800 for (i = reg_dead_regno; i < reg_dead_endregno; i++)
12801 if (REGNO_REG_SET_P (df_get_live_in (block), i))
12802 return 0;
12804 return 1;
12807 /* Note hard registers in X that are used. */
12809 static void
12810 mark_used_regs_combine (rtx x)
12812 RTX_CODE code = GET_CODE (x);
12813 unsigned int regno;
12814 int i;
12816 switch (code)
12818 case LABEL_REF:
12819 case SYMBOL_REF:
12820 case CONST:
12821 CASE_CONST_ANY:
12822 case PC:
12823 case ADDR_VEC:
12824 case ADDR_DIFF_VEC:
12825 case ASM_INPUT:
12826 #ifdef HAVE_cc0
12827 /* CC0 must die in the insn after it is set, so we don't need to take
12828 special note of it here. */
12829 case CC0:
12830 #endif
12831 return;
12833 case CLOBBER:
12834 /* If we are clobbering a MEM, mark any hard registers inside the
12835 address as used. */
12836 if (MEM_P (XEXP (x, 0)))
12837 mark_used_regs_combine (XEXP (XEXP (x, 0), 0));
12838 return;
12840 case REG:
12841 regno = REGNO (x);
12842 /* A hard reg in a wide mode may really be multiple registers.
12843 If so, mark all of them just like the first. */
12844 if (regno < FIRST_PSEUDO_REGISTER)
12846 /* None of this applies to the stack, frame or arg pointers. */
12847 if (regno == STACK_POINTER_REGNUM
12848 #if !HARD_FRAME_POINTER_IS_FRAME_POINTER
12849 || regno == HARD_FRAME_POINTER_REGNUM
12850 #endif
12851 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
12852 || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
12853 #endif
12854 || regno == FRAME_POINTER_REGNUM)
12855 return;
12857 add_to_hard_reg_set (&newpat_used_regs, GET_MODE (x), regno);
12859 return;
12861 case SET:
12863 /* If setting a MEM, or a SUBREG of a MEM, then note any hard regs in
12864 the address. */
12865 rtx testreg = SET_DEST (x);
12867 while (GET_CODE (testreg) == SUBREG
12868 || GET_CODE (testreg) == ZERO_EXTRACT
12869 || GET_CODE (testreg) == STRICT_LOW_PART)
12870 testreg = XEXP (testreg, 0);
12872 if (MEM_P (testreg))
12873 mark_used_regs_combine (XEXP (testreg, 0));
12875 mark_used_regs_combine (SET_SRC (x));
12877 return;
12879 default:
12880 break;
12883 /* Recursively scan the operands of this expression. */
12886 const char *fmt = GET_RTX_FORMAT (code);
12888 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
12890 if (fmt[i] == 'e')
12891 mark_used_regs_combine (XEXP (x, i));
12892 else if (fmt[i] == 'E')
12894 int j;
12896 for (j = 0; j < XVECLEN (x, i); j++)
12897 mark_used_regs_combine (XVECEXP (x, i, j));
12903 /* Remove register number REGNO from the dead registers list of INSN.
12905 Return the note used to record the death, if there was one. */
12908 remove_death (unsigned int regno, rtx insn)
12910 rtx note = find_regno_note (insn, REG_DEAD, regno);
12912 if (note)
12913 remove_note (insn, note);
12915 return note;
12918 /* For each register (hardware or pseudo) used within expression X, if its
12919 death is in an instruction with luid between FROM_LUID (inclusive) and
12920 TO_INSN (exclusive), put a REG_DEAD note for that register in the
12921 list headed by PNOTES.
12923 That said, don't move registers killed by maybe_kill_insn.
12925 This is done when X is being merged by combination into TO_INSN. These
12926 notes will then be distributed as needed. */
12928 static void
12929 move_deaths (rtx x, rtx maybe_kill_insn, int from_luid, rtx to_insn,
12930 rtx *pnotes)
12932 const char *fmt;
12933 int len, i;
12934 enum rtx_code code = GET_CODE (x);
12936 if (code == REG)
12938 unsigned int regno = REGNO (x);
12939 rtx where_dead = reg_stat[regno].last_death;
12941 /* Don't move the register if it gets killed in between from and to. */
12942 if (maybe_kill_insn && reg_set_p (x, maybe_kill_insn)
12943 && ! reg_referenced_p (x, maybe_kill_insn))
12944 return;
12946 if (where_dead
12947 && BLOCK_FOR_INSN (where_dead) == BLOCK_FOR_INSN (to_insn)
12948 && DF_INSN_LUID (where_dead) >= from_luid
12949 && DF_INSN_LUID (where_dead) < DF_INSN_LUID (to_insn))
12951 rtx note = remove_death (regno, where_dead);
12953 /* It is possible for the call above to return 0. This can occur
12954 when last_death points to I2 or I1 that we combined with.
12955 In that case make a new note.
12957 We must also check for the case where X is a hard register
12958 and NOTE is a death note for a range of hard registers
12959 including X. In that case, we must put REG_DEAD notes for
12960 the remaining registers in place of NOTE. */
12962 if (note != 0 && regno < FIRST_PSEUDO_REGISTER
12963 && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
12964 > GET_MODE_SIZE (GET_MODE (x))))
12966 unsigned int deadregno = REGNO (XEXP (note, 0));
12967 unsigned int deadend = END_HARD_REGNO (XEXP (note, 0));
12968 unsigned int ourend = END_HARD_REGNO (x);
12969 unsigned int i;
12971 for (i = deadregno; i < deadend; i++)
12972 if (i < regno || i >= ourend)
12973 add_reg_note (where_dead, REG_DEAD, regno_reg_rtx[i]);
12976 /* If we didn't find any note, or if we found a REG_DEAD note that
12977 covers only part of the given reg, and we have a multi-reg hard
12978 register, then to be safe we must check for REG_DEAD notes
12979 for each register other than the first. They could have
12980 their own REG_DEAD notes lying around. */
12981 else if ((note == 0
12982 || (note != 0
12983 && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
12984 < GET_MODE_SIZE (GET_MODE (x)))))
12985 && regno < FIRST_PSEUDO_REGISTER
12986 && hard_regno_nregs[regno][GET_MODE (x)] > 1)
12988 unsigned int ourend = END_HARD_REGNO (x);
12989 unsigned int i, offset;
12990 rtx oldnotes = 0;
12992 if (note)
12993 offset = hard_regno_nregs[regno][GET_MODE (XEXP (note, 0))];
12994 else
12995 offset = 1;
12997 for (i = regno + offset; i < ourend; i++)
12998 move_deaths (regno_reg_rtx[i],
12999 maybe_kill_insn, from_luid, to_insn, &oldnotes);
13002 if (note != 0 && GET_MODE (XEXP (note, 0)) == GET_MODE (x))
13004 XEXP (note, 1) = *pnotes;
13005 *pnotes = note;
13007 else
13008 *pnotes = alloc_reg_note (REG_DEAD, x, *pnotes);
13011 return;
13014 else if (GET_CODE (x) == SET)
13016 rtx dest = SET_DEST (x);
13018 move_deaths (SET_SRC (x), maybe_kill_insn, from_luid, to_insn, pnotes);
13020 /* In the case of a ZERO_EXTRACT, a STRICT_LOW_PART, or a SUBREG
13021 that accesses one word of a multi-word item, some
13022 piece of everything register in the expression is used by
13023 this insn, so remove any old death. */
13024 /* ??? So why do we test for equality of the sizes? */
13026 if (GET_CODE (dest) == ZERO_EXTRACT
13027 || GET_CODE (dest) == STRICT_LOW_PART
13028 || (GET_CODE (dest) == SUBREG
13029 && (((GET_MODE_SIZE (GET_MODE (dest))
13030 + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
13031 == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
13032 + UNITS_PER_WORD - 1) / UNITS_PER_WORD))))
13034 move_deaths (dest, maybe_kill_insn, from_luid, to_insn, pnotes);
13035 return;
13038 /* If this is some other SUBREG, we know it replaces the entire
13039 value, so use that as the destination. */
13040 if (GET_CODE (dest) == SUBREG)
13041 dest = SUBREG_REG (dest);
13043 /* If this is a MEM, adjust deaths of anything used in the address.
13044 For a REG (the only other possibility), the entire value is
13045 being replaced so the old value is not used in this insn. */
13047 if (MEM_P (dest))
13048 move_deaths (XEXP (dest, 0), maybe_kill_insn, from_luid,
13049 to_insn, pnotes);
13050 return;
13053 else if (GET_CODE (x) == CLOBBER)
13054 return;
13056 len = GET_RTX_LENGTH (code);
13057 fmt = GET_RTX_FORMAT (code);
13059 for (i = 0; i < len; i++)
13061 if (fmt[i] == 'E')
13063 int j;
13064 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
13065 move_deaths (XVECEXP (x, i, j), maybe_kill_insn, from_luid,
13066 to_insn, pnotes);
13068 else if (fmt[i] == 'e')
13069 move_deaths (XEXP (x, i), maybe_kill_insn, from_luid, to_insn, pnotes);
13073 /* Return 1 if X is the target of a bit-field assignment in BODY, the
13074 pattern of an insn. X must be a REG. */
13076 static int
13077 reg_bitfield_target_p (rtx x, rtx body)
13079 int i;
13081 if (GET_CODE (body) == SET)
13083 rtx dest = SET_DEST (body);
13084 rtx target;
13085 unsigned int regno, tregno, endregno, endtregno;
13087 if (GET_CODE (dest) == ZERO_EXTRACT)
13088 target = XEXP (dest, 0);
13089 else if (GET_CODE (dest) == STRICT_LOW_PART)
13090 target = SUBREG_REG (XEXP (dest, 0));
13091 else
13092 return 0;
13094 if (GET_CODE (target) == SUBREG)
13095 target = SUBREG_REG (target);
13097 if (!REG_P (target))
13098 return 0;
13100 tregno = REGNO (target), regno = REGNO (x);
13101 if (tregno >= FIRST_PSEUDO_REGISTER || regno >= FIRST_PSEUDO_REGISTER)
13102 return target == x;
13104 endtregno = end_hard_regno (GET_MODE (target), tregno);
13105 endregno = end_hard_regno (GET_MODE (x), regno);
13107 return endregno > tregno && regno < endtregno;
13110 else if (GET_CODE (body) == PARALLEL)
13111 for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
13112 if (reg_bitfield_target_p (x, XVECEXP (body, 0, i)))
13113 return 1;
13115 return 0;
13118 /* Given a chain of REG_NOTES originally from FROM_INSN, try to place them
13119 as appropriate. I3 and I2 are the insns resulting from the combination
13120 insns including FROM (I2 may be zero).
13122 ELIM_I2 and ELIM_I1 are either zero or registers that we know will
13123 not need REG_DEAD notes because they are being substituted for. This
13124 saves searching in the most common cases.
13126 Each note in the list is either ignored or placed on some insns, depending
13127 on the type of note. */
13129 static void
13130 distribute_notes (rtx notes, rtx from_insn, rtx i3, rtx i2, rtx elim_i2,
13131 rtx elim_i1, rtx elim_i0)
13133 rtx note, next_note;
13134 rtx tem;
13136 for (note = notes; note; note = next_note)
13138 rtx place = 0, place2 = 0;
13140 next_note = XEXP (note, 1);
13141 switch (REG_NOTE_KIND (note))
13143 case REG_BR_PROB:
13144 case REG_BR_PRED:
13145 /* Doesn't matter much where we put this, as long as it's somewhere.
13146 It is preferable to keep these notes on branches, which is most
13147 likely to be i3. */
13148 place = i3;
13149 break;
13151 case REG_NON_LOCAL_GOTO:
13152 if (JUMP_P (i3))
13153 place = i3;
13154 else
13156 gcc_assert (i2 && JUMP_P (i2));
13157 place = i2;
13159 break;
13161 case REG_EH_REGION:
13162 /* These notes must remain with the call or trapping instruction. */
13163 if (CALL_P (i3))
13164 place = i3;
13165 else if (i2 && CALL_P (i2))
13166 place = i2;
13167 else
13169 gcc_assert (cfun->can_throw_non_call_exceptions);
13170 if (may_trap_p (i3))
13171 place = i3;
13172 else if (i2 && may_trap_p (i2))
13173 place = i2;
13174 /* ??? Otherwise assume we've combined things such that we
13175 can now prove that the instructions can't trap. Drop the
13176 note in this case. */
13178 break;
13180 case REG_ARGS_SIZE:
13181 /* ??? How to distribute between i3-i1. Assume i3 contains the
13182 entire adjustment. Assert i3 contains at least some adjust. */
13183 if (!noop_move_p (i3))
13185 int old_size, args_size = INTVAL (XEXP (note, 0));
13186 /* fixup_args_size_notes looks at REG_NORETURN note,
13187 so ensure the note is placed there first. */
13188 if (CALL_P (i3))
13190 rtx *np;
13191 for (np = &next_note; *np; np = &XEXP (*np, 1))
13192 if (REG_NOTE_KIND (*np) == REG_NORETURN)
13194 rtx n = *np;
13195 *np = XEXP (n, 1);
13196 XEXP (n, 1) = REG_NOTES (i3);
13197 REG_NOTES (i3) = n;
13198 break;
13201 old_size = fixup_args_size_notes (PREV_INSN (i3), i3, args_size);
13202 /* emit_call_1 adds for !ACCUMULATE_OUTGOING_ARGS
13203 REG_ARGS_SIZE note to all noreturn calls, allow that here. */
13204 gcc_assert (old_size != args_size
13205 || (CALL_P (i3)
13206 && !ACCUMULATE_OUTGOING_ARGS
13207 && find_reg_note (i3, REG_NORETURN, NULL_RTX)));
13209 break;
13211 case REG_NORETURN:
13212 case REG_SETJMP:
13213 case REG_TM:
13214 /* These notes must remain with the call. It should not be
13215 possible for both I2 and I3 to be a call. */
13216 if (CALL_P (i3))
13217 place = i3;
13218 else
13220 gcc_assert (i2 && CALL_P (i2));
13221 place = i2;
13223 break;
13225 case REG_UNUSED:
13226 /* Any clobbers for i3 may still exist, and so we must process
13227 REG_UNUSED notes from that insn.
13229 Any clobbers from i2 or i1 can only exist if they were added by
13230 recog_for_combine. In that case, recog_for_combine created the
13231 necessary REG_UNUSED notes. Trying to keep any original
13232 REG_UNUSED notes from these insns can cause incorrect output
13233 if it is for the same register as the original i3 dest.
13234 In that case, we will notice that the register is set in i3,
13235 and then add a REG_UNUSED note for the destination of i3, which
13236 is wrong. However, it is possible to have REG_UNUSED notes from
13237 i2 or i1 for register which were both used and clobbered, so
13238 we keep notes from i2 or i1 if they will turn into REG_DEAD
13239 notes. */
13241 /* If this register is set or clobbered in I3, put the note there
13242 unless there is one already. */
13243 if (reg_set_p (XEXP (note, 0), PATTERN (i3)))
13245 if (from_insn != i3)
13246 break;
13248 if (! (REG_P (XEXP (note, 0))
13249 ? find_regno_note (i3, REG_UNUSED, REGNO (XEXP (note, 0)))
13250 : find_reg_note (i3, REG_UNUSED, XEXP (note, 0))))
13251 place = i3;
13253 /* Otherwise, if this register is used by I3, then this register
13254 now dies here, so we must put a REG_DEAD note here unless there
13255 is one already. */
13256 else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3))
13257 && ! (REG_P (XEXP (note, 0))
13258 ? find_regno_note (i3, REG_DEAD,
13259 REGNO (XEXP (note, 0)))
13260 : find_reg_note (i3, REG_DEAD, XEXP (note, 0))))
13262 PUT_REG_NOTE_KIND (note, REG_DEAD);
13263 place = i3;
13265 break;
13267 case REG_EQUAL:
13268 case REG_EQUIV:
13269 case REG_NOALIAS:
13270 /* These notes say something about results of an insn. We can
13271 only support them if they used to be on I3 in which case they
13272 remain on I3. Otherwise they are ignored.
13274 If the note refers to an expression that is not a constant, we
13275 must also ignore the note since we cannot tell whether the
13276 equivalence is still true. It might be possible to do
13277 slightly better than this (we only have a problem if I2DEST
13278 or I1DEST is present in the expression), but it doesn't
13279 seem worth the trouble. */
13281 if (from_insn == i3
13282 && (XEXP (note, 0) == 0 || CONSTANT_P (XEXP (note, 0))))
13283 place = i3;
13284 break;
13286 case REG_INC:
13287 /* These notes say something about how a register is used. They must
13288 be present on any use of the register in I2 or I3. */
13289 if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3)))
13290 place = i3;
13292 if (i2 && reg_mentioned_p (XEXP (note, 0), PATTERN (i2)))
13294 if (place)
13295 place2 = i2;
13296 else
13297 place = i2;
13299 break;
13301 case REG_LABEL_TARGET:
13302 case REG_LABEL_OPERAND:
13303 /* This can show up in several ways -- either directly in the
13304 pattern, or hidden off in the constant pool with (or without?)
13305 a REG_EQUAL note. */
13306 /* ??? Ignore the without-reg_equal-note problem for now. */
13307 if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3))
13308 || ((tem = find_reg_note (i3, REG_EQUAL, NULL_RTX))
13309 && GET_CODE (XEXP (tem, 0)) == LABEL_REF
13310 && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0)))
13311 place = i3;
13313 if (i2
13314 && (reg_mentioned_p (XEXP (note, 0), PATTERN (i2))
13315 || ((tem = find_reg_note (i2, REG_EQUAL, NULL_RTX))
13316 && GET_CODE (XEXP (tem, 0)) == LABEL_REF
13317 && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0))))
13319 if (place)
13320 place2 = i2;
13321 else
13322 place = i2;
13325 /* For REG_LABEL_TARGET on a JUMP_P, we prefer to put the note
13326 as a JUMP_LABEL or decrement LABEL_NUSES if it's already
13327 there. */
13328 if (place && JUMP_P (place)
13329 && REG_NOTE_KIND (note) == REG_LABEL_TARGET
13330 && (JUMP_LABEL (place) == NULL
13331 || JUMP_LABEL (place) == XEXP (note, 0)))
13333 rtx label = JUMP_LABEL (place);
13335 if (!label)
13336 JUMP_LABEL (place) = XEXP (note, 0);
13337 else if (LABEL_P (label))
13338 LABEL_NUSES (label)--;
13341 if (place2 && JUMP_P (place2)
13342 && REG_NOTE_KIND (note) == REG_LABEL_TARGET
13343 && (JUMP_LABEL (place2) == NULL
13344 || JUMP_LABEL (place2) == XEXP (note, 0)))
13346 rtx label = JUMP_LABEL (place2);
13348 if (!label)
13349 JUMP_LABEL (place2) = XEXP (note, 0);
13350 else if (LABEL_P (label))
13351 LABEL_NUSES (label)--;
13352 place2 = 0;
13354 break;
13356 case REG_NONNEG:
13357 /* This note says something about the value of a register prior
13358 to the execution of an insn. It is too much trouble to see
13359 if the note is still correct in all situations. It is better
13360 to simply delete it. */
13361 break;
13363 case REG_DEAD:
13364 /* If we replaced the right hand side of FROM_INSN with a
13365 REG_EQUAL note, the original use of the dying register
13366 will not have been combined into I3 and I2. In such cases,
13367 FROM_INSN is guaranteed to be the first of the combined
13368 instructions, so we simply need to search back before
13369 FROM_INSN for the previous use or set of this register,
13370 then alter the notes there appropriately.
13372 If the register is used as an input in I3, it dies there.
13373 Similarly for I2, if it is nonzero and adjacent to I3.
13375 If the register is not used as an input in either I3 or I2
13376 and it is not one of the registers we were supposed to eliminate,
13377 there are two possibilities. We might have a non-adjacent I2
13378 or we might have somehow eliminated an additional register
13379 from a computation. For example, we might have had A & B where
13380 we discover that B will always be zero. In this case we will
13381 eliminate the reference to A.
13383 In both cases, we must search to see if we can find a previous
13384 use of A and put the death note there. */
13386 if (from_insn
13387 && from_insn == i2mod
13388 && !reg_overlap_mentioned_p (XEXP (note, 0), i2mod_new_rhs))
13389 tem = from_insn;
13390 else
13392 if (from_insn
13393 && CALL_P (from_insn)
13394 && find_reg_fusage (from_insn, USE, XEXP (note, 0)))
13395 place = from_insn;
13396 else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3)))
13397 place = i3;
13398 else if (i2 != 0 && next_nonnote_nondebug_insn (i2) == i3
13399 && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
13400 place = i2;
13401 else if ((rtx_equal_p (XEXP (note, 0), elim_i2)
13402 && !(i2mod
13403 && reg_overlap_mentioned_p (XEXP (note, 0),
13404 i2mod_old_rhs)))
13405 || rtx_equal_p (XEXP (note, 0), elim_i1)
13406 || rtx_equal_p (XEXP (note, 0), elim_i0))
13407 break;
13408 tem = i3;
13411 if (place == 0)
13413 basic_block bb = this_basic_block;
13415 for (tem = PREV_INSN (tem); place == 0; tem = PREV_INSN (tem))
13417 if (!NONDEBUG_INSN_P (tem))
13419 if (tem == BB_HEAD (bb))
13420 break;
13421 continue;
13424 /* If the register is being set at TEM, see if that is all
13425 TEM is doing. If so, delete TEM. Otherwise, make this
13426 into a REG_UNUSED note instead. Don't delete sets to
13427 global register vars. */
13428 if ((REGNO (XEXP (note, 0)) >= FIRST_PSEUDO_REGISTER
13429 || !global_regs[REGNO (XEXP (note, 0))])
13430 && reg_set_p (XEXP (note, 0), PATTERN (tem)))
13432 rtx set = single_set (tem);
13433 rtx inner_dest = 0;
13434 #ifdef HAVE_cc0
13435 rtx cc0_setter = NULL_RTX;
13436 #endif
13438 if (set != 0)
13439 for (inner_dest = SET_DEST (set);
13440 (GET_CODE (inner_dest) == STRICT_LOW_PART
13441 || GET_CODE (inner_dest) == SUBREG
13442 || GET_CODE (inner_dest) == ZERO_EXTRACT);
13443 inner_dest = XEXP (inner_dest, 0))
13446 /* Verify that it was the set, and not a clobber that
13447 modified the register.
13449 CC0 targets must be careful to maintain setter/user
13450 pairs. If we cannot delete the setter due to side
13451 effects, mark the user with an UNUSED note instead
13452 of deleting it. */
13454 if (set != 0 && ! side_effects_p (SET_SRC (set))
13455 && rtx_equal_p (XEXP (note, 0), inner_dest)
13456 #ifdef HAVE_cc0
13457 && (! reg_mentioned_p (cc0_rtx, SET_SRC (set))
13458 || ((cc0_setter = prev_cc0_setter (tem)) != NULL
13459 && sets_cc0_p (PATTERN (cc0_setter)) > 0))
13460 #endif
13463 /* Move the notes and links of TEM elsewhere.
13464 This might delete other dead insns recursively.
13465 First set the pattern to something that won't use
13466 any register. */
13467 rtx old_notes = REG_NOTES (tem);
13469 PATTERN (tem) = pc_rtx;
13470 REG_NOTES (tem) = NULL;
13472 distribute_notes (old_notes, tem, tem, NULL_RTX,
13473 NULL_RTX, NULL_RTX, NULL_RTX);
13474 distribute_links (LOG_LINKS (tem));
13476 SET_INSN_DELETED (tem);
13477 if (tem == i2)
13478 i2 = NULL_RTX;
13480 #ifdef HAVE_cc0
13481 /* Delete the setter too. */
13482 if (cc0_setter)
13484 PATTERN (cc0_setter) = pc_rtx;
13485 old_notes = REG_NOTES (cc0_setter);
13486 REG_NOTES (cc0_setter) = NULL;
13488 distribute_notes (old_notes, cc0_setter,
13489 cc0_setter, NULL_RTX,
13490 NULL_RTX, NULL_RTX, NULL_RTX);
13491 distribute_links (LOG_LINKS (cc0_setter));
13493 SET_INSN_DELETED (cc0_setter);
13494 if (cc0_setter == i2)
13495 i2 = NULL_RTX;
13497 #endif
13499 else
13501 PUT_REG_NOTE_KIND (note, REG_UNUSED);
13503 /* If there isn't already a REG_UNUSED note, put one
13504 here. Do not place a REG_DEAD note, even if
13505 the register is also used here; that would not
13506 match the algorithm used in lifetime analysis
13507 and can cause the consistency check in the
13508 scheduler to fail. */
13509 if (! find_regno_note (tem, REG_UNUSED,
13510 REGNO (XEXP (note, 0))))
13511 place = tem;
13512 break;
13515 else if (reg_referenced_p (XEXP (note, 0), PATTERN (tem))
13516 || (CALL_P (tem)
13517 && find_reg_fusage (tem, USE, XEXP (note, 0))))
13519 place = tem;
13521 /* If we are doing a 3->2 combination, and we have a
13522 register which formerly died in i3 and was not used
13523 by i2, which now no longer dies in i3 and is used in
13524 i2 but does not die in i2, and place is between i2
13525 and i3, then we may need to move a link from place to
13526 i2. */
13527 if (i2 && DF_INSN_LUID (place) > DF_INSN_LUID (i2)
13528 && from_insn
13529 && DF_INSN_LUID (from_insn) > DF_INSN_LUID (i2)
13530 && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
13532 struct insn_link *links = LOG_LINKS (place);
13533 LOG_LINKS (place) = NULL;
13534 distribute_links (links);
13536 break;
13539 if (tem == BB_HEAD (bb))
13540 break;
13545 /* If the register is set or already dead at PLACE, we needn't do
13546 anything with this note if it is still a REG_DEAD note.
13547 We check here if it is set at all, not if is it totally replaced,
13548 which is what `dead_or_set_p' checks, so also check for it being
13549 set partially. */
13551 if (place && REG_NOTE_KIND (note) == REG_DEAD)
13553 unsigned int regno = REGNO (XEXP (note, 0));
13554 reg_stat_type *rsp = &reg_stat[regno];
13556 if (dead_or_set_p (place, XEXP (note, 0))
13557 || reg_bitfield_target_p (XEXP (note, 0), PATTERN (place)))
13559 /* Unless the register previously died in PLACE, clear
13560 last_death. [I no longer understand why this is
13561 being done.] */
13562 if (rsp->last_death != place)
13563 rsp->last_death = 0;
13564 place = 0;
13566 else
13567 rsp->last_death = place;
13569 /* If this is a death note for a hard reg that is occupying
13570 multiple registers, ensure that we are still using all
13571 parts of the object. If we find a piece of the object
13572 that is unused, we must arrange for an appropriate REG_DEAD
13573 note to be added for it. However, we can't just emit a USE
13574 and tag the note to it, since the register might actually
13575 be dead; so we recourse, and the recursive call then finds
13576 the previous insn that used this register. */
13578 if (place && regno < FIRST_PSEUDO_REGISTER
13579 && hard_regno_nregs[regno][GET_MODE (XEXP (note, 0))] > 1)
13581 unsigned int endregno = END_HARD_REGNO (XEXP (note, 0));
13582 int all_used = 1;
13583 unsigned int i;
13585 for (i = regno; i < endregno; i++)
13586 if ((! refers_to_regno_p (i, i + 1, PATTERN (place), 0)
13587 && ! find_regno_fusage (place, USE, i))
13588 || dead_or_set_regno_p (place, i))
13589 all_used = 0;
13591 if (! all_used)
13593 /* Put only REG_DEAD notes for pieces that are
13594 not already dead or set. */
13596 for (i = regno; i < endregno;
13597 i += hard_regno_nregs[i][reg_raw_mode[i]])
13599 rtx piece = regno_reg_rtx[i];
13600 basic_block bb = this_basic_block;
13602 if (! dead_or_set_p (place, piece)
13603 && ! reg_bitfield_target_p (piece,
13604 PATTERN (place)))
13606 rtx new_note = alloc_reg_note (REG_DEAD, piece,
13607 NULL_RTX);
13609 distribute_notes (new_note, place, place,
13610 NULL_RTX, NULL_RTX, NULL_RTX,
13611 NULL_RTX);
13613 else if (! refers_to_regno_p (i, i + 1,
13614 PATTERN (place), 0)
13615 && ! find_regno_fusage (place, USE, i))
13616 for (tem = PREV_INSN (place); ;
13617 tem = PREV_INSN (tem))
13619 if (!NONDEBUG_INSN_P (tem))
13621 if (tem == BB_HEAD (bb))
13622 break;
13623 continue;
13625 if (dead_or_set_p (tem, piece)
13626 || reg_bitfield_target_p (piece,
13627 PATTERN (tem)))
13629 add_reg_note (tem, REG_UNUSED, piece);
13630 break;
13636 place = 0;
13640 break;
13642 default:
13643 /* Any other notes should not be present at this point in the
13644 compilation. */
13645 gcc_unreachable ();
13648 if (place)
13650 XEXP (note, 1) = REG_NOTES (place);
13651 REG_NOTES (place) = note;
13654 if (place2)
13655 add_reg_note (place2, REG_NOTE_KIND (note), XEXP (note, 0));
13659 /* Similarly to above, distribute the LOG_LINKS that used to be present on
13660 I3, I2, and I1 to new locations. This is also called to add a link
13661 pointing at I3 when I3's destination is changed. */
13663 static void
13664 distribute_links (struct insn_link *links)
13666 struct insn_link *link, *next_link;
13668 for (link = links; link; link = next_link)
13670 rtx place = 0;
13671 rtx insn;
13672 rtx set, reg;
13674 next_link = link->next;
13676 /* If the insn that this link points to is a NOTE or isn't a single
13677 set, ignore it. In the latter case, it isn't clear what we
13678 can do other than ignore the link, since we can't tell which
13679 register it was for. Such links wouldn't be used by combine
13680 anyway.
13682 It is not possible for the destination of the target of the link to
13683 have been changed by combine. The only potential of this is if we
13684 replace I3, I2, and I1 by I3 and I2. But in that case the
13685 destination of I2 also remains unchanged. */
13687 if (NOTE_P (link->insn)
13688 || (set = single_set (link->insn)) == 0)
13689 continue;
13691 reg = SET_DEST (set);
13692 while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
13693 || GET_CODE (reg) == STRICT_LOW_PART)
13694 reg = XEXP (reg, 0);
13696 /* A LOG_LINK is defined as being placed on the first insn that uses
13697 a register and points to the insn that sets the register. Start
13698 searching at the next insn after the target of the link and stop
13699 when we reach a set of the register or the end of the basic block.
13701 Note that this correctly handles the link that used to point from
13702 I3 to I2. Also note that not much searching is typically done here
13703 since most links don't point very far away. */
13705 for (insn = NEXT_INSN (link->insn);
13706 (insn && (this_basic_block->next_bb == EXIT_BLOCK_PTR
13707 || BB_HEAD (this_basic_block->next_bb) != insn));
13708 insn = NEXT_INSN (insn))
13709 if (DEBUG_INSN_P (insn))
13710 continue;
13711 else if (INSN_P (insn) && reg_overlap_mentioned_p (reg, PATTERN (insn)))
13713 if (reg_referenced_p (reg, PATTERN (insn)))
13714 place = insn;
13715 break;
13717 else if (CALL_P (insn)
13718 && find_reg_fusage (insn, USE, reg))
13720 place = insn;
13721 break;
13723 else if (INSN_P (insn) && reg_set_p (reg, insn))
13724 break;
13726 /* If we found a place to put the link, place it there unless there
13727 is already a link to the same insn as LINK at that point. */
13729 if (place)
13731 struct insn_link *link2;
13733 FOR_EACH_LOG_LINK (link2, place)
13734 if (link2->insn == link->insn)
13735 break;
13737 if (link2 == NULL)
13739 link->next = LOG_LINKS (place);
13740 LOG_LINKS (place) = link;
13742 /* Set added_links_insn to the earliest insn we added a
13743 link to. */
13744 if (added_links_insn == 0
13745 || DF_INSN_LUID (added_links_insn) > DF_INSN_LUID (place))
13746 added_links_insn = place;
13752 /* Subroutine of unmentioned_reg_p and callback from for_each_rtx.
13753 Check whether the expression pointer to by LOC is a register or
13754 memory, and if so return 1 if it isn't mentioned in the rtx EXPR.
13755 Otherwise return zero. */
13757 static int
13758 unmentioned_reg_p_1 (rtx *loc, void *expr)
13760 rtx x = *loc;
13762 if (x != NULL_RTX
13763 && (REG_P (x) || MEM_P (x))
13764 && ! reg_mentioned_p (x, (rtx) expr))
13765 return 1;
13766 return 0;
13769 /* Check for any register or memory mentioned in EQUIV that is not
13770 mentioned in EXPR. This is used to restrict EQUIV to "specializations"
13771 of EXPR where some registers may have been replaced by constants. */
13773 static bool
13774 unmentioned_reg_p (rtx equiv, rtx expr)
13776 return for_each_rtx (&equiv, unmentioned_reg_p_1, expr);
13779 DEBUG_FUNCTION void
13780 dump_combine_stats (FILE *file)
13782 fprintf
13783 (file,
13784 ";; Combiner statistics: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n\n",
13785 combine_attempts, combine_merges, combine_extras, combine_successes);
13788 void
13789 dump_combine_total_stats (FILE *file)
13791 fprintf
13792 (file,
13793 "\n;; Combiner totals: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n",
13794 total_attempts, total_merges, total_extras, total_successes);
13797 static bool
13798 gate_handle_combine (void)
13800 return (optimize > 0);
13803 /* Try combining insns through substitution. */
13804 static unsigned int
13805 rest_of_handle_combine (void)
13807 int rebuild_jump_labels_after_combine;
13809 df_set_flags (DF_LR_RUN_DCE + DF_DEFER_INSN_RESCAN);
13810 df_note_add_problem ();
13811 df_analyze ();
13813 regstat_init_n_sets_and_refs ();
13815 rebuild_jump_labels_after_combine
13816 = combine_instructions (get_insns (), max_reg_num ());
13818 /* Combining insns may have turned an indirect jump into a
13819 direct jump. Rebuild the JUMP_LABEL fields of jumping
13820 instructions. */
13821 if (rebuild_jump_labels_after_combine)
13823 timevar_push (TV_JUMP);
13824 rebuild_jump_labels (get_insns ());
13825 cleanup_cfg (0);
13826 timevar_pop (TV_JUMP);
13829 regstat_free_n_sets_and_refs ();
13830 return 0;
13833 struct rtl_opt_pass pass_combine =
13836 RTL_PASS,
13837 "combine", /* name */
13838 OPTGROUP_NONE, /* optinfo_flags */
13839 gate_handle_combine, /* gate */
13840 rest_of_handle_combine, /* execute */
13841 NULL, /* sub */
13842 NULL, /* next */
13843 0, /* static_pass_number */
13844 TV_COMBINE, /* tv_id */
13845 PROP_cfglayout, /* properties_required */
13846 0, /* properties_provided */
13847 0, /* properties_destroyed */
13848 0, /* todo_flags_start */
13849 TODO_df_finish | TODO_verify_rtl_sharing |
13850 TODO_ggc_collect, /* todo_flags_finish */