OSDN Git Service

* expr.h: Split out optab- and libfunc-related code to...
[pf3gnuchains/gcc-fork.git] / gcc / combine.c
1 /* Optimize by combining instructions for GNU compiler.
2    Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3    1999, 2000, 2001 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING.  If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.  */
21
22 /* This module is essentially the "combiner" phase of the U. of Arizona
23    Portable Optimizer, but redone to work on our list-structured
24    representation for RTL instead of their string representation.
25
26    The LOG_LINKS of each insn identify the most recent assignment
27    to each REG used in the insn.  It is a list of previous insns,
28    each of which contains a SET for a REG that is used in this insn
29    and not used or set in between.  LOG_LINKs never cross basic blocks.
30    They were set up by the preceding pass (lifetime analysis).
31
32    We try to combine each pair of insns joined by a logical link.
33    We also try to combine triples of insns A, B and C when
34    C has a link back to B and B has a link back to A.
35
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.
41
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.
44
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.
51
52    There are a few exceptions where the dataflow information created by
53    flow.c aren't completely updated:
54
55    - reg_live_length is not updated
56    - reg_n_refs is not adjusted in the rare case when a register is
57      no longer required in a computation
58    - there are extremely rare cases (see distribute_regnotes) when a
59      REG_DEAD note is lost
60    - a LOG_LINKS entry that refers to an insn with multiple SETs may be
61      removed because there is no way to know which register it was
62      linking
63
64    To simplify substitution, we combine only when the earlier insn(s)
65    consist of only a single assignment.  To simplify updating afterward,
66    we never combine when a subroutine call appears in the middle.
67
68    Since we do not represent assignments to CC0 explicitly except when that
69    is all an insn does, there is no LOG_LINKS entry in an insn that uses
70    the condition code for the insn that set the condition code.
71    Fortunately, these two insns must be consecutive.
72    Therefore, every JUMP_INSN is taken to have an implicit logical link
73    to the preceding insn.  This is not quite right, since non-jumps can
74    also use the condition code; but in practice such insns would not
75    combine anyway.  */
76
77 #include "config.h"
78 #include "system.h"
79 #include "rtl.h"
80 #include "tm_p.h"
81 #include "flags.h"
82 #include "regs.h"
83 #include "hard-reg-set.h"
84 #include "basic-block.h"
85 #include "insn-config.h"
86 #include "function.h"
87 /* Include expr.h after insn-config.h so we get HAVE_conditional_move.  */
88 #include "expr.h"
89 #include "optabs.h"
90 #include "insn-attr.h"
91 #include "recog.h"
92 #include "real.h"
93 #include "toplev.h"
94
95 /* It is not safe to use ordinary gen_lowpart in combine.
96    Use gen_lowpart_for_combine instead.  See comments there.  */
97 #define gen_lowpart dont_use_gen_lowpart_you_dummy
98
99 /* Number of attempts to combine instructions in this function.  */
100
101 static int combine_attempts;
102
103 /* Number of attempts that got as far as substitution in this function.  */
104
105 static int combine_merges;
106
107 /* Number of instructions combined with added SETs in this function.  */
108
109 static int combine_extras;
110
111 /* Number of instructions combined in this function.  */
112
113 static int combine_successes;
114
115 /* Totals over entire compilation.  */
116
117 static int total_attempts, total_merges, total_extras, total_successes;
118
119 \f
120 /* Vector mapping INSN_UIDs to cuids.
121    The cuids are like uids but increase monotonically always.
122    Combine always uses cuids so that it can compare them.
123    But actually renumbering the uids, which we used to do,
124    proves to be a bad idea because it makes it hard to compare
125    the dumps produced by earlier passes with those from later passes.  */
126
127 static int *uid_cuid;
128 static int max_uid_cuid;
129
130 /* Get the cuid of an insn.  */
131
132 #define INSN_CUID(INSN) \
133 (INSN_UID (INSN) > max_uid_cuid ? insn_cuid (INSN) : uid_cuid[INSN_UID (INSN)])
134
135 /* In case BITS_PER_WORD == HOST_BITS_PER_WIDE_INT, shifting by
136    BITS_PER_WORD would invoke undefined behavior.  Work around it.  */
137
138 #define UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD(val) \
139   (((unsigned HOST_WIDE_INT)(val) << (BITS_PER_WORD - 1)) << 1)
140
141 /* Maximum register number, which is the size of the tables below.  */
142
143 static unsigned int combine_max_regno;
144
145 /* Record last point of death of (hard or pseudo) register n.  */
146
147 static rtx *reg_last_death;
148
149 /* Record last point of modification of (hard or pseudo) register n.  */
150
151 static rtx *reg_last_set;
152
153 /* Record the cuid of the last insn that invalidated memory
154    (anything that writes memory, and subroutine calls, but not pushes).  */
155
156 static int mem_last_set;
157
158 /* Record the cuid of the last CALL_INSN
159    so we can tell whether a potential combination crosses any calls.  */
160
161 static int last_call_cuid;
162
163 /* When `subst' is called, this is the insn that is being modified
164    (by combining in a previous insn).  The PATTERN of this insn
165    is still the old pattern partially modified and it should not be
166    looked at, but this may be used to examine the successors of the insn
167    to judge whether a simplification is valid.  */
168
169 static rtx subst_insn;
170
171 /* This is an insn that belongs before subst_insn, but is not currently
172    on the insn chain.  */
173
174 static rtx subst_prev_insn;
175
176 /* This is the lowest CUID that `subst' is currently dealing with.
177    get_last_value will not return a value if the register was set at or
178    after this CUID.  If not for this mechanism, we could get confused if
179    I2 or I1 in try_combine were an insn that used the old value of a register
180    to obtain a new value.  In that case, we might erroneously get the
181    new value of the register when we wanted the old one.  */
182
183 static int subst_low_cuid;
184
185 /* This contains any hard registers that are used in newpat; reg_dead_at_p
186    must consider all these registers to be always live.  */
187
188 static HARD_REG_SET newpat_used_regs;
189
190 /* This is an insn to which a LOG_LINKS entry has been added.  If this
191    insn is the earlier than I2 or I3, combine should rescan starting at
192    that location.  */
193
194 static rtx added_links_insn;
195
196 /* Basic block number of the block in which we are performing combines.  */
197 static int this_basic_block;
198
199 /* A bitmap indicating which blocks had registers go dead at entry.
200    After combine, we'll need to re-do global life analysis with
201    those blocks as starting points.  */
202 static sbitmap refresh_blocks;
203 static int need_refresh;
204 \f
205 /* The next group of arrays allows the recording of the last value assigned
206    to (hard or pseudo) register n.  We use this information to see if a
207    operation being processed is redundant given a prior operation performed
208    on the register.  For example, an `and' with a constant is redundant if
209    all the zero bits are already known to be turned off.
210
211    We use an approach similar to that used by cse, but change it in the
212    following ways:
213
214    (1) We do not want to reinitialize at each label.
215    (2) It is useful, but not critical, to know the actual value assigned
216        to a register.  Often just its form is helpful.
217
218    Therefore, we maintain the following arrays:
219
220    reg_last_set_value           the last value assigned
221    reg_last_set_label           records the value of label_tick when the
222                                 register was assigned
223    reg_last_set_table_tick      records the value of label_tick when a
224                                 value using the register is assigned
225    reg_last_set_invalid         set to non-zero when it is not valid
226                                 to use the value of this register in some
227                                 register's value
228
229    To understand the usage of these tables, it is important to understand
230    the distinction between the value in reg_last_set_value being valid
231    and the register being validly contained in some other expression in the
232    table.
233
234    Entry I in reg_last_set_value is valid if it is non-zero, and either
235    reg_n_sets[i] is 1 or reg_last_set_label[i] == label_tick.
236
237    Register I may validly appear in any expression returned for the value
238    of another register if reg_n_sets[i] is 1.  It may also appear in the
239    value for register J if reg_last_set_label[i] < reg_last_set_label[j] or
240    reg_last_set_invalid[j] is zero.
241
242    If an expression is found in the table containing a register which may
243    not validly appear in an expression, the register is replaced by
244    something that won't match, (clobber (const_int 0)).
245
246    reg_last_set_invalid[i] is set non-zero when register I is being assigned
247    to and reg_last_set_table_tick[i] == label_tick.  */
248
249 /* Record last value assigned to (hard or pseudo) register n.  */
250
251 static rtx *reg_last_set_value;
252
253 /* Record the value of label_tick when the value for register n is placed in
254    reg_last_set_value[n].  */
255
256 static int *reg_last_set_label;
257
258 /* Record the value of label_tick when an expression involving register n
259    is placed in reg_last_set_value.  */
260
261 static int *reg_last_set_table_tick;
262
263 /* Set non-zero if references to register n in expressions should not be
264    used.  */
265
266 static char *reg_last_set_invalid;
267
268 /* Incremented for each label.  */
269
270 static int label_tick;
271
272 /* Some registers that are set more than once and used in more than one
273    basic block are nevertheless always set in similar ways.  For example,
274    a QImode register may be loaded from memory in two places on a machine
275    where byte loads zero extend.
276
277    We record in the following array what we know about the nonzero
278    bits of a register, specifically which bits are known to be zero.
279
280    If an entry is zero, it means that we don't know anything special.  */
281
282 static unsigned HOST_WIDE_INT *reg_nonzero_bits;
283
284 /* Mode used to compute significance in reg_nonzero_bits.  It is the largest
285    integer mode that can fit in HOST_BITS_PER_WIDE_INT.  */
286
287 static enum machine_mode nonzero_bits_mode;
288
289 /* Nonzero if we know that a register has some leading bits that are always
290    equal to the sign bit.  */
291
292 static unsigned char *reg_sign_bit_copies;
293
294 /* Nonzero when reg_nonzero_bits and reg_sign_bit_copies can be safely used.
295    It is zero while computing them and after combine has completed.  This
296    former test prevents propagating values based on previously set values,
297    which can be incorrect if a variable is modified in a loop.  */
298
299 static int nonzero_sign_valid;
300
301 /* These arrays are maintained in parallel with reg_last_set_value
302    and are used to store the mode in which the register was last set,
303    the bits that were known to be zero when it was last set, and the
304    number of sign bits copies it was known to have when it was last set.  */
305
306 static enum machine_mode *reg_last_set_mode;
307 static unsigned HOST_WIDE_INT *reg_last_set_nonzero_bits;
308 static char *reg_last_set_sign_bit_copies;
309 \f
310 /* Record one modification to rtl structure
311    to be undone by storing old_contents into *where.
312    is_int is 1 if the contents are an int.  */
313
314 struct undo
315 {
316   struct undo *next;
317   int is_int;
318   union {rtx r; unsigned int i;} old_contents;
319   union {rtx *r; unsigned int *i;} where;
320 };
321
322 /* Record a bunch of changes to be undone, up to MAX_UNDO of them.
323    num_undo says how many are currently recorded.
324
325    other_insn is nonzero if we have modified some other insn in the process
326    of working on subst_insn.  It must be verified too.  */
327
328 struct undobuf
329 {
330   struct undo *undos;
331   struct undo *frees;
332   rtx other_insn;
333 };
334
335 static struct undobuf undobuf;
336
337 /* Number of times the pseudo being substituted for
338    was found and replaced.  */
339
340 static int n_occurrences;
341
342 static void do_SUBST                    PARAMS ((rtx *, rtx));
343 static void do_SUBST_INT                PARAMS ((unsigned int *,
344                                                  unsigned int));
345 static void init_reg_last_arrays        PARAMS ((void));
346 static void setup_incoming_promotions   PARAMS ((void));
347 static void set_nonzero_bits_and_sign_copies  PARAMS ((rtx, rtx, void *));
348 static int cant_combine_insn_p  PARAMS ((rtx));
349 static int can_combine_p        PARAMS ((rtx, rtx, rtx, rtx, rtx *, rtx *));
350 static int sets_function_arg_p  PARAMS ((rtx));
351 static int combinable_i3pat     PARAMS ((rtx, rtx *, rtx, rtx, int, rtx *));
352 static int contains_muldiv      PARAMS ((rtx));
353 static rtx try_combine          PARAMS ((rtx, rtx, rtx, int *));
354 static void undo_all            PARAMS ((void));
355 static void undo_commit         PARAMS ((void));
356 static rtx *find_split_point    PARAMS ((rtx *, rtx));
357 static rtx subst                PARAMS ((rtx, rtx, rtx, int, int));
358 static rtx combine_simplify_rtx PARAMS ((rtx, enum machine_mode, int, int));
359 static rtx simplify_if_then_else  PARAMS ((rtx));
360 static rtx simplify_set         PARAMS ((rtx));
361 static rtx simplify_logical     PARAMS ((rtx, int));
362 static rtx expand_compound_operation  PARAMS ((rtx));
363 static rtx expand_field_assignment  PARAMS ((rtx));
364 static rtx make_extraction      PARAMS ((enum machine_mode, rtx, HOST_WIDE_INT,
365                                          rtx, unsigned HOST_WIDE_INT, int,
366                                          int, int));
367 static rtx extract_left_shift   PARAMS ((rtx, int));
368 static rtx make_compound_operation  PARAMS ((rtx, enum rtx_code));
369 static int get_pos_from_mask    PARAMS ((unsigned HOST_WIDE_INT,
370                                          unsigned HOST_WIDE_INT *));
371 static rtx force_to_mode        PARAMS ((rtx, enum machine_mode,
372                                          unsigned HOST_WIDE_INT, rtx, int));
373 static rtx if_then_else_cond    PARAMS ((rtx, rtx *, rtx *));
374 static rtx known_cond           PARAMS ((rtx, enum rtx_code, rtx, rtx));
375 static int rtx_equal_for_field_assignment_p PARAMS ((rtx, rtx));
376 static rtx make_field_assignment  PARAMS ((rtx));
377 static rtx apply_distributive_law  PARAMS ((rtx));
378 static rtx simplify_and_const_int  PARAMS ((rtx, enum machine_mode, rtx,
379                                             unsigned HOST_WIDE_INT));
380 static unsigned HOST_WIDE_INT nonzero_bits  PARAMS ((rtx, enum machine_mode));
381 static unsigned int num_sign_bit_copies  PARAMS ((rtx, enum machine_mode));
382 static int merge_outer_ops      PARAMS ((enum rtx_code *, HOST_WIDE_INT *,
383                                          enum rtx_code, HOST_WIDE_INT,
384                                          enum machine_mode, int *));
385 static rtx simplify_shift_const PARAMS ((rtx, enum rtx_code, enum machine_mode,
386                                          rtx, int));
387 static int recog_for_combine    PARAMS ((rtx *, rtx, rtx *));
388 static rtx gen_lowpart_for_combine  PARAMS ((enum machine_mode, rtx));
389 static rtx gen_binary           PARAMS ((enum rtx_code, enum machine_mode,
390                                          rtx, rtx));
391 static enum rtx_code simplify_comparison  PARAMS ((enum rtx_code, rtx *, rtx *));
392 static void update_table_tick   PARAMS ((rtx));
393 static void record_value_for_reg  PARAMS ((rtx, rtx, rtx));
394 static void check_promoted_subreg PARAMS ((rtx, rtx));
395 static void record_dead_and_set_regs_1  PARAMS ((rtx, rtx, void *));
396 static void record_dead_and_set_regs  PARAMS ((rtx));
397 static int get_last_value_validate  PARAMS ((rtx *, rtx, int, int));
398 static rtx get_last_value       PARAMS ((rtx));
399 static int use_crosses_set_p    PARAMS ((rtx, int));
400 static void reg_dead_at_p_1     PARAMS ((rtx, rtx, void *));
401 static int reg_dead_at_p        PARAMS ((rtx, rtx));
402 static void move_deaths         PARAMS ((rtx, rtx, int, rtx, rtx *));
403 static int reg_bitfield_target_p  PARAMS ((rtx, rtx));
404 static void distribute_notes    PARAMS ((rtx, rtx, rtx, rtx, rtx, rtx));
405 static void distribute_links    PARAMS ((rtx));
406 static void mark_used_regs_combine PARAMS ((rtx));
407 static int insn_cuid            PARAMS ((rtx));
408 static void record_promoted_value PARAMS ((rtx, rtx));
409 static rtx reversed_comparison  PARAMS ((rtx, enum machine_mode, rtx, rtx));
410 static enum rtx_code combine_reversed_comparison_code PARAMS ((rtx));
411 \f
412 /* Substitute NEWVAL, an rtx expression, into INTO, a place in some
413    insn.  The substitution can be undone by undo_all.  If INTO is already
414    set to NEWVAL, do not record this change.  Because computing NEWVAL might
415    also call SUBST, we have to compute it before we put anything into
416    the undo table.  */
417
418 static void
419 do_SUBST (into, newval)
420      rtx *into, newval;
421 {
422   struct undo *buf;
423   rtx oldval = *into;
424
425   if (oldval == newval)
426     return;
427
428   if (undobuf.frees)
429     buf = undobuf.frees, undobuf.frees = buf->next;
430   else
431     buf = (struct undo *) xmalloc (sizeof (struct undo));
432
433   buf->is_int = 0;
434   buf->where.r = into;
435   buf->old_contents.r = oldval;
436   *into = newval;
437
438   buf->next = undobuf.undos, undobuf.undos = buf;
439 }
440
441 #define SUBST(INTO, NEWVAL)     do_SUBST(&(INTO), (NEWVAL))
442
443 /* Similar to SUBST, but NEWVAL is an int expression.  Note that substitution
444    for the value of a HOST_WIDE_INT value (including CONST_INT) is
445    not safe.  */
446
447 static void
448 do_SUBST_INT (into, newval)
449      unsigned int *into, newval;
450 {
451   struct undo *buf;
452   unsigned int oldval = *into;
453
454   if (oldval == newval)
455     return;
456
457   if (undobuf.frees)
458     buf = undobuf.frees, undobuf.frees = buf->next;
459   else
460     buf = (struct undo *) xmalloc (sizeof (struct undo));
461
462   buf->is_int = 1;
463   buf->where.i = into;
464   buf->old_contents.i = oldval;
465   *into = newval;
466
467   buf->next = undobuf.undos, undobuf.undos = buf;
468 }
469
470 #define SUBST_INT(INTO, NEWVAL)  do_SUBST_INT(&(INTO), (NEWVAL))
471 \f
472 /* Main entry point for combiner.  F is the first insn of the function.
473    NREGS is the first unused pseudo-reg number.
474
475    Return non-zero if the combiner has turned an indirect jump
476    instruction into a direct jump.  */
477 int
478 combine_instructions (f, nregs)
479      rtx f;
480      unsigned int nregs;
481 {
482   register rtx insn, next;
483 #ifdef HAVE_cc0
484   register rtx prev;
485 #endif
486   register int i;
487   register rtx links, nextlinks;
488
489   int new_direct_jump_p = 0;
490
491   combine_attempts = 0;
492   combine_merges = 0;
493   combine_extras = 0;
494   combine_successes = 0;
495
496   combine_max_regno = nregs;
497
498   reg_nonzero_bits = ((unsigned HOST_WIDE_INT *)
499                       xcalloc (nregs, sizeof (unsigned HOST_WIDE_INT)));
500   reg_sign_bit_copies
501     = (unsigned char *) xcalloc (nregs, sizeof (unsigned char));
502
503   reg_last_death = (rtx *) xmalloc (nregs * sizeof (rtx));
504   reg_last_set = (rtx *) xmalloc (nregs * sizeof (rtx));
505   reg_last_set_value = (rtx *) xmalloc (nregs * sizeof (rtx));
506   reg_last_set_table_tick = (int *) xmalloc (nregs * sizeof (int));
507   reg_last_set_label = (int *) xmalloc (nregs * sizeof (int));
508   reg_last_set_invalid = (char *) xmalloc (nregs * sizeof (char));
509   reg_last_set_mode
510     = (enum machine_mode *) xmalloc (nregs * sizeof (enum machine_mode));
511   reg_last_set_nonzero_bits
512     = (unsigned HOST_WIDE_INT *) xmalloc (nregs * sizeof (HOST_WIDE_INT));
513   reg_last_set_sign_bit_copies
514     = (char *) xmalloc (nregs * sizeof (char));
515
516   init_reg_last_arrays ();
517
518   init_recog_no_volatile ();
519
520   /* Compute maximum uid value so uid_cuid can be allocated.  */
521
522   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
523     if (INSN_UID (insn) > i)
524       i = INSN_UID (insn);
525
526   uid_cuid = (int *) xmalloc ((i + 1) * sizeof (int));
527   max_uid_cuid = i;
528
529   nonzero_bits_mode = mode_for_size (HOST_BITS_PER_WIDE_INT, MODE_INT, 0);
530
531   /* Don't use reg_nonzero_bits when computing it.  This can cause problems
532      when, for example, we have j <<= 1 in a loop.  */
533
534   nonzero_sign_valid = 0;
535
536   /* Compute the mapping from uids to cuids.
537      Cuids are numbers assigned to insns, like uids,
538      except that cuids increase monotonically through the code.
539
540      Scan all SETs and see if we can deduce anything about what
541      bits are known to be zero for some registers and how many copies
542      of the sign bit are known to exist for those registers.
543
544      Also set any known values so that we can use it while searching
545      for what bits are known to be set.  */
546
547   label_tick = 1;
548
549   /* We need to initialize it here, because record_dead_and_set_regs may call
550      get_last_value.  */
551   subst_prev_insn = NULL_RTX;
552
553   setup_incoming_promotions ();
554
555   refresh_blocks = sbitmap_alloc (n_basic_blocks);
556   sbitmap_zero (refresh_blocks);
557   need_refresh = 0;
558
559   for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
560     {
561       uid_cuid[INSN_UID (insn)] = ++i;
562       subst_low_cuid = i;
563       subst_insn = insn;
564
565       if (INSN_P (insn))
566         {
567           note_stores (PATTERN (insn), set_nonzero_bits_and_sign_copies,
568                        NULL);
569           record_dead_and_set_regs (insn);
570
571 #ifdef AUTO_INC_DEC
572           for (links = REG_NOTES (insn); links; links = XEXP (links, 1))
573             if (REG_NOTE_KIND (links) == REG_INC)
574               set_nonzero_bits_and_sign_copies (XEXP (links, 0), NULL_RTX,
575                                                 NULL);
576 #endif
577         }
578
579       if (GET_CODE (insn) == CODE_LABEL)
580         label_tick++;
581     }
582
583   nonzero_sign_valid = 1;
584
585   /* Now scan all the insns in forward order.  */
586
587   this_basic_block = -1;
588   label_tick = 1;
589   last_call_cuid = 0;
590   mem_last_set = 0;
591   init_reg_last_arrays ();
592   setup_incoming_promotions ();
593
594   for (insn = f; insn; insn = next ? next : NEXT_INSN (insn))
595     {
596       next = 0;
597
598       /* If INSN starts a new basic block, update our basic block number.  */
599       if (this_basic_block + 1 < n_basic_blocks
600           && BLOCK_HEAD (this_basic_block + 1) == insn)
601         this_basic_block++;
602
603       if (GET_CODE (insn) == CODE_LABEL)
604         label_tick++;
605
606       else if (INSN_P (insn))
607         {
608           /* See if we know about function return values before this
609              insn based upon SUBREG flags.  */
610           check_promoted_subreg (insn, PATTERN (insn));
611
612           /* Try this insn with each insn it links back to.  */
613
614           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
615             if ((next = try_combine (insn, XEXP (links, 0),
616                                      NULL_RTX, &new_direct_jump_p)) != 0)
617               goto retry;
618
619           /* Try each sequence of three linked insns ending with this one.  */
620
621           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
622             {
623               rtx link = XEXP (links, 0);
624
625               /* If the linked insn has been replaced by a note, then there
626                  is no point in persuing this chain any further.  */
627               if (GET_CODE (link) == NOTE)
628                 break;
629
630               for (nextlinks = LOG_LINKS (link);
631                    nextlinks;
632                    nextlinks = XEXP (nextlinks, 1))
633                 if ((next = try_combine (insn, XEXP (links, 0),
634                                          XEXP (nextlinks, 0),
635                                          &new_direct_jump_p)) != 0)
636                   goto retry;
637             }
638
639 #ifdef HAVE_cc0
640           /* Try to combine a jump insn that uses CC0
641              with a preceding insn that sets CC0, and maybe with its
642              logical predecessor as well.
643              This is how we make decrement-and-branch insns.
644              We need this special code because data flow connections
645              via CC0 do not get entered in LOG_LINKS.  */
646
647           if (GET_CODE (insn) == JUMP_INSN
648               && (prev = prev_nonnote_insn (insn)) != 0
649               && GET_CODE (prev) == INSN
650               && sets_cc0_p (PATTERN (prev)))
651             {
652               if ((next = try_combine (insn, prev,
653                                        NULL_RTX, &new_direct_jump_p)) != 0)
654                 goto retry;
655
656               for (nextlinks = LOG_LINKS (prev); nextlinks;
657                    nextlinks = XEXP (nextlinks, 1))
658                 if ((next = try_combine (insn, prev,
659                                          XEXP (nextlinks, 0),
660                                          &new_direct_jump_p)) != 0)
661                   goto retry;
662             }
663
664           /* Do the same for an insn that explicitly references CC0.  */
665           if (GET_CODE (insn) == INSN
666               && (prev = prev_nonnote_insn (insn)) != 0
667               && GET_CODE (prev) == INSN
668               && sets_cc0_p (PATTERN (prev))
669               && GET_CODE (PATTERN (insn)) == SET
670               && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (insn))))
671             {
672               if ((next = try_combine (insn, prev,
673                                        NULL_RTX, &new_direct_jump_p)) != 0)
674                 goto retry;
675
676               for (nextlinks = LOG_LINKS (prev); nextlinks;
677                    nextlinks = XEXP (nextlinks, 1))
678                 if ((next = try_combine (insn, prev,
679                                          XEXP (nextlinks, 0),
680                                          &new_direct_jump_p)) != 0)
681                   goto retry;
682             }
683
684           /* Finally, see if any of the insns that this insn links to
685              explicitly references CC0.  If so, try this insn, that insn,
686              and its predecessor if it sets CC0.  */
687           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
688             if (GET_CODE (XEXP (links, 0)) == INSN
689                 && GET_CODE (PATTERN (XEXP (links, 0))) == SET
690                 && reg_mentioned_p (cc0_rtx, SET_SRC (PATTERN (XEXP (links, 0))))
691                 && (prev = prev_nonnote_insn (XEXP (links, 0))) != 0
692                 && GET_CODE (prev) == INSN
693                 && sets_cc0_p (PATTERN (prev))
694                 && (next = try_combine (insn, XEXP (links, 0),
695                                         prev, &new_direct_jump_p)) != 0)
696               goto retry;
697 #endif
698
699           /* Try combining an insn with two different insns whose results it
700              uses.  */
701           for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
702             for (nextlinks = XEXP (links, 1); nextlinks;
703                  nextlinks = XEXP (nextlinks, 1))
704               if ((next = try_combine (insn, XEXP (links, 0),
705                                        XEXP (nextlinks, 0),
706                                        &new_direct_jump_p)) != 0)
707                 goto retry;
708
709           if (GET_CODE (insn) != NOTE)
710             record_dead_and_set_regs (insn);
711
712         retry:
713           ;
714         }
715     }
716
717   delete_noop_moves (f);
718
719   if (need_refresh)
720     {
721       compute_bb_for_insn (get_max_uid ());
722       update_life_info (refresh_blocks, UPDATE_LIFE_GLOBAL_RM_NOTES,
723                         PROP_DEATH_NOTES);
724     }
725
726   /* Clean up.  */
727   sbitmap_free (refresh_blocks);
728   free (reg_nonzero_bits);
729   free (reg_sign_bit_copies);
730   free (reg_last_death);
731   free (reg_last_set);
732   free (reg_last_set_value);
733   free (reg_last_set_table_tick);
734   free (reg_last_set_label);
735   free (reg_last_set_invalid);
736   free (reg_last_set_mode);
737   free (reg_last_set_nonzero_bits);
738   free (reg_last_set_sign_bit_copies);
739   free (uid_cuid);
740
741   {
742     struct undo *undo, *next;
743     for (undo = undobuf.frees; undo; undo = next)
744       {
745         next = undo->next;
746         free (undo);
747       }
748     undobuf.frees = 0;
749   }
750
751   total_attempts += combine_attempts;
752   total_merges += combine_merges;
753   total_extras += combine_extras;
754   total_successes += combine_successes;
755
756   nonzero_sign_valid = 0;
757
758   /* Make recognizer allow volatile MEMs again.  */
759   init_recog ();
760
761   return new_direct_jump_p;
762 }
763
764 /* Wipe the reg_last_xxx arrays in preparation for another pass.  */
765
766 static void
767 init_reg_last_arrays ()
768 {
769   unsigned int nregs = combine_max_regno;
770
771   memset ((char *) reg_last_death, 0, nregs * sizeof (rtx));
772   memset ((char *) reg_last_set, 0, nregs * sizeof (rtx));
773   memset ((char *) reg_last_set_value, 0, nregs * sizeof (rtx));
774   memset ((char *) reg_last_set_table_tick, 0, nregs * sizeof (int));
775   memset ((char *) reg_last_set_label, 0, nregs * sizeof (int));
776   memset (reg_last_set_invalid, 0, nregs * sizeof (char));
777   memset ((char *) reg_last_set_mode, 0, nregs * sizeof (enum machine_mode));
778   memset ((char *) reg_last_set_nonzero_bits, 0, nregs * sizeof (HOST_WIDE_INT));
779   memset (reg_last_set_sign_bit_copies, 0, nregs * sizeof (char));
780 }
781 \f
782 /* Set up any promoted values for incoming argument registers.  */
783
784 static void
785 setup_incoming_promotions ()
786 {
787 #ifdef PROMOTE_FUNCTION_ARGS
788   unsigned int regno;
789   rtx reg;
790   enum machine_mode mode;
791   int unsignedp;
792   rtx first = get_insns ();
793
794 #ifndef OUTGOING_REGNO
795 #define OUTGOING_REGNO(N) N
796 #endif
797   for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
798     /* Check whether this register can hold an incoming pointer
799        argument.  FUNCTION_ARG_REGNO_P tests outgoing register
800        numbers, so translate if necessary due to register windows.  */
801     if (FUNCTION_ARG_REGNO_P (OUTGOING_REGNO (regno))
802         && (reg = promoted_input_arg (regno, &mode, &unsignedp)) != 0)
803       {
804         record_value_for_reg
805           (reg, first, gen_rtx_fmt_e ((unsignedp ? ZERO_EXTEND
806                                        : SIGN_EXTEND),
807                                       GET_MODE (reg),
808                                       gen_rtx_CLOBBER (mode, const0_rtx)));
809       }
810 #endif
811 }
812 \f
813 /* Called via note_stores.  If X is a pseudo that is narrower than
814    HOST_BITS_PER_WIDE_INT and is being set, record what bits are known zero.
815
816    If we are setting only a portion of X and we can't figure out what
817    portion, assume all bits will be used since we don't know what will
818    be happening.
819
820    Similarly, set how many bits of X are known to be copies of the sign bit
821    at all locations in the function.  This is the smallest number implied
822    by any set of X.  */
823
824 static void
825 set_nonzero_bits_and_sign_copies (x, set, data)
826      rtx x;
827      rtx set;
828      void *data ATTRIBUTE_UNUSED;
829 {
830   unsigned int num;
831
832   if (GET_CODE (x) == REG
833       && REGNO (x) >= FIRST_PSEUDO_REGISTER
834       /* If this register is undefined at the start of the file, we can't
835          say what its contents were.  */
836       && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start, REGNO (x))
837       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
838     {
839       if (set == 0 || GET_CODE (set) == CLOBBER)
840         {
841           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
842           reg_sign_bit_copies[REGNO (x)] = 1;
843           return;
844         }
845
846       /* If this is a complex assignment, see if we can convert it into a
847          simple assignment.  */
848       set = expand_field_assignment (set);
849
850       /* If this is a simple assignment, or we have a paradoxical SUBREG,
851          set what we know about X.  */
852
853       if (SET_DEST (set) == x
854           || (GET_CODE (SET_DEST (set)) == SUBREG
855               && (GET_MODE_SIZE (GET_MODE (SET_DEST (set)))
856                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (set)))))
857               && SUBREG_REG (SET_DEST (set)) == x))
858         {
859           rtx src = SET_SRC (set);
860
861 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
862           /* If X is narrower than a word and SRC is a non-negative
863              constant that would appear negative in the mode of X,
864              sign-extend it for use in reg_nonzero_bits because some
865              machines (maybe most) will actually do the sign-extension
866              and this is the conservative approach.
867
868              ??? For 2.5, try to tighten up the MD files in this regard
869              instead of this kludge.  */
870
871           if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
872               && GET_CODE (src) == CONST_INT
873               && INTVAL (src) > 0
874               && 0 != (INTVAL (src)
875                        & ((HOST_WIDE_INT) 1
876                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
877             src = GEN_INT (INTVAL (src)
878                            | ((HOST_WIDE_INT) (-1)
879                               << GET_MODE_BITSIZE (GET_MODE (x))));
880 #endif
881
882           reg_nonzero_bits[REGNO (x)]
883             |= nonzero_bits (src, nonzero_bits_mode);
884           num = num_sign_bit_copies (SET_SRC (set), GET_MODE (x));
885           if (reg_sign_bit_copies[REGNO (x)] == 0
886               || reg_sign_bit_copies[REGNO (x)] > num)
887             reg_sign_bit_copies[REGNO (x)] = num;
888         }
889       else
890         {
891           reg_nonzero_bits[REGNO (x)] = GET_MODE_MASK (GET_MODE (x));
892           reg_sign_bit_copies[REGNO (x)] = 1;
893         }
894     }
895 }
896 \f
897 /* See if INSN can be combined into I3.  PRED and SUCC are optionally
898    insns that were previously combined into I3 or that will be combined
899    into the merger of INSN and I3.
900
901    Return 0 if the combination is not allowed for any reason.
902
903    If the combination is allowed, *PDEST will be set to the single
904    destination of INSN and *PSRC to the single source, and this function
905    will return 1.  */
906
907 static int
908 can_combine_p (insn, i3, pred, succ, pdest, psrc)
909      rtx insn;
910      rtx i3;
911      rtx pred ATTRIBUTE_UNUSED;
912      rtx succ;
913      rtx *pdest, *psrc;
914 {
915   int i;
916   rtx set = 0, src, dest;
917   rtx p;
918 #ifdef AUTO_INC_DEC
919   rtx link;
920 #endif
921   int all_adjacent = (succ ? (next_active_insn (insn) == succ
922                               && next_active_insn (succ) == i3)
923                       : next_active_insn (insn) == i3);
924
925   /* Can combine only if previous insn is a SET of a REG, a SUBREG or CC0.
926      or a PARALLEL consisting of such a SET and CLOBBERs.
927
928      If INSN has CLOBBER parallel parts, ignore them for our processing.
929      By definition, these happen during the execution of the insn.  When it
930      is merged with another insn, all bets are off.  If they are, in fact,
931      needed and aren't also supplied in I3, they may be added by
932      recog_for_combine.  Otherwise, it won't match.
933
934      We can also ignore a SET whose SET_DEST is mentioned in a REG_UNUSED
935      note.
936
937      Get the source and destination of INSN.  If more than one, can't
938      combine.  */
939
940   if (GET_CODE (PATTERN (insn)) == SET)
941     set = PATTERN (insn);
942   else if (GET_CODE (PATTERN (insn)) == PARALLEL
943            && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == SET)
944     {
945       for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++)
946         {
947           rtx elt = XVECEXP (PATTERN (insn), 0, i);
948
949           switch (GET_CODE (elt))
950             {
951             /* This is important to combine floating point insns
952                for the SH4 port.  */
953             case USE:
954               /* Combining an isolated USE doesn't make sense.
955                  We depend here on combinable_i3_pat to reject them.  */
956               /* The code below this loop only verifies that the inputs of
957                  the SET in INSN do not change.  We call reg_set_between_p
958                  to verify that the REG in the USE does not change betweeen
959                  I3 and INSN.
960                  If the USE in INSN was for a pseudo register, the matching
961                  insn pattern will likely match any register; combining this
962                  with any other USE would only be safe if we knew that the
963                  used registers have identical values, or if there was
964                  something to tell them apart, e.g. different modes.  For
965                  now, we forgo such compilcated tests and simply disallow
966                  combining of USES of pseudo registers with any other USE.  */
967               if (GET_CODE (XEXP (elt, 0)) == REG
968                   && GET_CODE (PATTERN (i3)) == PARALLEL)
969                 {
970                   rtx i3pat = PATTERN (i3);
971                   int i = XVECLEN (i3pat, 0) - 1;
972                   unsigned int regno = REGNO (XEXP (elt, 0));
973
974                   do
975                     {
976                       rtx i3elt = XVECEXP (i3pat, 0, i);
977
978                       if (GET_CODE (i3elt) == USE
979                           && GET_CODE (XEXP (i3elt, 0)) == REG
980                           && (REGNO (XEXP (i3elt, 0)) == regno
981                               ? reg_set_between_p (XEXP (elt, 0),
982                                                    PREV_INSN (insn), i3)
983                               : regno >= FIRST_PSEUDO_REGISTER))
984                         return 0;
985                     }
986                   while (--i >= 0);
987                 }
988               break;
989
990               /* We can ignore CLOBBERs.  */
991             case CLOBBER:
992               break;
993
994             case SET:
995               /* Ignore SETs whose result isn't used but not those that
996                  have side-effects.  */
997               if (find_reg_note (insn, REG_UNUSED, SET_DEST (elt))
998                   && ! side_effects_p (elt))
999                 break;
1000
1001               /* If we have already found a SET, this is a second one and
1002                  so we cannot combine with this insn.  */
1003               if (set)
1004                 return 0;
1005
1006               set = elt;
1007               break;
1008
1009             default:
1010               /* Anything else means we can't combine.  */
1011               return 0;
1012             }
1013         }
1014
1015       if (set == 0
1016           /* If SET_SRC is an ASM_OPERANDS we can't throw away these CLOBBERs,
1017              so don't do anything with it.  */
1018           || GET_CODE (SET_SRC (set)) == ASM_OPERANDS)
1019         return 0;
1020     }
1021   else
1022     return 0;
1023
1024   if (set == 0)
1025     return 0;
1026
1027   set = expand_field_assignment (set);
1028   src = SET_SRC (set), dest = SET_DEST (set);
1029
1030   /* Don't eliminate a store in the stack pointer.  */
1031   if (dest == stack_pointer_rtx
1032       /* If we couldn't eliminate a field assignment, we can't combine.  */
1033       || GET_CODE (dest) == ZERO_EXTRACT || GET_CODE (dest) == STRICT_LOW_PART
1034       /* Don't combine with an insn that sets a register to itself if it has
1035          a REG_EQUAL note.  This may be part of a REG_NO_CONFLICT sequence.  */
1036       || (rtx_equal_p (src, dest) && find_reg_note (insn, REG_EQUAL, NULL_RTX))
1037       /* Can't merge an ASM_OPERANDS.  */
1038       || GET_CODE (src) == ASM_OPERANDS
1039       /* Can't merge a function call.  */
1040       || GET_CODE (src) == CALL
1041       /* Don't eliminate a function call argument.  */
1042       || (GET_CODE (i3) == CALL_INSN
1043           && (find_reg_fusage (i3, USE, dest)
1044               || (GET_CODE (dest) == REG
1045                   && REGNO (dest) < FIRST_PSEUDO_REGISTER
1046                   && global_regs[REGNO (dest)])))
1047       /* Don't substitute into an incremented register.  */
1048       || FIND_REG_INC_NOTE (i3, dest)
1049       || (succ && FIND_REG_INC_NOTE (succ, dest))
1050 #if 0
1051       /* Don't combine the end of a libcall into anything.  */
1052       /* ??? This gives worse code, and appears to be unnecessary, since no
1053          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  Local-alloc does
1054          use REG_RETVAL notes for noconflict blocks, but other code here
1055          makes sure that those insns don't disappear.  */
1056       || find_reg_note (insn, REG_RETVAL, NULL_RTX)
1057 #endif
1058       /* Make sure that DEST is not used after SUCC but before I3.  */
1059       || (succ && ! all_adjacent
1060           && reg_used_between_p (dest, succ, i3))
1061       /* Make sure that the value that is to be substituted for the register
1062          does not use any registers whose values alter in between.  However,
1063          If the insns are adjacent, a use can't cross a set even though we
1064          think it might (this can happen for a sequence of insns each setting
1065          the same destination; reg_last_set of that register might point to
1066          a NOTE).  If INSN has a REG_EQUIV note, the register is always
1067          equivalent to the memory so the substitution is valid even if there
1068          are intervening stores.  Also, don't move a volatile asm or
1069          UNSPEC_VOLATILE across any other insns.  */
1070       || (! all_adjacent
1071           && (((GET_CODE (src) != MEM
1072                 || ! find_reg_note (insn, REG_EQUIV, src))
1073                && use_crosses_set_p (src, INSN_CUID (insn)))
1074               || (GET_CODE (src) == ASM_OPERANDS && MEM_VOLATILE_P (src))
1075               || GET_CODE (src) == UNSPEC_VOLATILE))
1076       /* If there is a REG_NO_CONFLICT note for DEST in I3 or SUCC, we get
1077          better register allocation by not doing the combine.  */
1078       || find_reg_note (i3, REG_NO_CONFLICT, dest)
1079       || (succ && find_reg_note (succ, REG_NO_CONFLICT, dest))
1080       /* Don't combine across a CALL_INSN, because that would possibly
1081          change whether the life span of some REGs crosses calls or not,
1082          and it is a pain to update that information.
1083          Exception: if source is a constant, moving it later can't hurt.
1084          Accept that special case, because it helps -fforce-addr a lot.  */
1085       || (INSN_CUID (insn) < last_call_cuid && ! CONSTANT_P (src)))
1086     return 0;
1087
1088   /* DEST must either be a REG or CC0.  */
1089   if (GET_CODE (dest) == REG)
1090     {
1091       /* If register alignment is being enforced for multi-word items in all
1092          cases except for parameters, it is possible to have a register copy
1093          insn referencing a hard register that is not allowed to contain the
1094          mode being copied and which would not be valid as an operand of most
1095          insns.  Eliminate this problem by not combining with such an insn.
1096
1097          Also, on some machines we don't want to extend the life of a hard
1098          register.  */
1099
1100       if (GET_CODE (src) == REG
1101           && ((REGNO (dest) < FIRST_PSEUDO_REGISTER
1102                && ! HARD_REGNO_MODE_OK (REGNO (dest), GET_MODE (dest)))
1103               /* Don't extend the life of a hard register unless it is
1104                  user variable (if we have few registers) or it can't
1105                  fit into the desired register (meaning something special
1106                  is going on).
1107                  Also avoid substituting a return register into I3, because
1108                  reload can't handle a conflict with constraints of other
1109                  inputs.  */
1110               || (REGNO (src) < FIRST_PSEUDO_REGISTER
1111                   && ! HARD_REGNO_MODE_OK (REGNO (src), GET_MODE (src)))))
1112         return 0;
1113     }
1114   else if (GET_CODE (dest) != CC0)
1115     return 0;
1116
1117   /* Don't substitute for a register intended as a clobberable operand.
1118      Similarly, don't substitute an expression containing a register that
1119      will be clobbered in I3.  */
1120   if (GET_CODE (PATTERN (i3)) == PARALLEL)
1121     for (i = XVECLEN (PATTERN (i3), 0) - 1; i >= 0; i--)
1122       if (GET_CODE (XVECEXP (PATTERN (i3), 0, i)) == CLOBBER
1123           && (reg_overlap_mentioned_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0),
1124                                        src)
1125               || rtx_equal_p (XEXP (XVECEXP (PATTERN (i3), 0, i), 0), dest)))
1126         return 0;
1127
1128   /* If INSN contains anything volatile, or is an `asm' (whether volatile
1129      or not), reject, unless nothing volatile comes between it and I3 */
1130
1131   if (GET_CODE (src) == ASM_OPERANDS || volatile_refs_p (src))
1132     {
1133       /* Make sure succ doesn't contain a volatile reference.  */
1134       if (succ != 0 && volatile_refs_p (PATTERN (succ)))
1135         return 0;
1136
1137       for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1138         if (INSN_P (p) && p != succ && volatile_refs_p (PATTERN (p)))
1139         return 0;
1140     }
1141
1142   /* If INSN is an asm, and DEST is a hard register, reject, since it has
1143      to be an explicit register variable, and was chosen for a reason.  */
1144
1145   if (GET_CODE (src) == ASM_OPERANDS
1146       && GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER)
1147     return 0;
1148
1149   /* If there are any volatile insns between INSN and I3, reject, because
1150      they might affect machine state.  */
1151
1152   for (p = NEXT_INSN (insn); p != i3; p = NEXT_INSN (p))
1153     if (INSN_P (p) && p != succ && volatile_insn_p (PATTERN (p)))
1154       return 0;
1155
1156   /* If INSN or I2 contains an autoincrement or autodecrement,
1157      make sure that register is not used between there and I3,
1158      and not already used in I3 either.
1159      Also insist that I3 not be a jump; if it were one
1160      and the incremented register were spilled, we would lose.  */
1161
1162 #ifdef AUTO_INC_DEC
1163   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
1164     if (REG_NOTE_KIND (link) == REG_INC
1165         && (GET_CODE (i3) == JUMP_INSN
1166             || reg_used_between_p (XEXP (link, 0), insn, i3)
1167             || reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i3))))
1168       return 0;
1169 #endif
1170
1171 #ifdef HAVE_cc0
1172   /* Don't combine an insn that follows a CC0-setting insn.
1173      An insn that uses CC0 must not be separated from the one that sets it.
1174      We do, however, allow I2 to follow a CC0-setting insn if that insn
1175      is passed as I1; in that case it will be deleted also.
1176      We also allow combining in this case if all the insns are adjacent
1177      because that would leave the two CC0 insns adjacent as well.
1178      It would be more logical to test whether CC0 occurs inside I1 or I2,
1179      but that would be much slower, and this ought to be equivalent.  */
1180
1181   p = prev_nonnote_insn (insn);
1182   if (p && p != pred && GET_CODE (p) == INSN && sets_cc0_p (PATTERN (p))
1183       && ! all_adjacent)
1184     return 0;
1185 #endif
1186
1187   /* If we get here, we have passed all the tests and the combination is
1188      to be allowed.  */
1189
1190   *pdest = dest;
1191   *psrc = src;
1192
1193   return 1;
1194 }
1195 \f
1196 /* Check if PAT is an insn - or a part of it - used to set up an
1197    argument for a function in a hard register.  */
1198
1199 static int
1200 sets_function_arg_p (pat)
1201      rtx pat;
1202 {
1203   int i;
1204   rtx inner_dest;
1205
1206   switch (GET_CODE (pat))
1207     {
1208     case INSN:
1209       return sets_function_arg_p (PATTERN (pat));
1210
1211     case PARALLEL:
1212       for (i = XVECLEN (pat, 0); --i >= 0;)
1213         if (sets_function_arg_p (XVECEXP (pat, 0, i)))
1214           return 1;
1215
1216       break;
1217
1218     case SET:
1219       inner_dest = SET_DEST (pat);
1220       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1221              || GET_CODE (inner_dest) == SUBREG
1222              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1223         inner_dest = XEXP (inner_dest, 0);
1224
1225       return (GET_CODE (inner_dest) == REG
1226               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1227               && FUNCTION_ARG_REGNO_P (REGNO (inner_dest)));
1228
1229     default:
1230       break;
1231     }
1232
1233   return 0;
1234 }
1235
1236 /* LOC is the location within I3 that contains its pattern or the component
1237    of a PARALLEL of the pattern.  We validate that it is valid for combining.
1238
1239    One problem is if I3 modifies its output, as opposed to replacing it
1240    entirely, we can't allow the output to contain I2DEST or I1DEST as doing
1241    so would produce an insn that is not equivalent to the original insns.
1242
1243    Consider:
1244
1245          (set (reg:DI 101) (reg:DI 100))
1246          (set (subreg:SI (reg:DI 101) 0) <foo>)
1247
1248    This is NOT equivalent to:
1249
1250          (parallel [(set (subreg:SI (reg:DI 100) 0) <foo>)
1251                     (set (reg:DI 101) (reg:DI 100))])
1252
1253    Not only does this modify 100 (in which case it might still be valid
1254    if 100 were dead in I2), it sets 101 to the ORIGINAL value of 100.
1255
1256    We can also run into a problem if I2 sets a register that I1
1257    uses and I1 gets directly substituted into I3 (not via I2).  In that
1258    case, we would be getting the wrong value of I2DEST into I3, so we
1259    must reject the combination.  This case occurs when I2 and I1 both
1260    feed into I3, rather than when I1 feeds into I2, which feeds into I3.
1261    If I1_NOT_IN_SRC is non-zero, it means that finding I1 in the source
1262    of a SET must prevent combination from occurring.
1263
1264    Before doing the above check, we first try to expand a field assignment
1265    into a set of logical operations.
1266
1267    If PI3_DEST_KILLED is non-zero, it is a pointer to a location in which
1268    we place a register that is both set and used within I3.  If more than one
1269    such register is detected, we fail.
1270
1271    Return 1 if the combination is valid, zero otherwise.  */
1272
1273 static int
1274 combinable_i3pat (i3, loc, i2dest, i1dest, i1_not_in_src, pi3dest_killed)
1275      rtx i3;
1276      rtx *loc;
1277      rtx i2dest;
1278      rtx i1dest;
1279      int i1_not_in_src;
1280      rtx *pi3dest_killed;
1281 {
1282   rtx x = *loc;
1283
1284   if (GET_CODE (x) == SET)
1285     {
1286       rtx set = expand_field_assignment (x);
1287       rtx dest = SET_DEST (set);
1288       rtx src = SET_SRC (set);
1289       rtx inner_dest = dest;
1290
1291 #if 0
1292       rtx inner_src = src;
1293 #endif
1294
1295       SUBST (*loc, set);
1296
1297       while (GET_CODE (inner_dest) == STRICT_LOW_PART
1298              || GET_CODE (inner_dest) == SUBREG
1299              || GET_CODE (inner_dest) == ZERO_EXTRACT)
1300         inner_dest = XEXP (inner_dest, 0);
1301
1302   /* We probably don't need this any more now that LIMIT_RELOAD_CLASS
1303      was added.  */
1304 #if 0
1305       while (GET_CODE (inner_src) == STRICT_LOW_PART
1306              || GET_CODE (inner_src) == SUBREG
1307              || GET_CODE (inner_src) == ZERO_EXTRACT)
1308         inner_src = XEXP (inner_src, 0);
1309
1310       /* If it is better that two different modes keep two different pseudos,
1311          avoid combining them.  This avoids producing the following pattern
1312          on a 386:
1313           (set (subreg:SI (reg/v:QI 21) 0)
1314                (lshiftrt:SI (reg/v:SI 20)
1315                    (const_int 24)))
1316          If that were made, reload could not handle the pair of
1317          reg 20/21, since it would try to get any GENERAL_REGS
1318          but some of them don't handle QImode.  */
1319
1320       if (rtx_equal_p (inner_src, i2dest)
1321           && GET_CODE (inner_dest) == REG
1322           && ! MODES_TIEABLE_P (GET_MODE (i2dest), GET_MODE (inner_dest)))
1323         return 0;
1324 #endif
1325
1326       /* Check for the case where I3 modifies its output, as
1327          discussed above.  */
1328       if ((inner_dest != dest
1329            && (reg_overlap_mentioned_p (i2dest, inner_dest)
1330                || (i1dest && reg_overlap_mentioned_p (i1dest, inner_dest))))
1331
1332           /* This is the same test done in can_combine_p except we can't test
1333              all_adjacent; we don't have to, since this instruction will stay
1334              in place, thus we are not considering increasing the lifetime of
1335              INNER_DEST.
1336
1337              Also, if this insn sets a function argument, combining it with
1338              something that might need a spill could clobber a previous
1339              function argument; the all_adjacent test in can_combine_p also
1340              checks this; here, we do a more specific test for this case.  */
1341
1342           || (GET_CODE (inner_dest) == REG
1343               && REGNO (inner_dest) < FIRST_PSEUDO_REGISTER
1344               && (! HARD_REGNO_MODE_OK (REGNO (inner_dest),
1345                                         GET_MODE (inner_dest))))
1346           || (i1_not_in_src && reg_overlap_mentioned_p (i1dest, src)))
1347         return 0;
1348
1349       /* If DEST is used in I3, it is being killed in this insn,
1350          so record that for later.
1351          Never add REG_DEAD notes for the FRAME_POINTER_REGNUM or the
1352          STACK_POINTER_REGNUM, since these are always considered to be
1353          live.  Similarly for ARG_POINTER_REGNUM if it is fixed.  */
1354       if (pi3dest_killed && GET_CODE (dest) == REG
1355           && reg_referenced_p (dest, PATTERN (i3))
1356           && REGNO (dest) != FRAME_POINTER_REGNUM
1357 #if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
1358           && REGNO (dest) != HARD_FRAME_POINTER_REGNUM
1359 #endif
1360 #if ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
1361           && (REGNO (dest) != ARG_POINTER_REGNUM
1362               || ! fixed_regs [REGNO (dest)])
1363 #endif
1364           && REGNO (dest) != STACK_POINTER_REGNUM)
1365         {
1366           if (*pi3dest_killed)
1367             return 0;
1368
1369           *pi3dest_killed = dest;
1370         }
1371     }
1372
1373   else if (GET_CODE (x) == PARALLEL)
1374     {
1375       int i;
1376
1377       for (i = 0; i < XVECLEN (x, 0); i++)
1378         if (! combinable_i3pat (i3, &XVECEXP (x, 0, i), i2dest, i1dest,
1379                                 i1_not_in_src, pi3dest_killed))
1380           return 0;
1381     }
1382
1383   return 1;
1384 }
1385 \f
1386 /* Return 1 if X is an arithmetic expression that contains a multiplication
1387    and division.  We don't count multiplications by powers of two here.  */
1388
1389 static int
1390 contains_muldiv (x)
1391      rtx x;
1392 {
1393   switch (GET_CODE (x))
1394     {
1395     case MOD:  case DIV:  case UMOD:  case UDIV:
1396       return 1;
1397
1398     case MULT:
1399       return ! (GET_CODE (XEXP (x, 1)) == CONST_INT
1400                 && exact_log2 (INTVAL (XEXP (x, 1))) >= 0);
1401     default:
1402       switch (GET_RTX_CLASS (GET_CODE (x)))
1403         {
1404         case 'c':  case '<':  case '2':
1405           return contains_muldiv (XEXP (x, 0))
1406             || contains_muldiv (XEXP (x, 1));
1407
1408         case '1':
1409           return contains_muldiv (XEXP (x, 0));
1410
1411         default:
1412           return 0;
1413         }
1414     }
1415 }
1416 \f
1417 /* Determine whether INSN can be used in a combination.  Return nonzero if
1418    not.  This is used in try_combine to detect early some cases where we
1419    can't perform combinations.  */
1420
1421 static int
1422 cant_combine_insn_p (insn)
1423      rtx insn;
1424 {
1425   rtx set;
1426   rtx src, dest;
1427
1428   /* If this isn't really an insn, we can't do anything.
1429      This can occur when flow deletes an insn that it has merged into an
1430      auto-increment address.  */
1431   if (! INSN_P (insn))
1432     return 1;
1433
1434   /* Never combine loads and stores involving hard regs.  The register
1435      allocator can usually handle such reg-reg moves by tying.  If we allow
1436      the combiner to make substitutions of hard regs, we risk aborting in
1437      reload on machines that have SMALL_REGISTER_CLASSES.
1438      As an exception, we allow combinations involving fixed regs; these are
1439      not available to the register allocator so there's no risk involved.  */
1440
1441   set = single_set (insn);
1442   if (! set)
1443     return 0;
1444   src = SET_SRC (set);
1445   dest = SET_DEST (set);
1446   if (GET_CODE (src) == SUBREG)
1447     src = SUBREG_REG (src);
1448   if (GET_CODE (dest) == SUBREG)
1449     dest = SUBREG_REG (dest);
1450   if (REG_P (src) && REG_P (dest)
1451       && ((REGNO (src) < FIRST_PSEUDO_REGISTER
1452            && ! fixed_regs[REGNO (src)])
1453           || (REGNO (dest) < FIRST_PSEUDO_REGISTER
1454               && ! fixed_regs[REGNO (dest)])))
1455     return 1;
1456
1457   return 0;
1458 }
1459
1460 /* Try to combine the insns I1 and I2 into I3.
1461    Here I1 and I2 appear earlier than I3.
1462    I1 can be zero; then we combine just I2 into I3.
1463
1464    If we are combining three insns and the resulting insn is not recognized,
1465    try splitting it into two insns.  If that happens, I2 and I3 are retained
1466    and I1 is pseudo-deleted by turning it into a NOTE.  Otherwise, I1 and I2
1467    are pseudo-deleted.
1468
1469    Return 0 if the combination does not work.  Then nothing is changed.
1470    If we did the combination, return the insn at which combine should
1471    resume scanning.
1472
1473    Set NEW_DIRECT_JUMP_P to a non-zero value if try_combine creates a
1474    new direct jump instruction.  */
1475
1476 static rtx
1477 try_combine (i3, i2, i1, new_direct_jump_p)
1478      register rtx i3, i2, i1;
1479      register int *new_direct_jump_p;
1480 {
1481   /* New patterns for I3 and I2, respectively.  */
1482   rtx newpat, newi2pat = 0;
1483   /* Indicates need to preserve SET in I1 or I2 in I3 if it is not dead.  */
1484   int added_sets_1, added_sets_2;
1485   /* Total number of SETs to put into I3.  */
1486   int total_sets;
1487   /* Nonzero is I2's body now appears in I3.  */
1488   int i2_is_used;
1489   /* INSN_CODEs for new I3, new I2, and user of condition code.  */
1490   int insn_code_number, i2_code_number = 0, other_code_number = 0;
1491   /* Contains I3 if the destination of I3 is used in its source, which means
1492      that the old life of I3 is being killed.  If that usage is placed into
1493      I2 and not in I3, a REG_DEAD note must be made.  */
1494   rtx i3dest_killed = 0;
1495   /* SET_DEST and SET_SRC of I2 and I1.  */
1496   rtx i2dest, i2src, i1dest = 0, i1src = 0;
1497   /* PATTERN (I2), or a copy of it in certain cases.  */
1498   rtx i2pat;
1499   /* Indicates if I2DEST or I1DEST is in I2SRC or I1_SRC.  */
1500   int i2dest_in_i2src = 0, i1dest_in_i1src = 0, i2dest_in_i1src = 0;
1501   int i1_feeds_i3 = 0;
1502   /* Notes that must be added to REG_NOTES in I3 and I2.  */
1503   rtx new_i3_notes, new_i2_notes;
1504   /* Notes that we substituted I3 into I2 instead of the normal case.  */
1505   int i3_subst_into_i2 = 0;
1506   /* Notes that I1, I2 or I3 is a MULT operation.  */
1507   int have_mult = 0;
1508
1509   int maxreg;
1510   rtx temp;
1511   register rtx link;
1512   int i;
1513
1514   /* Exit early if one of the insns involved can't be used for
1515      combinations.  */
1516   if (cant_combine_insn_p (i3)
1517       || cant_combine_insn_p (i2)
1518       || (i1 && cant_combine_insn_p (i1))
1519       /* We also can't do anything if I3 has a
1520          REG_LIBCALL note since we don't want to disrupt the contiguity of a
1521          libcall.  */
1522 #if 0
1523       /* ??? This gives worse code, and appears to be unnecessary, since no
1524          pass after flow uses REG_LIBCALL/REG_RETVAL notes.  */
1525       || find_reg_note (i3, REG_LIBCALL, NULL_RTX)
1526 #endif
1527       )
1528     return 0;
1529
1530   combine_attempts++;
1531   undobuf.other_insn = 0;
1532
1533   /* Reset the hard register usage information.  */
1534   CLEAR_HARD_REG_SET (newpat_used_regs);
1535
1536   /* If I1 and I2 both feed I3, they can be in any order.  To simplify the
1537      code below, set I1 to be the earlier of the two insns.  */
1538   if (i1 && INSN_CUID (i1) > INSN_CUID (i2))
1539     temp = i1, i1 = i2, i2 = temp;
1540
1541   added_links_insn = 0;
1542
1543   /* First check for one important special-case that the code below will
1544      not handle.  Namely, the case where I1 is zero, I2 is a PARALLEL
1545      and I3 is a SET whose SET_SRC is a SET_DEST in I2.  In that case,
1546      we may be able to replace that destination with the destination of I3.
1547      This occurs in the common code where we compute both a quotient and
1548      remainder into a structure, in which case we want to do the computation
1549      directly into the structure to avoid register-register copies.
1550
1551      Note that this case handles both multiple sets in I2 and also
1552      cases where I2 has a number of CLOBBER or PARALLELs.
1553
1554      We make very conservative checks below and only try to handle the
1555      most common cases of this.  For example, we only handle the case
1556      where I2 and I3 are adjacent to avoid making difficult register
1557      usage tests.  */
1558
1559   if (i1 == 0 && GET_CODE (i3) == INSN && GET_CODE (PATTERN (i3)) == SET
1560       && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1561       && REGNO (SET_SRC (PATTERN (i3))) >= FIRST_PSEUDO_REGISTER
1562       && find_reg_note (i3, REG_DEAD, SET_SRC (PATTERN (i3)))
1563       && GET_CODE (PATTERN (i2)) == PARALLEL
1564       && ! side_effects_p (SET_DEST (PATTERN (i3)))
1565       /* If the dest of I3 is a ZERO_EXTRACT or STRICT_LOW_PART, the code
1566          below would need to check what is inside (and reg_overlap_mentioned_p
1567          doesn't support those codes anyway).  Don't allow those destinations;
1568          the resulting insn isn't likely to be recognized anyway.  */
1569       && GET_CODE (SET_DEST (PATTERN (i3))) != ZERO_EXTRACT
1570       && GET_CODE (SET_DEST (PATTERN (i3))) != STRICT_LOW_PART
1571       && ! reg_overlap_mentioned_p (SET_SRC (PATTERN (i3)),
1572                                     SET_DEST (PATTERN (i3)))
1573       && next_real_insn (i2) == i3)
1574     {
1575       rtx p2 = PATTERN (i2);
1576
1577       /* Make sure that the destination of I3,
1578          which we are going to substitute into one output of I2,
1579          is not used within another output of I2.  We must avoid making this:
1580          (parallel [(set (mem (reg 69)) ...)
1581                     (set (reg 69) ...)])
1582          which is not well-defined as to order of actions.
1583          (Besides, reload can't handle output reloads for this.)
1584
1585          The problem can also happen if the dest of I3 is a memory ref,
1586          if another dest in I2 is an indirect memory ref.  */
1587       for (i = 0; i < XVECLEN (p2, 0); i++)
1588         if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1589              || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1590             && reg_overlap_mentioned_p (SET_DEST (PATTERN (i3)),
1591                                         SET_DEST (XVECEXP (p2, 0, i))))
1592           break;
1593
1594       if (i == XVECLEN (p2, 0))
1595         for (i = 0; i < XVECLEN (p2, 0); i++)
1596           if ((GET_CODE (XVECEXP (p2, 0, i)) == SET
1597                || GET_CODE (XVECEXP (p2, 0, i)) == CLOBBER)
1598               && SET_DEST (XVECEXP (p2, 0, i)) == SET_SRC (PATTERN (i3)))
1599             {
1600               combine_merges++;
1601
1602               subst_insn = i3;
1603               subst_low_cuid = INSN_CUID (i2);
1604
1605               added_sets_2 = added_sets_1 = 0;
1606               i2dest = SET_SRC (PATTERN (i3));
1607
1608               /* Replace the dest in I2 with our dest and make the resulting
1609                  insn the new pattern for I3.  Then skip to where we
1610                  validate the pattern.  Everything was set up above.  */
1611               SUBST (SET_DEST (XVECEXP (p2, 0, i)),
1612                      SET_DEST (PATTERN (i3)));
1613
1614               newpat = p2;
1615               i3_subst_into_i2 = 1;
1616               goto validate_replacement;
1617             }
1618     }
1619
1620   /* If I2 is setting a double-word pseudo to a constant and I3 is setting
1621      one of those words to another constant, merge them by making a new
1622      constant.  */
1623   if (i1 == 0
1624       && (temp = single_set (i2)) != 0
1625       && (GET_CODE (SET_SRC (temp)) == CONST_INT
1626           || GET_CODE (SET_SRC (temp)) == CONST_DOUBLE)
1627       && GET_CODE (SET_DEST (temp)) == REG
1628       && GET_MODE_CLASS (GET_MODE (SET_DEST (temp))) == MODE_INT
1629       && GET_MODE_SIZE (GET_MODE (SET_DEST (temp))) == 2 * UNITS_PER_WORD
1630       && GET_CODE (PATTERN (i3)) == SET
1631       && GET_CODE (SET_DEST (PATTERN (i3))) == SUBREG
1632       && SUBREG_REG (SET_DEST (PATTERN (i3))) == SET_DEST (temp)
1633       && GET_MODE_CLASS (GET_MODE (SET_DEST (PATTERN (i3)))) == MODE_INT
1634       && GET_MODE_SIZE (GET_MODE (SET_DEST (PATTERN (i3)))) == UNITS_PER_WORD
1635       && GET_CODE (SET_SRC (PATTERN (i3))) == CONST_INT)
1636     {
1637       HOST_WIDE_INT lo, hi;
1638
1639       if (GET_CODE (SET_SRC (temp)) == CONST_INT)
1640         lo = INTVAL (SET_SRC (temp)), hi = lo < 0 ? -1 : 0;
1641       else
1642         {
1643           lo = CONST_DOUBLE_LOW (SET_SRC (temp));
1644           hi = CONST_DOUBLE_HIGH (SET_SRC (temp));
1645         }
1646
1647       if (subreg_lowpart_p (SET_DEST (PATTERN (i3))))
1648         {
1649           /* We don't handle the case of the target word being wider
1650              than a host wide int.  */
1651           if (HOST_BITS_PER_WIDE_INT < BITS_PER_WORD)
1652             abort ();
1653
1654           lo &= ~(UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD (1) - 1);
1655           lo |= INTVAL (SET_SRC (PATTERN (i3)));
1656         }
1657       else if (HOST_BITS_PER_WIDE_INT == BITS_PER_WORD)
1658         hi = INTVAL (SET_SRC (PATTERN (i3)));
1659       else if (HOST_BITS_PER_WIDE_INT >= 2 * BITS_PER_WORD)
1660         {
1661           int sign = -(int) ((unsigned HOST_WIDE_INT) lo
1662                              >> (HOST_BITS_PER_WIDE_INT - 1));
1663
1664           lo &= ~ (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD
1665                    (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD (1) - 1));
1666           lo |= (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD
1667                  (INTVAL (SET_SRC (PATTERN (i3)))));
1668           if (hi == sign)
1669             hi = lo < 0 ? -1 : 0;
1670         }
1671       else
1672         /* We don't handle the case of the higher word not fitting
1673            entirely in either hi or lo.  */
1674         abort ();
1675
1676       combine_merges++;
1677       subst_insn = i3;
1678       subst_low_cuid = INSN_CUID (i2);
1679       added_sets_2 = added_sets_1 = 0;
1680       i2dest = SET_DEST (temp);
1681
1682       SUBST (SET_SRC (temp),
1683              immed_double_const (lo, hi, GET_MODE (SET_DEST (temp))));
1684
1685       newpat = PATTERN (i2);
1686       goto validate_replacement;
1687     }
1688
1689 #ifndef HAVE_cc0
1690   /* If we have no I1 and I2 looks like:
1691         (parallel [(set (reg:CC X) (compare:CC OP (const_int 0)))
1692                    (set Y OP)])
1693      make up a dummy I1 that is
1694         (set Y OP)
1695      and change I2 to be
1696         (set (reg:CC X) (compare:CC Y (const_int 0)))
1697
1698      (We can ignore any trailing CLOBBERs.)
1699
1700      This undoes a previous combination and allows us to match a branch-and-
1701      decrement insn.  */
1702
1703   if (i1 == 0 && GET_CODE (PATTERN (i2)) == PARALLEL
1704       && XVECLEN (PATTERN (i2), 0) >= 2
1705       && GET_CODE (XVECEXP (PATTERN (i2), 0, 0)) == SET
1706       && (GET_MODE_CLASS (GET_MODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 0))))
1707           == MODE_CC)
1708       && GET_CODE (SET_SRC (XVECEXP (PATTERN (i2), 0, 0))) == COMPARE
1709       && XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 1) == const0_rtx
1710       && GET_CODE (XVECEXP (PATTERN (i2), 0, 1)) == SET
1711       && GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, 1))) == REG
1712       && rtx_equal_p (XEXP (SET_SRC (XVECEXP (PATTERN (i2), 0, 0)), 0),
1713                       SET_SRC (XVECEXP (PATTERN (i2), 0, 1))))
1714     {
1715       for (i = XVECLEN (PATTERN (i2), 0) - 1; i >= 2; i--)
1716         if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != CLOBBER)
1717           break;
1718
1719       if (i == 1)
1720         {
1721           /* We make I1 with the same INSN_UID as I2.  This gives it
1722              the same INSN_CUID for value tracking.  Our fake I1 will
1723              never appear in the insn stream so giving it the same INSN_UID
1724              as I2 will not cause a problem.  */
1725
1726           subst_prev_insn = i1
1727             = gen_rtx_INSN (VOIDmode, INSN_UID (i2), NULL_RTX, i2,
1728                             XVECEXP (PATTERN (i2), 0, 1), -1, NULL_RTX,
1729                             NULL_RTX);
1730
1731           SUBST (PATTERN (i2), XVECEXP (PATTERN (i2), 0, 0));
1732           SUBST (XEXP (SET_SRC (PATTERN (i2)), 0),
1733                  SET_DEST (PATTERN (i1)));
1734         }
1735     }
1736 #endif
1737
1738   /* Verify that I2 and I1 are valid for combining.  */
1739   if (! can_combine_p (i2, i3, i1, NULL_RTX, &i2dest, &i2src)
1740       || (i1 && ! can_combine_p (i1, i3, NULL_RTX, i2, &i1dest, &i1src)))
1741     {
1742       undo_all ();
1743       return 0;
1744     }
1745
1746   /* Record whether I2DEST is used in I2SRC and similarly for the other
1747      cases.  Knowing this will help in register status updating below.  */
1748   i2dest_in_i2src = reg_overlap_mentioned_p (i2dest, i2src);
1749   i1dest_in_i1src = i1 && reg_overlap_mentioned_p (i1dest, i1src);
1750   i2dest_in_i1src = i1 && reg_overlap_mentioned_p (i2dest, i1src);
1751
1752   /* See if I1 directly feeds into I3.  It does if I1DEST is not used
1753      in I2SRC.  */
1754   i1_feeds_i3 = i1 && ! reg_overlap_mentioned_p (i1dest, i2src);
1755
1756   /* Ensure that I3's pattern can be the destination of combines.  */
1757   if (! combinable_i3pat (i3, &PATTERN (i3), i2dest, i1dest,
1758                           i1 && i2dest_in_i1src && i1_feeds_i3,
1759                           &i3dest_killed))
1760     {
1761       undo_all ();
1762       return 0;
1763     }
1764
1765   /* See if any of the insns is a MULT operation.  Unless one is, we will
1766      reject a combination that is, since it must be slower.  Be conservative
1767      here.  */
1768   if (GET_CODE (i2src) == MULT
1769       || (i1 != 0 && GET_CODE (i1src) == MULT)
1770       || (GET_CODE (PATTERN (i3)) == SET
1771           && GET_CODE (SET_SRC (PATTERN (i3))) == MULT))
1772     have_mult = 1;
1773
1774   /* If I3 has an inc, then give up if I1 or I2 uses the reg that is inc'd.
1775      We used to do this EXCEPT in one case: I3 has a post-inc in an
1776      output operand.  However, that exception can give rise to insns like
1777         mov r3,(r3)+
1778      which is a famous insn on the PDP-11 where the value of r3 used as the
1779      source was model-dependent.  Avoid this sort of thing.  */
1780
1781 #if 0
1782   if (!(GET_CODE (PATTERN (i3)) == SET
1783         && GET_CODE (SET_SRC (PATTERN (i3))) == REG
1784         && GET_CODE (SET_DEST (PATTERN (i3))) == MEM
1785         && (GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_INC
1786             || GET_CODE (XEXP (SET_DEST (PATTERN (i3)), 0)) == POST_DEC)))
1787     /* It's not the exception.  */
1788 #endif
1789 #ifdef AUTO_INC_DEC
1790     for (link = REG_NOTES (i3); link; link = XEXP (link, 1))
1791       if (REG_NOTE_KIND (link) == REG_INC
1792           && (reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i2))
1793               || (i1 != 0
1794                   && reg_overlap_mentioned_p (XEXP (link, 0), PATTERN (i1)))))
1795         {
1796           undo_all ();
1797           return 0;
1798         }
1799 #endif
1800
1801   /* See if the SETs in I1 or I2 need to be kept around in the merged
1802      instruction: whenever the value set there is still needed past I3.
1803      For the SETs in I2, this is easy: we see if I2DEST dies or is set in I3.
1804
1805      For the SET in I1, we have two cases:  If I1 and I2 independently
1806      feed into I3, the set in I1 needs to be kept around if I1DEST dies
1807      or is set in I3.  Otherwise (if I1 feeds I2 which feeds I3), the set
1808      in I1 needs to be kept around unless I1DEST dies or is set in either
1809      I2 or I3.  We can distinguish these cases by seeing if I2SRC mentions
1810      I1DEST.  If so, we know I1 feeds into I2.  */
1811
1812   added_sets_2 = ! dead_or_set_p (i3, i2dest);
1813
1814   added_sets_1
1815     = i1 && ! (i1_feeds_i3 ? dead_or_set_p (i3, i1dest)
1816                : (dead_or_set_p (i3, i1dest) || dead_or_set_p (i2, i1dest)));
1817
1818   /* If the set in I2 needs to be kept around, we must make a copy of
1819      PATTERN (I2), so that when we substitute I1SRC for I1DEST in
1820      PATTERN (I2), we are only substituting for the original I1DEST, not into
1821      an already-substituted copy.  This also prevents making self-referential
1822      rtx.  If I2 is a PARALLEL, we just need the piece that assigns I2SRC to
1823      I2DEST.  */
1824
1825   i2pat = (GET_CODE (PATTERN (i2)) == PARALLEL
1826            ? gen_rtx_SET (VOIDmode, i2dest, i2src)
1827            : PATTERN (i2));
1828
1829   if (added_sets_2)
1830     i2pat = copy_rtx (i2pat);
1831
1832   combine_merges++;
1833
1834   /* Substitute in the latest insn for the regs set by the earlier ones.  */
1835
1836   maxreg = max_reg_num ();
1837
1838   subst_insn = i3;
1839
1840   /* It is possible that the source of I2 or I1 may be performing an
1841      unneeded operation, such as a ZERO_EXTEND of something that is known
1842      to have the high part zero.  Handle that case by letting subst look at
1843      the innermost one of them.
1844
1845      Another way to do this would be to have a function that tries to
1846      simplify a single insn instead of merging two or more insns.  We don't
1847      do this because of the potential of infinite loops and because
1848      of the potential extra memory required.  However, doing it the way
1849      we are is a bit of a kludge and doesn't catch all cases.
1850
1851      But only do this if -fexpensive-optimizations since it slows things down
1852      and doesn't usually win.  */
1853
1854   if (flag_expensive_optimizations)
1855     {
1856       /* Pass pc_rtx so no substitutions are done, just simplifications.
1857          The cases that we are interested in here do not involve the few
1858          cases were is_replaced is checked.  */
1859       if (i1)
1860         {
1861           subst_low_cuid = INSN_CUID (i1);
1862           i1src = subst (i1src, pc_rtx, pc_rtx, 0, 0);
1863         }
1864       else
1865         {
1866           subst_low_cuid = INSN_CUID (i2);
1867           i2src = subst (i2src, pc_rtx, pc_rtx, 0, 0);
1868         }
1869     }
1870
1871 #ifndef HAVE_cc0
1872   /* Many machines that don't use CC0 have insns that can both perform an
1873      arithmetic operation and set the condition code.  These operations will
1874      be represented as a PARALLEL with the first element of the vector
1875      being a COMPARE of an arithmetic operation with the constant zero.
1876      The second element of the vector will set some pseudo to the result
1877      of the same arithmetic operation.  If we simplify the COMPARE, we won't
1878      match such a pattern and so will generate an extra insn.   Here we test
1879      for this case, where both the comparison and the operation result are
1880      needed, and make the PARALLEL by just replacing I2DEST in I3SRC with
1881      I2SRC.  Later we will make the PARALLEL that contains I2.  */
1882
1883   if (i1 == 0 && added_sets_2 && GET_CODE (PATTERN (i3)) == SET
1884       && GET_CODE (SET_SRC (PATTERN (i3))) == COMPARE
1885       && XEXP (SET_SRC (PATTERN (i3)), 1) == const0_rtx
1886       && rtx_equal_p (XEXP (SET_SRC (PATTERN (i3)), 0), i2dest))
1887     {
1888 #ifdef EXTRA_CC_MODES
1889       rtx *cc_use;
1890       enum machine_mode compare_mode;
1891 #endif
1892
1893       newpat = PATTERN (i3);
1894       SUBST (XEXP (SET_SRC (newpat), 0), i2src);
1895
1896       i2_is_used = 1;
1897
1898 #ifdef EXTRA_CC_MODES
1899       /* See if a COMPARE with the operand we substituted in should be done
1900          with the mode that is currently being used.  If not, do the same
1901          processing we do in `subst' for a SET; namely, if the destination
1902          is used only once, try to replace it with a register of the proper
1903          mode and also replace the COMPARE.  */
1904       if (undobuf.other_insn == 0
1905           && (cc_use = find_single_use (SET_DEST (newpat), i3,
1906                                         &undobuf.other_insn))
1907           && ((compare_mode = SELECT_CC_MODE (GET_CODE (*cc_use),
1908                                               i2src, const0_rtx))
1909               != GET_MODE (SET_DEST (newpat))))
1910         {
1911           unsigned int regno = REGNO (SET_DEST (newpat));
1912           rtx new_dest = gen_rtx_REG (compare_mode, regno);
1913
1914           if (regno < FIRST_PSEUDO_REGISTER
1915               || (REG_N_SETS (regno) == 1 && ! added_sets_2
1916                   && ! REG_USERVAR_P (SET_DEST (newpat))))
1917             {
1918               if (regno >= FIRST_PSEUDO_REGISTER)
1919                 SUBST (regno_reg_rtx[regno], new_dest);
1920
1921               SUBST (SET_DEST (newpat), new_dest);
1922               SUBST (XEXP (*cc_use, 0), new_dest);
1923               SUBST (SET_SRC (newpat),
1924                      gen_rtx_COMPARE (compare_mode, i2src, const0_rtx));
1925             }
1926           else
1927             undobuf.other_insn = 0;
1928         }
1929 #endif
1930     }
1931   else
1932 #endif
1933     {
1934       n_occurrences = 0;                /* `subst' counts here */
1935
1936       /* If I1 feeds into I2 (not into I3) and I1DEST is in I1SRC, we
1937          need to make a unique copy of I2SRC each time we substitute it
1938          to avoid self-referential rtl.  */
1939
1940       subst_low_cuid = INSN_CUID (i2);
1941       newpat = subst (PATTERN (i3), i2dest, i2src, 0,
1942                       ! i1_feeds_i3 && i1dest_in_i1src);
1943
1944       /* Record whether i2's body now appears within i3's body.  */
1945       i2_is_used = n_occurrences;
1946     }
1947
1948   /* If we already got a failure, don't try to do more.  Otherwise,
1949      try to substitute in I1 if we have it.  */
1950
1951   if (i1 && GET_CODE (newpat) != CLOBBER)
1952     {
1953       /* Before we can do this substitution, we must redo the test done
1954          above (see detailed comments there) that ensures  that I1DEST
1955          isn't mentioned in any SETs in NEWPAT that are field assignments.  */
1956
1957       if (! combinable_i3pat (NULL_RTX, &newpat, i1dest, NULL_RTX,
1958                               0, (rtx*)0))
1959         {
1960           undo_all ();
1961           return 0;
1962         }
1963
1964       n_occurrences = 0;
1965       subst_low_cuid = INSN_CUID (i1);
1966       newpat = subst (newpat, i1dest, i1src, 0, 0);
1967     }
1968
1969   /* Fail if an autoincrement side-effect has been duplicated.  Be careful
1970      to count all the ways that I2SRC and I1SRC can be used.  */
1971   if ((FIND_REG_INC_NOTE (i2, NULL_RTX) != 0
1972        && i2_is_used + added_sets_2 > 1)
1973       || (i1 != 0 && FIND_REG_INC_NOTE (i1, NULL_RTX) != 0
1974           && (n_occurrences + added_sets_1 + (added_sets_2 && ! i1_feeds_i3)
1975               > 1))
1976       /* Fail if we tried to make a new register (we used to abort, but there's
1977          really no reason to).  */
1978       || max_reg_num () != maxreg
1979       /* Fail if we couldn't do something and have a CLOBBER.  */
1980       || GET_CODE (newpat) == CLOBBER
1981       /* Fail if this new pattern is a MULT and we didn't have one before
1982          at the outer level.  */
1983       || (GET_CODE (newpat) == SET && GET_CODE (SET_SRC (newpat)) == MULT
1984           && ! have_mult))
1985     {
1986       undo_all ();
1987       return 0;
1988     }
1989
1990   /* If the actions of the earlier insns must be kept
1991      in addition to substituting them into the latest one,
1992      we must make a new PARALLEL for the latest insn
1993      to hold additional the SETs.  */
1994
1995   if (added_sets_1 || added_sets_2)
1996     {
1997       combine_extras++;
1998
1999       if (GET_CODE (newpat) == PARALLEL)
2000         {
2001           rtvec old = XVEC (newpat, 0);
2002           total_sets = XVECLEN (newpat, 0) + added_sets_1 + added_sets_2;
2003           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
2004           memcpy (XVEC (newpat, 0)->elem, &old->elem[0],
2005                   sizeof (old->elem[0]) * old->num_elem);
2006         }
2007       else
2008         {
2009           rtx old = newpat;
2010           total_sets = 1 + added_sets_1 + added_sets_2;
2011           newpat = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (total_sets));
2012           XVECEXP (newpat, 0, 0) = old;
2013         }
2014
2015      if (added_sets_1)
2016        XVECEXP (newpat, 0, --total_sets)
2017          = (GET_CODE (PATTERN (i1)) == PARALLEL
2018             ? gen_rtx_SET (VOIDmode, i1dest, i1src) : PATTERN (i1));
2019
2020      if (added_sets_2)
2021        {
2022          /* If there is no I1, use I2's body as is.  We used to also not do
2023             the subst call below if I2 was substituted into I3,
2024             but that could lose a simplification.  */
2025          if (i1 == 0)
2026            XVECEXP (newpat, 0, --total_sets) = i2pat;
2027          else
2028            /* See comment where i2pat is assigned.  */
2029            XVECEXP (newpat, 0, --total_sets)
2030              = subst (i2pat, i1dest, i1src, 0, 0);
2031        }
2032     }
2033
2034   /* We come here when we are replacing a destination in I2 with the
2035      destination of I3.  */
2036  validate_replacement:
2037
2038   /* Note which hard regs this insn has as inputs.  */
2039   mark_used_regs_combine (newpat);
2040
2041   /* Is the result of combination a valid instruction?  */
2042   insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2043
2044   /* If the result isn't valid, see if it is a PARALLEL of two SETs where
2045      the second SET's destination is a register that is unused.  In that case,
2046      we just need the first SET.   This can occur when simplifying a divmod
2047      insn.  We *must* test for this case here because the code below that
2048      splits two independent SETs doesn't handle this case correctly when it
2049      updates the register status.  Also check the case where the first
2050      SET's destination is unused.  That would not cause incorrect code, but
2051      does cause an unneeded insn to remain.  */
2052
2053   if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2054       && XVECLEN (newpat, 0) == 2
2055       && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2056       && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2057       && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == REG
2058       && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 1)))
2059       && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 1)))
2060       && asm_noperands (newpat) < 0)
2061     {
2062       newpat = XVECEXP (newpat, 0, 0);
2063       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2064     }
2065
2066   else if (insn_code_number < 0 && GET_CODE (newpat) == PARALLEL
2067            && XVECLEN (newpat, 0) == 2
2068            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2069            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2070            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) == REG
2071            && find_reg_note (i3, REG_UNUSED, SET_DEST (XVECEXP (newpat, 0, 0)))
2072            && ! side_effects_p (SET_SRC (XVECEXP (newpat, 0, 0)))
2073            && asm_noperands (newpat) < 0)
2074     {
2075       newpat = XVECEXP (newpat, 0, 1);
2076       insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2077     }
2078
2079   /* If we were combining three insns and the result is a simple SET
2080      with no ASM_OPERANDS that wasn't recognized, try to split it into two
2081      insns.  There are two ways to do this.  It can be split using a
2082      machine-specific method (like when you have an addition of a large
2083      constant) or by combine in the function find_split_point.  */
2084
2085   if (i1 && insn_code_number < 0 && GET_CODE (newpat) == SET
2086       && asm_noperands (newpat) < 0)
2087     {
2088       rtx m_split, *split;
2089       rtx ni2dest = i2dest;
2090
2091       /* See if the MD file can split NEWPAT.  If it can't, see if letting it
2092          use I2DEST as a scratch register will help.  In the latter case,
2093          convert I2DEST to the mode of the source of NEWPAT if we can.  */
2094
2095       m_split = split_insns (newpat, i3);
2096
2097       /* We can only use I2DEST as a scratch reg if it doesn't overlap any
2098          inputs of NEWPAT.  */
2099
2100       /* ??? If I2DEST is not safe, and I1DEST exists, then it would be
2101          possible to try that as a scratch reg.  This would require adding
2102          more code to make it work though.  */
2103
2104       if (m_split == 0 && ! reg_overlap_mentioned_p (ni2dest, newpat))
2105         {
2106           /* If I2DEST is a hard register or the only use of a pseudo,
2107              we can change its mode.  */
2108           if (GET_MODE (SET_DEST (newpat)) != GET_MODE (i2dest)
2109               && GET_MODE (SET_DEST (newpat)) != VOIDmode
2110               && GET_CODE (i2dest) == REG
2111               && (REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2112                   || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2113                       && ! REG_USERVAR_P (i2dest))))
2114             ni2dest = gen_rtx_REG (GET_MODE (SET_DEST (newpat)),
2115                                    REGNO (i2dest));
2116
2117           m_split = split_insns (gen_rtx_PARALLEL
2118                                  (VOIDmode,
2119                                   gen_rtvec (2, newpat,
2120                                              gen_rtx_CLOBBER (VOIDmode,
2121                                                               ni2dest))),
2122                                  i3);
2123           /* If the split with the mode-changed register didn't work, try
2124              the original register.  */
2125           if (! m_split && ni2dest != i2dest)
2126             {
2127               ni2dest = i2dest;
2128               m_split = split_insns (gen_rtx_PARALLEL
2129                                      (VOIDmode,
2130                                       gen_rtvec (2, newpat,
2131                                                  gen_rtx_CLOBBER (VOIDmode,
2132                                                                   i2dest))),
2133                                      i3);
2134             }
2135         }
2136
2137       if (m_split && GET_CODE (m_split) != SEQUENCE)
2138         {
2139           insn_code_number = recog_for_combine (&m_split, i3, &new_i3_notes);
2140           if (insn_code_number >= 0)
2141             newpat = m_split;
2142         }
2143       else if (m_split && GET_CODE (m_split) == SEQUENCE
2144                && XVECLEN (m_split, 0) == 2
2145                && (next_real_insn (i2) == i3
2146                    || ! use_crosses_set_p (PATTERN (XVECEXP (m_split, 0, 0)),
2147                                            INSN_CUID (i2))))
2148         {
2149           rtx i2set, i3set;
2150           rtx newi3pat = PATTERN (XVECEXP (m_split, 0, 1));
2151           newi2pat = PATTERN (XVECEXP (m_split, 0, 0));
2152
2153           i3set = single_set (XVECEXP (m_split, 0, 1));
2154           i2set = single_set (XVECEXP (m_split, 0, 0));
2155
2156           /* In case we changed the mode of I2DEST, replace it in the
2157              pseudo-register table here.  We can't do it above in case this
2158              code doesn't get executed and we do a split the other way.  */
2159
2160           if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2161             SUBST (regno_reg_rtx[REGNO (i2dest)], ni2dest);
2162
2163           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2164
2165           /* If I2 or I3 has multiple SETs, we won't know how to track
2166              register status, so don't use these insns.  If I2's destination
2167              is used between I2 and I3, we also can't use these insns.  */
2168
2169           if (i2_code_number >= 0 && i2set && i3set
2170               && (next_real_insn (i2) == i3
2171                   || ! reg_used_between_p (SET_DEST (i2set), i2, i3)))
2172             insn_code_number = recog_for_combine (&newi3pat, i3,
2173                                                   &new_i3_notes);
2174           if (insn_code_number >= 0)
2175             newpat = newi3pat;
2176
2177           /* It is possible that both insns now set the destination of I3.
2178              If so, we must show an extra use of it.  */
2179
2180           if (insn_code_number >= 0)
2181             {
2182               rtx new_i3_dest = SET_DEST (i3set);
2183               rtx new_i2_dest = SET_DEST (i2set);
2184
2185               while (GET_CODE (new_i3_dest) == ZERO_EXTRACT
2186                      || GET_CODE (new_i3_dest) == STRICT_LOW_PART
2187                      || GET_CODE (new_i3_dest) == SUBREG)
2188                 new_i3_dest = XEXP (new_i3_dest, 0);
2189
2190               while (GET_CODE (new_i2_dest) == ZERO_EXTRACT
2191                      || GET_CODE (new_i2_dest) == STRICT_LOW_PART
2192                      || GET_CODE (new_i2_dest) == SUBREG)
2193                 new_i2_dest = XEXP (new_i2_dest, 0);
2194
2195               if (GET_CODE (new_i3_dest) == REG
2196                   && GET_CODE (new_i2_dest) == REG
2197                   && REGNO (new_i3_dest) == REGNO (new_i2_dest))
2198                 REG_N_SETS (REGNO (new_i2_dest))++;
2199             }
2200         }
2201
2202       /* If we can split it and use I2DEST, go ahead and see if that
2203          helps things be recognized.  Verify that none of the registers
2204          are set between I2 and I3.  */
2205       if (insn_code_number < 0 && (split = find_split_point (&newpat, i3)) != 0
2206 #ifdef HAVE_cc0
2207           && GET_CODE (i2dest) == REG
2208 #endif
2209           /* We need I2DEST in the proper mode.  If it is a hard register
2210              or the only use of a pseudo, we can change its mode.  */
2211           && (GET_MODE (*split) == GET_MODE (i2dest)
2212               || GET_MODE (*split) == VOIDmode
2213               || REGNO (i2dest) < FIRST_PSEUDO_REGISTER
2214               || (REG_N_SETS (REGNO (i2dest)) == 1 && ! added_sets_2
2215                   && ! REG_USERVAR_P (i2dest)))
2216           && (next_real_insn (i2) == i3
2217               || ! use_crosses_set_p (*split, INSN_CUID (i2)))
2218           /* We can't overwrite I2DEST if its value is still used by
2219              NEWPAT.  */
2220           && ! reg_referenced_p (i2dest, newpat))
2221         {
2222           rtx newdest = i2dest;
2223           enum rtx_code split_code = GET_CODE (*split);
2224           enum machine_mode split_mode = GET_MODE (*split);
2225
2226           /* Get NEWDEST as a register in the proper mode.  We have already
2227              validated that we can do this.  */
2228           if (GET_MODE (i2dest) != split_mode && split_mode != VOIDmode)
2229             {
2230               newdest = gen_rtx_REG (split_mode, REGNO (i2dest));
2231
2232               if (REGNO (i2dest) >= FIRST_PSEUDO_REGISTER)
2233                 SUBST (regno_reg_rtx[REGNO (i2dest)], newdest);
2234             }
2235
2236           /* If *SPLIT is a (mult FOO (const_int pow2)), convert it to
2237              an ASHIFT.  This can occur if it was inside a PLUS and hence
2238              appeared to be a memory address.  This is a kludge.  */
2239           if (split_code == MULT
2240               && GET_CODE (XEXP (*split, 1)) == CONST_INT
2241               && INTVAL (XEXP (*split, 1)) > 0
2242               && (i = exact_log2 (INTVAL (XEXP (*split, 1)))) >= 0)
2243             {
2244               SUBST (*split, gen_rtx_ASHIFT (split_mode,
2245                                              XEXP (*split, 0), GEN_INT (i)));
2246               /* Update split_code because we may not have a multiply
2247                  anymore.  */
2248               split_code = GET_CODE (*split);
2249             }
2250
2251 #ifdef INSN_SCHEDULING
2252           /* If *SPLIT is a paradoxical SUBREG, when we split it, it should
2253              be written as a ZERO_EXTEND.  */
2254           if (split_code == SUBREG && GET_CODE (SUBREG_REG (*split)) == MEM)
2255             SUBST (*split, gen_rtx_ZERO_EXTEND  (split_mode,
2256                                                  SUBREG_REG (*split)));
2257 #endif
2258
2259           newi2pat = gen_rtx_SET (VOIDmode, newdest, *split);
2260           SUBST (*split, newdest);
2261           i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2262
2263           /* If the split point was a MULT and we didn't have one before,
2264              don't use one now.  */
2265           if (i2_code_number >= 0 && ! (split_code == MULT && ! have_mult))
2266             insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2267         }
2268     }
2269
2270   /* Check for a case where we loaded from memory in a narrow mode and
2271      then sign extended it, but we need both registers.  In that case,
2272      we have a PARALLEL with both loads from the same memory location.
2273      We can split this into a load from memory followed by a register-register
2274      copy.  This saves at least one insn, more if register allocation can
2275      eliminate the copy.
2276
2277      We cannot do this if the destination of the second assignment is
2278      a register that we have already assumed is zero-extended.  Similarly
2279      for a SUBREG of such a register.  */
2280
2281   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2282            && GET_CODE (newpat) == PARALLEL
2283            && XVECLEN (newpat, 0) == 2
2284            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2285            && GET_CODE (SET_SRC (XVECEXP (newpat, 0, 0))) == SIGN_EXTEND
2286            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2287            && rtx_equal_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2288                            XEXP (SET_SRC (XVECEXP (newpat, 0, 0)), 0))
2289            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2290                                    INSN_CUID (i2))
2291            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2292            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2293            && ! (temp = SET_DEST (XVECEXP (newpat, 0, 1)),
2294                  (GET_CODE (temp) == REG
2295                   && reg_nonzero_bits[REGNO (temp)] != 0
2296                   && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2297                   && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2298                   && (reg_nonzero_bits[REGNO (temp)]
2299                       != GET_MODE_MASK (word_mode))))
2300            && ! (GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) == SUBREG
2301                  && (temp = SUBREG_REG (SET_DEST (XVECEXP (newpat, 0, 1))),
2302                      (GET_CODE (temp) == REG
2303                       && reg_nonzero_bits[REGNO (temp)] != 0
2304                       && GET_MODE_BITSIZE (GET_MODE (temp)) < BITS_PER_WORD
2305                       && GET_MODE_BITSIZE (GET_MODE (temp)) < HOST_BITS_PER_INT
2306                       && (reg_nonzero_bits[REGNO (temp)]
2307                           != GET_MODE_MASK (word_mode)))))
2308            && ! reg_overlap_mentioned_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2309                                          SET_SRC (XVECEXP (newpat, 0, 1)))
2310            && ! find_reg_note (i3, REG_UNUSED,
2311                                SET_DEST (XVECEXP (newpat, 0, 0))))
2312     {
2313       rtx ni2dest;
2314
2315       newi2pat = XVECEXP (newpat, 0, 0);
2316       ni2dest = SET_DEST (XVECEXP (newpat, 0, 0));
2317       newpat = XVECEXP (newpat, 0, 1);
2318       SUBST (SET_SRC (newpat),
2319              gen_lowpart_for_combine (GET_MODE (SET_SRC (newpat)), ni2dest));
2320       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2321
2322       if (i2_code_number >= 0)
2323         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2324
2325       if (insn_code_number >= 0)
2326         {
2327           rtx insn;
2328           rtx link;
2329
2330           /* If we will be able to accept this, we have made a change to the
2331              destination of I3.  This can invalidate a LOG_LINKS pointing
2332              to I3.  No other part of combine.c makes such a transformation.
2333
2334              The new I3 will have a destination that was previously the
2335              destination of I1 or I2 and which was used in i2 or I3.  Call
2336              distribute_links to make a LOG_LINK from the next use of
2337              that destination.  */
2338
2339           PATTERN (i3) = newpat;
2340           distribute_links (gen_rtx_INSN_LIST (VOIDmode, i3, NULL_RTX));
2341
2342           /* I3 now uses what used to be its destination and which is
2343              now I2's destination.  That means we need a LOG_LINK from
2344              I3 to I2.  But we used to have one, so we still will.
2345
2346              However, some later insn might be using I2's dest and have
2347              a LOG_LINK pointing at I3.  We must remove this link.
2348              The simplest way to remove the link is to point it at I1,
2349              which we know will be a NOTE.  */
2350
2351           for (insn = NEXT_INSN (i3);
2352                insn && (this_basic_block == n_basic_blocks - 1
2353                         || insn != BLOCK_HEAD (this_basic_block + 1));
2354                insn = NEXT_INSN (insn))
2355             {
2356               if (INSN_P (insn) && reg_referenced_p (ni2dest, PATTERN (insn)))
2357                 {
2358                   for (link = LOG_LINKS (insn); link;
2359                        link = XEXP (link, 1))
2360                     if (XEXP (link, 0) == i3)
2361                       XEXP (link, 0) = i1;
2362
2363                   break;
2364                 }
2365             }
2366         }
2367     }
2368
2369   /* Similarly, check for a case where we have a PARALLEL of two independent
2370      SETs but we started with three insns.  In this case, we can do the sets
2371      as two separate insns.  This case occurs when some SET allows two
2372      other insns to combine, but the destination of that SET is still live.  */
2373
2374   else if (i1 && insn_code_number < 0 && asm_noperands (newpat) < 0
2375            && GET_CODE (newpat) == PARALLEL
2376            && XVECLEN (newpat, 0) == 2
2377            && GET_CODE (XVECEXP (newpat, 0, 0)) == SET
2378            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != ZERO_EXTRACT
2379            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != STRICT_LOW_PART
2380            && GET_CODE (XVECEXP (newpat, 0, 1)) == SET
2381            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != ZERO_EXTRACT
2382            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != STRICT_LOW_PART
2383            && ! use_crosses_set_p (SET_SRC (XVECEXP (newpat, 0, 1)),
2384                                    INSN_CUID (i2))
2385            /* Don't pass sets with (USE (MEM ...)) dests to the following.  */
2386            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 1))) != USE
2387            && GET_CODE (SET_DEST (XVECEXP (newpat, 0, 0))) != USE
2388            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 1)),
2389                                   XVECEXP (newpat, 0, 0))
2390            && ! reg_referenced_p (SET_DEST (XVECEXP (newpat, 0, 0)),
2391                                   XVECEXP (newpat, 0, 1))
2392            && ! (contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 0)))
2393                  && contains_muldiv (SET_SRC (XVECEXP (newpat, 0, 1)))))
2394     {
2395       /* Normally, it doesn't matter which of the two is done first,
2396          but it does if one references cc0.  In that case, it has to
2397          be first.  */
2398 #ifdef HAVE_cc0
2399       if (reg_referenced_p (cc0_rtx, XVECEXP (newpat, 0, 0)))
2400         {
2401           newi2pat = XVECEXP (newpat, 0, 0);
2402           newpat = XVECEXP (newpat, 0, 1);
2403         }
2404       else
2405 #endif
2406         {
2407           newi2pat = XVECEXP (newpat, 0, 1);
2408           newpat = XVECEXP (newpat, 0, 0);
2409         }
2410
2411       i2_code_number = recog_for_combine (&newi2pat, i2, &new_i2_notes);
2412
2413       if (i2_code_number >= 0)
2414         insn_code_number = recog_for_combine (&newpat, i3, &new_i3_notes);
2415     }
2416
2417   /* If it still isn't recognized, fail and change things back the way they
2418      were.  */
2419   if ((insn_code_number < 0
2420        /* Is the result a reasonable ASM_OPERANDS?  */
2421        && (! check_asm_operands (newpat) || added_sets_1 || added_sets_2)))
2422     {
2423       undo_all ();
2424       return 0;
2425     }
2426
2427   /* If we had to change another insn, make sure it is valid also.  */
2428   if (undobuf.other_insn)
2429     {
2430       rtx other_pat = PATTERN (undobuf.other_insn);
2431       rtx new_other_notes;
2432       rtx note, next;
2433
2434       CLEAR_HARD_REG_SET (newpat_used_regs);
2435
2436       other_code_number = recog_for_combine (&other_pat, undobuf.other_insn,
2437                                              &new_other_notes);
2438
2439       if (other_code_number < 0 && ! check_asm_operands (other_pat))
2440         {
2441           undo_all ();
2442           return 0;
2443         }
2444
2445       PATTERN (undobuf.other_insn) = other_pat;
2446
2447       /* If any of the notes in OTHER_INSN were REG_UNUSED, ensure that they
2448          are still valid.  Then add any non-duplicate notes added by
2449          recog_for_combine.  */
2450       for (note = REG_NOTES (undobuf.other_insn); note; note = next)
2451         {
2452           next = XEXP (note, 1);
2453
2454           if (REG_NOTE_KIND (note) == REG_UNUSED
2455               && ! reg_set_p (XEXP (note, 0), PATTERN (undobuf.other_insn)))
2456             {
2457               if (GET_CODE (XEXP (note, 0)) == REG)
2458                 REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
2459
2460               remove_note (undobuf.other_insn, note);
2461             }
2462         }
2463
2464       for (note = new_other_notes; note; note = XEXP (note, 1))
2465         if (GET_CODE (XEXP (note, 0)) == REG)
2466           REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
2467
2468       distribute_notes (new_other_notes, undobuf.other_insn,
2469                         undobuf.other_insn, NULL_RTX, NULL_RTX, NULL_RTX);
2470     }
2471 #ifdef HAVE_cc0
2472   /* If I2 is the setter CC0 and I3 is the user CC0 then check whether
2473      they are adjacent to each other or not.  */
2474   {
2475     rtx p = prev_nonnote_insn (i3);
2476     if (p && p != i2 && GET_CODE (p) == INSN && newi2pat
2477         && sets_cc0_p (newi2pat))
2478       {
2479         undo_all ();
2480         return 0;
2481       }
2482   }
2483 #endif
2484
2485   /* We now know that we can do this combination.  Merge the insns and
2486      update the status of registers and LOG_LINKS.  */
2487
2488   {
2489     rtx i3notes, i2notes, i1notes = 0;
2490     rtx i3links, i2links, i1links = 0;
2491     rtx midnotes = 0;
2492     unsigned int regno;
2493     /* Compute which registers we expect to eliminate.  newi2pat may be setting
2494        either i3dest or i2dest, so we must check it.  Also, i1dest may be the
2495        same as i3dest, in which case newi2pat may be setting i1dest.  */
2496     rtx elim_i2 = ((newi2pat && reg_set_p (i2dest, newi2pat))
2497                    || i2dest_in_i2src || i2dest_in_i1src
2498                    ? 0 : i2dest);
2499     rtx elim_i1 = (i1 == 0 || i1dest_in_i1src
2500                    || (newi2pat && reg_set_p (i1dest, newi2pat))
2501                    ? 0 : i1dest);
2502
2503     /* Get the old REG_NOTES and LOG_LINKS from all our insns and
2504        clear them.  */
2505     i3notes = REG_NOTES (i3), i3links = LOG_LINKS (i3);
2506     i2notes = REG_NOTES (i2), i2links = LOG_LINKS (i2);
2507     if (i1)
2508       i1notes = REG_NOTES (i1), i1links = LOG_LINKS (i1);
2509
2510     /* Ensure that we do not have something that should not be shared but
2511        occurs multiple times in the new insns.  Check this by first
2512        resetting all the `used' flags and then copying anything is shared.  */
2513
2514     reset_used_flags (i3notes);
2515     reset_used_flags (i2notes);
2516     reset_used_flags (i1notes);
2517     reset_used_flags (newpat);
2518     reset_used_flags (newi2pat);
2519     if (undobuf.other_insn)
2520       reset_used_flags (PATTERN (undobuf.other_insn));
2521
2522     i3notes = copy_rtx_if_shared (i3notes);
2523     i2notes = copy_rtx_if_shared (i2notes);
2524     i1notes = copy_rtx_if_shared (i1notes);
2525     newpat = copy_rtx_if_shared (newpat);
2526     newi2pat = copy_rtx_if_shared (newi2pat);
2527     if (undobuf.other_insn)
2528       reset_used_flags (PATTERN (undobuf.other_insn));
2529
2530     INSN_CODE (i3) = insn_code_number;
2531     PATTERN (i3) = newpat;
2532     if (undobuf.other_insn)
2533       INSN_CODE (undobuf.other_insn) = other_code_number;
2534
2535     /* We had one special case above where I2 had more than one set and
2536        we replaced a destination of one of those sets with the destination
2537        of I3.  In that case, we have to update LOG_LINKS of insns later
2538        in this basic block.  Note that this (expensive) case is rare.
2539
2540        Also, in this case, we must pretend that all REG_NOTEs for I2
2541        actually came from I3, so that REG_UNUSED notes from I2 will be
2542        properly handled.  */
2543
2544     if (i3_subst_into_i2)
2545       {
2546         for (i = 0; i < XVECLEN (PATTERN (i2), 0); i++)
2547           if (GET_CODE (XVECEXP (PATTERN (i2), 0, i)) != USE
2548               && GET_CODE (SET_DEST (XVECEXP (PATTERN (i2), 0, i))) == REG
2549               && SET_DEST (XVECEXP (PATTERN (i2), 0, i)) != i2dest
2550               && ! find_reg_note (i2, REG_UNUSED,
2551                                   SET_DEST (XVECEXP (PATTERN (i2), 0, i))))
2552             for (temp = NEXT_INSN (i2);
2553                  temp && (this_basic_block == n_basic_blocks - 1
2554                           || BLOCK_HEAD (this_basic_block) != temp);
2555                  temp = NEXT_INSN (temp))
2556               if (temp != i3 && INSN_P (temp))
2557                 for (link = LOG_LINKS (temp); link; link = XEXP (link, 1))
2558                   if (XEXP (link, 0) == i2)
2559                     XEXP (link, 0) = i3;
2560
2561         if (i3notes)
2562           {
2563             rtx link = i3notes;
2564             while (XEXP (link, 1))
2565               link = XEXP (link, 1);
2566             XEXP (link, 1) = i2notes;
2567           }
2568         else
2569           i3notes = i2notes;
2570         i2notes = 0;
2571       }
2572
2573     LOG_LINKS (i3) = 0;
2574     REG_NOTES (i3) = 0;
2575     LOG_LINKS (i2) = 0;
2576     REG_NOTES (i2) = 0;
2577
2578     if (newi2pat)
2579       {
2580         INSN_CODE (i2) = i2_code_number;
2581         PATTERN (i2) = newi2pat;
2582       }
2583     else
2584       {
2585         PUT_CODE (i2, NOTE);
2586         NOTE_LINE_NUMBER (i2) = NOTE_INSN_DELETED;
2587         NOTE_SOURCE_FILE (i2) = 0;
2588       }
2589
2590     if (i1)
2591       {
2592         LOG_LINKS (i1) = 0;
2593         REG_NOTES (i1) = 0;
2594         PUT_CODE (i1, NOTE);
2595         NOTE_LINE_NUMBER (i1) = NOTE_INSN_DELETED;
2596         NOTE_SOURCE_FILE (i1) = 0;
2597       }
2598
2599     /* Get death notes for everything that is now used in either I3 or
2600        I2 and used to die in a previous insn.  If we built two new
2601        patterns, move from I1 to I2 then I2 to I3 so that we get the
2602        proper movement on registers that I2 modifies.  */
2603
2604     if (newi2pat)
2605       {
2606         move_deaths (newi2pat, NULL_RTX, INSN_CUID (i1), i2, &midnotes);
2607         move_deaths (newpat, newi2pat, INSN_CUID (i1), i3, &midnotes);
2608       }
2609     else
2610       move_deaths (newpat, NULL_RTX, i1 ? INSN_CUID (i1) : INSN_CUID (i2),
2611                    i3, &midnotes);
2612
2613     /* Distribute all the LOG_LINKS and REG_NOTES from I1, I2, and I3.  */
2614     if (i3notes)
2615       distribute_notes (i3notes, i3, i3, newi2pat ? i2 : NULL_RTX,
2616                         elim_i2, elim_i1);
2617     if (i2notes)
2618       distribute_notes (i2notes, i2, i3, newi2pat ? i2 : NULL_RTX,
2619                         elim_i2, elim_i1);
2620     if (i1notes)
2621       distribute_notes (i1notes, i1, i3, newi2pat ? i2 : NULL_RTX,
2622                         elim_i2, elim_i1);
2623     if (midnotes)
2624       distribute_notes (midnotes, NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2625                         elim_i2, elim_i1);
2626
2627     /* Distribute any notes added to I2 or I3 by recog_for_combine.  We
2628        know these are REG_UNUSED and want them to go to the desired insn,
2629        so we always pass it as i3.  We have not counted the notes in
2630        reg_n_deaths yet, so we need to do so now.  */
2631
2632     if (newi2pat && new_i2_notes)
2633       {
2634         for (temp = new_i2_notes; temp; temp = XEXP (temp, 1))
2635           if (GET_CODE (XEXP (temp, 0)) == REG)
2636             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2637
2638         distribute_notes (new_i2_notes, i2, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2639       }
2640
2641     if (new_i3_notes)
2642       {
2643         for (temp = new_i3_notes; temp; temp = XEXP (temp, 1))
2644           if (GET_CODE (XEXP (temp, 0)) == REG)
2645             REG_N_DEATHS (REGNO (XEXP (temp, 0)))++;
2646
2647         distribute_notes (new_i3_notes, i3, i3, NULL_RTX, NULL_RTX, NULL_RTX);
2648       }
2649
2650     /* If I3DEST was used in I3SRC, it really died in I3.  We may need to
2651        put a REG_DEAD note for it somewhere.  If NEWI2PAT exists and sets
2652        I3DEST, the death must be somewhere before I2, not I3.  If we passed I3
2653        in that case, it might delete I2.  Similarly for I2 and I1.
2654        Show an additional death due to the REG_DEAD note we make here.  If
2655        we discard it in distribute_notes, we will decrement it again.  */
2656
2657     if (i3dest_killed)
2658       {
2659         if (GET_CODE (i3dest_killed) == REG)
2660           REG_N_DEATHS (REGNO (i3dest_killed))++;
2661
2662         if (newi2pat && reg_set_p (i3dest_killed, newi2pat))
2663           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2664                                                NULL_RTX),
2665                             NULL_RTX, i2, NULL_RTX, elim_i2, elim_i1);
2666         else
2667           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i3dest_killed,
2668                                                NULL_RTX),
2669                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2670                             elim_i2, elim_i1);
2671       }
2672
2673     if (i2dest_in_i2src)
2674       {
2675         if (GET_CODE (i2dest) == REG)
2676           REG_N_DEATHS (REGNO (i2dest))++;
2677
2678         if (newi2pat && reg_set_p (i2dest, newi2pat))
2679           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2680                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2681         else
2682           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i2dest, NULL_RTX),
2683                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2684                             NULL_RTX, NULL_RTX);
2685       }
2686
2687     if (i1dest_in_i1src)
2688       {
2689         if (GET_CODE (i1dest) == REG)
2690           REG_N_DEATHS (REGNO (i1dest))++;
2691
2692         if (newi2pat && reg_set_p (i1dest, newi2pat))
2693           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2694                             NULL_RTX, i2, NULL_RTX, NULL_RTX, NULL_RTX);
2695         else
2696           distribute_notes (gen_rtx_EXPR_LIST (REG_DEAD, i1dest, NULL_RTX),
2697                             NULL_RTX, i3, newi2pat ? i2 : NULL_RTX,
2698                             NULL_RTX, NULL_RTX);
2699       }
2700
2701     distribute_links (i3links);
2702     distribute_links (i2links);
2703     distribute_links (i1links);
2704
2705     if (GET_CODE (i2dest) == REG)
2706       {
2707         rtx link;
2708         rtx i2_insn = 0, i2_val = 0, set;
2709
2710         /* The insn that used to set this register doesn't exist, and
2711            this life of the register may not exist either.  See if one of
2712            I3's links points to an insn that sets I2DEST.  If it does,
2713            that is now the last known value for I2DEST. If we don't update
2714            this and I2 set the register to a value that depended on its old
2715            contents, we will get confused.  If this insn is used, thing
2716            will be set correctly in combine_instructions.  */
2717
2718         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2719           if ((set = single_set (XEXP (link, 0))) != 0
2720               && rtx_equal_p (i2dest, SET_DEST (set)))
2721             i2_insn = XEXP (link, 0), i2_val = SET_SRC (set);
2722
2723         record_value_for_reg (i2dest, i2_insn, i2_val);
2724
2725         /* If the reg formerly set in I2 died only once and that was in I3,
2726            zero its use count so it won't make `reload' do any work.  */
2727         if (! added_sets_2
2728             && (newi2pat == 0 || ! reg_mentioned_p (i2dest, newi2pat))
2729             && ! i2dest_in_i2src)
2730           {
2731             regno = REGNO (i2dest);
2732             REG_N_SETS (regno)--;
2733           }
2734       }
2735
2736     if (i1 && GET_CODE (i1dest) == REG)
2737       {
2738         rtx link;
2739         rtx i1_insn = 0, i1_val = 0, set;
2740
2741         for (link = LOG_LINKS (i3); link; link = XEXP (link, 1))
2742           if ((set = single_set (XEXP (link, 0))) != 0
2743               && rtx_equal_p (i1dest, SET_DEST (set)))
2744             i1_insn = XEXP (link, 0), i1_val = SET_SRC (set);
2745
2746         record_value_for_reg (i1dest, i1_insn, i1_val);
2747
2748         regno = REGNO (i1dest);
2749         if (! added_sets_1 && ! i1dest_in_i1src)
2750           REG_N_SETS (regno)--;
2751       }
2752
2753     /* Update reg_nonzero_bits et al for any changes that may have been made
2754        to this insn.  The order of set_nonzero_bits_and_sign_copies() is
2755        important.  Because newi2pat can affect nonzero_bits of newpat */
2756     if (newi2pat)
2757       note_stores (newi2pat, set_nonzero_bits_and_sign_copies, NULL);
2758     note_stores (newpat, set_nonzero_bits_and_sign_copies, NULL);
2759
2760     /* Set new_direct_jump_p if a new return or simple jump instruction
2761        has been created.
2762
2763        If I3 is now an unconditional jump, ensure that it has a
2764        BARRIER following it since it may have initially been a
2765        conditional jump.  It may also be the last nonnote insn.  */
2766
2767     if (GET_CODE (newpat) == RETURN || any_uncondjump_p (i3))
2768       {
2769         *new_direct_jump_p = 1;
2770
2771         if ((temp = next_nonnote_insn (i3)) == NULL_RTX
2772             || GET_CODE (temp) != BARRIER)
2773           emit_barrier_after (i3);
2774       }
2775     /* An NOOP jump does not need barrier, but it does need cleaning up
2776        of CFG.  */
2777     if (GET_CODE (newpat) == SET
2778         && SET_SRC (newpat) == pc_rtx
2779         && SET_DEST (newpat) == pc_rtx)
2780       *new_direct_jump_p = 1;
2781   }
2782
2783   combine_successes++;
2784   undo_commit ();
2785
2786   /* Clear this here, so that subsequent get_last_value calls are not
2787      affected.  */
2788   subst_prev_insn = NULL_RTX;
2789
2790   if (added_links_insn
2791       && (newi2pat == 0 || INSN_CUID (added_links_insn) < INSN_CUID (i2))
2792       && INSN_CUID (added_links_insn) < INSN_CUID (i3))
2793     return added_links_insn;
2794   else
2795     return newi2pat ? i2 : i3;
2796 }
2797 \f
2798 /* Undo all the modifications recorded in undobuf.  */
2799
2800 static void
2801 undo_all ()
2802 {
2803   struct undo *undo, *next;
2804
2805   for (undo = undobuf.undos; undo; undo = next)
2806     {
2807       next = undo->next;
2808       if (undo->is_int)
2809         *undo->where.i = undo->old_contents.i;
2810       else
2811         *undo->where.r = undo->old_contents.r;
2812
2813       undo->next = undobuf.frees;
2814       undobuf.frees = undo;
2815     }
2816
2817   undobuf.undos = 0;
2818
2819   /* Clear this here, so that subsequent get_last_value calls are not
2820      affected.  */
2821   subst_prev_insn = NULL_RTX;
2822 }
2823
2824 /* We've committed to accepting the changes we made.  Move all
2825    of the undos to the free list.  */
2826
2827 static void
2828 undo_commit ()
2829 {
2830   struct undo *undo, *next;
2831
2832   for (undo = undobuf.undos; undo; undo = next)
2833     {
2834       next = undo->next;
2835       undo->next = undobuf.frees;
2836       undobuf.frees = undo;
2837     }
2838   undobuf.undos = 0;
2839 }
2840
2841 \f
2842 /* Find the innermost point within the rtx at LOC, possibly LOC itself,
2843    where we have an arithmetic expression and return that point.  LOC will
2844    be inside INSN.
2845
2846    try_combine will call this function to see if an insn can be split into
2847    two insns.  */
2848
2849 static rtx *
2850 find_split_point (loc, insn)
2851      rtx *loc;
2852      rtx insn;
2853 {
2854   rtx x = *loc;
2855   enum rtx_code code = GET_CODE (x);
2856   rtx *split;
2857   unsigned HOST_WIDE_INT len = 0;
2858   HOST_WIDE_INT pos = 0;
2859   int unsignedp = 0;
2860   rtx inner = NULL_RTX;
2861
2862   /* First special-case some codes.  */
2863   switch (code)
2864     {
2865     case SUBREG:
2866 #ifdef INSN_SCHEDULING
2867       /* If we are making a paradoxical SUBREG invalid, it becomes a split
2868          point.  */
2869       if (GET_CODE (SUBREG_REG (x)) == MEM)
2870         return loc;
2871 #endif
2872       return find_split_point (&SUBREG_REG (x), insn);
2873
2874     case MEM:
2875 #ifdef HAVE_lo_sum
2876       /* If we have (mem (const ..)) or (mem (symbol_ref ...)), split it
2877          using LO_SUM and HIGH.  */
2878       if (GET_CODE (XEXP (x, 0)) == CONST
2879           || GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
2880         {
2881           SUBST (XEXP (x, 0),
2882                  gen_rtx_LO_SUM (Pmode,
2883                                  gen_rtx_HIGH (Pmode, XEXP (x, 0)),
2884                                  XEXP (x, 0)));
2885           return &XEXP (XEXP (x, 0), 0);
2886         }
2887 #endif
2888
2889       /* If we have a PLUS whose second operand is a constant and the
2890          address is not valid, perhaps will can split it up using
2891          the machine-specific way to split large constants.  We use
2892          the first pseudo-reg (one of the virtual regs) as a placeholder;
2893          it will not remain in the result.  */
2894       if (GET_CODE (XEXP (x, 0)) == PLUS
2895           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
2896           && ! memory_address_p (GET_MODE (x), XEXP (x, 0)))
2897         {
2898           rtx reg = regno_reg_rtx[FIRST_PSEUDO_REGISTER];
2899           rtx seq = split_insns (gen_rtx_SET (VOIDmode, reg, XEXP (x, 0)),
2900                                  subst_insn);
2901
2902           /* This should have produced two insns, each of which sets our
2903              placeholder.  If the source of the second is a valid address,
2904              we can make put both sources together and make a split point
2905              in the middle.  */
2906
2907           if (seq && XVECLEN (seq, 0) == 2
2908               && GET_CODE (XVECEXP (seq, 0, 0)) == INSN
2909               && GET_CODE (PATTERN (XVECEXP (seq, 0, 0))) == SET
2910               && SET_DEST (PATTERN (XVECEXP (seq, 0, 0))) == reg
2911               && ! reg_mentioned_p (reg,
2912                                     SET_SRC (PATTERN (XVECEXP (seq, 0, 0))))
2913               && GET_CODE (XVECEXP (seq, 0, 1)) == INSN
2914               && GET_CODE (PATTERN (XVECEXP (seq, 0, 1))) == SET
2915               && SET_DEST (PATTERN (XVECEXP (seq, 0, 1))) == reg
2916               && memory_address_p (GET_MODE (x),
2917                                    SET_SRC (PATTERN (XVECEXP (seq, 0, 1)))))
2918             {
2919               rtx src1 = SET_SRC (PATTERN (XVECEXP (seq, 0, 0)));
2920               rtx src2 = SET_SRC (PATTERN (XVECEXP (seq, 0, 1)));
2921
2922               /* Replace the placeholder in SRC2 with SRC1.  If we can
2923                  find where in SRC2 it was placed, that can become our
2924                  split point and we can replace this address with SRC2.
2925                  Just try two obvious places.  */
2926
2927               src2 = replace_rtx (src2, reg, src1);
2928               split = 0;
2929               if (XEXP (src2, 0) == src1)
2930                 split = &XEXP (src2, 0);
2931               else if (GET_RTX_FORMAT (GET_CODE (XEXP (src2, 0)))[0] == 'e'
2932                        && XEXP (XEXP (src2, 0), 0) == src1)
2933                 split = &XEXP (XEXP (src2, 0), 0);
2934
2935               if (split)
2936                 {
2937                   SUBST (XEXP (x, 0), src2);
2938                   return split;
2939                 }
2940             }
2941
2942           /* If that didn't work, perhaps the first operand is complex and
2943              needs to be computed separately, so make a split point there.
2944              This will occur on machines that just support REG + CONST
2945              and have a constant moved through some previous computation.  */
2946
2947           else if (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) != 'o'
2948                    && ! (GET_CODE (XEXP (XEXP (x, 0), 0)) == SUBREG
2949                          && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (XEXP (x, 0), 0))))
2950                              == 'o')))
2951             return &XEXP (XEXP (x, 0), 0);
2952         }
2953       break;
2954
2955     case SET:
2956 #ifdef HAVE_cc0
2957       /* If SET_DEST is CC0 and SET_SRC is not an operand, a COMPARE, or a
2958          ZERO_EXTRACT, the most likely reason why this doesn't match is that
2959          we need to put the operand into a register.  So split at that
2960          point.  */
2961
2962       if (SET_DEST (x) == cc0_rtx
2963           && GET_CODE (SET_SRC (x)) != COMPARE
2964           && GET_CODE (SET_SRC (x)) != ZERO_EXTRACT
2965           && GET_RTX_CLASS (GET_CODE (SET_SRC (x))) != 'o'
2966           && ! (GET_CODE (SET_SRC (x)) == SUBREG
2967                 && GET_RTX_CLASS (GET_CODE (SUBREG_REG (SET_SRC (x)))) == 'o'))
2968         return &SET_SRC (x);
2969 #endif
2970
2971       /* See if we can split SET_SRC as it stands.  */
2972       split = find_split_point (&SET_SRC (x), insn);
2973       if (split && split != &SET_SRC (x))
2974         return split;
2975
2976       /* See if we can split SET_DEST as it stands.  */
2977       split = find_split_point (&SET_DEST (x), insn);
2978       if (split && split != &SET_DEST (x))
2979         return split;
2980
2981       /* See if this is a bitfield assignment with everything constant.  If
2982          so, this is an IOR of an AND, so split it into that.  */
2983       if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
2984           && (GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)))
2985               <= HOST_BITS_PER_WIDE_INT)
2986           && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT
2987           && GET_CODE (XEXP (SET_DEST (x), 2)) == CONST_INT
2988           && GET_CODE (SET_SRC (x)) == CONST_INT
2989           && ((INTVAL (XEXP (SET_DEST (x), 1))
2990               + INTVAL (XEXP (SET_DEST (x), 2)))
2991               <= GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0))))
2992           && ! side_effects_p (XEXP (SET_DEST (x), 0)))
2993         {
2994           HOST_WIDE_INT pos = INTVAL (XEXP (SET_DEST (x), 2));
2995           unsigned HOST_WIDE_INT len = INTVAL (XEXP (SET_DEST (x), 1));
2996           unsigned HOST_WIDE_INT src = INTVAL (SET_SRC (x));
2997           rtx dest = XEXP (SET_DEST (x), 0);
2998           enum machine_mode mode = GET_MODE (dest);
2999           unsigned HOST_WIDE_INT mask = ((HOST_WIDE_INT) 1 << len) - 1;
3000
3001           if (BITS_BIG_ENDIAN)
3002             pos = GET_MODE_BITSIZE (mode) - len - pos;
3003
3004           if (src == mask)
3005             SUBST (SET_SRC (x),
3006                    gen_binary (IOR, mode, dest, GEN_INT (src << pos)));
3007           else
3008             SUBST (SET_SRC (x),
3009                    gen_binary (IOR, mode,
3010                                gen_binary (AND, mode, dest,
3011                                            GEN_INT (~(mask << pos)
3012                                                     & GET_MODE_MASK (mode))),
3013                                GEN_INT (src << pos)));
3014
3015           SUBST (SET_DEST (x), dest);
3016
3017           split = find_split_point (&SET_SRC (x), insn);
3018           if (split && split != &SET_SRC (x))
3019             return split;
3020         }
3021
3022       /* Otherwise, see if this is an operation that we can split into two.
3023          If so, try to split that.  */
3024       code = GET_CODE (SET_SRC (x));
3025
3026       switch (code)
3027         {
3028         case AND:
3029           /* If we are AND'ing with a large constant that is only a single
3030              bit and the result is only being used in a context where we
3031              need to know if it is zero or non-zero, replace it with a bit
3032              extraction.  This will avoid the large constant, which might
3033              have taken more than one insn to make.  If the constant were
3034              not a valid argument to the AND but took only one insn to make,
3035              this is no worse, but if it took more than one insn, it will
3036              be better.  */
3037
3038           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3039               && GET_CODE (XEXP (SET_SRC (x), 0)) == REG
3040               && (pos = exact_log2 (INTVAL (XEXP (SET_SRC (x), 1)))) >= 7
3041               && GET_CODE (SET_DEST (x)) == REG
3042               && (split = find_single_use (SET_DEST (x), insn, (rtx*)0)) != 0
3043               && (GET_CODE (*split) == EQ || GET_CODE (*split) == NE)
3044               && XEXP (*split, 0) == SET_DEST (x)
3045               && XEXP (*split, 1) == const0_rtx)
3046             {
3047               rtx extraction = make_extraction (GET_MODE (SET_DEST (x)),
3048                                                 XEXP (SET_SRC (x), 0),
3049                                                 pos, NULL_RTX, 1, 1, 0, 0);
3050               if (extraction != 0)
3051                 {
3052                   SUBST (SET_SRC (x), extraction);
3053                   return find_split_point (loc, insn);
3054                 }
3055             }
3056           break;
3057
3058         case NE:
3059           /* if STORE_FLAG_VALUE is -1, this is (NE X 0) and only one bit of X
3060              is known to be on, this can be converted into a NEG of a shift.  */
3061           if (STORE_FLAG_VALUE == -1 && XEXP (SET_SRC (x), 1) == const0_rtx
3062               && GET_MODE (SET_SRC (x)) == GET_MODE (XEXP (SET_SRC (x), 0))
3063               && 1 <= (pos = exact_log2
3064                        (nonzero_bits (XEXP (SET_SRC (x), 0),
3065                                       GET_MODE (XEXP (SET_SRC (x), 0))))))
3066             {
3067               enum machine_mode mode = GET_MODE (XEXP (SET_SRC (x), 0));
3068
3069               SUBST (SET_SRC (x),
3070                      gen_rtx_NEG (mode,
3071                                   gen_rtx_LSHIFTRT (mode,
3072                                                     XEXP (SET_SRC (x), 0),
3073                                                     GEN_INT (pos))));
3074
3075               split = find_split_point (&SET_SRC (x), insn);
3076               if (split && split != &SET_SRC (x))
3077                 return split;
3078             }
3079           break;
3080
3081         case SIGN_EXTEND:
3082           inner = XEXP (SET_SRC (x), 0);
3083
3084           /* We can't optimize if either mode is a partial integer
3085              mode as we don't know how many bits are significant
3086              in those modes.  */
3087           if (GET_MODE_CLASS (GET_MODE (inner)) == MODE_PARTIAL_INT
3088               || GET_MODE_CLASS (GET_MODE (SET_SRC (x))) == MODE_PARTIAL_INT)
3089             break;
3090
3091           pos = 0;
3092           len = GET_MODE_BITSIZE (GET_MODE (inner));
3093           unsignedp = 0;
3094           break;
3095
3096         case SIGN_EXTRACT:
3097         case ZERO_EXTRACT:
3098           if (GET_CODE (XEXP (SET_SRC (x), 1)) == CONST_INT
3099               && GET_CODE (XEXP (SET_SRC (x), 2)) == CONST_INT)
3100             {
3101               inner = XEXP (SET_SRC (x), 0);
3102               len = INTVAL (XEXP (SET_SRC (x), 1));
3103               pos = INTVAL (XEXP (SET_SRC (x), 2));
3104
3105               if (BITS_BIG_ENDIAN)
3106                 pos = GET_MODE_BITSIZE (GET_MODE (inner)) - len - pos;
3107               unsignedp = (code == ZERO_EXTRACT);
3108             }
3109           break;
3110
3111         default:
3112           break;
3113         }
3114
3115       if (len && pos >= 0 && pos + len <= GET_MODE_BITSIZE (GET_MODE (inner)))
3116         {
3117           enum machine_mode mode = GET_MODE (SET_SRC (x));
3118
3119           /* For unsigned, we have a choice of a shift followed by an
3120              AND or two shifts.  Use two shifts for field sizes where the
3121              constant might be too large.  We assume here that we can
3122              always at least get 8-bit constants in an AND insn, which is
3123              true for every current RISC.  */
3124
3125           if (unsignedp && len <= 8)
3126             {
3127               SUBST (SET_SRC (x),
3128                      gen_rtx_AND (mode,
3129                                   gen_rtx_LSHIFTRT
3130                                   (mode, gen_lowpart_for_combine (mode, inner),
3131                                    GEN_INT (pos)),
3132                                   GEN_INT (((HOST_WIDE_INT) 1 << len) - 1)));
3133
3134               split = find_split_point (&SET_SRC (x), insn);
3135               if (split && split != &SET_SRC (x))
3136                 return split;
3137             }
3138           else
3139             {
3140               SUBST (SET_SRC (x),
3141                      gen_rtx_fmt_ee
3142                      (unsignedp ? LSHIFTRT : ASHIFTRT, mode,
3143                       gen_rtx_ASHIFT (mode,
3144                                       gen_lowpart_for_combine (mode, inner),
3145                                       GEN_INT (GET_MODE_BITSIZE (mode)
3146                                                - len - pos)),
3147                       GEN_INT (GET_MODE_BITSIZE (mode) - len)));
3148
3149               split = find_split_point (&SET_SRC (x), insn);
3150               if (split && split != &SET_SRC (x))
3151                 return split;
3152             }
3153         }
3154
3155       /* See if this is a simple operation with a constant as the second
3156          operand.  It might be that this constant is out of range and hence
3157          could be used as a split point.  */
3158       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3159            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3160            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<')
3161           && CONSTANT_P (XEXP (SET_SRC (x), 1))
3162           && (GET_RTX_CLASS (GET_CODE (XEXP (SET_SRC (x), 0))) == 'o'
3163               || (GET_CODE (XEXP (SET_SRC (x), 0)) == SUBREG
3164                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (SET_SRC (x), 0))))
3165                       == 'o'))))
3166         return &XEXP (SET_SRC (x), 1);
3167
3168       /* Finally, see if this is a simple operation with its first operand
3169          not in a register.  The operation might require this operand in a
3170          register, so return it as a split point.  We can always do this
3171          because if the first operand were another operation, we would have
3172          already found it as a split point.  */
3173       if ((GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '2'
3174            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == 'c'
3175            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '<'
3176            || GET_RTX_CLASS (GET_CODE (SET_SRC (x))) == '1')
3177           && ! register_operand (XEXP (SET_SRC (x), 0), VOIDmode))
3178         return &XEXP (SET_SRC (x), 0);
3179
3180       return 0;
3181
3182     case AND:
3183     case IOR:
3184       /* We write NOR as (and (not A) (not B)), but if we don't have a NOR,
3185          it is better to write this as (not (ior A B)) so we can split it.
3186          Similarly for IOR.  */
3187       if (GET_CODE (XEXP (x, 0)) == NOT && GET_CODE (XEXP (x, 1)) == NOT)
3188         {
3189           SUBST (*loc,
3190                  gen_rtx_NOT (GET_MODE (x),
3191                               gen_rtx_fmt_ee (code == IOR ? AND : IOR,
3192                                               GET_MODE (x),
3193                                               XEXP (XEXP (x, 0), 0),
3194                                               XEXP (XEXP (x, 1), 0))));
3195           return find_split_point (loc, insn);
3196         }
3197
3198       /* Many RISC machines have a large set of logical insns.  If the
3199          second operand is a NOT, put it first so we will try to split the
3200          other operand first.  */
3201       if (GET_CODE (XEXP (x, 1)) == NOT)
3202         {
3203           rtx tem = XEXP (x, 0);
3204           SUBST (XEXP (x, 0), XEXP (x, 1));
3205           SUBST (XEXP (x, 1), tem);
3206         }
3207       break;
3208
3209     default:
3210       break;
3211     }
3212
3213   /* Otherwise, select our actions depending on our rtx class.  */
3214   switch (GET_RTX_CLASS (code))
3215     {
3216     case 'b':                   /* This is ZERO_EXTRACT and SIGN_EXTRACT.  */
3217     case '3':
3218       split = find_split_point (&XEXP (x, 2), insn);
3219       if (split)
3220         return split;
3221       /* ... fall through ...  */
3222     case '2':
3223     case 'c':
3224     case '<':
3225       split = find_split_point (&XEXP (x, 1), insn);
3226       if (split)
3227         return split;
3228       /* ... fall through ...  */
3229     case '1':
3230       /* Some machines have (and (shift ...) ...) insns.  If X is not
3231          an AND, but XEXP (X, 0) is, use it as our split point.  */
3232       if (GET_CODE (x) != AND && GET_CODE (XEXP (x, 0)) == AND)
3233         return &XEXP (x, 0);
3234
3235       split = find_split_point (&XEXP (x, 0), insn);
3236       if (split)
3237         return split;
3238       return loc;
3239     }
3240
3241   /* Otherwise, we don't have a split point.  */
3242   return 0;
3243 }
3244 \f
3245 /* Throughout X, replace FROM with TO, and return the result.
3246    The result is TO if X is FROM;
3247    otherwise the result is X, but its contents may have been modified.
3248    If they were modified, a record was made in undobuf so that
3249    undo_all will (among other things) return X to its original state.
3250
3251    If the number of changes necessary is too much to record to undo,
3252    the excess changes are not made, so the result is invalid.
3253    The changes already made can still be undone.
3254    undobuf.num_undo is incremented for such changes, so by testing that
3255    the caller can tell whether the result is valid.
3256
3257    `n_occurrences' is incremented each time FROM is replaced.
3258
3259    IN_DEST is non-zero if we are processing the SET_DEST of a SET.
3260
3261    UNIQUE_COPY is non-zero if each substitution must be unique.  We do this
3262    by copying if `n_occurrences' is non-zero.  */
3263
3264 static rtx
3265 subst (x, from, to, in_dest, unique_copy)
3266      register rtx x, from, to;
3267      int in_dest;
3268      int unique_copy;
3269 {
3270   register enum rtx_code code = GET_CODE (x);
3271   enum machine_mode op0_mode = VOIDmode;
3272   register const char *fmt;
3273   register int len, i;
3274   rtx new;
3275
3276 /* Two expressions are equal if they are identical copies of a shared
3277    RTX or if they are both registers with the same register number
3278    and mode.  */
3279
3280 #define COMBINE_RTX_EQUAL_P(X,Y)                        \
3281   ((X) == (Y)                                           \
3282    || (GET_CODE (X) == REG && GET_CODE (Y) == REG       \
3283        && REGNO (X) == REGNO (Y) && GET_MODE (X) == GET_MODE (Y)))
3284
3285   if (! in_dest && COMBINE_RTX_EQUAL_P (x, from))
3286     {
3287       n_occurrences++;
3288       return (unique_copy && n_occurrences > 1 ? copy_rtx (to) : to);
3289     }
3290
3291   /* If X and FROM are the same register but different modes, they will
3292      not have been seen as equal above.  However, flow.c will make a
3293      LOG_LINKS entry for that case.  If we do nothing, we will try to
3294      rerecognize our original insn and, when it succeeds, we will
3295      delete the feeding insn, which is incorrect.
3296
3297      So force this insn not to match in this (rare) case.  */
3298   if (! in_dest && code == REG && GET_CODE (from) == REG
3299       && REGNO (x) == REGNO (from))
3300     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
3301
3302   /* If this is an object, we are done unless it is a MEM or LO_SUM, both
3303      of which may contain things that can be combined.  */
3304   if (code != MEM && code != LO_SUM && GET_RTX_CLASS (code) == 'o')
3305     return x;
3306
3307   /* It is possible to have a subexpression appear twice in the insn.
3308      Suppose that FROM is a register that appears within TO.
3309      Then, after that subexpression has been scanned once by `subst',
3310      the second time it is scanned, TO may be found.  If we were
3311      to scan TO here, we would find FROM within it and create a
3312      self-referent rtl structure which is completely wrong.  */
3313   if (COMBINE_RTX_EQUAL_P (x, to))
3314     return to;
3315
3316   /* Parallel asm_operands need special attention because all of the
3317      inputs are shared across the arms.  Furthermore, unsharing the
3318      rtl results in recognition failures.  Failure to handle this case
3319      specially can result in circular rtl.
3320
3321      Solve this by doing a normal pass across the first entry of the
3322      parallel, and only processing the SET_DESTs of the subsequent
3323      entries.  Ug.  */
3324
3325   if (code == PARALLEL
3326       && GET_CODE (XVECEXP (x, 0, 0)) == SET
3327       && GET_CODE (SET_SRC (XVECEXP (x, 0, 0))) == ASM_OPERANDS)
3328     {
3329       new = subst (XVECEXP (x, 0, 0), from, to, 0, unique_copy);
3330
3331       /* If this substitution failed, this whole thing fails.  */
3332       if (GET_CODE (new) == CLOBBER
3333           && XEXP (new, 0) == const0_rtx)
3334         return new;
3335
3336       SUBST (XVECEXP (x, 0, 0), new);
3337
3338       for (i = XVECLEN (x, 0) - 1; i >= 1; i--)
3339         {
3340           rtx dest = SET_DEST (XVECEXP (x, 0, i));
3341
3342           if (GET_CODE (dest) != REG
3343               && GET_CODE (dest) != CC0
3344               && GET_CODE (dest) != PC)
3345             {
3346               new = subst (dest, from, to, 0, unique_copy);
3347
3348               /* If this substitution failed, this whole thing fails.  */
3349               if (GET_CODE (new) == CLOBBER
3350                   && XEXP (new, 0) == const0_rtx)
3351                 return new;
3352
3353               SUBST (SET_DEST (XVECEXP (x, 0, i)), new);
3354             }
3355         }
3356     }
3357   else
3358     {
3359       len = GET_RTX_LENGTH (code);
3360       fmt = GET_RTX_FORMAT (code);
3361
3362       /* We don't need to process a SET_DEST that is a register, CC0,
3363          or PC, so set up to skip this common case.  All other cases
3364          where we want to suppress replacing something inside a
3365          SET_SRC are handled via the IN_DEST operand.  */
3366       if (code == SET
3367           && (GET_CODE (SET_DEST (x)) == REG
3368               || GET_CODE (SET_DEST (x)) == CC0
3369               || GET_CODE (SET_DEST (x)) == PC))
3370         fmt = "ie";
3371
3372       /* Get the mode of operand 0 in case X is now a SIGN_EXTEND of a
3373          constant.  */
3374       if (fmt[0] == 'e')
3375         op0_mode = GET_MODE (XEXP (x, 0));
3376
3377       for (i = 0; i < len; i++)
3378         {
3379           if (fmt[i] == 'E')
3380             {
3381               register int j;
3382               for (j = XVECLEN (x, i) - 1; j >= 0; j--)
3383                 {
3384                   if (COMBINE_RTX_EQUAL_P (XVECEXP (x, i, j), from))
3385                     {
3386                       new = (unique_copy && n_occurrences
3387                              ? copy_rtx (to) : to);
3388                       n_occurrences++;
3389                     }
3390                   else
3391                     {
3392                       new = subst (XVECEXP (x, i, j), from, to, 0,
3393                                    unique_copy);
3394
3395                       /* If this substitution failed, this whole thing
3396                          fails.  */
3397                       if (GET_CODE (new) == CLOBBER
3398                           && XEXP (new, 0) == const0_rtx)
3399                         return new;
3400                     }
3401
3402                   SUBST (XVECEXP (x, i, j), new);
3403                 }
3404             }
3405           else if (fmt[i] == 'e')
3406             {
3407               /* If this is a register being set, ignore it.  */
3408               new = XEXP (x, i);
3409               if (in_dest
3410                   && (code == SUBREG || code == STRICT_LOW_PART
3411                       || code == ZERO_EXTRACT)
3412                   && i == 0
3413                   && GET_CODE (new) == REG)
3414                 ;
3415
3416               else if (COMBINE_RTX_EQUAL_P (XEXP (x, i), from))
3417                 {
3418                   /* In general, don't install a subreg involving two
3419                      modes not tieable.  It can worsen register
3420                      allocation, and can even make invalid reload
3421                      insns, since the reg inside may need to be copied
3422                      from in the outside mode, and that may be invalid
3423                      if it is an fp reg copied in integer mode.
3424
3425                      We allow two exceptions to this: It is valid if
3426                      it is inside another SUBREG and the mode of that
3427                      SUBREG and the mode of the inside of TO is
3428                      tieable and it is valid if X is a SET that copies
3429                      FROM to CC0.  */
3430
3431                   if (GET_CODE (to) == SUBREG
3432                       && ! MODES_TIEABLE_P (GET_MODE (to),
3433                                             GET_MODE (SUBREG_REG (to)))
3434                       && ! (code == SUBREG
3435                             && MODES_TIEABLE_P (GET_MODE (x),
3436                                                 GET_MODE (SUBREG_REG (to))))
3437 #ifdef HAVE_cc0
3438                       && ! (code == SET && i == 1 && XEXP (x, 0) == cc0_rtx)
3439 #endif
3440                       )
3441                     return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
3442
3443 #ifdef CLASS_CANNOT_CHANGE_MODE
3444                   if (code == SUBREG
3445                       && GET_CODE (to) == REG
3446                       && REGNO (to) < FIRST_PSEUDO_REGISTER
3447                       && (TEST_HARD_REG_BIT
3448                           (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
3449                            REGNO (to)))
3450                       && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (to),
3451                                                      GET_MODE (x)))
3452                     return gen_rtx_CLOBBER (VOIDmode, const0_rtx);
3453 #endif
3454
3455                   new = (unique_copy && n_occurrences ? copy_rtx (to) : to);
3456                   n_occurrences++;
3457                 }
3458               else
3459                 /* If we are in a SET_DEST, suppress most cases unless we
3460                    have gone inside a MEM, in which case we want to
3461                    simplify the address.  We assume here that things that
3462                    are actually part of the destination have their inner
3463                    parts in the first expression.  This is true for SUBREG,
3464                    STRICT_LOW_PART, and ZERO_EXTRACT, which are the only
3465                    things aside from REG and MEM that should appear in a
3466                    SET_DEST.  */
3467                 new = subst (XEXP (x, i), from, to,
3468                              (((in_dest
3469                                 && (code == SUBREG || code == STRICT_LOW_PART
3470                                     || code == ZERO_EXTRACT))
3471                                || code == SET)
3472                               && i == 0), unique_copy);
3473
3474               /* If we found that we will have to reject this combination,
3475                  indicate that by returning the CLOBBER ourselves, rather than
3476                  an expression containing it.  This will speed things up as
3477                  well as prevent accidents where two CLOBBERs are considered
3478                  to be equal, thus producing an incorrect simplification.  */
3479
3480               if (GET_CODE (new) == CLOBBER && XEXP (new, 0) == const0_rtx)
3481                 return new;
3482
3483               SUBST (XEXP (x, i), new);
3484             }
3485         }
3486     }
3487
3488   /* Try to simplify X.  If the simplification changed the code, it is likely
3489      that further simplification will help, so loop, but limit the number
3490      of repetitions that will be performed.  */
3491
3492   for (i = 0; i < 4; i++)
3493     {
3494       /* If X is sufficiently simple, don't bother trying to do anything
3495          with it.  */
3496       if (code != CONST_INT && code != REG && code != CLOBBER)
3497         x = combine_simplify_rtx (x, op0_mode, i == 3, in_dest);
3498
3499       if (GET_CODE (x) == code)
3500         break;
3501
3502       code = GET_CODE (x);
3503
3504       /* We no longer know the original mode of operand 0 since we
3505          have changed the form of X)  */
3506       op0_mode = VOIDmode;
3507     }
3508
3509   return x;
3510 }
3511 \f
3512 /* Simplify X, a piece of RTL.  We just operate on the expression at the
3513    outer level; call `subst' to simplify recursively.  Return the new
3514    expression.
3515
3516    OP0_MODE is the original mode of XEXP (x, 0); LAST is nonzero if this
3517    will be the iteration even if an expression with a code different from
3518    X is returned; IN_DEST is nonzero if we are inside a SET_DEST.  */
3519
3520 static rtx
3521 combine_simplify_rtx (x, op0_mode, last, in_dest)
3522      rtx x;
3523      enum machine_mode op0_mode;
3524      int last;
3525      int in_dest;
3526 {
3527   enum rtx_code code = GET_CODE (x);
3528   enum machine_mode mode = GET_MODE (x);
3529   rtx temp;
3530   rtx reversed;
3531   int i;
3532
3533   /* If this is a commutative operation, put a constant last and a complex
3534      expression first.  We don't need to do this for comparisons here.  */
3535   if (GET_RTX_CLASS (code) == 'c'
3536       && swap_commutative_operands_p (XEXP (x, 0), XEXP (x, 1)))
3537     {
3538       temp = XEXP (x, 0);
3539       SUBST (XEXP (x, 0), XEXP (x, 1));
3540       SUBST (XEXP (x, 1), temp);
3541     }
3542
3543   /* If this is a PLUS, MINUS, or MULT, and the first operand is the
3544      sign extension of a PLUS with a constant, reverse the order of the sign
3545      extension and the addition. Note that this not the same as the original
3546      code, but overflow is undefined for signed values.  Also note that the
3547      PLUS will have been partially moved "inside" the sign-extension, so that
3548      the first operand of X will really look like:
3549          (ashiftrt (plus (ashift A C4) C5) C4).
3550      We convert this to
3551          (plus (ashiftrt (ashift A C4) C2) C4)
3552      and replace the first operand of X with that expression.  Later parts
3553      of this function may simplify the expression further.
3554
3555      For example, if we start with (mult (sign_extend (plus A C1)) C2),
3556      we swap the SIGN_EXTEND and PLUS.  Later code will apply the
3557      distributive law to produce (plus (mult (sign_extend X) C1) C3).
3558
3559      We do this to simplify address expressions.  */
3560
3561   if ((code == PLUS || code == MINUS || code == MULT)
3562       && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3563       && GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS
3564       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == ASHIFT
3565       && GET_CODE (XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1)) == CONST_INT
3566       && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3567       && XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 1) == XEXP (XEXP (x, 0), 1)
3568       && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
3569       && (temp = simplify_binary_operation (ASHIFTRT, mode,
3570                                             XEXP (XEXP (XEXP (x, 0), 0), 1),
3571                                             XEXP (XEXP (x, 0), 1))) != 0)
3572     {
3573       rtx new
3574         = simplify_shift_const (NULL_RTX, ASHIFT, mode,
3575                                 XEXP (XEXP (XEXP (XEXP (x, 0), 0), 0), 0),
3576                                 INTVAL (XEXP (XEXP (x, 0), 1)));
3577
3578       new = simplify_shift_const (NULL_RTX, ASHIFTRT, mode, new,
3579                                   INTVAL (XEXP (XEXP (x, 0), 1)));
3580
3581       SUBST (XEXP (x, 0), gen_binary (PLUS, mode, new, temp));
3582     }
3583
3584   /* If this is a simple operation applied to an IF_THEN_ELSE, try
3585      applying it to the arms of the IF_THEN_ELSE.  This often simplifies
3586      things.  Check for cases where both arms are testing the same
3587      condition.
3588
3589      Don't do anything if all operands are very simple.  */
3590
3591   if (((GET_RTX_CLASS (code) == '2' || GET_RTX_CLASS (code) == 'c'
3592         || GET_RTX_CLASS (code) == '<')
3593        && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3594             && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3595                   && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3596                       == 'o')))
3597            || (GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) != 'o'
3598                && ! (GET_CODE (XEXP (x, 1)) == SUBREG
3599                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 1))))
3600                          == 'o')))))
3601       || (GET_RTX_CLASS (code) == '1'
3602           && ((GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) != 'o'
3603                && ! (GET_CODE (XEXP (x, 0)) == SUBREG
3604                      && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0))))
3605                          == 'o'))))))
3606     {
3607       rtx cond, true_rtx, false_rtx;
3608
3609       cond = if_then_else_cond (x, &true_rtx, &false_rtx);
3610       if (cond != 0
3611           /* If everything is a comparison, what we have is highly unlikely
3612              to be simpler, so don't use it.  */
3613           && ! (GET_RTX_CLASS (code) == '<'
3614                 && (GET_RTX_CLASS (GET_CODE (true_rtx)) == '<'
3615                     || GET_RTX_CLASS (GET_CODE (false_rtx)) == '<')))
3616         {
3617           rtx cop1 = const0_rtx;
3618           enum rtx_code cond_code = simplify_comparison (NE, &cond, &cop1);
3619
3620           if (cond_code == NE && GET_RTX_CLASS (GET_CODE (cond)) == '<')
3621             return x;
3622
3623           /* Simplify the alternative arms; this may collapse the true and
3624              false arms to store-flag values.  */
3625           true_rtx = subst (true_rtx, pc_rtx, pc_rtx, 0, 0);
3626           false_rtx = subst (false_rtx, pc_rtx, pc_rtx, 0, 0);
3627
3628           /* If true_rtx and false_rtx are not general_operands, an if_then_else
3629              is unlikely to be simpler.  */
3630           if (general_operand (true_rtx, VOIDmode)
3631               && general_operand (false_rtx, VOIDmode))
3632             {
3633               /* Restarting if we generate a store-flag expression will cause
3634                  us to loop.  Just drop through in this case.  */
3635
3636               /* If the result values are STORE_FLAG_VALUE and zero, we can
3637                  just make the comparison operation.  */
3638               if (true_rtx == const_true_rtx && false_rtx == const0_rtx)
3639                 x = gen_binary (cond_code, mode, cond, cop1);
3640               else if (true_rtx == const0_rtx && false_rtx == const_true_rtx)
3641                 x = gen_binary (reverse_condition (cond_code),
3642                                 mode, cond, cop1);
3643
3644               /* Likewise, we can make the negate of a comparison operation
3645                  if the result values are - STORE_FLAG_VALUE and zero.  */
3646               else if (GET_CODE (true_rtx) == CONST_INT
3647                        && INTVAL (true_rtx) == - STORE_FLAG_VALUE
3648                        && false_rtx == const0_rtx)
3649                 x = simplify_gen_unary (NEG, mode,
3650                                         gen_binary (cond_code, mode, cond,
3651                                                     cop1),
3652                                         mode);
3653               else if (GET_CODE (false_rtx) == CONST_INT
3654                        && INTVAL (false_rtx) == - STORE_FLAG_VALUE
3655                        && true_rtx == const0_rtx)
3656                 x = simplify_gen_unary (NEG, mode,
3657                                         gen_binary (reverse_condition
3658                                                     (cond_code),
3659                                                     mode, cond, cop1),
3660                                         mode);
3661               else
3662                 return gen_rtx_IF_THEN_ELSE (mode,
3663                                              gen_binary (cond_code, VOIDmode,
3664                                                          cond, cop1),
3665                                              true_rtx, false_rtx);
3666
3667               code = GET_CODE (x);
3668               op0_mode = VOIDmode;
3669             }
3670         }
3671     }
3672
3673   /* Try to fold this expression in case we have constants that weren't
3674      present before.  */
3675   temp = 0;
3676   switch (GET_RTX_CLASS (code))
3677     {
3678     case '1':
3679       temp = simplify_unary_operation (code, mode, XEXP (x, 0), op0_mode);
3680       break;
3681     case '<':
3682       {
3683         enum machine_mode cmp_mode = GET_MODE (XEXP (x, 0));
3684         if (cmp_mode == VOIDmode)
3685           {
3686             cmp_mode = GET_MODE (XEXP (x, 1));
3687             if (cmp_mode == VOIDmode)
3688               cmp_mode = op0_mode;
3689           }
3690         temp = simplify_relational_operation (code, cmp_mode,
3691                                               XEXP (x, 0), XEXP (x, 1));
3692       }
3693 #ifdef FLOAT_STORE_FLAG_VALUE
3694       if (temp != 0 && GET_MODE_CLASS (mode) == MODE_FLOAT)
3695         {
3696           if (temp == const0_rtx)
3697             temp = CONST0_RTX (mode);
3698           else
3699             temp = immed_real_const_1 (FLOAT_STORE_FLAG_VALUE (mode), mode);
3700         }
3701 #endif
3702       break;
3703     case 'c':
3704     case '2':
3705       temp = simplify_binary_operation (code, mode, XEXP (x, 0), XEXP (x, 1));
3706       break;
3707     case 'b':
3708     case '3':
3709       temp = simplify_ternary_operation (code, mode, op0_mode, XEXP (x, 0),
3710                                          XEXP (x, 1), XEXP (x, 2));
3711       break;
3712     }
3713
3714   if (temp)
3715     {
3716       x = temp;
3717       code = GET_CODE (temp);
3718       op0_mode = VOIDmode;
3719       mode = GET_MODE (temp);
3720     }
3721
3722   /* First see if we can apply the inverse distributive law.  */
3723   if (code == PLUS || code == MINUS
3724       || code == AND || code == IOR || code == XOR)
3725     {
3726       x = apply_distributive_law (x);
3727       code = GET_CODE (x);
3728       op0_mode = VOIDmode;
3729     }
3730
3731   /* If CODE is an associative operation not otherwise handled, see if we
3732      can associate some operands.  This can win if they are constants or
3733      if they are logically related (i.e. (a & b) & a).  */
3734   if ((code == PLUS || code == MINUS || code == MULT || code == DIV
3735        || code == AND || code == IOR || code == XOR
3736        || code == SMAX || code == SMIN || code == UMAX || code == UMIN)
3737       && ((INTEGRAL_MODE_P (mode) && code != DIV)
3738           || (flag_unsafe_math_optimizations && FLOAT_MODE_P (mode))))
3739     {
3740       if (GET_CODE (XEXP (x, 0)) == code)
3741         {
3742           rtx other = XEXP (XEXP (x, 0), 0);
3743           rtx inner_op0 = XEXP (XEXP (x, 0), 1);
3744           rtx inner_op1 = XEXP (x, 1);
3745           rtx inner;
3746
3747           /* Make sure we pass the constant operand if any as the second
3748              one if this is a commutative operation.  */
3749           if (CONSTANT_P (inner_op0) && GET_RTX_CLASS (code) == 'c')
3750             {
3751               rtx tem = inner_op0;
3752               inner_op0 = inner_op1;
3753               inner_op1 = tem;
3754             }
3755           inner = simplify_binary_operation (code == MINUS ? PLUS
3756                                              : code == DIV ? MULT
3757                                              : code,
3758                                              mode, inner_op0, inner_op1);
3759
3760           /* For commutative operations, try the other pair if that one
3761              didn't simplify.  */
3762           if (inner == 0 && GET_RTX_CLASS (code) == 'c')
3763             {
3764               other = XEXP (XEXP (x, 0), 1);
3765               inner = simplify_binary_operation (code, mode,
3766                                                  XEXP (XEXP (x, 0), 0),
3767                                                  XEXP (x, 1));
3768             }
3769
3770           if (inner)
3771             return gen_binary (code, mode, other, inner);
3772         }
3773     }
3774
3775   /* A little bit of algebraic simplification here.  */
3776   switch (code)
3777     {
3778     case MEM:
3779       /* Ensure that our address has any ASHIFTs converted to MULT in case
3780          address-recognizing predicates are called later.  */
3781       temp = make_compound_operation (XEXP (x, 0), MEM);
3782       SUBST (XEXP (x, 0), temp);
3783       break;
3784
3785     case SUBREG:
3786       if (op0_mode == VOIDmode)
3787         op0_mode = GET_MODE (SUBREG_REG (x));
3788
3789       /* simplify_subreg can't use gen_lowpart_for_combine.  */
3790       if (CONSTANT_P (SUBREG_REG (x))
3791           && subreg_lowpart_offset (mode, op0_mode) == SUBREG_BYTE (x))
3792         return gen_lowpart_for_combine (mode, SUBREG_REG (x));
3793
3794       {
3795         rtx temp;
3796         temp = simplify_subreg (mode, SUBREG_REG (x), op0_mode,
3797                                 SUBREG_BYTE (x));
3798         if (temp)
3799           return temp;
3800       }
3801
3802       /* Note that we cannot do any narrowing for non-constants since
3803          we might have been counting on using the fact that some bits were
3804          zero.  We now do this in the SET.  */
3805
3806       break;
3807
3808     case NOT:
3809       /* (not (plus X -1)) can become (neg X).  */
3810       if (GET_CODE (XEXP (x, 0)) == PLUS
3811           && XEXP (XEXP (x, 0), 1) == constm1_rtx)
3812         return gen_rtx_NEG (mode, XEXP (XEXP (x, 0), 0));
3813
3814       /* Similarly, (not (neg X)) is (plus X -1).  */
3815       if (GET_CODE (XEXP (x, 0)) == NEG)
3816         return gen_rtx_PLUS (mode, XEXP (XEXP (x, 0), 0), constm1_rtx);
3817
3818       /* (not (xor X C)) for C constant is (xor X D) with D = ~C.  */
3819       if (GET_CODE (XEXP (x, 0)) == XOR
3820           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3821           && (temp = simplify_unary_operation (NOT, mode,
3822                                                XEXP (XEXP (x, 0), 1),
3823                                                mode)) != 0)
3824         return gen_binary (XOR, mode, XEXP (XEXP (x, 0), 0), temp);
3825
3826       /* (not (ashift 1 X)) is (rotate ~1 X).  We used to do this for operands
3827          other than 1, but that is not valid.  We could do a similar
3828          simplification for (not (lshiftrt C X)) where C is just the sign bit,
3829          but this doesn't seem common enough to bother with.  */
3830       if (GET_CODE (XEXP (x, 0)) == ASHIFT
3831           && XEXP (XEXP (x, 0), 0) == const1_rtx)
3832         return gen_rtx_ROTATE (mode, simplify_gen_unary (NOT, mode,
3833                                                          const1_rtx, mode),
3834                                XEXP (XEXP (x, 0), 1));
3835
3836       if (GET_CODE (XEXP (x, 0)) == SUBREG
3837           && subreg_lowpart_p (XEXP (x, 0))
3838           && (GET_MODE_SIZE (GET_MODE (XEXP (x, 0)))
3839               < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (x, 0)))))
3840           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == ASHIFT
3841           && XEXP (SUBREG_REG (XEXP (x, 0)), 0) == const1_rtx)
3842         {
3843           enum machine_mode inner_mode = GET_MODE (SUBREG_REG (XEXP (x, 0)));
3844
3845           x = gen_rtx_ROTATE (inner_mode,
3846                               simplify_gen_unary (NOT, inner_mode, const1_rtx,
3847                                                   inner_mode),
3848                               XEXP (SUBREG_REG (XEXP (x, 0)), 1));
3849           return gen_lowpart_for_combine (mode, x);
3850         }
3851
3852       /* If STORE_FLAG_VALUE is -1, (not (comparison foo bar)) can be done by
3853          reversing the comparison code if valid.  */
3854       if (STORE_FLAG_VALUE == -1
3855           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
3856           && (reversed = reversed_comparison (x, mode, XEXP (XEXP (x, 0), 0),
3857                                               XEXP (XEXP (x, 0), 1))))
3858         return reversed;
3859
3860       /* (not (ashiftrt foo C)) where C is the number of bits in FOO minus 1
3861          is (ge foo (const_int 0)) if STORE_FLAG_VALUE is -1, so we can
3862          perform the above simplification.  */
3863
3864       if (STORE_FLAG_VALUE == -1
3865           && GET_CODE (XEXP (x, 0)) == ASHIFTRT
3866           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
3867           && INTVAL (XEXP (XEXP (x, 0), 1)) == GET_MODE_BITSIZE (mode) - 1)
3868         return gen_rtx_GE (mode, XEXP (XEXP (x, 0), 0), const0_rtx);
3869
3870       /* Apply De Morgan's laws to reduce number of patterns for machines
3871          with negating logical insns (and-not, nand, etc.).  If result has
3872          only one NOT, put it first, since that is how the patterns are
3873          coded.  */
3874
3875       if (GET_CODE (XEXP (x, 0)) == IOR || GET_CODE (XEXP (x, 0)) == AND)
3876         {
3877           rtx in1 = XEXP (XEXP (x, 0), 0), in2 = XEXP (XEXP (x, 0), 1);
3878           enum machine_mode op_mode;
3879
3880           op_mode = GET_MODE (in1);
3881           in1 = simplify_gen_unary (NOT, op_mode, in1, op_mode);
3882
3883           op_mode = GET_MODE (in2);
3884           if (op_mode == VOIDmode)
3885             op_mode = mode;
3886           in2 = simplify_gen_unary (NOT, op_mode, in2, op_mode);
3887
3888           if (GET_CODE (in2) == NOT && GET_CODE (in1) != NOT)
3889             {
3890               rtx tem = in2;
3891               in2 = in1; in1 = tem;
3892             }
3893
3894           return gen_rtx_fmt_ee (GET_CODE (XEXP (x, 0)) == IOR ? AND : IOR,
3895                                  mode, in1, in2);
3896         }
3897       break;
3898
3899     case NEG:
3900       /* (neg (plus X 1)) can become (not X).  */
3901       if (GET_CODE (XEXP (x, 0)) == PLUS
3902           && XEXP (XEXP (x, 0), 1) == const1_rtx)
3903         return gen_rtx_NOT (mode, XEXP (XEXP (x, 0), 0));
3904
3905       /* Similarly, (neg (not X)) is (plus X 1).  */
3906       if (GET_CODE (XEXP (x, 0)) == NOT)
3907         return plus_constant (XEXP (XEXP (x, 0), 0), 1);
3908
3909       /* (neg (minus X Y)) can become (minus Y X).  */
3910       if (GET_CODE (XEXP (x, 0)) == MINUS
3911           && (! FLOAT_MODE_P (mode)
3912               /* x-y != -(y-x) with IEEE floating point.  */
3913               || TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
3914               || flag_unsafe_math_optimizations))
3915         return gen_binary (MINUS, mode, XEXP (XEXP (x, 0), 1),
3916                            XEXP (XEXP (x, 0), 0));
3917
3918       /* (neg (xor A 1)) is (plus A -1) if A is known to be either 0 or 1.  */
3919       if (GET_CODE (XEXP (x, 0)) == XOR && XEXP (XEXP (x, 0), 1) == const1_rtx
3920           && nonzero_bits (XEXP (XEXP (x, 0), 0), mode) == 1)
3921         return gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0), constm1_rtx);
3922
3923       /* NEG commutes with ASHIFT since it is multiplication.  Only do this
3924          if we can then eliminate the NEG (e.g.,
3925          if the operand is a constant).  */
3926
3927       if (GET_CODE (XEXP (x, 0)) == ASHIFT)
3928         {
3929           temp = simplify_unary_operation (NEG, mode,
3930                                            XEXP (XEXP (x, 0), 0), mode);
3931           if (temp)
3932             return gen_binary (ASHIFT, mode, temp, XEXP (XEXP (x, 0), 1));
3933         }
3934
3935       temp = expand_compound_operation (XEXP (x, 0));
3936
3937       /* For C equal to the width of MODE minus 1, (neg (ashiftrt X C)) can be
3938          replaced by (lshiftrt X C).  This will convert
3939          (neg (sign_extract X 1 Y)) to (zero_extract X 1 Y).  */
3940
3941       if (GET_CODE (temp) == ASHIFTRT
3942           && GET_CODE (XEXP (temp, 1)) == CONST_INT
3943           && INTVAL (XEXP (temp, 1)) == GET_MODE_BITSIZE (mode) - 1)
3944         return simplify_shift_const (temp, LSHIFTRT, mode, XEXP (temp, 0),
3945                                      INTVAL (XEXP (temp, 1)));
3946
3947       /* If X has only a single bit that might be nonzero, say, bit I, convert
3948          (neg X) to (ashiftrt (ashift X C-I) C-I) where C is the bitsize of
3949          MODE minus 1.  This will convert (neg (zero_extract X 1 Y)) to
3950          (sign_extract X 1 Y).  But only do this if TEMP isn't a register
3951          or a SUBREG of one since we'd be making the expression more
3952          complex if it was just a register.  */
3953
3954       if (GET_CODE (temp) != REG
3955           && ! (GET_CODE (temp) == SUBREG
3956                 && GET_CODE (SUBREG_REG (temp)) == REG)
3957           && (i = exact_log2 (nonzero_bits (temp, mode))) >= 0)
3958         {
3959           rtx temp1 = simplify_shift_const
3960             (NULL_RTX, ASHIFTRT, mode,
3961              simplify_shift_const (NULL_RTX, ASHIFT, mode, temp,
3962                                    GET_MODE_BITSIZE (mode) - 1 - i),
3963              GET_MODE_BITSIZE (mode) - 1 - i);
3964
3965           /* If all we did was surround TEMP with the two shifts, we
3966              haven't improved anything, so don't use it.  Otherwise,
3967              we are better off with TEMP1.  */
3968           if (GET_CODE (temp1) != ASHIFTRT
3969               || GET_CODE (XEXP (temp1, 0)) != ASHIFT
3970               || XEXP (XEXP (temp1, 0), 0) != temp)
3971             return temp1;
3972         }
3973       break;
3974
3975     case TRUNCATE:
3976       /* We can't handle truncation to a partial integer mode here
3977          because we don't know the real bitsize of the partial
3978          integer mode.  */
3979       if (GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
3980         break;
3981
3982       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
3983           && TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
3984                                     GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))))
3985         SUBST (XEXP (x, 0),
3986                force_to_mode (XEXP (x, 0), GET_MODE (XEXP (x, 0)),
3987                               GET_MODE_MASK (mode), NULL_RTX, 0));
3988
3989       /* (truncate:SI ({sign,zero}_extend:DI foo:SI)) == foo:SI.  */
3990       if ((GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
3991            || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
3992           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
3993         return XEXP (XEXP (x, 0), 0);
3994
3995       /* (truncate:SI (OP:DI ({sign,zero}_extend:DI foo:SI))) is
3996          (OP:SI foo:SI) if OP is NEG or ABS.  */
3997       if ((GET_CODE (XEXP (x, 0)) == ABS
3998            || GET_CODE (XEXP (x, 0)) == NEG)
3999           && (GET_CODE (XEXP (XEXP (x, 0), 0)) == SIGN_EXTEND
4000               || GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND)
4001           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
4002         return simplify_gen_unary (GET_CODE (XEXP (x, 0)), mode,
4003                                    XEXP (XEXP (XEXP (x, 0), 0), 0), mode);
4004
4005       /* (truncate:SI (subreg:DI (truncate:SI X) 0)) is
4006          (truncate:SI x).  */
4007       if (GET_CODE (XEXP (x, 0)) == SUBREG
4008           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == TRUNCATE
4009           && subreg_lowpart_p (XEXP (x, 0)))
4010         return SUBREG_REG (XEXP (x, 0));
4011
4012       /* If we know that the value is already truncated, we can
4013          replace the TRUNCATE with a SUBREG if TRULY_NOOP_TRUNCATION
4014          is nonzero for the corresponding modes.  But don't do this
4015          for an (LSHIFTRT (MULT ...)) since this will cause problems
4016          with the umulXi3_highpart patterns.  */
4017       if (TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (mode),
4018                                  GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
4019           && num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4020              >= GET_MODE_BITSIZE (mode) + 1
4021           && ! (GET_CODE (XEXP (x, 0)) == LSHIFTRT
4022                 && GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT))
4023         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4024
4025       /* A truncate of a comparison can be replaced with a subreg if
4026          STORE_FLAG_VALUE permits.  This is like the previous test,
4027          but it works even if the comparison is done in a mode larger
4028          than HOST_BITS_PER_WIDE_INT.  */
4029       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4030           && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4031           && ((HOST_WIDE_INT) STORE_FLAG_VALUE & ~GET_MODE_MASK (mode)) == 0)
4032         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4033
4034       /* Similarly, a truncate of a register whose value is a
4035          comparison can be replaced with a subreg if STORE_FLAG_VALUE
4036          permits.  */
4037       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4038           && ((HOST_WIDE_INT) STORE_FLAG_VALUE & ~GET_MODE_MASK (mode)) == 0
4039           && (temp = get_last_value (XEXP (x, 0)))
4040           && GET_RTX_CLASS (GET_CODE (temp)) == '<')
4041         return gen_lowpart_for_combine (mode, XEXP (x, 0));
4042
4043       break;
4044
4045     case FLOAT_TRUNCATE:
4046       /* (float_truncate:SF (float_extend:DF foo:SF)) = foo:SF.  */
4047       if (GET_CODE (XEXP (x, 0)) == FLOAT_EXTEND
4048           && GET_MODE (XEXP (XEXP (x, 0), 0)) == mode)
4049         return XEXP (XEXP (x, 0), 0);
4050
4051       /* (float_truncate:SF (OP:DF (float_extend:DF foo:sf))) is
4052          (OP:SF foo:SF) if OP is NEG or ABS.  */
4053       if ((GET_CODE (XEXP (x, 0)) == ABS
4054            || GET_CODE (XEXP (x, 0)) == NEG)
4055           && GET_CODE (XEXP (XEXP (x, 0), 0)) == FLOAT_EXTEND
4056           && GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)) == mode)
4057         return simplify_gen_unary (GET_CODE (XEXP (x, 0)), mode,
4058                                    XEXP (XEXP (XEXP (x, 0), 0), 0), mode);
4059
4060       /* (float_truncate:SF (subreg:DF (float_truncate:SF X) 0))
4061          is (float_truncate:SF x).  */
4062       if (GET_CODE (XEXP (x, 0)) == SUBREG
4063           && subreg_lowpart_p (XEXP (x, 0))
4064           && GET_CODE (SUBREG_REG (XEXP (x, 0))) == FLOAT_TRUNCATE)
4065         return SUBREG_REG (XEXP (x, 0));
4066       break;
4067
4068 #ifdef HAVE_cc0
4069     case COMPARE:
4070       /* Convert (compare FOO (const_int 0)) to FOO unless we aren't
4071          using cc0, in which case we want to leave it as a COMPARE
4072          so we can distinguish it from a register-register-copy.  */
4073       if (XEXP (x, 1) == const0_rtx)
4074         return XEXP (x, 0);
4075
4076       /* In IEEE floating point, x-0 is not the same as x.  */
4077       if ((TARGET_FLOAT_FORMAT != IEEE_FLOAT_FORMAT
4078            || ! FLOAT_MODE_P (GET_MODE (XEXP (x, 0)))
4079            || flag_unsafe_math_optimizations)
4080           && XEXP (x, 1) == CONST0_RTX (GET_MODE (XEXP (x, 0))))
4081         return XEXP (x, 0);
4082       break;
4083 #endif
4084
4085     case CONST:
4086       /* (const (const X)) can become (const X).  Do it this way rather than
4087          returning the inner CONST since CONST can be shared with a
4088          REG_EQUAL note.  */
4089       if (GET_CODE (XEXP (x, 0)) == CONST)
4090         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4091       break;
4092
4093 #ifdef HAVE_lo_sum
4094     case LO_SUM:
4095       /* Convert (lo_sum (high FOO) FOO) to FOO.  This is necessary so we
4096          can add in an offset.  find_split_point will split this address up
4097          again if it doesn't match.  */
4098       if (GET_CODE (XEXP (x, 0)) == HIGH
4099           && rtx_equal_p (XEXP (XEXP (x, 0), 0), XEXP (x, 1)))
4100         return XEXP (x, 1);
4101       break;
4102 #endif
4103
4104     case PLUS:
4105       /* If we have (plus (plus (A const) B)), associate it so that CONST is
4106          outermost.  That's because that's the way indexed addresses are
4107          supposed to appear.  This code used to check many more cases, but
4108          they are now checked elsewhere.  */
4109       if (GET_CODE (XEXP (x, 0)) == PLUS
4110           && CONSTANT_ADDRESS_P (XEXP (XEXP (x, 0), 1)))
4111         return gen_binary (PLUS, mode,
4112                            gen_binary (PLUS, mode, XEXP (XEXP (x, 0), 0),
4113                                        XEXP (x, 1)),
4114                            XEXP (XEXP (x, 0), 1));
4115
4116       /* (plus (xor (and <foo> (const_int pow2 - 1)) <c>) <-c>)
4117          when c is (const_int (pow2 + 1) / 2) is a sign extension of a
4118          bit-field and can be replaced by either a sign_extend or a
4119          sign_extract.  The `and' may be a zero_extend and the two
4120          <c>, -<c> constants may be reversed.  */
4121       if (GET_CODE (XEXP (x, 0)) == XOR
4122           && GET_CODE (XEXP (x, 1)) == CONST_INT
4123           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4124           && INTVAL (XEXP (x, 1)) == -INTVAL (XEXP (XEXP (x, 0), 1))
4125           && ((i = exact_log2 (INTVAL (XEXP (XEXP (x, 0), 1)))) >= 0
4126               || (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
4127           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4128           && ((GET_CODE (XEXP (XEXP (x, 0), 0)) == AND
4129                && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
4130                && (INTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1))
4131                    == ((HOST_WIDE_INT) 1 << (i + 1)) - 1))
4132               || (GET_CODE (XEXP (XEXP (x, 0), 0)) == ZERO_EXTEND
4133                   && (GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (XEXP (x, 0), 0), 0)))
4134                       == (unsigned int) i + 1))))
4135         return simplify_shift_const
4136           (NULL_RTX, ASHIFTRT, mode,
4137            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4138                                  XEXP (XEXP (XEXP (x, 0), 0), 0),
4139                                  GET_MODE_BITSIZE (mode) - (i + 1)),
4140            GET_MODE_BITSIZE (mode) - (i + 1));
4141
4142       /* (plus (comparison A B) C) can become (neg (rev-comp A B)) if
4143          C is 1 and STORE_FLAG_VALUE is -1 or if C is -1 and STORE_FLAG_VALUE
4144          is 1.  This produces better code than the alternative immediately
4145          below.  */
4146       if (GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
4147           && ((STORE_FLAG_VALUE == -1 && XEXP (x, 1) == const1_rtx)
4148               || (STORE_FLAG_VALUE == 1 && XEXP (x, 1) == constm1_rtx))
4149           && (reversed = reversed_comparison (XEXP (x, 0), mode,
4150                                               XEXP (XEXP (x, 0), 0),
4151                                               XEXP (XEXP (x, 0), 1))))
4152         return
4153           simplify_gen_unary (NEG, mode, reversed, mode);
4154
4155       /* If only the low-order bit of X is possibly nonzero, (plus x -1)
4156          can become (ashiftrt (ashift (xor x 1) C) C) where C is
4157          the bitsize of the mode - 1.  This allows simplification of
4158          "a = (b & 8) == 0;"  */
4159       if (XEXP (x, 1) == constm1_rtx
4160           && GET_CODE (XEXP (x, 0)) != REG
4161           && ! (GET_CODE (XEXP (x,0)) == SUBREG
4162                 && GET_CODE (SUBREG_REG (XEXP (x, 0))) == REG)
4163           && nonzero_bits (XEXP (x, 0), mode) == 1)
4164         return simplify_shift_const (NULL_RTX, ASHIFTRT, mode,
4165            simplify_shift_const (NULL_RTX, ASHIFT, mode,
4166                                  gen_rtx_XOR (mode, XEXP (x, 0), const1_rtx),
4167                                  GET_MODE_BITSIZE (mode) - 1),
4168            GET_MODE_BITSIZE (mode) - 1);
4169
4170       /* If we are adding two things that have no bits in common, convert
4171          the addition into an IOR.  This will often be further simplified,
4172          for example in cases like ((a & 1) + (a & 2)), which can
4173          become a & 3.  */
4174
4175       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4176           && (nonzero_bits (XEXP (x, 0), mode)
4177               & nonzero_bits (XEXP (x, 1), mode)) == 0)
4178         {
4179           /* Try to simplify the expression further.  */
4180           rtx tor = gen_binary (IOR, mode, XEXP (x, 0), XEXP (x, 1));
4181           temp = combine_simplify_rtx (tor, mode, last, in_dest);
4182
4183           /* If we could, great.  If not, do not go ahead with the IOR
4184              replacement, since PLUS appears in many special purpose
4185              address arithmetic instructions.  */
4186           if (GET_CODE (temp) != CLOBBER && temp != tor)
4187             return temp;
4188         }
4189       break;
4190
4191     case MINUS:
4192       /* If STORE_FLAG_VALUE is 1, (minus 1 (comparison foo bar)) can be done
4193          by reversing the comparison code if valid.  */
4194       if (STORE_FLAG_VALUE == 1
4195           && XEXP (x, 0) == const1_rtx
4196           && GET_RTX_CLASS (GET_CODE (XEXP (x, 1))) == '<'
4197           && (reversed = reversed_comparison (XEXP (x, 1), mode,
4198                                               XEXP (XEXP (x, 1), 0),
4199                                               XEXP (XEXP (x, 1), 1))))
4200         return reversed;
4201
4202       /* (minus <foo> (and <foo> (const_int -pow2))) becomes
4203          (and <foo> (const_int pow2-1))  */
4204       if (GET_CODE (XEXP (x, 1)) == AND
4205           && GET_CODE (XEXP (XEXP (x, 1), 1)) == CONST_INT
4206           && exact_log2 (-INTVAL (XEXP (XEXP (x, 1), 1))) >= 0
4207           && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
4208         return simplify_and_const_int (NULL_RTX, mode, XEXP (x, 0),
4209                                        -INTVAL (XEXP (XEXP (x, 1), 1)) - 1);
4210
4211       /* Canonicalize (minus A (plus B C)) to (minus (minus A B) C) for
4212          integers.  */
4213       if (GET_CODE (XEXP (x, 1)) == PLUS && INTEGRAL_MODE_P (mode))
4214         return gen_binary (MINUS, mode,
4215                            gen_binary (MINUS, mode, XEXP (x, 0),
4216                                        XEXP (XEXP (x, 1), 0)),
4217                            XEXP (XEXP (x, 1), 1));
4218       break;
4219
4220     case MULT:
4221       /* If we have (mult (plus A B) C), apply the distributive law and then
4222          the inverse distributive law to see if things simplify.  This
4223          occurs mostly in addresses, often when unrolling loops.  */
4224
4225       if (GET_CODE (XEXP (x, 0)) == PLUS)
4226         {
4227           x = apply_distributive_law
4228             (gen_binary (PLUS, mode,
4229                          gen_binary (MULT, mode,
4230                                      XEXP (XEXP (x, 0), 0), XEXP (x, 1)),
4231                          gen_binary (MULT, mode,
4232                                      XEXP (XEXP (x, 0), 1),
4233                                      copy_rtx (XEXP (x, 1)))));
4234
4235           if (GET_CODE (x) != MULT)
4236             return x;
4237         }
4238       /* Try simplify a*(b/c) as (a*b)/c.  */
4239       if (FLOAT_MODE_P (mode) && flag_unsafe_math_optimizations
4240           && GET_CODE (XEXP (x, 0)) == DIV)
4241         {
4242           rtx tem = simplify_binary_operation (MULT, mode,
4243                                                XEXP (XEXP (x, 0), 0),
4244                                                XEXP (x, 1));
4245           if (tem)
4246             return gen_binary (DIV, mode, tem, XEXP (XEXP (x, 0), 1));
4247         }
4248       break;
4249
4250     case UDIV:
4251       /* If this is a divide by a power of two, treat it as a shift if
4252          its first operand is a shift.  */
4253       if (GET_CODE (XEXP (x, 1)) == CONST_INT
4254           && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0
4255           && (GET_CODE (XEXP (x, 0)) == ASHIFT
4256               || GET_CODE (XEXP (x, 0)) == LSHIFTRT
4257               || GET_CODE (XEXP (x, 0)) == ASHIFTRT
4258               || GET_CODE (XEXP (x, 0)) == ROTATE
4259               || GET_CODE (XEXP (x, 0)) == ROTATERT))
4260         return simplify_shift_const (NULL_RTX, LSHIFTRT, mode, XEXP (x, 0), i);
4261       break;
4262
4263     case EQ:  case NE:
4264     case GT:  case GTU:  case GE:  case GEU:
4265     case LT:  case LTU:  case LE:  case LEU:
4266     case UNEQ:  case LTGT:
4267     case UNGT:  case UNGE:
4268     case UNLT:  case UNLE:
4269     case UNORDERED: case ORDERED:
4270       /* If the first operand is a condition code, we can't do anything
4271          with it.  */
4272       if (GET_CODE (XEXP (x, 0)) == COMPARE
4273           || (GET_MODE_CLASS (GET_MODE (XEXP (x, 0))) != MODE_CC
4274 #ifdef HAVE_cc0
4275               && XEXP (x, 0) != cc0_rtx
4276 #endif
4277               ))
4278         {
4279           rtx op0 = XEXP (x, 0);
4280           rtx op1 = XEXP (x, 1);
4281           enum rtx_code new_code;
4282
4283           if (GET_CODE (op0) == COMPARE)
4284             op1 = XEXP (op0, 1), op0 = XEXP (op0, 0);
4285
4286           /* Simplify our comparison, if possible.  */
4287           new_code = simplify_comparison (code, &op0, &op1);
4288
4289           /* If STORE_FLAG_VALUE is 1, we can convert (ne x 0) to simply X
4290              if only the low-order bit is possibly nonzero in X (such as when
4291              X is a ZERO_EXTRACT of one bit).  Similarly, we can convert EQ to
4292              (xor X 1) or (minus 1 X); we use the former.  Finally, if X is
4293              known to be either 0 or -1, NE becomes a NEG and EQ becomes
4294              (plus X 1).
4295
4296              Remove any ZERO_EXTRACT we made when thinking this was a
4297              comparison.  It may now be simpler to use, e.g., an AND.  If a
4298              ZERO_EXTRACT is indeed appropriate, it will be placed back by
4299              the call to make_compound_operation in the SET case.  */
4300
4301           if (STORE_FLAG_VALUE == 1
4302               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4303               && op1 == const0_rtx
4304               && mode == GET_MODE (op0)
4305               && nonzero_bits (op0, mode) == 1)
4306             return gen_lowpart_for_combine (mode,
4307                                             expand_compound_operation (op0));
4308
4309           else if (STORE_FLAG_VALUE == 1
4310                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4311                    && op1 == const0_rtx
4312                    && mode == GET_MODE (op0)
4313                    && (num_sign_bit_copies (op0, mode)
4314                        == GET_MODE_BITSIZE (mode)))
4315             {
4316               op0 = expand_compound_operation (op0);
4317               return simplify_gen_unary (NEG, mode,
4318                                          gen_lowpart_for_combine (mode, op0),
4319                                          mode);
4320             }
4321
4322           else if (STORE_FLAG_VALUE == 1
4323                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4324                    && op1 == const0_rtx
4325                    && mode == GET_MODE (op0)
4326                    && nonzero_bits (op0, mode) == 1)
4327             {
4328               op0 = expand_compound_operation (op0);
4329               return gen_binary (XOR, mode,
4330                                  gen_lowpart_for_combine (mode, op0),
4331                                  const1_rtx);
4332             }
4333
4334           else if (STORE_FLAG_VALUE == 1
4335                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4336                    && op1 == const0_rtx
4337                    && mode == GET_MODE (op0)
4338                    && (num_sign_bit_copies (op0, mode)
4339                        == GET_MODE_BITSIZE (mode)))
4340             {
4341               op0 = expand_compound_operation (op0);
4342               return plus_constant (gen_lowpart_for_combine (mode, op0), 1);
4343             }
4344
4345           /* If STORE_FLAG_VALUE is -1, we have cases similar to
4346              those above.  */
4347           if (STORE_FLAG_VALUE == -1
4348               && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4349               && op1 == const0_rtx
4350               && (num_sign_bit_copies (op0, mode)
4351                   == GET_MODE_BITSIZE (mode)))
4352             return gen_lowpart_for_combine (mode,
4353                                             expand_compound_operation (op0));
4354
4355           else if (STORE_FLAG_VALUE == -1
4356                    && new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4357                    && op1 == const0_rtx
4358                    && mode == GET_MODE (op0)
4359                    && nonzero_bits (op0, mode) == 1)
4360             {
4361               op0 = expand_compound_operation (op0);
4362               return simplify_gen_unary (NEG, mode,
4363                                          gen_lowpart_for_combine (mode, op0),
4364                                          mode);
4365             }
4366
4367           else if (STORE_FLAG_VALUE == -1
4368                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4369                    && op1 == const0_rtx
4370                    && mode == GET_MODE (op0)
4371                    && (num_sign_bit_copies (op0, mode)
4372                        == GET_MODE_BITSIZE (mode)))
4373             {
4374               op0 = expand_compound_operation (op0);
4375               return simplify_gen_unary (NOT, mode,
4376                                          gen_lowpart_for_combine (mode, op0),
4377                                          mode);
4378             }
4379
4380           /* If X is 0/1, (eq X 0) is X-1.  */
4381           else if (STORE_FLAG_VALUE == -1
4382                    && new_code == EQ && GET_MODE_CLASS (mode) == MODE_INT
4383                    && op1 == const0_rtx
4384                    && mode == GET_MODE (op0)
4385                    && nonzero_bits (op0, mode) == 1)
4386             {
4387               op0 = expand_compound_operation (op0);
4388               return plus_constant (gen_lowpart_for_combine (mode, op0), -1);
4389             }
4390
4391           /* If STORE_FLAG_VALUE says to just test the sign bit and X has just
4392              one bit that might be nonzero, we can convert (ne x 0) to
4393              (ashift x c) where C puts the bit in the sign bit.  Remove any
4394              AND with STORE_FLAG_VALUE when we are done, since we are only
4395              going to test the sign bit.  */
4396           if (new_code == NE && GET_MODE_CLASS (mode) == MODE_INT
4397               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4398               && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
4399                   == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE(mode)-1))
4400               && op1 == const0_rtx
4401               && mode == GET_MODE (op0)
4402               && (i = exact_log2 (nonzero_bits (op0, mode))) >= 0)
4403             {
4404               x = simplify_shift_const (NULL_RTX, ASHIFT, mode,
4405                                         expand_compound_operation (op0),
4406                                         GET_MODE_BITSIZE (mode) - 1 - i);
4407               if (GET_CODE (x) == AND && XEXP (x, 1) == const_true_rtx)
4408                 return XEXP (x, 0);
4409               else
4410                 return x;
4411             }
4412
4413           /* If the code changed, return a whole new comparison.  */
4414           if (new_code != code)
4415             return gen_rtx_fmt_ee (new_code, mode, op0, op1);
4416
4417           /* Otherwise, keep this operation, but maybe change its operands.
4418              This also converts (ne (compare FOO BAR) 0) to (ne FOO BAR).  */
4419           SUBST (XEXP (x, 0), op0);
4420           SUBST (XEXP (x, 1), op1);
4421         }
4422       break;
4423
4424     case IF_THEN_ELSE:
4425       return simplify_if_then_else (x);
4426
4427     case ZERO_EXTRACT:
4428     case SIGN_EXTRACT:
4429     case ZERO_EXTEND:
4430     case SIGN_EXTEND:
4431       /* If we are processing SET_DEST, we are done.  */
4432       if (in_dest)
4433         return x;
4434
4435       return expand_compound_operation (x);
4436
4437     case SET:
4438       return simplify_set (x);
4439
4440     case AND:
4441     case IOR:
4442     case XOR:
4443       return simplify_logical (x, last);
4444
4445     case ABS:
4446       /* (abs (neg <foo>)) -> (abs <foo>) */
4447       if (GET_CODE (XEXP (x, 0)) == NEG)
4448         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4449
4450       /* If the mode of the operand is VOIDmode (i.e. if it is ASM_OPERANDS),
4451          do nothing.  */
4452       if (GET_MODE (XEXP (x, 0)) == VOIDmode)
4453         break;
4454
4455       /* If operand is something known to be positive, ignore the ABS.  */
4456       if (GET_CODE (XEXP (x, 0)) == FFS || GET_CODE (XEXP (x, 0)) == ABS
4457           || ((GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
4458                <= HOST_BITS_PER_WIDE_INT)
4459               && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
4460                    & ((HOST_WIDE_INT) 1
4461                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1)))
4462                   == 0)))
4463         return XEXP (x, 0);
4464
4465       /* If operand is known to be only -1 or 0, convert ABS to NEG.  */
4466       if (num_sign_bit_copies (XEXP (x, 0), mode) == GET_MODE_BITSIZE (mode))
4467         return gen_rtx_NEG (mode, XEXP (x, 0));
4468
4469       break;
4470
4471     case FFS:
4472       /* (ffs (*_extend <X>)) = (ffs <X>) */
4473       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
4474           || GET_CODE (XEXP (x, 0)) == ZERO_EXTEND)
4475         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4476       break;
4477
4478     case FLOAT:
4479       /* (float (sign_extend <X>)) = (float <X>).  */
4480       if (GET_CODE (XEXP (x, 0)) == SIGN_EXTEND)
4481         SUBST (XEXP (x, 0), XEXP (XEXP (x, 0), 0));
4482       break;
4483
4484     case ASHIFT:
4485     case LSHIFTRT:
4486     case ASHIFTRT:
4487     case ROTATE:
4488     case ROTATERT:
4489       /* If this is a shift by a constant amount, simplify it.  */
4490       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
4491         return simplify_shift_const (x, code, mode, XEXP (x, 0),
4492                                      INTVAL (XEXP (x, 1)));
4493
4494 #ifdef SHIFT_COUNT_TRUNCATED
4495       else if (SHIFT_COUNT_TRUNCATED && GET_CODE (XEXP (x, 1)) != REG)
4496         SUBST (XEXP (x, 1),
4497                force_to_mode (XEXP (x, 1), GET_MODE (x),
4498                               ((HOST_WIDE_INT) 1
4499                                << exact_log2 (GET_MODE_BITSIZE (GET_MODE (x))))
4500                               - 1,
4501                               NULL_RTX, 0));
4502 #endif
4503
4504       break;
4505
4506     case VEC_SELECT:
4507       {
4508         rtx op0 = XEXP (x, 0);
4509         rtx op1 = XEXP (x, 1);
4510         int len;
4511
4512         if (GET_CODE (op1) != PARALLEL)
4513           abort ();
4514         len = XVECLEN (op1, 0);
4515         if (len == 1
4516             && GET_CODE (XVECEXP (op1, 0, 0)) == CONST_INT
4517             && GET_CODE (op0) == VEC_CONCAT)
4518           {
4519             int offset = INTVAL (XVECEXP (op1, 0, 0)) * GET_MODE_SIZE (GET_MODE (x));
4520
4521             /* Try to find the element in the VEC_CONCAT.  */
4522             for (;;)
4523               {
4524                 if (GET_MODE (op0) == GET_MODE (x))
4525                   return op0;
4526                 if (GET_CODE (op0) == VEC_CONCAT)
4527                   {
4528                     HOST_WIDE_INT op0_size = GET_MODE_SIZE (GET_MODE (XEXP (op0, 0)));
4529                     if (op0_size < offset)
4530                       op0 = XEXP (op0, 0);
4531                     else
4532                       {
4533                         offset -= op0_size;
4534                         op0 = XEXP (op0, 1);
4535                       }
4536                   }
4537                 else
4538                   break;
4539               }
4540           }
4541       }
4542
4543       break;
4544
4545     default:
4546       break;
4547     }
4548
4549   return x;
4550 }
4551 \f
4552 /* Simplify X, an IF_THEN_ELSE expression.  Return the new expression.  */
4553
4554 static rtx
4555 simplify_if_then_else (x)
4556      rtx x;
4557 {
4558   enum machine_mode mode = GET_MODE (x);
4559   rtx cond = XEXP (x, 0);
4560   rtx true_rtx = XEXP (x, 1);
4561   rtx false_rtx = XEXP (x, 2);
4562   enum rtx_code true_code = GET_CODE (cond);
4563   int comparison_p = GET_RTX_CLASS (true_code) == '<';
4564   rtx temp;
4565   int i;
4566   enum rtx_code false_code;
4567   rtx reversed;
4568
4569   /* Simplify storing of the truth value.  */
4570   if (comparison_p && true_rtx == const_true_rtx && false_rtx == const0_rtx)
4571     return gen_binary (true_code, mode, XEXP (cond, 0), XEXP (cond, 1));
4572
4573   /* Also when the truth value has to be reversed.  */
4574   if (comparison_p
4575       && true_rtx == const0_rtx && false_rtx == const_true_rtx
4576       && (reversed = reversed_comparison (cond, mode, XEXP (cond, 0),
4577                                           XEXP (cond, 1))))
4578     return reversed;
4579
4580   /* Sometimes we can simplify the arm of an IF_THEN_ELSE if a register used
4581      in it is being compared against certain values.  Get the true and false
4582      comparisons and see if that says anything about the value of each arm.  */
4583
4584   if (comparison_p
4585       && ((false_code = combine_reversed_comparison_code (cond))
4586           != UNKNOWN)
4587       && GET_CODE (XEXP (cond, 0)) == REG)
4588     {
4589       HOST_WIDE_INT nzb;
4590       rtx from = XEXP (cond, 0);
4591       rtx true_val = XEXP (cond, 1);
4592       rtx false_val = true_val;
4593       int swapped = 0;
4594
4595       /* If FALSE_CODE is EQ, swap the codes and arms.  */
4596
4597       if (false_code == EQ)
4598         {
4599           swapped = 1, true_code = EQ, false_code = NE;
4600           temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4601         }
4602
4603       /* If we are comparing against zero and the expression being tested has
4604          only a single bit that might be nonzero, that is its value when it is
4605          not equal to zero.  Similarly if it is known to be -1 or 0.  */
4606
4607       if (true_code == EQ && true_val == const0_rtx
4608           && exact_log2 (nzb = nonzero_bits (from, GET_MODE (from))) >= 0)
4609         false_code = EQ, false_val = GEN_INT (nzb);
4610       else if (true_code == EQ && true_val == const0_rtx
4611                && (num_sign_bit_copies (from, GET_MODE (from))
4612                    == GET_MODE_BITSIZE (GET_MODE (from))))
4613         false_code = EQ, false_val = constm1_rtx;
4614
4615       /* Now simplify an arm if we know the value of the register in the
4616          branch and it is used in the arm.  Be careful due to the potential
4617          of locally-shared RTL.  */
4618
4619       if (reg_mentioned_p (from, true_rtx))
4620         true_rtx = subst (known_cond (copy_rtx (true_rtx), true_code,
4621                                       from, true_val),
4622                       pc_rtx, pc_rtx, 0, 0);
4623       if (reg_mentioned_p (from, false_rtx))
4624         false_rtx = subst (known_cond (copy_rtx (false_rtx), false_code,
4625                                    from, false_val),
4626                        pc_rtx, pc_rtx, 0, 0);
4627
4628       SUBST (XEXP (x, 1), swapped ? false_rtx : true_rtx);
4629       SUBST (XEXP (x, 2), swapped ? true_rtx : false_rtx);
4630
4631       true_rtx = XEXP (x, 1);
4632       false_rtx = XEXP (x, 2);
4633       true_code = GET_CODE (cond);
4634     }
4635
4636   /* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
4637      reversed, do so to avoid needing two sets of patterns for
4638      subtract-and-branch insns.  Similarly if we have a constant in the true
4639      arm, the false arm is the same as the first operand of the comparison, or
4640      the false arm is more complicated than the true arm.  */
4641
4642   if (comparison_p
4643       && combine_reversed_comparison_code (cond) != UNKNOWN
4644       && (true_rtx == pc_rtx
4645           || (CONSTANT_P (true_rtx)
4646               && GET_CODE (false_rtx) != CONST_INT && false_rtx != pc_rtx)
4647           || true_rtx == const0_rtx
4648           || (GET_RTX_CLASS (GET_CODE (true_rtx)) == 'o'
4649               && GET_RTX_CLASS (GET_CODE (false_rtx)) != 'o')
4650           || (GET_CODE (true_rtx) == SUBREG
4651               && GET_RTX_CLASS (GET_CODE (SUBREG_REG (true_rtx))) == 'o'
4652               && GET_RTX_CLASS (GET_CODE (false_rtx)) != 'o')
4653           || reg_mentioned_p (true_rtx, false_rtx)
4654           || rtx_equal_p (false_rtx, XEXP (cond, 0))))
4655     {
4656       true_code = reversed_comparison_code (cond, NULL);
4657       SUBST (XEXP (x, 0),
4658              reversed_comparison (cond, GET_MODE (cond), XEXP (cond, 0),
4659                                   XEXP (cond, 1)));
4660
4661       SUBST (XEXP (x, 1), false_rtx);
4662       SUBST (XEXP (x, 2), true_rtx);
4663
4664       temp = true_rtx, true_rtx = false_rtx, false_rtx = temp;
4665       cond = XEXP (x, 0);
4666
4667       /* It is possible that the conditional has been simplified out.  */
4668       true_code = GET_CODE (cond);
4669       comparison_p = GET_RTX_CLASS (true_code) == '<';
4670     }
4671
4672   /* If the two arms are identical, we don't need the comparison.  */
4673
4674   if (rtx_equal_p (true_rtx, false_rtx) && ! side_effects_p (cond))
4675     return true_rtx;
4676
4677   /* Convert a == b ? b : a to "a".  */
4678   if (true_code == EQ && ! side_effects_p (cond)
4679       && (! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4680       && rtx_equal_p (XEXP (cond, 0), false_rtx)
4681       && rtx_equal_p (XEXP (cond, 1), true_rtx))
4682     return false_rtx;
4683   else if (true_code == NE && ! side_effects_p (cond)
4684            && (! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4685            && rtx_equal_p (XEXP (cond, 0), true_rtx)
4686            && rtx_equal_p (XEXP (cond, 1), false_rtx))
4687     return true_rtx;
4688
4689   /* Look for cases where we have (abs x) or (neg (abs X)).  */
4690
4691   if (GET_MODE_CLASS (mode) == MODE_INT
4692       && GET_CODE (false_rtx) == NEG
4693       && rtx_equal_p (true_rtx, XEXP (false_rtx, 0))
4694       && comparison_p
4695       && rtx_equal_p (true_rtx, XEXP (cond, 0))
4696       && ! side_effects_p (true_rtx))
4697     switch (true_code)
4698       {
4699       case GT:
4700       case GE:
4701         return simplify_gen_unary (ABS, mode, true_rtx, mode);
4702       case LT:
4703       case LE:
4704         return
4705           simplify_gen_unary (NEG, mode,
4706                               simplify_gen_unary (ABS, mode, true_rtx, mode),
4707                               mode);
4708     default:
4709       break;
4710       }
4711
4712   /* Look for MIN or MAX.  */
4713
4714   if ((! FLOAT_MODE_P (mode) || flag_unsafe_math_optimizations)
4715       && comparison_p
4716       && rtx_equal_p (XEXP (cond, 0), true_rtx)
4717       && rtx_equal_p (XEXP (cond, 1), false_rtx)
4718       && ! side_effects_p (cond))
4719     switch (true_code)
4720       {
4721       case GE:
4722       case GT:
4723         return gen_binary (SMAX, mode, true_rtx, false_rtx);
4724       case LE:
4725       case LT:
4726         return gen_binary (SMIN, mode, true_rtx, false_rtx);
4727       case GEU:
4728       case GTU:
4729         return gen_binary (UMAX, mode, true_rtx, false_rtx);
4730       case LEU:
4731       case LTU:
4732         return gen_binary (UMIN, mode, true_rtx, false_rtx);
4733       default:
4734         break;
4735       }
4736
4737   /* If we have (if_then_else COND (OP Z C1) Z) and OP is an identity when its
4738      second operand is zero, this can be done as (OP Z (mult COND C2)) where
4739      C2 = C1 * STORE_FLAG_VALUE. Similarly if OP has an outer ZERO_EXTEND or
4740      SIGN_EXTEND as long as Z is already extended (so we don't destroy it).
4741      We can do this kind of thing in some cases when STORE_FLAG_VALUE is
4742      neither 1 or -1, but it isn't worth checking for.  */
4743
4744   if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
4745       && comparison_p && mode != VOIDmode && ! side_effects_p (x))
4746     {
4747       rtx t = make_compound_operation (true_rtx, SET);
4748       rtx f = make_compound_operation (false_rtx, SET);
4749       rtx cond_op0 = XEXP (cond, 0);
4750       rtx cond_op1 = XEXP (cond, 1);
4751       enum rtx_code op = NIL, extend_op = NIL;
4752       enum machine_mode m = mode;
4753       rtx z = 0, c1 = NULL_RTX;
4754
4755       if ((GET_CODE (t) == PLUS || GET_CODE (t) == MINUS
4756            || GET_CODE (t) == IOR || GET_CODE (t) == XOR
4757            || GET_CODE (t) == ASHIFT
4758            || GET_CODE (t) == LSHIFTRT || GET_CODE (t) == ASHIFTRT)
4759           && rtx_equal_p (XEXP (t, 0), f))
4760         c1 = XEXP (t, 1), op = GET_CODE (t), z = f;
4761
4762       /* If an identity-zero op is commutative, check whether there
4763          would be a match if we swapped the operands.  */
4764       else if ((GET_CODE (t) == PLUS || GET_CODE (t) == IOR
4765                 || GET_CODE (t) == XOR)
4766                && rtx_equal_p (XEXP (t, 1), f))
4767         c1 = XEXP (t, 0), op = GET_CODE (t), z = f;
4768       else if (GET_CODE (t) == SIGN_EXTEND
4769                && (GET_CODE (XEXP (t, 0)) == PLUS
4770                    || GET_CODE (XEXP (t, 0)) == MINUS
4771                    || GET_CODE (XEXP (t, 0)) == IOR
4772                    || GET_CODE (XEXP (t, 0)) == XOR
4773                    || GET_CODE (XEXP (t, 0)) == ASHIFT
4774                    || GET_CODE (XEXP (t, 0)) == LSHIFTRT
4775                    || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
4776                && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
4777                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4778                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4779                && (num_sign_bit_copies (f, GET_MODE (f))
4780                    > (GET_MODE_BITSIZE (mode)
4781                       - GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (t, 0), 0))))))
4782         {
4783           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4784           extend_op = SIGN_EXTEND;
4785           m = GET_MODE (XEXP (t, 0));
4786         }
4787       else if (GET_CODE (t) == SIGN_EXTEND
4788                && (GET_CODE (XEXP (t, 0)) == PLUS
4789                    || GET_CODE (XEXP (t, 0)) == IOR
4790                    || GET_CODE (XEXP (t, 0)) == XOR)
4791                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4792                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4793                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
4794                && (num_sign_bit_copies (f, GET_MODE (f))
4795                    > (GET_MODE_BITSIZE (mode)
4796                       - GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (t, 0), 1))))))
4797         {
4798           c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
4799           extend_op = SIGN_EXTEND;
4800           m = GET_MODE (XEXP (t, 0));
4801         }
4802       else if (GET_CODE (t) == ZERO_EXTEND
4803                && (GET_CODE (XEXP (t, 0)) == PLUS
4804                    || GET_CODE (XEXP (t, 0)) == MINUS
4805                    || GET_CODE (XEXP (t, 0)) == IOR
4806                    || GET_CODE (XEXP (t, 0)) == XOR
4807                    || GET_CODE (XEXP (t, 0)) == ASHIFT
4808                    || GET_CODE (XEXP (t, 0)) == LSHIFTRT
4809                    || GET_CODE (XEXP (t, 0)) == ASHIFTRT)
4810                && GET_CODE (XEXP (XEXP (t, 0), 0)) == SUBREG
4811                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4812                && subreg_lowpart_p (XEXP (XEXP (t, 0), 0))
4813                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 0)), f)
4814                && ((nonzero_bits (f, GET_MODE (f))
4815                     & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 0))))
4816                    == 0))
4817         {
4818           c1 = XEXP (XEXP (t, 0), 1); z = f; op = GET_CODE (XEXP (t, 0));
4819           extend_op = ZERO_EXTEND;
4820           m = GET_MODE (XEXP (t, 0));
4821         }
4822       else if (GET_CODE (t) == ZERO_EXTEND
4823                && (GET_CODE (XEXP (t, 0)) == PLUS
4824                    || GET_CODE (XEXP (t, 0)) == IOR
4825                    || GET_CODE (XEXP (t, 0)) == XOR)
4826                && GET_CODE (XEXP (XEXP (t, 0), 1)) == SUBREG
4827                && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
4828                && subreg_lowpart_p (XEXP (XEXP (t, 0), 1))
4829                && rtx_equal_p (SUBREG_REG (XEXP (XEXP (t, 0), 1)), f)
4830                && ((nonzero_bits (f, GET_MODE (f))
4831                     & ~GET_MODE_MASK (GET_MODE (XEXP (XEXP (t, 0), 1))))
4832                    == 0))
4833         {
4834           c1 = XEXP (XEXP (t, 0), 0); z = f; op = GET_CODE (XEXP (t, 0));
4835           extend_op = ZERO_EXTEND;
4836           m = GET_MODE (XEXP (t, 0));
4837         }
4838
4839       if (z)
4840         {
4841           temp = subst (gen_binary (true_code, m, cond_op0, cond_op1),
4842                         pc_rtx, pc_rtx, 0, 0);
4843           temp = gen_binary (MULT, m, temp,
4844                              gen_binary (MULT, m, c1, const_true_rtx));
4845           temp = subst (temp, pc_rtx, pc_rtx, 0, 0);
4846           temp = gen_binary (op, m, gen_lowpart_for_combine (m, z), temp);
4847
4848           if (extend_op != NIL)
4849             temp = simplify_gen_unary (extend_op, mode, temp, m);
4850
4851           return temp;
4852         }
4853     }
4854
4855   /* If we have (if_then_else (ne A 0) C1 0) and either A is known to be 0 or
4856      1 and C1 is a single bit or A is known to be 0 or -1 and C1 is the
4857      negation of a single bit, we can convert this operation to a shift.  We
4858      can actually do this more generally, but it doesn't seem worth it.  */
4859
4860   if (true_code == NE && XEXP (cond, 1) == const0_rtx
4861       && false_rtx == const0_rtx && GET_CODE (true_rtx) == CONST_INT
4862       && ((1 == nonzero_bits (XEXP (cond, 0), mode)
4863            && (i = exact_log2 (INTVAL (true_rtx))) >= 0)
4864           || ((num_sign_bit_copies (XEXP (cond, 0), mode)
4865                == GET_MODE_BITSIZE (mode))
4866               && (i = exact_log2 (-INTVAL (true_rtx))) >= 0)))
4867     return
4868       simplify_shift_const (NULL_RTX, ASHIFT, mode,
4869                             gen_lowpart_for_combine (mode, XEXP (cond, 0)), i);
4870
4871   return x;
4872 }
4873 \f
4874 /* Simplify X, a SET expression.  Return the new expression.  */
4875
4876 static rtx
4877 simplify_set (x)
4878      rtx x;
4879 {
4880   rtx src = SET_SRC (x);
4881   rtx dest = SET_DEST (x);
4882   enum machine_mode mode
4883     = GET_MODE (src) != VOIDmode ? GET_MODE (src) : GET_MODE (dest);
4884   rtx other_insn;
4885   rtx *cc_use;
4886
4887   /* (set (pc) (return)) gets written as (return).  */
4888   if (GET_CODE (dest) == PC && GET_CODE (src) == RETURN)
4889     return src;
4890
4891   /* Now that we know for sure which bits of SRC we are using, see if we can
4892      simplify the expression for the object knowing that we only need the
4893      low-order bits.  */
4894
4895   if (GET_MODE_CLASS (mode) == MODE_INT)
4896     {
4897       src = force_to_mode (src, mode, ~(HOST_WIDE_INT) 0, NULL_RTX, 0);
4898       SUBST (SET_SRC (x), src);
4899     }
4900
4901   /* If we are setting CC0 or if the source is a COMPARE, look for the use of
4902      the comparison result and try to simplify it unless we already have used
4903      undobuf.other_insn.  */
4904   if ((GET_CODE (src) == COMPARE
4905 #ifdef HAVE_cc0
4906        || dest == cc0_rtx
4907 #endif
4908        )
4909       && (cc_use = find_single_use (dest, subst_insn, &other_insn)) != 0
4910       && (undobuf.other_insn == 0 || other_insn == undobuf.other_insn)
4911       && GET_RTX_CLASS (GET_CODE (*cc_use)) == '<'
4912       && rtx_equal_p (XEXP (*cc_use, 0), dest))
4913     {
4914       enum rtx_code old_code = GET_CODE (*cc_use);
4915       enum rtx_code new_code;
4916       rtx op0, op1;
4917       int other_changed = 0;
4918       enum machine_mode compare_mode = GET_MODE (dest);
4919
4920       if (GET_CODE (src) == COMPARE)
4921         op0 = XEXP (src, 0), op1 = XEXP (src, 1);
4922       else
4923         op0 = src, op1 = const0_rtx;
4924
4925       /* Simplify our comparison, if possible.  */
4926       new_code = simplify_comparison (old_code, &op0, &op1);
4927
4928 #ifdef EXTRA_CC_MODES
4929       /* If this machine has CC modes other than CCmode, check to see if we
4930          need to use a different CC mode here.  */
4931       compare_mode = SELECT_CC_MODE (new_code, op0, op1);
4932 #endif /* EXTRA_CC_MODES */
4933
4934 #if !defined (HAVE_cc0) && defined (EXTRA_CC_MODES)
4935       /* If the mode changed, we have to change SET_DEST, the mode in the
4936          compare, and the mode in the place SET_DEST is used.  If SET_DEST is
4937          a hard register, just build new versions with the proper mode.  If it
4938          is a pseudo, we lose unless it is only time we set the pseudo, in
4939          which case we can safely change its mode.  */
4940       if (compare_mode != GET_MODE (dest))
4941         {
4942           unsigned int regno = REGNO (dest);
4943           rtx new_dest = gen_rtx_REG (compare_mode, regno);
4944
4945           if (regno < FIRST_PSEUDO_REGISTER
4946               || (REG_N_SETS (regno) == 1 && ! REG_USERVAR_P (dest)))
4947             {
4948               if (regno >= FIRST_PSEUDO_REGISTER)
4949                 SUBST (regno_reg_rtx[regno], new_dest);
4950
4951               SUBST (SET_DEST (x), new_dest);
4952               SUBST (XEXP (*cc_use, 0), new_dest);
4953               other_changed = 1;
4954
4955               dest = new_dest;
4956             }
4957         }
4958 #endif
4959
4960       /* If the code changed, we have to build a new comparison in
4961          undobuf.other_insn.  */
4962       if (new_code != old_code)
4963         {
4964           unsigned HOST_WIDE_INT mask;
4965
4966           SUBST (*cc_use, gen_rtx_fmt_ee (new_code, GET_MODE (*cc_use),
4967                                           dest, const0_rtx));
4968
4969           /* If the only change we made was to change an EQ into an NE or
4970              vice versa, OP0 has only one bit that might be nonzero, and OP1
4971              is zero, check if changing the user of the condition code will
4972              produce a valid insn.  If it won't, we can keep the original code
4973              in that insn by surrounding our operation with an XOR.  */
4974
4975           if (((old_code == NE && new_code == EQ)
4976                || (old_code == EQ && new_code == NE))
4977               && ! other_changed && op1 == const0_rtx
4978               && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
4979               && exact_log2 (mask = nonzero_bits (op0, GET_MODE (op0))) >= 0)
4980             {
4981               rtx pat = PATTERN (other_insn), note = 0;
4982
4983               if ((recog_for_combine (&pat, other_insn, &note) < 0
4984                    && ! check_asm_operands (pat)))
4985                 {
4986                   PUT_CODE (*cc_use, old_code);
4987                   other_insn = 0;
4988
4989                   op0 = gen_binary (XOR, GET_MODE (op0), op0, GEN_INT (mask));
4990                 }
4991             }
4992
4993           other_changed = 1;
4994         }
4995
4996       if (other_changed)
4997         undobuf.other_insn = other_insn;
4998
4999 #ifdef HAVE_cc0
5000       /* If we are now comparing against zero, change our source if
5001          needed.  If we do not use cc0, we always have a COMPARE.  */
5002       if (op1 == const0_rtx && dest == cc0_rtx)
5003         {
5004           SUBST (SET_SRC (x), op0);
5005           src = op0;
5006         }
5007       else
5008 #endif
5009
5010       /* Otherwise, if we didn't previously have a COMPARE in the
5011          correct mode, we need one.  */
5012       if (GET_CODE (src) != COMPARE || GET_MODE (src) != compare_mode)
5013         {
5014           SUBST (SET_SRC (x), gen_rtx_COMPARE (compare_mode, op0, op1));
5015           src = SET_SRC (x);
5016         }
5017       else
5018         {
5019           /* Otherwise, update the COMPARE if needed.  */
5020           SUBST (XEXP (src, 0), op0);
5021           SUBST (XEXP (src, 1), op1);
5022         }
5023     }
5024   else
5025     {
5026       /* Get SET_SRC in a form where we have placed back any
5027          compound expressions.  Then do the checks below.  */
5028       src = make_compound_operation (src, SET);
5029       SUBST (SET_SRC (x), src);
5030     }
5031
5032   /* If we have (set x (subreg:m1 (op:m2 ...) 0)) with OP being some operation,
5033      and X being a REG or (subreg (reg)), we may be able to convert this to
5034      (set (subreg:m2 x) (op)).
5035
5036      We can always do this if M1 is narrower than M2 because that means that
5037      we only care about the low bits of the result.
5038
5039      However, on machines without WORD_REGISTER_OPERATIONS defined, we cannot
5040      perform a narrower operation than requested since the high-order bits will
5041      be undefined.  On machine where it is defined, this transformation is safe
5042      as long as M1 and M2 have the same number of words.  */
5043
5044   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
5045       && GET_RTX_CLASS (GET_CODE (SUBREG_REG (src))) != 'o'
5046       && (((GET_MODE_SIZE (GET_MODE (src)) + (UNITS_PER_WORD - 1))
5047            / UNITS_PER_WORD)
5048           == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (src)))
5049                + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD))
5050 #ifndef WORD_REGISTER_OPERATIONS
5051       && (GET_MODE_SIZE (GET_MODE (src))
5052           < GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5053 #endif
5054 #ifdef CLASS_CANNOT_CHANGE_MODE
5055       && ! (GET_CODE (dest) == REG && REGNO (dest) < FIRST_PSEUDO_REGISTER
5056             && (TEST_HARD_REG_BIT
5057                 (reg_class_contents[(int) CLASS_CANNOT_CHANGE_MODE],
5058                  REGNO (dest)))
5059             && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (src),
5060                                            GET_MODE (SUBREG_REG (src))))
5061 #endif
5062       && (GET_CODE (dest) == REG
5063           || (GET_CODE (dest) == SUBREG
5064               && GET_CODE (SUBREG_REG (dest)) == REG)))
5065     {
5066       SUBST (SET_DEST (x),
5067              gen_lowpart_for_combine (GET_MODE (SUBREG_REG (src)),
5068                                       dest));
5069       SUBST (SET_SRC (x), SUBREG_REG (src));
5070
5071       src = SET_SRC (x), dest = SET_DEST (x);
5072     }
5073
5074 #ifdef LOAD_EXTEND_OP
5075   /* If we have (set FOO (subreg:M (mem:N BAR) 0)) with M wider than N, this
5076      would require a paradoxical subreg.  Replace the subreg with a
5077      zero_extend to avoid the reload that would otherwise be required.  */
5078
5079   if (GET_CODE (src) == SUBREG && subreg_lowpart_p (src)
5080       && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))) != NIL
5081       && SUBREG_BYTE (src) == 0
5082       && (GET_MODE_SIZE (GET_MODE (src))
5083           > GET_MODE_SIZE (GET_MODE (SUBREG_REG (src))))
5084       && GET_CODE (SUBREG_REG (src)) == MEM)
5085     {
5086       SUBST (SET_SRC (x),
5087              gen_rtx (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (src))),
5088                       GET_MODE (src), SUBREG_REG (src)));
5089
5090       src = SET_SRC (x);
5091     }
5092 #endif
5093
5094   /* If we don't have a conditional move, SET_SRC is an IF_THEN_ELSE, and we
5095      are comparing an item known to be 0 or -1 against 0, use a logical
5096      operation instead. Check for one of the arms being an IOR of the other
5097      arm with some value.  We compute three terms to be IOR'ed together.  In
5098      practice, at most two will be nonzero.  Then we do the IOR's.  */
5099
5100   if (GET_CODE (dest) != PC
5101       && GET_CODE (src) == IF_THEN_ELSE
5102       && GET_MODE_CLASS (GET_MODE (src)) == MODE_INT
5103       && (GET_CODE (XEXP (src, 0)) == EQ || GET_CODE (XEXP (src, 0)) == NE)
5104       && XEXP (XEXP (src, 0), 1) == const0_rtx
5105       && GET_MODE (src) == GET_MODE (XEXP (XEXP (src, 0), 0))
5106 #ifdef HAVE_conditional_move
5107       && ! can_conditionally_move_p (GET_MODE (src))
5108 #endif
5109       && (num_sign_bit_copies (XEXP (XEXP (src, 0), 0),
5110                                GET_MODE (XEXP (XEXP (src, 0), 0)))
5111           == GET_MODE_BITSIZE (GET_MODE (XEXP (XEXP (src, 0), 0))))
5112       && ! side_effects_p (src))
5113     {
5114       rtx true_rtx = (GET_CODE (XEXP (src, 0)) == NE
5115                       ? XEXP (src, 1) : XEXP (src, 2));
5116       rtx false_rtx = (GET_CODE (XEXP (src, 0)) == NE
5117                    ? XEXP (src, 2) : XEXP (src, 1));
5118       rtx term1 = const0_rtx, term2, term3;
5119
5120       if (GET_CODE (true_rtx) == IOR
5121           && rtx_equal_p (XEXP (true_rtx, 0), false_rtx))
5122         term1 = false_rtx, true_rtx = XEXP(true_rtx, 1), false_rtx = const0_rtx;
5123       else if (GET_CODE (true_rtx) == IOR
5124                && rtx_equal_p (XEXP (true_rtx, 1), false_rtx))
5125         term1 = false_rtx, true_rtx = XEXP(true_rtx, 0), false_rtx = const0_rtx;
5126       else if (GET_CODE (false_rtx) == IOR
5127                && rtx_equal_p (XEXP (false_rtx, 0), true_rtx))
5128         term1 = true_rtx, false_rtx = XEXP(false_rtx, 1), true_rtx = const0_rtx;
5129       else if (GET_CODE (false_rtx) == IOR
5130                && rtx_equal_p (XEXP (false_rtx, 1), true_rtx))
5131         term1 = true_rtx, false_rtx = XEXP(false_rtx, 0), true_rtx = const0_rtx;
5132
5133       term2 = gen_binary (AND, GET_MODE (src),
5134                           XEXP (XEXP (src, 0), 0), true_rtx);
5135       term3 = gen_binary (AND, GET_MODE (src),
5136                           simplify_gen_unary (NOT, GET_MODE (src),
5137                                               XEXP (XEXP (src, 0), 0),
5138                                               GET_MODE (src)),
5139                           false_rtx);
5140
5141       SUBST (SET_SRC (x),
5142              gen_binary (IOR, GET_MODE (src),
5143                          gen_binary (IOR, GET_MODE (src), term1, term2),
5144                          term3));
5145
5146       src = SET_SRC (x);
5147     }
5148
5149   /* If either SRC or DEST is a CLOBBER of (const_int 0), make this
5150      whole thing fail.  */
5151   if (GET_CODE (src) == CLOBBER && XEXP (src, 0) == const0_rtx)
5152     return src;
5153   else if (GET_CODE (dest) == CLOBBER && XEXP (dest, 0) == const0_rtx)
5154     return dest;
5155   else
5156     /* Convert this into a field assignment operation, if possible.  */
5157     return make_field_assignment (x);
5158 }
5159 \f
5160 /* Simplify, X, and AND, IOR, or XOR operation, and return the simplified
5161    result.  LAST is nonzero if this is the last retry.  */
5162
5163 static rtx
5164 simplify_logical (x, last)
5165      rtx x;
5166      int last;
5167 {
5168   enum machine_mode mode = GET_MODE (x);
5169   rtx op0 = XEXP (x, 0);
5170   rtx op1 = XEXP (x, 1);
5171   rtx reversed;
5172
5173   switch (GET_CODE (x))
5174     {
5175     case AND:
5176       /* Convert (A ^ B) & A to A & (~B) since the latter is often a single
5177          insn (and may simplify more).  */
5178       if (GET_CODE (op0) == XOR
5179           && rtx_equal_p (XEXP (op0, 0), op1)
5180           && ! side_effects_p (op1))
5181         x = gen_binary (AND, mode,
5182                         simplify_gen_unary (NOT, mode, XEXP (op0, 1), mode),
5183                         op1);
5184
5185       if (GET_CODE (op0) == XOR
5186           && rtx_equal_p (XEXP (op0, 1), op1)
5187           && ! side_effects_p (op1))
5188         x = gen_binary (AND, mode,
5189                         simplify_gen_unary (NOT, mode, XEXP (op0, 0), mode),
5190                         op1);
5191
5192       /* Similarly for (~(A ^ B)) & A.  */
5193       if (GET_CODE (op0) == NOT
5194           && GET_CODE (XEXP (op0, 0)) == XOR
5195           && rtx_equal_p (XEXP (XEXP (op0, 0), 0), op1)
5196           && ! side_effects_p (op1))
5197         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 1), op1);
5198
5199       if (GET_CODE (op0) == NOT
5200           && GET_CODE (XEXP (op0, 0)) == XOR
5201           && rtx_equal_p (XEXP (XEXP (op0, 0), 1), op1)
5202           && ! side_effects_p (op1))
5203         x = gen_binary (AND, mode, XEXP (XEXP (op0, 0), 0), op1);
5204
5205       /* We can call simplify_and_const_int only if we don't lose
5206          any (sign) bits when converting INTVAL (op1) to
5207          "unsigned HOST_WIDE_INT".  */
5208       if (GET_CODE (op1) == CONST_INT
5209           && (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5210               || INTVAL (op1) > 0))
5211         {
5212           x = simplify_and_const_int (x, mode, op0, INTVAL (op1));
5213
5214           /* If we have (ior (and (X C1) C2)) and the next restart would be
5215              the last, simplify this by making C1 as small as possible
5216              and then exit.  */
5217           if (last
5218               && GET_CODE (x) == IOR && GET_CODE (op0) == AND
5219               && GET_CODE (XEXP (op0, 1)) == CONST_INT
5220               && GET_CODE (op1) == CONST_INT)
5221             return gen_binary (IOR, mode,
5222                                gen_binary (AND, mode, XEXP (op0, 0),
5223                                            GEN_INT (INTVAL (XEXP (op0, 1))
5224                                                     & ~INTVAL (op1))), op1);
5225
5226           if (GET_CODE (x) != AND)
5227             return x;
5228
5229           if (GET_RTX_CLASS (GET_CODE (x)) == 'c'
5230               || GET_RTX_CLASS (GET_CODE (x)) == '2')
5231             op0 = XEXP (x, 0), op1 = XEXP (x, 1);
5232         }
5233
5234       /* Convert (A | B) & A to A.  */
5235       if (GET_CODE (op0) == IOR
5236           && (rtx_equal_p (XEXP (op0, 0), op1)
5237               || rtx_equal_p (XEXP (op0, 1), op1))
5238           && ! side_effects_p (XEXP (op0, 0))
5239           && ! side_effects_p (XEXP (op0, 1)))
5240         return op1;
5241
5242       /* In the following group of tests (and those in case IOR below),
5243          we start with some combination of logical operations and apply
5244          the distributive law followed by the inverse distributive law.
5245          Most of the time, this results in no change.  However, if some of
5246          the operands are the same or inverses of each other, simplifications
5247          will result.
5248
5249          For example, (and (ior A B) (not B)) can occur as the result of
5250          expanding a bit field assignment.  When we apply the distributive
5251          law to this, we get (ior (and (A (not B))) (and (B (not B)))),
5252          which then simplifies to (and (A (not B))).
5253
5254          If we have (and (ior A B) C), apply the distributive law and then
5255          the inverse distributive law to see if things simplify.  */
5256
5257       if (GET_CODE (op0) == IOR || GET_CODE (op0) == XOR)
5258         {
5259           x = apply_distributive_law
5260             (gen_binary (GET_CODE (op0), mode,
5261                          gen_binary (AND, mode, XEXP (op0, 0), op1),
5262                          gen_binary (AND, mode, XEXP (op0, 1),
5263                                      copy_rtx (op1))));
5264           if (GET_CODE (x) != AND)
5265             return x;
5266         }
5267
5268       if (GET_CODE (op1) == IOR || GET_CODE (op1) == XOR)
5269         return apply_distributive_law
5270           (gen_binary (GET_CODE (op1), mode,
5271                        gen_binary (AND, mode, XEXP (op1, 0), op0),
5272                        gen_binary (AND, mode, XEXP (op1, 1),
5273                                    copy_rtx (op0))));
5274
5275       /* Similarly, taking advantage of the fact that
5276          (and (not A) (xor B C)) == (xor (ior A B) (ior A C))  */
5277
5278       if (GET_CODE (op0) == NOT && GET_CODE (op1) == XOR)
5279         return apply_distributive_law
5280           (gen_binary (XOR, mode,
5281                        gen_binary (IOR, mode, XEXP (op0, 0), XEXP (op1, 0)),
5282                        gen_binary (IOR, mode, copy_rtx (XEXP (op0, 0)),
5283                                    XEXP (op1, 1))));
5284
5285       else if (GET_CODE (op1) == NOT && GET_CODE (op0) == XOR)
5286         return apply_distributive_law
5287           (gen_binary (XOR, mode,
5288                        gen_binary (IOR, mode, XEXP (op1, 0), XEXP (op0, 0)),
5289                        gen_binary (IOR, mode, copy_rtx (XEXP (op1, 0)), XEXP (op0, 1))));
5290       break;
5291
5292     case IOR:
5293       /* (ior A C) is C if all bits of A that might be nonzero are on in C.  */
5294       if (GET_CODE (op1) == CONST_INT
5295           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5296           && (nonzero_bits (op0, mode) & ~INTVAL (op1)) == 0)
5297         return op1;
5298
5299       /* Convert (A & B) | A to A.  */
5300       if (GET_CODE (op0) == AND
5301           && (rtx_equal_p (XEXP (op0, 0), op1)
5302               || rtx_equal_p (XEXP (op0, 1), op1))
5303           && ! side_effects_p (XEXP (op0, 0))
5304           && ! side_effects_p (XEXP (op0, 1)))
5305         return op1;
5306
5307       /* If we have (ior (and A B) C), apply the distributive law and then
5308          the inverse distributive law to see if things simplify.  */
5309
5310       if (GET_CODE (op0) == AND)
5311         {
5312           x = apply_distributive_law
5313             (gen_binary (AND, mode,
5314                          gen_binary (IOR, mode, XEXP (op0, 0), op1),
5315                          gen_binary (IOR, mode, XEXP (op0, 1),
5316                                      copy_rtx (op1))));
5317
5318           if (GET_CODE (x) != IOR)
5319             return x;
5320         }
5321
5322       if (GET_CODE (op1) == AND)
5323         {
5324           x = apply_distributive_law
5325             (gen_binary (AND, mode,
5326                          gen_binary (IOR, mode, XEXP (op1, 0), op0),
5327                          gen_binary (IOR, mode, XEXP (op1, 1),
5328                                      copy_rtx (op0))));
5329
5330           if (GET_CODE (x) != IOR)
5331             return x;
5332         }
5333
5334       /* Convert (ior (ashift A CX) (lshiftrt A CY)) where CX+CY equals the
5335          mode size to (rotate A CX).  */
5336
5337       if (((GET_CODE (op0) == ASHIFT && GET_CODE (op1) == LSHIFTRT)
5338            || (GET_CODE (op1) == ASHIFT && GET_CODE (op0) == LSHIFTRT))
5339           && rtx_equal_p (XEXP (op0, 0), XEXP (op1, 0))
5340           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5341           && GET_CODE (XEXP (op1, 1)) == CONST_INT
5342           && (INTVAL (XEXP (op0, 1)) + INTVAL (XEXP (op1, 1))
5343               == GET_MODE_BITSIZE (mode)))
5344         return gen_rtx_ROTATE (mode, XEXP (op0, 0),
5345                                (GET_CODE (op0) == ASHIFT
5346                                 ? XEXP (op0, 1) : XEXP (op1, 1)));
5347
5348       /* If OP0 is (ashiftrt (plus ...) C), it might actually be
5349          a (sign_extend (plus ...)).  If so, OP1 is a CONST_INT, and the PLUS
5350          does not affect any of the bits in OP1, it can really be done
5351          as a PLUS and we can associate.  We do this by seeing if OP1
5352          can be safely shifted left C bits.  */
5353       if (GET_CODE (op1) == CONST_INT && GET_CODE (op0) == ASHIFTRT
5354           && GET_CODE (XEXP (op0, 0)) == PLUS
5355           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
5356           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5357           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT)
5358         {
5359           int count = INTVAL (XEXP (op0, 1));
5360           HOST_WIDE_INT mask = INTVAL (op1) << count;
5361
5362           if (mask >> count == INTVAL (op1)
5363               && (mask & nonzero_bits (XEXP (op0, 0), mode)) == 0)
5364             {
5365               SUBST (XEXP (XEXP (op0, 0), 1),
5366                      GEN_INT (INTVAL (XEXP (XEXP (op0, 0), 1)) | mask));
5367               return op0;
5368             }
5369         }
5370       break;
5371
5372     case XOR:
5373       /* If we are XORing two things that have no bits in common,
5374          convert them into an IOR.  This helps to detect rotation encoded
5375          using those methods and possibly other simplifications.  */
5376
5377       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5378           && (nonzero_bits (op0, mode)
5379               & nonzero_bits (op1, mode)) == 0)
5380         return (gen_binary (IOR, mode, op0, op1));
5381
5382       /* Convert (XOR (NOT x) (NOT y)) to (XOR x y).
5383          Also convert (XOR (NOT x) y) to (NOT (XOR x y)), similarly for
5384          (NOT y).  */
5385       {
5386         int num_negated = 0;
5387
5388         if (GET_CODE (op0) == NOT)
5389           num_negated++, op0 = XEXP (op0, 0);
5390         if (GET_CODE (op1) == NOT)
5391           num_negated++, op1 = XEXP (op1, 0);
5392
5393         if (num_negated == 2)
5394           {
5395             SUBST (XEXP (x, 0), op0);
5396             SUBST (XEXP (x, 1), op1);
5397           }
5398         else if (num_negated == 1)
5399           return
5400             simplify_gen_unary (NOT, mode, gen_binary (XOR, mode, op0, op1),
5401                                 mode);
5402       }
5403
5404       /* Convert (xor (and A B) B) to (and (not A) B).  The latter may
5405          correspond to a machine insn or result in further simplifications
5406          if B is a constant.  */
5407
5408       if (GET_CODE (op0) == AND
5409           && rtx_equal_p (XEXP (op0, 1), op1)
5410           && ! side_effects_p (op1))
5411         return gen_binary (AND, mode,
5412                            simplify_gen_unary (NOT, mode, XEXP (op0, 0), mode),
5413                            op1);
5414
5415       else if (GET_CODE (op0) == AND
5416                && rtx_equal_p (XEXP (op0, 0), op1)
5417                && ! side_effects_p (op1))
5418         return gen_binary (AND, mode,
5419                            simplify_gen_unary (NOT, mode, XEXP (op0, 1), mode),
5420                            op1);
5421
5422       /* (xor (comparison foo bar) (const_int 1)) can become the reversed
5423          comparison if STORE_FLAG_VALUE is 1.  */
5424       if (STORE_FLAG_VALUE == 1
5425           && op1 == const1_rtx
5426           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5427           && (reversed = reversed_comparison (op0, mode, XEXP (op0, 0),
5428                                               XEXP (op0, 1))))
5429         return reversed;
5430
5431       /* (lshiftrt foo C) where C is the number of bits in FOO minus 1
5432          is (lt foo (const_int 0)), so we can perform the above
5433          simplification if STORE_FLAG_VALUE is 1.  */
5434
5435       if (STORE_FLAG_VALUE == 1
5436           && op1 == const1_rtx
5437           && GET_CODE (op0) == LSHIFTRT
5438           && GET_CODE (XEXP (op0, 1)) == CONST_INT
5439           && INTVAL (XEXP (op0, 1)) == GET_MODE_BITSIZE (mode) - 1)
5440         return gen_rtx_GE (mode, XEXP (op0, 0), const0_rtx);
5441
5442       /* (xor (comparison foo bar) (const_int sign-bit))
5443          when STORE_FLAG_VALUE is the sign bit.  */
5444       if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
5445           && ((STORE_FLAG_VALUE & GET_MODE_MASK (mode))
5446               == (unsigned HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (mode) - 1))
5447           && op1 == const_true_rtx
5448           && GET_RTX_CLASS (GET_CODE (op0)) == '<'
5449           && (reversed = reversed_comparison (op0, mode, XEXP (op0, 0),
5450                                               XEXP (op0, 1))))
5451         return reversed;
5452
5453       break;
5454
5455     default:
5456       abort ();
5457     }
5458
5459   return x;
5460 }
5461 \f
5462 /* We consider ZERO_EXTRACT, SIGN_EXTRACT, and SIGN_EXTEND as "compound
5463    operations" because they can be replaced with two more basic operations.
5464    ZERO_EXTEND is also considered "compound" because it can be replaced with
5465    an AND operation, which is simpler, though only one operation.
5466
5467    The function expand_compound_operation is called with an rtx expression
5468    and will convert it to the appropriate shifts and AND operations,
5469    simplifying at each stage.
5470
5471    The function make_compound_operation is called to convert an expression
5472    consisting of shifts and ANDs into the equivalent compound expression.
5473    It is the inverse of this function, loosely speaking.  */
5474
5475 static rtx
5476 expand_compound_operation (x)
5477      rtx x;
5478 {
5479   unsigned HOST_WIDE_INT pos = 0, len;
5480   int unsignedp = 0;
5481   unsigned int modewidth;
5482   rtx tem;
5483
5484   switch (GET_CODE (x))
5485     {
5486     case ZERO_EXTEND:
5487       unsignedp = 1;
5488     case SIGN_EXTEND:
5489       /* We can't necessarily use a const_int for a multiword mode;
5490          it depends on implicitly extending the value.
5491          Since we don't know the right way to extend it,
5492          we can't tell whether the implicit way is right.
5493
5494          Even for a mode that is no wider than a const_int,
5495          we can't win, because we need to sign extend one of its bits through
5496          the rest of it, and we don't know which bit.  */
5497       if (GET_CODE (XEXP (x, 0)) == CONST_INT)
5498         return x;
5499
5500       /* Return if (subreg:MODE FROM 0) is not a safe replacement for
5501          (zero_extend:MODE FROM) or (sign_extend:MODE FROM).  It is for any MEM
5502          because (SUBREG (MEM...)) is guaranteed to cause the MEM to be
5503          reloaded. If not for that, MEM's would very rarely be safe.
5504
5505          Reject MODEs bigger than a word, because we might not be able
5506          to reference a two-register group starting with an arbitrary register
5507          (and currently gen_lowpart might crash for a SUBREG).  */
5508
5509       if (GET_MODE_SIZE (GET_MODE (XEXP (x, 0))) > UNITS_PER_WORD)
5510         return x;
5511
5512       len = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)));
5513       /* If the inner object has VOIDmode (the only way this can happen
5514          is if it is a ASM_OPERANDS), we can't do anything since we don't
5515          know how much masking to do.  */
5516       if (len == 0)
5517         return x;
5518
5519       break;
5520
5521     case ZERO_EXTRACT:
5522       unsignedp = 1;
5523     case SIGN_EXTRACT:
5524       /* If the operand is a CLOBBER, just return it.  */
5525       if (GET_CODE (XEXP (x, 0)) == CLOBBER)
5526         return XEXP (x, 0);
5527
5528       if (GET_CODE (XEXP (x, 1)) != CONST_INT
5529           || GET_CODE (XEXP (x, 2)) != CONST_INT
5530           || GET_MODE (XEXP (x, 0)) == VOIDmode)
5531         return x;
5532
5533       len = INTVAL (XEXP (x, 1));
5534       pos = INTVAL (XEXP (x, 2));
5535
5536       /* If this goes outside the object being extracted, replace the object
5537          with a (use (mem ...)) construct that only combine understands
5538          and is used only for this purpose.  */
5539       if (len + pos > GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))))
5540         SUBST (XEXP (x, 0), gen_rtx_USE (GET_MODE (x), XEXP (x, 0)));
5541
5542       if (BITS_BIG_ENDIAN)
5543         pos = GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - len - pos;
5544
5545       break;
5546
5547     default:
5548       return x;
5549     }
5550   /* Convert sign extension to zero extension, if we know that the high
5551      bit is not set, as this is easier to optimize.  It will be converted
5552      back to cheaper alternative in make_extraction.  */
5553   if (GET_CODE (x) == SIGN_EXTEND
5554       && (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5555           && ((nonzero_bits (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
5556                 & ~(((unsigned HOST_WIDE_INT)
5557                       GET_MODE_MASK (GET_MODE (XEXP (x, 0))))
5558                      >> 1))
5559                == 0)))
5560     {
5561       rtx temp = gen_rtx_ZERO_EXTEND (GET_MODE (x), XEXP (x, 0));
5562       return expand_compound_operation (temp);
5563     }
5564
5565   /* We can optimize some special cases of ZERO_EXTEND.  */
5566   if (GET_CODE (x) == ZERO_EXTEND)
5567     {
5568       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI if we
5569          know that the last value didn't have any inappropriate bits
5570          set.  */
5571       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5572           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5573           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5574           && (nonzero_bits (XEXP (XEXP (x, 0), 0), GET_MODE (x))
5575               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5576         return XEXP (XEXP (x, 0), 0);
5577
5578       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5579       if (GET_CODE (XEXP (x, 0)) == SUBREG
5580           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5581           && subreg_lowpart_p (XEXP (x, 0))
5582           && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
5583           && (nonzero_bits (SUBREG_REG (XEXP (x, 0)), GET_MODE (x))
5584               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5585         return SUBREG_REG (XEXP (x, 0));
5586
5587       /* (zero_extend:DI (truncate:SI foo:DI)) is just foo:DI when foo
5588          is a comparison and STORE_FLAG_VALUE permits.  This is like
5589          the first case, but it works even when GET_MODE (x) is larger
5590          than HOST_WIDE_INT.  */
5591       if (GET_CODE (XEXP (x, 0)) == TRUNCATE
5592           && GET_MODE (XEXP (XEXP (x, 0), 0)) == GET_MODE (x)
5593           && GET_RTX_CLASS (GET_CODE (XEXP (XEXP (x, 0), 0))) == '<'
5594           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5595               <= HOST_BITS_PER_WIDE_INT)
5596           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5597               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5598         return XEXP (XEXP (x, 0), 0);
5599
5600       /* Likewise for (zero_extend:DI (subreg:SI foo:DI 0)).  */
5601       if (GET_CODE (XEXP (x, 0)) == SUBREG
5602           && GET_MODE (SUBREG_REG (XEXP (x, 0))) == GET_MODE (x)
5603           && subreg_lowpart_p (XEXP (x, 0))
5604           && GET_RTX_CLASS (GET_CODE (SUBREG_REG (XEXP (x, 0)))) == '<'
5605           && (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
5606               <= HOST_BITS_PER_WIDE_INT)
5607           && ((HOST_WIDE_INT) STORE_FLAG_VALUE
5608               & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
5609         return SUBREG_REG (XEXP (x, 0));
5610
5611     }
5612
5613   /* If we reach here, we want to return a pair of shifts.  The inner
5614      shift is a left shift of BITSIZE - POS - LEN bits.  The outer
5615      shift is a right shift of BITSIZE - LEN bits.  It is arithmetic or
5616      logical depending on the value of UNSIGNEDP.
5617
5618      If this was a ZERO_EXTEND or ZERO_EXTRACT, this pair of shifts will be
5619      converted into an AND of a shift.
5620
5621      We must check for the case where the left shift would have a negative
5622      count.  This can happen in a case like (x >> 31) & 255 on machines
5623      that can't shift by a constant.  On those machines, we would first
5624      combine the shift with the AND to produce a variable-position
5625      extraction.  Then the constant of 31 would be substituted in to produce
5626      a such a position.  */
5627
5628   modewidth = GET_MODE_BITSIZE (GET_MODE (x));
5629   if (modewidth + len >= pos)
5630     tem = simplify_shift_const (NULL_RTX, unsignedp ? LSHIFTRT : ASHIFTRT,
5631                                 GET_MODE (x),
5632                                 simplify_shift_const (NULL_RTX, ASHIFT,
5633                                                       GET_MODE (x),
5634                                                       XEXP (x, 0),
5635                                                       modewidth - pos - len),
5636                                 modewidth - len);
5637
5638   else if (unsignedp && len < HOST_BITS_PER_WIDE_INT)
5639     tem = simplify_and_const_int (NULL_RTX, GET_MODE (x),
5640                                   simplify_shift_const (NULL_RTX, LSHIFTRT,
5641                                                         GET_MODE (x),
5642                                                         XEXP (x, 0), pos),
5643                                   ((HOST_WIDE_INT) 1 << len) - 1);
5644   else
5645     /* Any other cases we can't handle.  */
5646     return x;
5647
5648   /* If we couldn't do this for some reason, return the original
5649      expression.  */
5650   if (GET_CODE (tem) == CLOBBER)
5651     return x;
5652
5653   return tem;
5654 }
5655 \f
5656 /* X is a SET which contains an assignment of one object into
5657    a part of another (such as a bit-field assignment, STRICT_LOW_PART,
5658    or certain SUBREGS). If possible, convert it into a series of
5659    logical operations.
5660
5661    We half-heartedly support variable positions, but do not at all
5662    support variable lengths.  */
5663
5664 static rtx
5665 expand_field_assignment (x)
5666      rtx x;
5667 {
5668   rtx inner;
5669   rtx pos;                      /* Always counts from low bit.  */
5670   int len;
5671   rtx mask;
5672   enum machine_mode compute_mode;
5673
5674   /* Loop until we find something we can't simplify.  */
5675   while (1)
5676     {
5677       if (GET_CODE (SET_DEST (x)) == STRICT_LOW_PART
5678           && GET_CODE (XEXP (SET_DEST (x), 0)) == SUBREG)
5679         {
5680           int byte_offset = SUBREG_BYTE (XEXP (SET_DEST (x), 0));
5681
5682           inner = SUBREG_REG (XEXP (SET_DEST (x), 0));
5683           len = GET_MODE_BITSIZE (GET_MODE (XEXP (SET_DEST (x), 0)));
5684           pos = GEN_INT (BITS_PER_WORD * (byte_offset / UNITS_PER_WORD));
5685         }
5686       else if (GET_CODE (SET_DEST (x)) == ZERO_EXTRACT
5687                && GET_CODE (XEXP (SET_DEST (x), 1)) == CONST_INT)
5688         {
5689           inner = XEXP (SET_DEST (x), 0);
5690           len = INTVAL (XEXP (SET_DEST (x), 1));
5691           pos = XEXP (SET_DEST (x), 2);
5692
5693           /* If the position is constant and spans the width of INNER,
5694              surround INNER  with a USE to indicate this.  */
5695           if (GET_CODE (pos) == CONST_INT
5696               && INTVAL (pos) + len > GET_MODE_BITSIZE (GET_MODE (inner)))
5697             inner = gen_rtx_USE (GET_MODE (SET_DEST (x)), inner);
5698
5699           if (BITS_BIG_ENDIAN)
5700             {
5701               if (GET_CODE (pos) == CONST_INT)
5702                 pos = GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner)) - len
5703                                - INTVAL (pos));
5704               else if (GET_CODE (pos) == MINUS
5705                        && GET_CODE (XEXP (pos, 1)) == CONST_INT
5706                        && (INTVAL (XEXP (pos, 1))
5707                            == GET_MODE_BITSIZE (GET_MODE (inner)) - len))
5708                 /* If position is ADJUST - X, new position is X.  */
5709                 pos = XEXP (pos, 0);
5710               else
5711                 pos = gen_binary (MINUS, GET_MODE (pos),
5712                                   GEN_INT (GET_MODE_BITSIZE (GET_MODE (inner))
5713                                            - len),
5714                                   pos);
5715             }
5716         }
5717
5718       /* A SUBREG between two modes that occupy the same numbers of words
5719          can be done by moving the SUBREG to the source.  */
5720       else if (GET_CODE (SET_DEST (x)) == SUBREG
5721                /* We need SUBREGs to compute nonzero_bits properly.  */
5722                && nonzero_sign_valid
5723                && (((GET_MODE_SIZE (GET_MODE (SET_DEST (x)))
5724                      + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
5725                    == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (SET_DEST (x))))
5726                         + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)))
5727         {
5728           x = gen_rtx_SET (VOIDmode, SUBREG_REG (SET_DEST (x)),
5729                            gen_lowpart_for_combine
5730                            (GET_MODE (SUBREG_REG (SET_DEST (x))),
5731                             SET_SRC (x)));
5732           continue;
5733         }
5734       else
5735         break;
5736
5737       while (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5738         inner = SUBREG_REG (inner);
5739
5740       compute_mode = GET_MODE (inner);
5741
5742       /* Don't attempt bitwise arithmetic on non-integral modes.  */
5743       if (! INTEGRAL_MODE_P (compute_mode))
5744         {
5745           enum machine_mode imode;
5746
5747           /* Something is probably seriously wrong if this matches.  */
5748           if (! FLOAT_MODE_P (compute_mode))
5749             break;
5750
5751           /* Try to find an integral mode to pun with.  */
5752           imode = mode_for_size (GET_MODE_BITSIZE (compute_mode), MODE_INT, 0);
5753           if (imode == BLKmode)
5754             break;
5755
5756           compute_mode = imode;
5757           inner = gen_lowpart_for_combine (imode, inner);
5758         }
5759
5760       /* Compute a mask of LEN bits, if we can do this on the host machine.  */
5761       if (len < HOST_BITS_PER_WIDE_INT)
5762         mask = GEN_INT (((HOST_WIDE_INT) 1 << len) - 1);
5763       else
5764         break;
5765
5766       /* Now compute the equivalent expression.  Make a copy of INNER
5767          for the SET_DEST in case it is a MEM into which we will substitute;
5768          we don't want shared RTL in that case.  */
5769       x = gen_rtx_SET
5770         (VOIDmode, copy_rtx (inner),
5771          gen_binary (IOR, compute_mode,
5772                      gen_binary (AND, compute_mode,
5773                                  simplify_gen_unary (NOT, compute_mode,
5774                                                      gen_binary (ASHIFT,
5775                                                                  compute_mode,
5776                                                                  mask, pos),
5777                                                      compute_mode),
5778                                  inner),
5779                      gen_binary (ASHIFT, compute_mode,
5780                                  gen_binary (AND, compute_mode,
5781                                              gen_lowpart_for_combine
5782                                              (compute_mode, SET_SRC (x)),
5783                                              mask),
5784                                  pos)));
5785     }
5786
5787   return x;
5788 }
5789 \f
5790 /* Return an RTX for a reference to LEN bits of INNER.  If POS_RTX is nonzero,
5791    it is an RTX that represents a variable starting position; otherwise,
5792    POS is the (constant) starting bit position (counted from the LSB).
5793
5794    INNER may be a USE.  This will occur when we started with a bitfield
5795    that went outside the boundary of the object in memory, which is
5796    allowed on most machines.  To isolate this case, we produce a USE
5797    whose mode is wide enough and surround the MEM with it.  The only
5798    code that understands the USE is this routine.  If it is not removed,
5799    it will cause the resulting insn not to match.
5800
5801    UNSIGNEDP is non-zero for an unsigned reference and zero for a
5802    signed reference.
5803
5804    IN_DEST is non-zero if this is a reference in the destination of a
5805    SET.  This is used when a ZERO_ or SIGN_EXTRACT isn't needed.  If non-zero,
5806    a STRICT_LOW_PART will be used, if zero, ZERO_EXTEND or SIGN_EXTEND will
5807    be used.
5808
5809    IN_COMPARE is non-zero if we are in a COMPARE.  This means that a
5810    ZERO_EXTRACT should be built even for bits starting at bit 0.
5811
5812    MODE is the desired mode of the result (if IN_DEST == 0).
5813
5814    The result is an RTX for the extraction or NULL_RTX if the target
5815    can't handle it.  */
5816
5817 static rtx
5818 make_extraction (mode, inner, pos, pos_rtx, len,
5819                  unsignedp, in_dest, in_compare)
5820      enum machine_mode mode;
5821      rtx inner;
5822      HOST_WIDE_INT pos;
5823      rtx pos_rtx;
5824      unsigned HOST_WIDE_INT len;
5825      int unsignedp;
5826      int in_dest, in_compare;
5827 {
5828   /* This mode describes the size of the storage area
5829      to fetch the overall value from.  Within that, we
5830      ignore the POS lowest bits, etc.  */
5831   enum machine_mode is_mode = GET_MODE (inner);
5832   enum machine_mode inner_mode;
5833   enum machine_mode wanted_inner_mode = byte_mode;
5834   enum machine_mode wanted_inner_reg_mode = word_mode;
5835   enum machine_mode pos_mode = word_mode;
5836   enum machine_mode extraction_mode = word_mode;
5837   enum machine_mode tmode = mode_for_size (len, MODE_INT, 1);
5838   int spans_byte = 0;
5839   rtx new = 0;
5840   rtx orig_pos_rtx = pos_rtx;
5841   HOST_WIDE_INT orig_pos;
5842
5843   /* Get some information about INNER and get the innermost object.  */
5844   if (GET_CODE (inner) == USE)
5845     /* (use:SI (mem:QI foo)) stands for (mem:SI foo).  */
5846     /* We don't need to adjust the position because we set up the USE
5847        to pretend that it was a full-word object.  */
5848     spans_byte = 1, inner = XEXP (inner, 0);
5849   else if (GET_CODE (inner) == SUBREG && subreg_lowpart_p (inner))
5850     {
5851       /* If going from (subreg:SI (mem:QI ...)) to (mem:QI ...),
5852          consider just the QI as the memory to extract from.
5853          The subreg adds or removes high bits; its mode is
5854          irrelevant to the meaning of this extraction,
5855          since POS and LEN count from the lsb.  */
5856       if (GET_CODE (SUBREG_REG (inner)) == MEM)
5857         is_mode = GET_MODE (SUBREG_REG (inner));
5858       inner = SUBREG_REG (inner);
5859     }
5860
5861   inner_mode = GET_MODE (inner);
5862
5863   if (pos_rtx && GET_CODE (pos_rtx) == CONST_INT)
5864     pos = INTVAL (pos_rtx), pos_rtx = 0;
5865
5866   /* See if this can be done without an extraction.  We never can if the
5867      width of the field is not the same as that of some integer mode. For
5868      registers, we can only avoid the extraction if the position is at the
5869      low-order bit and this is either not in the destination or we have the
5870      appropriate STRICT_LOW_PART operation available.
5871
5872      For MEM, we can avoid an extract if the field starts on an appropriate
5873      boundary and we can change the mode of the memory reference.  However,
5874      we cannot directly access the MEM if we have a USE and the underlying
5875      MEM is not TMODE.  This combination means that MEM was being used in a
5876      context where bits outside its mode were being referenced; that is only
5877      valid in bit-field insns.  */
5878
5879   if (tmode != BLKmode
5880       && ! (spans_byte && inner_mode != tmode)
5881       && ((pos_rtx == 0 && (pos % BITS_PER_WORD) == 0
5882            && GET_CODE (inner) != MEM
5883            && (! in_dest
5884                || (GET_CODE (inner) == REG
5885                    && (movstrict_optab->handlers[(int) tmode].insn_code
5886                        != CODE_FOR_nothing))))
5887           || (GET_CODE (inner) == MEM && pos_rtx == 0
5888               && (pos
5889                   % (STRICT_ALIGNMENT ? GET_MODE_ALIGNMENT (tmode)
5890                      : BITS_PER_UNIT)) == 0
5891               /* We can't do this if we are widening INNER_MODE (it
5892                  may not be aligned, for one thing).  */
5893               && GET_MODE_BITSIZE (inner_mode) >= GET_MODE_BITSIZE (tmode)
5894               && (inner_mode == tmode
5895                   || (! mode_dependent_address_p (XEXP (inner, 0))
5896                       && ! MEM_VOLATILE_P (inner))))))
5897     {
5898       /* If INNER is a MEM, make a new MEM that encompasses just the desired
5899          field.  If the original and current mode are the same, we need not
5900          adjust the offset.  Otherwise, we do if bytes big endian.
5901
5902          If INNER is not a MEM, get a piece consisting of just the field
5903          of interest (in this case POS % BITS_PER_WORD must be 0).  */
5904
5905       if (GET_CODE (inner) == MEM)
5906         {
5907           HOST_WIDE_INT offset;
5908
5909           /* POS counts from lsb, but make OFFSET count in memory order.  */
5910           if (BYTES_BIG_ENDIAN)
5911             offset = (GET_MODE_BITSIZE (is_mode) - len - pos) / BITS_PER_UNIT;
5912           else
5913             offset = pos / BITS_PER_UNIT;
5914
5915           new = adjust_address_nv (inner, tmode, offset);
5916         }
5917       else if (GET_CODE (inner) == REG)
5918         {
5919           /* We can't call gen_lowpart_for_combine here since we always want
5920              a SUBREG and it would sometimes return a new hard register.  */
5921           if (tmode != inner_mode)
5922             {
5923               HOST_WIDE_INT final_word = pos / BITS_PER_WORD;
5924
5925               if (WORDS_BIG_ENDIAN
5926                   && GET_MODE_SIZE (inner_mode) > UNITS_PER_WORD)
5927                 final_word = ((GET_MODE_SIZE (inner_mode)
5928                                - GET_MODE_SIZE (tmode))
5929                               / UNITS_PER_WORD) - final_word;
5930
5931               final_word *= UNITS_PER_WORD;
5932               if (BYTES_BIG_ENDIAN &&
5933                   GET_MODE_SIZE (inner_mode) > GET_MODE_SIZE (tmode))
5934                 final_word += (GET_MODE_SIZE (inner_mode)
5935                                - GET_MODE_SIZE (tmode)) % UNITS_PER_WORD;
5936
5937               new = gen_rtx_SUBREG (tmode, inner, final_word);
5938             }
5939           else
5940             new = inner;
5941         }
5942       else
5943         new = force_to_mode (inner, tmode,
5944                              len >= HOST_BITS_PER_WIDE_INT
5945                              ? ~(unsigned HOST_WIDE_INT) 0
5946                              : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
5947                              NULL_RTX, 0);
5948
5949       /* If this extraction is going into the destination of a SET,
5950          make a STRICT_LOW_PART unless we made a MEM.  */
5951
5952       if (in_dest)
5953         return (GET_CODE (new) == MEM ? new
5954                 : (GET_CODE (new) != SUBREG
5955                    ? gen_rtx_CLOBBER (tmode, const0_rtx)
5956                    : gen_rtx_STRICT_LOW_PART (VOIDmode, new)));
5957
5958       if (mode == tmode)
5959         return new;
5960
5961       /* If we know that no extraneous bits are set, and that the high
5962          bit is not set, convert the extraction to the cheaper of
5963          sign and zero extension, that are equivalent in these cases.  */
5964       if (flag_expensive_optimizations
5965           && (GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT
5966               && ((nonzero_bits (new, tmode)
5967                    & ~(((unsigned HOST_WIDE_INT)
5968                         GET_MODE_MASK (tmode))
5969                        >> 1))
5970                   == 0)))
5971         {
5972           rtx temp = gen_rtx_ZERO_EXTEND (mode, new);
5973           rtx temp1 = gen_rtx_SIGN_EXTEND (mode, new);
5974
5975           /* Prefer ZERO_EXTENSION, since it gives more information to
5976              backends.  */
5977           if (rtx_cost (temp, SET) <= rtx_cost (temp1, SET))
5978             return temp;
5979           return temp1;
5980         }
5981
5982       /* Otherwise, sign- or zero-extend unless we already are in the
5983          proper mode.  */
5984
5985       return (gen_rtx_fmt_e (unsignedp ? ZERO_EXTEND : SIGN_EXTEND,
5986                              mode, new));
5987     }
5988
5989   /* Unless this is a COMPARE or we have a funny memory reference,
5990      don't do anything with zero-extending field extracts starting at
5991      the low-order bit since they are simple AND operations.  */
5992   if (pos_rtx == 0 && pos == 0 && ! in_dest
5993       && ! in_compare && ! spans_byte && unsignedp)
5994     return 0;
5995
5996   /* Unless we are allowed to span bytes or INNER is not MEM, reject this if
5997      we would be spanning bytes or if the position is not a constant and the
5998      length is not 1.  In all other cases, we would only be going outside
5999      our object in cases when an original shift would have been
6000      undefined.  */
6001   if (! spans_byte && GET_CODE (inner) == MEM
6002       && ((pos_rtx == 0 && pos + len > GET_MODE_BITSIZE (is_mode))
6003           || (pos_rtx != 0 && len != 1)))
6004     return 0;
6005
6006   /* Get the mode to use should INNER not be a MEM, the mode for the position,
6007      and the mode for the result.  */
6008 #ifdef HAVE_insv
6009   if (in_dest)
6010     {
6011       wanted_inner_reg_mode
6012         = insn_data[(int) CODE_FOR_insv].operand[0].mode;
6013       if (wanted_inner_reg_mode == VOIDmode)
6014         wanted_inner_reg_mode = word_mode;
6015
6016       pos_mode = insn_data[(int) CODE_FOR_insv].operand[2].mode;
6017       if (pos_mode == VOIDmode)
6018         pos_mode = word_mode;
6019
6020       extraction_mode = insn_data[(int) CODE_FOR_insv].operand[3].mode;
6021       if (extraction_mode == VOIDmode)
6022         extraction_mode = word_mode;
6023     }
6024 #endif
6025
6026 #ifdef HAVE_extzv
6027   if (! in_dest && unsignedp)
6028     {
6029       wanted_inner_reg_mode
6030         = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
6031       if (wanted_inner_reg_mode == VOIDmode)
6032         wanted_inner_reg_mode = word_mode;
6033
6034       pos_mode = insn_data[(int) CODE_FOR_extzv].operand[3].mode;
6035       if (pos_mode == VOIDmode)
6036         pos_mode = word_mode;
6037
6038       extraction_mode = insn_data[(int) CODE_FOR_extzv].operand[0].mode;
6039       if (extraction_mode == VOIDmode)
6040         extraction_mode = word_mode;
6041     }
6042 #endif
6043
6044 #ifdef HAVE_extv
6045   if (! in_dest && ! unsignedp)
6046     {
6047       wanted_inner_reg_mode
6048         = insn_data[(int) CODE_FOR_extv].operand[1].mode;
6049       if (wanted_inner_reg_mode == VOIDmode)
6050         wanted_inner_reg_mode = word_mode;
6051
6052       pos_mode = insn_data[(int) CODE_FOR_extv].operand[3].mode;
6053       if (pos_mode == VOIDmode)
6054         pos_mode = word_mode;
6055
6056       extraction_mode = insn_data[(int) CODE_FOR_extv].operand[0].mode;
6057       if (extraction_mode == VOIDmode)
6058         extraction_mode = word_mode;
6059     }
6060 #endif
6061
6062   /* Never narrow an object, since that might not be safe.  */
6063
6064   if (mode != VOIDmode
6065       && GET_MODE_SIZE (extraction_mode) < GET_MODE_SIZE (mode))
6066     extraction_mode = mode;
6067
6068   if (pos_rtx && GET_MODE (pos_rtx) != VOIDmode
6069       && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6070     pos_mode = GET_MODE (pos_rtx);
6071
6072   /* If this is not from memory, the desired mode is wanted_inner_reg_mode;
6073      if we have to change the mode of memory and cannot, the desired mode is
6074      EXTRACTION_MODE.  */
6075   if (GET_CODE (inner) != MEM)
6076     wanted_inner_mode = wanted_inner_reg_mode;
6077   else if (inner_mode != wanted_inner_mode
6078            && (mode_dependent_address_p (XEXP (inner, 0))
6079                || MEM_VOLATILE_P (inner)))
6080     wanted_inner_mode = extraction_mode;
6081
6082   orig_pos = pos;
6083
6084   if (BITS_BIG_ENDIAN)
6085     {
6086       /* POS is passed as if BITS_BIG_ENDIAN == 0, so we need to convert it to
6087          BITS_BIG_ENDIAN style.  If position is constant, compute new
6088          position.  Otherwise, build subtraction.
6089          Note that POS is relative to the mode of the original argument.
6090          If it's a MEM we need to recompute POS relative to that.
6091          However, if we're extracting from (or inserting into) a register,
6092          we want to recompute POS relative to wanted_inner_mode.  */
6093       int width = (GET_CODE (inner) == MEM
6094                    ? GET_MODE_BITSIZE (is_mode)
6095                    : GET_MODE_BITSIZE (wanted_inner_mode));
6096
6097       if (pos_rtx == 0)
6098         pos = width - len - pos;
6099       else
6100         pos_rtx
6101           = gen_rtx_MINUS (GET_MODE (pos_rtx), GEN_INT (width - len), pos_rtx);
6102       /* POS may be less than 0 now, but we check for that below.
6103          Note that it can only be less than 0 if GET_CODE (inner) != MEM.  */
6104     }
6105
6106   /* If INNER has a wider mode, make it smaller.  If this is a constant
6107      extract, try to adjust the byte to point to the byte containing
6108      the value.  */
6109   if (wanted_inner_mode != VOIDmode
6110       && GET_MODE_SIZE (wanted_inner_mode) < GET_MODE_SIZE (is_mode)
6111       && ((GET_CODE (inner) == MEM
6112            && (inner_mode == wanted_inner_mode
6113                || (! mode_dependent_address_p (XEXP (inner, 0))
6114                    && ! MEM_VOLATILE_P (inner))))))
6115     {
6116       int offset = 0;
6117
6118       /* The computations below will be correct if the machine is big
6119          endian in both bits and bytes or little endian in bits and bytes.
6120          If it is mixed, we must adjust.  */
6121
6122       /* If bytes are big endian and we had a paradoxical SUBREG, we must
6123          adjust OFFSET to compensate.  */
6124       if (BYTES_BIG_ENDIAN
6125           && ! spans_byte
6126           && GET_MODE_SIZE (inner_mode) < GET_MODE_SIZE (is_mode))
6127         offset -= GET_MODE_SIZE (is_mode) - GET_MODE_SIZE (inner_mode);
6128
6129       /* If this is a constant position, we can move to the desired byte.  */
6130       if (pos_rtx == 0)
6131         {
6132           offset += pos / BITS_PER_UNIT;
6133           pos %= GET_MODE_BITSIZE (wanted_inner_mode);
6134         }
6135
6136       if (BYTES_BIG_ENDIAN != BITS_BIG_ENDIAN
6137           && ! spans_byte
6138           && is_mode != wanted_inner_mode)
6139         offset = (GET_MODE_SIZE (is_mode)
6140                   - GET_MODE_SIZE (wanted_inner_mode) - offset);
6141
6142       if (offset != 0 || inner_mode != wanted_inner_mode)
6143         inner = adjust_address_nv (inner, wanted_inner_mode, offset);
6144     }
6145
6146   /* If INNER is not memory, we can always get it into the proper mode.  If we
6147      are changing its mode, POS must be a constant and smaller than the size
6148      of the new mode.  */
6149   else if (GET_CODE (inner) != MEM)
6150     {
6151       if (GET_MODE (inner) != wanted_inner_mode
6152           && (pos_rtx != 0
6153               || orig_pos + len > GET_MODE_BITSIZE (wanted_inner_mode)))
6154         return 0;
6155
6156       inner = force_to_mode (inner, wanted_inner_mode,
6157                              pos_rtx
6158                              || len + orig_pos >= HOST_BITS_PER_WIDE_INT
6159                              ? ~(unsigned HOST_WIDE_INT) 0
6160                              : ((((unsigned HOST_WIDE_INT) 1 << len) - 1)
6161                                 << orig_pos),
6162                              NULL_RTX, 0);
6163     }
6164
6165   /* Adjust mode of POS_RTX, if needed.  If we want a wider mode, we
6166      have to zero extend.  Otherwise, we can just use a SUBREG.  */
6167   if (pos_rtx != 0
6168       && GET_MODE_SIZE (pos_mode) > GET_MODE_SIZE (GET_MODE (pos_rtx)))
6169     {
6170       rtx temp = gen_rtx_ZERO_EXTEND (pos_mode, pos_rtx);
6171
6172       /* If we know that no extraneous bits are set, and that the high
6173          bit is not set, convert extraction to cheaper one - eighter
6174          SIGN_EXTENSION or ZERO_EXTENSION, that are equivalent in these
6175          cases.  */
6176       if (flag_expensive_optimizations
6177           && (GET_MODE_BITSIZE (GET_MODE (pos_rtx)) <= HOST_BITS_PER_WIDE_INT
6178               && ((nonzero_bits (pos_rtx, GET_MODE (pos_rtx))
6179                    & ~(((unsigned HOST_WIDE_INT)
6180                         GET_MODE_MASK (GET_MODE (pos_rtx)))
6181                        >> 1))
6182                   == 0)))
6183         {
6184           rtx temp1 = gen_rtx_SIGN_EXTEND (pos_mode, pos_rtx);
6185
6186           /* Prefer ZERO_EXTENSION, since it gives more information to
6187              backends.  */
6188           if (rtx_cost (temp1, SET) < rtx_cost (temp, SET))
6189             temp = temp1;
6190         }
6191       pos_rtx = temp;
6192     }
6193   else if (pos_rtx != 0
6194            && GET_MODE_SIZE (pos_mode) < GET_MODE_SIZE (GET_MODE (pos_rtx)))
6195     pos_rtx = gen_lowpart_for_combine (pos_mode, pos_rtx);
6196
6197   /* Make POS_RTX unless we already have it and it is correct.  If we don't
6198      have a POS_RTX but we do have an ORIG_POS_RTX, the latter must
6199      be a CONST_INT.  */
6200   if (pos_rtx == 0 && orig_pos_rtx != 0 && INTVAL (orig_pos_rtx) == pos)
6201     pos_rtx = orig_pos_rtx;
6202
6203   else if (pos_rtx == 0)
6204     pos_rtx = GEN_INT (pos);
6205
6206   /* Make the required operation.  See if we can use existing rtx.  */
6207   new = gen_rtx_fmt_eee (unsignedp ? ZERO_EXTRACT : SIGN_EXTRACT,
6208                          extraction_mode, inner, GEN_INT (len), pos_rtx);
6209   if (! in_dest)
6210     new = gen_lowpart_for_combine (mode, new);
6211
6212   return new;
6213 }
6214 \f
6215 /* See if X contains an ASHIFT of COUNT or more bits that can be commuted
6216    with any other operations in X.  Return X without that shift if so.  */
6217
6218 static rtx
6219 extract_left_shift (x, count)
6220      rtx x;
6221      int count;
6222 {
6223   enum rtx_code code = GET_CODE (x);
6224   enum machine_mode mode = GET_MODE (x);
6225   rtx tem;
6226
6227   switch (code)
6228     {
6229     case ASHIFT:
6230       /* This is the shift itself.  If it is wide enough, we will return
6231          either the value being shifted if the shift count is equal to
6232          COUNT or a shift for the difference.  */
6233       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6234           && INTVAL (XEXP (x, 1)) >= count)
6235         return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (x, 0),
6236                                      INTVAL (XEXP (x, 1)) - count);
6237       break;
6238
6239     case NEG:  case NOT:
6240       if ((tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6241         return simplify_gen_unary (code, mode, tem, mode);
6242
6243       break;
6244
6245     case PLUS:  case IOR:  case XOR:  case AND:
6246       /* If we can safely shift this constant and we find the inner shift,
6247          make a new operation.  */
6248       if (GET_CODE (XEXP (x,1)) == CONST_INT
6249           && (INTVAL (XEXP (x, 1)) & ((((HOST_WIDE_INT) 1 << count)) - 1)) == 0
6250           && (tem = extract_left_shift (XEXP (x, 0), count)) != 0)
6251         return gen_binary (code, mode, tem,
6252                            GEN_INT (INTVAL (XEXP (x, 1)) >> count));
6253
6254       break;
6255
6256     default:
6257       break;
6258     }
6259
6260   return 0;
6261 }
6262 \f
6263 /* Look at the expression rooted at X.  Look for expressions
6264    equivalent to ZERO_EXTRACT, SIGN_EXTRACT, ZERO_EXTEND, SIGN_EXTEND.
6265    Form these expressions.
6266
6267    Return the new rtx, usually just X.
6268
6269    Also, for machines like the VAX that don't have logical shift insns,
6270    try to convert logical to arithmetic shift operations in cases where
6271    they are equivalent.  This undoes the canonicalizations to logical
6272    shifts done elsewhere.
6273
6274    We try, as much as possible, to re-use rtl expressions to save memory.
6275
6276    IN_CODE says what kind of expression we are processing.  Normally, it is
6277    SET.  In a memory address (inside a MEM, PLUS or minus, the latter two
6278    being kludges), it is MEM.  When processing the arguments of a comparison
6279    or a COMPARE against zero, it is COMPARE.  */
6280
6281 static rtx
6282 make_compound_operation (x, in_code)
6283      rtx x;
6284      enum rtx_code in_code;
6285 {
6286   enum rtx_code code = GET_CODE (x);
6287   enum machine_mode mode = GET_MODE (x);
6288   int mode_width = GET_MODE_BITSIZE (mode);
6289   rtx rhs, lhs;
6290   enum rtx_code next_code;
6291   int i;
6292   rtx new = 0;
6293   rtx tem;
6294   const char *fmt;
6295
6296   /* Select the code to be used in recursive calls.  Once we are inside an
6297      address, we stay there.  If we have a comparison, set to COMPARE,
6298      but once inside, go back to our default of SET.  */
6299
6300   next_code = (code == MEM || code == PLUS || code == MINUS ? MEM
6301                : ((code == COMPARE || GET_RTX_CLASS (code) == '<')
6302                   && XEXP (x, 1) == const0_rtx) ? COMPARE
6303                : in_code == COMPARE ? SET : in_code);
6304
6305   /* Process depending on the code of this operation.  If NEW is set
6306      non-zero, it will be returned.  */
6307
6308   switch (code)
6309     {
6310     case ASHIFT:
6311       /* Convert shifts by constants into multiplications if inside
6312          an address.  */
6313       if (in_code == MEM && GET_CODE (XEXP (x, 1)) == CONST_INT
6314           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6315           && INTVAL (XEXP (x, 1)) >= 0)
6316         {
6317           new = make_compound_operation (XEXP (x, 0), next_code);
6318           new = gen_rtx_MULT (mode, new,
6319                               GEN_INT ((HOST_WIDE_INT) 1
6320                                        << INTVAL (XEXP (x, 1))));
6321         }
6322       break;
6323
6324     case AND:
6325       /* If the second operand is not a constant, we can't do anything
6326          with it.  */
6327       if (GET_CODE (XEXP (x, 1)) != CONST_INT)
6328         break;
6329
6330       /* If the constant is a power of two minus one and the first operand
6331          is a logical right shift, make an extraction.  */
6332       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6333           && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6334         {
6335           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6336           new = make_extraction (mode, new, 0, XEXP (XEXP (x, 0), 1), i, 1,
6337                                  0, in_code == COMPARE);
6338         }
6339
6340       /* Same as previous, but for (subreg (lshiftrt ...)) in first op.  */
6341       else if (GET_CODE (XEXP (x, 0)) == SUBREG
6342                && subreg_lowpart_p (XEXP (x, 0))
6343                && GET_CODE (SUBREG_REG (XEXP (x, 0))) == LSHIFTRT
6344                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6345         {
6346           new = make_compound_operation (XEXP (SUBREG_REG (XEXP (x, 0)), 0),
6347                                          next_code);
6348           new = make_extraction (GET_MODE (SUBREG_REG (XEXP (x, 0))), new, 0,
6349                                  XEXP (SUBREG_REG (XEXP (x, 0)), 1), i, 1,
6350                                  0, in_code == COMPARE);
6351         }
6352       /* Same as previous, but for (xor/ior (lshiftrt...) (lshiftrt...)).  */
6353       else if ((GET_CODE (XEXP (x, 0)) == XOR
6354                 || GET_CODE (XEXP (x, 0)) == IOR)
6355                && GET_CODE (XEXP (XEXP (x, 0), 0)) == LSHIFTRT
6356                && GET_CODE (XEXP (XEXP (x, 0), 1)) == LSHIFTRT
6357                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6358         {
6359           /* Apply the distributive law, and then try to make extractions.  */
6360           new = gen_rtx_fmt_ee (GET_CODE (XEXP (x, 0)), mode,
6361                                 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 0),
6362                                              XEXP (x, 1)),
6363                                 gen_rtx_AND (mode, XEXP (XEXP (x, 0), 1),
6364                                              XEXP (x, 1)));
6365           new = make_compound_operation (new, in_code);
6366         }
6367
6368       /* If we are have (and (rotate X C) M) and C is larger than the number
6369          of bits in M, this is an extraction.  */
6370
6371       else if (GET_CODE (XEXP (x, 0)) == ROTATE
6372                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6373                && (i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0
6374                && i <= INTVAL (XEXP (XEXP (x, 0), 1)))
6375         {
6376           new = make_compound_operation (XEXP (XEXP (x, 0), 0), next_code);
6377           new = make_extraction (mode, new,
6378                                  (GET_MODE_BITSIZE (mode)
6379                                   - INTVAL (XEXP (XEXP (x, 0), 1))),
6380                                  NULL_RTX, i, 1, 0, in_code == COMPARE);
6381         }
6382
6383       /* On machines without logical shifts, if the operand of the AND is
6384          a logical shift and our mask turns off all the propagated sign
6385          bits, we can replace the logical shift with an arithmetic shift.  */
6386       else if (ashr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6387                && (lshr_optab->handlers[(int) mode].insn_code
6388                    == CODE_FOR_nothing)
6389                && GET_CODE (XEXP (x, 0)) == LSHIFTRT
6390                && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6391                && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6392                && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6393                && mode_width <= HOST_BITS_PER_WIDE_INT)
6394         {
6395           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
6396
6397           mask >>= INTVAL (XEXP (XEXP (x, 0), 1));
6398           if ((INTVAL (XEXP (x, 1)) & ~mask) == 0)
6399             SUBST (XEXP (x, 0),
6400                    gen_rtx_ASHIFTRT (mode,
6401                                      make_compound_operation
6402                                      (XEXP (XEXP (x, 0), 0), next_code),
6403                                      XEXP (XEXP (x, 0), 1)));
6404         }
6405
6406       /* If the constant is one less than a power of two, this might be
6407          representable by an extraction even if no shift is present.
6408          If it doesn't end up being a ZERO_EXTEND, we will ignore it unless
6409          we are in a COMPARE.  */
6410       else if ((i = exact_log2 (INTVAL (XEXP (x, 1)) + 1)) >= 0)
6411         new = make_extraction (mode,
6412                                make_compound_operation (XEXP (x, 0),
6413                                                         next_code),
6414                                0, NULL_RTX, i, 1, 0, in_code == COMPARE);
6415
6416       /* If we are in a comparison and this is an AND with a power of two,
6417          convert this into the appropriate bit extract.  */
6418       else if (in_code == COMPARE
6419                && (i = exact_log2 (INTVAL (XEXP (x, 1)))) >= 0)
6420         new = make_extraction (mode,
6421                                make_compound_operation (XEXP (x, 0),
6422                                                         next_code),
6423                                i, NULL_RTX, 1, 1, 0, 1);
6424
6425       break;
6426
6427     case LSHIFTRT:
6428       /* If the sign bit is known to be zero, replace this with an
6429          arithmetic shift.  */
6430       if (ashr_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing
6431           && lshr_optab->handlers[(int) mode].insn_code != CODE_FOR_nothing
6432           && mode_width <= HOST_BITS_PER_WIDE_INT
6433           && (nonzero_bits (XEXP (x, 0), mode) & (1 << (mode_width - 1))) == 0)
6434         {
6435           new = gen_rtx_ASHIFTRT (mode,
6436                                   make_compound_operation (XEXP (x, 0),
6437                                                            next_code),
6438                                   XEXP (x, 1));
6439           break;
6440         }
6441
6442       /* ... fall through ...  */
6443
6444     case ASHIFTRT:
6445       lhs = XEXP (x, 0);
6446       rhs = XEXP (x, 1);
6447
6448       /* If we have (ashiftrt (ashift foo C1) C2) with C2 >= C1,
6449          this is a SIGN_EXTRACT.  */
6450       if (GET_CODE (rhs) == CONST_INT
6451           && GET_CODE (lhs) == ASHIFT
6452           && GET_CODE (XEXP (lhs, 1)) == CONST_INT
6453           && INTVAL (rhs) >= INTVAL (XEXP (lhs, 1)))
6454         {
6455           new = make_compound_operation (XEXP (lhs, 0), next_code);
6456           new = make_extraction (mode, new,
6457                                  INTVAL (rhs) - INTVAL (XEXP (lhs, 1)),
6458                                  NULL_RTX, mode_width - INTVAL (rhs),
6459                                  code == LSHIFTRT, 0, in_code == COMPARE);
6460           break;
6461         }
6462
6463       /* See if we have operations between an ASHIFTRT and an ASHIFT.
6464          If so, try to merge the shifts into a SIGN_EXTEND.  We could
6465          also do this for some cases of SIGN_EXTRACT, but it doesn't
6466          seem worth the effort; the case checked for occurs on Alpha.  */
6467
6468       if (GET_RTX_CLASS (GET_CODE (lhs)) != 'o'
6469           && ! (GET_CODE (lhs) == SUBREG
6470                 && (GET_RTX_CLASS (GET_CODE (SUBREG_REG (lhs))) == 'o'))
6471           && GET_CODE (rhs) == CONST_INT
6472           && INTVAL (rhs) < HOST_BITS_PER_WIDE_INT
6473           && (new = extract_left_shift (lhs, INTVAL (rhs))) != 0)
6474         new = make_extraction (mode, make_compound_operation (new, next_code),
6475                                0, NULL_RTX, mode_width - INTVAL (rhs),
6476                                code == LSHIFTRT, 0, in_code == COMPARE);
6477
6478       break;
6479
6480     case SUBREG:
6481       /* Call ourselves recursively on the inner expression.  If we are
6482          narrowing the object and it has a different RTL code from
6483          what it originally did, do this SUBREG as a force_to_mode.  */
6484
6485       tem = make_compound_operation (SUBREG_REG (x), in_code);
6486       if (GET_CODE (tem) != GET_CODE (SUBREG_REG (x))
6487           && GET_MODE_SIZE (mode) < GET_MODE_SIZE (GET_MODE (tem))
6488           && subreg_lowpart_p (x))
6489         {
6490           rtx newer = force_to_mode (tem, mode, ~(HOST_WIDE_INT) 0,
6491                                      NULL_RTX, 0);
6492
6493           /* If we have something other than a SUBREG, we might have
6494              done an expansion, so rerun outselves.  */
6495           if (GET_CODE (newer) != SUBREG)
6496             newer = make_compound_operation (newer, in_code);
6497
6498           return newer;
6499         }
6500
6501       /* If this is a paradoxical subreg, and the new code is a sign or
6502          zero extension, omit the subreg and widen the extension.  If it
6503          is a regular subreg, we can still get rid of the subreg by not
6504          widening so much, or in fact removing the extension entirely.  */
6505       if ((GET_CODE (tem) == SIGN_EXTEND
6506            || GET_CODE (tem) == ZERO_EXTEND)
6507           && subreg_lowpart_p (x))
6508         {
6509           if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (tem))
6510               || (GET_MODE_SIZE (mode) >
6511                   GET_MODE_SIZE (GET_MODE (XEXP (tem, 0)))))
6512             tem = gen_rtx_fmt_e (GET_CODE (tem), mode, XEXP (tem, 0));
6513           else
6514             tem = gen_lowpart_for_combine (mode, XEXP (tem, 0));
6515           return tem;
6516         }
6517       break;
6518
6519     default:
6520       break;
6521     }
6522
6523   if (new)
6524     {
6525       x = gen_lowpart_for_combine (mode, new);
6526       code = GET_CODE (x);
6527     }
6528
6529   /* Now recursively process each operand of this operation.  */
6530   fmt = GET_RTX_FORMAT (code);
6531   for (i = 0; i < GET_RTX_LENGTH (code); i++)
6532     if (fmt[i] == 'e')
6533       {
6534         new = make_compound_operation (XEXP (x, i), next_code);
6535         SUBST (XEXP (x, i), new);
6536       }
6537
6538   return x;
6539 }
6540 \f
6541 /* Given M see if it is a value that would select a field of bits
6542    within an item, but not the entire word.  Return -1 if not.
6543    Otherwise, return the starting position of the field, where 0 is the
6544    low-order bit.
6545
6546    *PLEN is set to the length of the field.  */
6547
6548 static int
6549 get_pos_from_mask (m, plen)
6550      unsigned HOST_WIDE_INT m;
6551      unsigned HOST_WIDE_INT *plen;
6552 {
6553   /* Get the bit number of the first 1 bit from the right, -1 if none.  */
6554   int pos = exact_log2 (m & -m);
6555   int len;
6556
6557   if (pos < 0)
6558     return -1;
6559
6560   /* Now shift off the low-order zero bits and see if we have a power of
6561      two minus 1.  */
6562   len = exact_log2 ((m >> pos) + 1);
6563
6564   if (len <= 0)
6565     return -1;
6566
6567   *plen = len;
6568   return pos;
6569 }
6570 \f
6571 /* See if X can be simplified knowing that we will only refer to it in
6572    MODE and will only refer to those bits that are nonzero in MASK.
6573    If other bits are being computed or if masking operations are done
6574    that select a superset of the bits in MASK, they can sometimes be
6575    ignored.
6576
6577    Return a possibly simplified expression, but always convert X to
6578    MODE.  If X is a CONST_INT, AND the CONST_INT with MASK.
6579
6580    Also, if REG is non-zero and X is a register equal in value to REG,
6581    replace X with REG.
6582
6583    If JUST_SELECT is nonzero, don't optimize by noticing that bits in MASK
6584    are all off in X.  This is used when X will be complemented, by either
6585    NOT, NEG, or XOR.  */
6586
6587 static rtx
6588 force_to_mode (x, mode, mask, reg, just_select)
6589      rtx x;
6590      enum machine_mode mode;
6591      unsigned HOST_WIDE_INT mask;
6592      rtx reg;
6593      int just_select;
6594 {
6595   enum rtx_code code = GET_CODE (x);
6596   int next_select = just_select || code == XOR || code == NOT || code == NEG;
6597   enum machine_mode op_mode;
6598   unsigned HOST_WIDE_INT fuller_mask, nonzero;
6599   rtx op0, op1, temp;
6600
6601   /* If this is a CALL or ASM_OPERANDS, don't do anything.  Some of the
6602      code below will do the wrong thing since the mode of such an
6603      expression is VOIDmode.
6604
6605      Also do nothing if X is a CLOBBER; this can happen if X was
6606      the return value from a call to gen_lowpart_for_combine.  */
6607   if (code == CALL || code == ASM_OPERANDS || code == CLOBBER)
6608     return x;
6609
6610   /* We want to perform the operation is its present mode unless we know
6611      that the operation is valid in MODE, in which case we do the operation
6612      in MODE.  */
6613   op_mode = ((GET_MODE_CLASS (mode) == GET_MODE_CLASS (GET_MODE (x))
6614               && code_to_optab[(int) code] != 0
6615               && (code_to_optab[(int) code]->handlers[(int) mode].insn_code
6616                   != CODE_FOR_nothing))
6617              ? mode : GET_MODE (x));
6618
6619   /* It is not valid to do a right-shift in a narrower mode
6620      than the one it came in with.  */
6621   if ((code == LSHIFTRT || code == ASHIFTRT)
6622       && GET_MODE_BITSIZE (mode) < GET_MODE_BITSIZE (GET_MODE (x)))
6623     op_mode = GET_MODE (x);
6624
6625   /* Truncate MASK to fit OP_MODE.  */
6626   if (op_mode)
6627     mask &= GET_MODE_MASK (op_mode);
6628
6629   /* When we have an arithmetic operation, or a shift whose count we
6630      do not know, we need to assume that all bit the up to the highest-order
6631      bit in MASK will be needed.  This is how we form such a mask.  */
6632   if (op_mode)
6633     fuller_mask = (GET_MODE_BITSIZE (op_mode) >= HOST_BITS_PER_WIDE_INT
6634                    ? GET_MODE_MASK (op_mode)
6635                    : (((unsigned HOST_WIDE_INT) 1 << (floor_log2 (mask) + 1))
6636                       - 1));
6637   else
6638     fuller_mask = ~(HOST_WIDE_INT) 0;
6639
6640   /* Determine what bits of X are guaranteed to be (non)zero.  */
6641   nonzero = nonzero_bits (x, mode);
6642
6643   /* If none of the bits in X are needed, return a zero.  */
6644   if (! just_select && (nonzero & mask) == 0)
6645     return const0_rtx;
6646
6647   /* If X is a CONST_INT, return a new one.  Do this here since the
6648      test below will fail.  */
6649   if (GET_CODE (x) == CONST_INT)
6650     {
6651       HOST_WIDE_INT cval = INTVAL (x) & mask;
6652       int width = GET_MODE_BITSIZE (mode);
6653
6654       /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6655          number, sign extend it.  */
6656       if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6657           && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6658         cval |= (HOST_WIDE_INT) -1 << width;
6659
6660       return GEN_INT (cval);
6661     }
6662
6663   /* If X is narrower than MODE and we want all the bits in X's mode, just
6664      get X in the proper mode.  */
6665   if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode)
6666       && (GET_MODE_MASK (GET_MODE (x)) & ~mask) == 0)
6667     return gen_lowpart_for_combine (mode, x);
6668
6669   /* If we aren't changing the mode, X is not a SUBREG, and all zero bits in
6670      MASK are already known to be zero in X, we need not do anything.  */
6671   if (GET_MODE (x) == mode && code != SUBREG && (~mask & nonzero) == 0)
6672     return x;
6673
6674   switch (code)
6675     {
6676     case CLOBBER:
6677       /* If X is a (clobber (const_int)), return it since we know we are
6678          generating something that won't match.  */
6679       return x;
6680
6681     case USE:
6682       /* X is a (use (mem ..)) that was made from a bit-field extraction that
6683          spanned the boundary of the MEM.  If we are now masking so it is
6684          within that boundary, we don't need the USE any more.  */
6685       if (! BITS_BIG_ENDIAN
6686           && (mask & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0)))) == 0)
6687         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6688       break;
6689
6690     case SIGN_EXTEND:
6691     case ZERO_EXTEND:
6692     case ZERO_EXTRACT:
6693     case SIGN_EXTRACT:
6694       x = expand_compound_operation (x);
6695       if (GET_CODE (x) != code)
6696         return force_to_mode (x, mode, mask, reg, next_select);
6697       break;
6698
6699     case REG:
6700       if (reg != 0 && (rtx_equal_p (get_last_value (reg), x)
6701                        || rtx_equal_p (reg, get_last_value (x))))
6702         x = reg;
6703       break;
6704
6705     case SUBREG:
6706       if (subreg_lowpart_p (x)
6707           /* We can ignore the effect of this SUBREG if it narrows the mode or
6708              if the constant masks to zero all the bits the mode doesn't
6709              have.  */
6710           && ((GET_MODE_SIZE (GET_MODE (x))
6711                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
6712               || (0 == (mask
6713                         & GET_MODE_MASK (GET_MODE (x))
6714                         & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x)))))))
6715         return force_to_mode (SUBREG_REG (x), mode, mask, reg, next_select);
6716       break;
6717
6718     case AND:
6719       /* If this is an AND with a constant, convert it into an AND
6720          whose constant is the AND of that constant with MASK.  If it
6721          remains an AND of MASK, delete it since it is redundant.  */
6722
6723       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
6724         {
6725           x = simplify_and_const_int (x, op_mode, XEXP (x, 0),
6726                                       mask & INTVAL (XEXP (x, 1)));
6727
6728           /* If X is still an AND, see if it is an AND with a mask that
6729              is just some low-order bits.  If so, and it is MASK, we don't
6730              need it.  */
6731
6732           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6733               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) == mask)
6734             x = XEXP (x, 0);
6735
6736           /* If it remains an AND, try making another AND with the bits
6737              in the mode mask that aren't in MASK turned on.  If the
6738              constant in the AND is wide enough, this might make a
6739              cheaper constant.  */
6740
6741           if (GET_CODE (x) == AND && GET_CODE (XEXP (x, 1)) == CONST_INT
6742               && GET_MODE_MASK (GET_MODE (x)) != mask
6743               && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
6744             {
6745               HOST_WIDE_INT cval = (INTVAL (XEXP (x, 1))
6746                                     | (GET_MODE_MASK (GET_MODE (x)) & ~mask));
6747               int width = GET_MODE_BITSIZE (GET_MODE (x));
6748               rtx y;
6749
6750               /* If MODE is narrower that HOST_WIDE_INT and CVAL is a negative
6751                  number, sign extend it.  */
6752               if (width > 0 && width < HOST_BITS_PER_WIDE_INT
6753                   && (cval & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6754                 cval |= (HOST_WIDE_INT) -1 << width;
6755
6756               y = gen_binary (AND, GET_MODE (x), XEXP (x, 0), GEN_INT (cval));
6757               if (rtx_cost (y, SET) < rtx_cost (x, SET))
6758                 x = y;
6759             }
6760
6761           break;
6762         }
6763
6764       goto binop;
6765
6766     case PLUS:
6767       /* In (and (plus FOO C1) M), if M is a mask that just turns off
6768          low-order bits (as in an alignment operation) and FOO is already
6769          aligned to that boundary, mask C1 to that boundary as well.
6770          This may eliminate that PLUS and, later, the AND.  */
6771
6772       {
6773         unsigned int width = GET_MODE_BITSIZE (mode);
6774         unsigned HOST_WIDE_INT smask = mask;
6775
6776         /* If MODE is narrower than HOST_WIDE_INT and mask is a negative
6777            number, sign extend it.  */
6778
6779         if (width < HOST_BITS_PER_WIDE_INT
6780             && (smask & ((HOST_WIDE_INT) 1 << (width - 1))) != 0)
6781           smask |= (HOST_WIDE_INT) -1 << width;
6782
6783         if (GET_CODE (XEXP (x, 1)) == CONST_INT
6784             && exact_log2 (- smask) >= 0)
6785           {
6786 #ifdef STACK_BIAS
6787             if (STACK_BIAS
6788                 && (XEXP (x, 0) == stack_pointer_rtx
6789                     || XEXP (x, 0) == frame_pointer_rtx))
6790               {
6791                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
6792                 unsigned HOST_WIDE_INT sp_mask = GET_MODE_MASK (mode);
6793
6794                 sp_mask &= ~(sp_alignment - 1);
6795                 if ((sp_mask & ~smask) == 0
6796                     && ((INTVAL (XEXP (x, 1)) - STACK_BIAS) & ~smask) != 0)
6797                   return force_to_mode (plus_constant (XEXP (x, 0),
6798                                                        ((INTVAL (XEXP (x, 1)) -
6799                                                          STACK_BIAS) & smask)
6800                                                        + STACK_BIAS),
6801                                         mode, smask, reg, next_select);
6802               }
6803 #endif
6804             if ((nonzero_bits (XEXP (x, 0), mode) & ~smask) == 0
6805                 && (INTVAL (XEXP (x, 1)) & ~smask) != 0)
6806               return force_to_mode (plus_constant (XEXP (x, 0),
6807                                                    (INTVAL (XEXP (x, 1))
6808                                                     & smask)),
6809                                     mode, smask, reg, next_select);
6810           }
6811       }
6812
6813       /* ... fall through ...  */
6814
6815     case MULT:
6816       /* For PLUS, MINUS and MULT, we need any bits less significant than the
6817          most significant bit in MASK since carries from those bits will
6818          affect the bits we are interested in.  */
6819       mask = fuller_mask;
6820       goto binop;
6821
6822     case MINUS:
6823       /* If X is (minus C Y) where C's least set bit is larger than any bit
6824          in the mask, then we may replace with (neg Y).  */
6825       if (GET_CODE (XEXP (x, 0)) == CONST_INT
6826           && (((unsigned HOST_WIDE_INT) (INTVAL (XEXP (x, 0))
6827                                         & -INTVAL (XEXP (x, 0))))
6828               > mask))
6829         {
6830           x = simplify_gen_unary (NEG, GET_MODE (x), XEXP (x, 1),
6831                                   GET_MODE (x));
6832           return force_to_mode (x, mode, mask, reg, next_select);
6833         }
6834
6835       /* Similarly, if C contains every bit in the mask, then we may
6836          replace with (not Y).  */
6837       if (GET_CODE (XEXP (x, 0)) == CONST_INT
6838           && ((INTVAL (XEXP (x, 0)) | (HOST_WIDE_INT) mask)
6839               == INTVAL (XEXP (x, 0))))
6840         {
6841           x = simplify_gen_unary (NOT, GET_MODE (x),
6842                                   XEXP (x, 1), GET_MODE (x));
6843           return force_to_mode (x, mode, mask, reg, next_select);
6844         }
6845
6846       mask = fuller_mask;
6847       goto binop;
6848
6849     case IOR:
6850     case XOR:
6851       /* If X is (ior (lshiftrt FOO C1) C2), try to commute the IOR and
6852          LSHIFTRT so we end up with an (and (lshiftrt (ior ...) ...) ...)
6853          operation which may be a bitfield extraction.  Ensure that the
6854          constant we form is not wider than the mode of X.  */
6855
6856       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
6857           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
6858           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
6859           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT
6860           && GET_CODE (XEXP (x, 1)) == CONST_INT
6861           && ((INTVAL (XEXP (XEXP (x, 0), 1))
6862                + floor_log2 (INTVAL (XEXP (x, 1))))
6863               < GET_MODE_BITSIZE (GET_MODE (x)))
6864           && (INTVAL (XEXP (x, 1))
6865               & ~nonzero_bits (XEXP (x, 0), GET_MODE (x))) == 0)
6866         {
6867           temp = GEN_INT ((INTVAL (XEXP (x, 1)) & mask)
6868                           << INTVAL (XEXP (XEXP (x, 0), 1)));
6869           temp = gen_binary (GET_CODE (x), GET_MODE (x),
6870                              XEXP (XEXP (x, 0), 0), temp);
6871           x = gen_binary (LSHIFTRT, GET_MODE (x), temp,
6872                           XEXP (XEXP (x, 0), 1));
6873           return force_to_mode (x, mode, mask, reg, next_select);
6874         }
6875
6876     binop:
6877       /* For most binary operations, just propagate into the operation and
6878          change the mode if we have an operation of that mode.   */
6879
6880       op0 = gen_lowpart_for_combine (op_mode,
6881                                      force_to_mode (XEXP (x, 0), mode, mask,
6882                                                     reg, next_select));
6883       op1 = gen_lowpart_for_combine (op_mode,
6884                                      force_to_mode (XEXP (x, 1), mode, mask,
6885                                                     reg, next_select));
6886
6887       /* If OP1 is a CONST_INT and X is an IOR or XOR, clear bits outside
6888          MASK since OP1 might have been sign-extended but we never want
6889          to turn on extra bits, since combine might have previously relied
6890          on them being off.  */
6891       if (GET_CODE (op1) == CONST_INT && (code == IOR || code == XOR)
6892           && (INTVAL (op1) & mask) != 0)
6893         op1 = GEN_INT (INTVAL (op1) & mask);
6894
6895       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0) || op1 != XEXP (x, 1))
6896         x = gen_binary (code, op_mode, op0, op1);
6897       break;
6898
6899     case ASHIFT:
6900       /* For left shifts, do the same, but just for the first operand.
6901          However, we cannot do anything with shifts where we cannot
6902          guarantee that the counts are smaller than the size of the mode
6903          because such a count will have a different meaning in a
6904          wider mode.  */
6905
6906       if (! (GET_CODE (XEXP (x, 1)) == CONST_INT
6907              && INTVAL (XEXP (x, 1)) >= 0
6908              && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (mode))
6909           && ! (GET_MODE (XEXP (x, 1)) != VOIDmode
6910                 && (nonzero_bits (XEXP (x, 1), GET_MODE (XEXP (x, 1)))
6911                     < (unsigned HOST_WIDE_INT) GET_MODE_BITSIZE (mode))))
6912         break;
6913
6914       /* If the shift count is a constant and we can do arithmetic in
6915          the mode of the shift, refine which bits we need.  Otherwise, use the
6916          conservative form of the mask.  */
6917       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6918           && INTVAL (XEXP (x, 1)) >= 0
6919           && INTVAL (XEXP (x, 1)) < GET_MODE_BITSIZE (op_mode)
6920           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6921         mask >>= INTVAL (XEXP (x, 1));
6922       else
6923         mask = fuller_mask;
6924
6925       op0 = gen_lowpart_for_combine (op_mode,
6926                                      force_to_mode (XEXP (x, 0), op_mode,
6927                                                     mask, reg, next_select));
6928
6929       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
6930         x = gen_binary (code, op_mode, op0, XEXP (x, 1));
6931       break;
6932
6933     case LSHIFTRT:
6934       /* Here we can only do something if the shift count is a constant,
6935          this shift constant is valid for the host, and we can do arithmetic
6936          in OP_MODE.  */
6937
6938       if (GET_CODE (XEXP (x, 1)) == CONST_INT
6939           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT
6940           && GET_MODE_BITSIZE (op_mode) <= HOST_BITS_PER_WIDE_INT)
6941         {
6942           rtx inner = XEXP (x, 0);
6943           unsigned HOST_WIDE_INT inner_mask;
6944
6945           /* Select the mask of the bits we need for the shift operand.  */
6946           inner_mask = mask << INTVAL (XEXP (x, 1));
6947
6948           /* We can only change the mode of the shift if we can do arithmetic
6949              in the mode of the shift and INNER_MASK is no wider than the
6950              width of OP_MODE.  */
6951           if (GET_MODE_BITSIZE (op_mode) > HOST_BITS_PER_WIDE_INT
6952               || (inner_mask & ~GET_MODE_MASK (op_mode)) != 0)
6953             op_mode = GET_MODE (x);
6954
6955           inner = force_to_mode (inner, op_mode, inner_mask, reg, next_select);
6956
6957           if (GET_MODE (x) != op_mode || inner != XEXP (x, 0))
6958             x = gen_binary (LSHIFTRT, op_mode, inner, XEXP (x, 1));
6959         }
6960
6961       /* If we have (and (lshiftrt FOO C1) C2) where the combination of the
6962          shift and AND produces only copies of the sign bit (C2 is one less
6963          than a power of two), we can do this with just a shift.  */
6964
6965       if (GET_CODE (x) == LSHIFTRT
6966           && GET_CODE (XEXP (x, 1)) == CONST_INT
6967           /* The shift puts one of the sign bit copies in the least significant
6968              bit.  */
6969           && ((INTVAL (XEXP (x, 1))
6970                + num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0))))
6971               >= GET_MODE_BITSIZE (GET_MODE (x)))
6972           && exact_log2 (mask + 1) >= 0
6973           /* Number of bits left after the shift must be more than the mask
6974              needs.  */
6975           && ((INTVAL (XEXP (x, 1)) + exact_log2 (mask + 1))
6976               <= GET_MODE_BITSIZE (GET_MODE (x)))
6977           /* Must be more sign bit copies than the mask needs.  */
6978           && ((int) num_sign_bit_copies (XEXP (x, 0), GET_MODE (XEXP (x, 0)))
6979               >= exact_log2 (mask + 1)))
6980         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0),
6981                         GEN_INT (GET_MODE_BITSIZE (GET_MODE (x))
6982                                  - exact_log2 (mask + 1)));
6983
6984       goto shiftrt;
6985
6986     case ASHIFTRT:
6987       /* If we are just looking for the sign bit, we don't need this shift at
6988          all, even if it has a variable count.  */
6989       if (GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
6990           && (mask == ((unsigned HOST_WIDE_INT) 1
6991                        << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
6992         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
6993
6994       /* If this is a shift by a constant, get a mask that contains those bits
6995          that are not copies of the sign bit.  We then have two cases:  If
6996          MASK only includes those bits, this can be a logical shift, which may
6997          allow simplifications.  If MASK is a single-bit field not within
6998          those bits, we are requesting a copy of the sign bit and hence can
6999          shift the sign bit to the appropriate location.  */
7000
7001       if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) >= 0
7002           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
7003         {
7004           int i = -1;
7005
7006           /* If the considered data is wider then HOST_WIDE_INT, we can't
7007              represent a mask for all its bits in a single scalar.
7008              But we only care about the lower bits, so calculate these.  */
7009
7010           if (GET_MODE_BITSIZE (GET_MODE (x)) > HOST_BITS_PER_WIDE_INT)
7011             {
7012               nonzero = ~(HOST_WIDE_INT) 0;
7013
7014               /* GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
7015                  is the number of bits a full-width mask would have set.
7016                  We need only shift if these are fewer than nonzero can
7017                  hold.  If not, we must keep all bits set in nonzero.  */
7018
7019               if (GET_MODE_BITSIZE (GET_MODE (x)) - INTVAL (XEXP (x, 1))
7020                   < HOST_BITS_PER_WIDE_INT)
7021                 nonzero >>= INTVAL (XEXP (x, 1))
7022                             + HOST_BITS_PER_WIDE_INT
7023                             - GET_MODE_BITSIZE (GET_MODE (x)) ;
7024             }
7025           else
7026             {
7027               nonzero = GET_MODE_MASK (GET_MODE (x));
7028               nonzero >>= INTVAL (XEXP (x, 1));
7029             }
7030
7031           if ((mask & ~nonzero) == 0
7032               || (i = exact_log2 (mask)) >= 0)
7033             {
7034               x = simplify_shift_const
7035                 (x, LSHIFTRT, GET_MODE (x), XEXP (x, 0),
7036                  i < 0 ? INTVAL (XEXP (x, 1))
7037                  : GET_MODE_BITSIZE (GET_MODE (x)) - 1 - i);
7038
7039               if (GET_CODE (x) != ASHIFTRT)
7040                 return force_to_mode (x, mode, mask, reg, next_select);
7041             }
7042         }
7043
7044       /* If MASK is 1, convert this to a LSHIFTRT.  This can be done
7045          even if the shift count isn't a constant.  */
7046       if (mask == 1)
7047         x = gen_binary (LSHIFTRT, GET_MODE (x), XEXP (x, 0), XEXP (x, 1));
7048
7049     shiftrt:
7050
7051       /* If this is a zero- or sign-extension operation that just affects bits
7052          we don't care about, remove it.  Be sure the call above returned
7053          something that is still a shift.  */
7054
7055       if ((GET_CODE (x) == LSHIFTRT || GET_CODE (x) == ASHIFTRT)
7056           && GET_CODE (XEXP (x, 1)) == CONST_INT
7057           && INTVAL (XEXP (x, 1)) >= 0
7058           && (INTVAL (XEXP (x, 1))
7059               <= GET_MODE_BITSIZE (GET_MODE (x)) - (floor_log2 (mask) + 1))
7060           && GET_CODE (XEXP (x, 0)) == ASHIFT
7061           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7062           && INTVAL (XEXP (XEXP (x, 0), 1)) == INTVAL (XEXP (x, 1)))
7063         return force_to_mode (XEXP (XEXP (x, 0), 0), mode, mask,
7064                               reg, next_select);
7065
7066       break;
7067
7068     case ROTATE:
7069     case ROTATERT:
7070       /* If the shift count is constant and we can do computations
7071          in the mode of X, compute where the bits we care about are.
7072          Otherwise, we can't do anything.  Don't change the mode of
7073          the shift or propagate MODE into the shift, though.  */
7074       if (GET_CODE (XEXP (x, 1)) == CONST_INT
7075           && INTVAL (XEXP (x, 1)) >= 0)
7076         {
7077           temp = simplify_binary_operation (code == ROTATE ? ROTATERT : ROTATE,
7078                                             GET_MODE (x), GEN_INT (mask),
7079                                             XEXP (x, 1));
7080           if (temp && GET_CODE(temp) == CONST_INT)
7081             SUBST (XEXP (x, 0),
7082                    force_to_mode (XEXP (x, 0), GET_MODE (x),
7083                                   INTVAL (temp), reg, next_select));
7084         }
7085       break;
7086
7087     case NEG:
7088       /* If we just want the low-order bit, the NEG isn't needed since it
7089          won't change the low-order bit.    */
7090       if (mask == 1)
7091         return force_to_mode (XEXP (x, 0), mode, mask, reg, just_select);
7092
7093       /* We need any bits less significant than the most significant bit in
7094          MASK since carries from those bits will affect the bits we are
7095          interested in.  */
7096       mask = fuller_mask;
7097       goto unop;
7098
7099     case NOT:
7100       /* (not FOO) is (xor FOO CONST), so if FOO is an LSHIFTRT, we can do the
7101          same as the XOR case above.  Ensure that the constant we form is not
7102          wider than the mode of X.  */
7103
7104       if (GET_CODE (XEXP (x, 0)) == LSHIFTRT
7105           && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7106           && INTVAL (XEXP (XEXP (x, 0), 1)) >= 0
7107           && (INTVAL (XEXP (XEXP (x, 0), 1)) + floor_log2 (mask)
7108               < GET_MODE_BITSIZE (GET_MODE (x)))
7109           && INTVAL (XEXP (XEXP (x, 0), 1)) < HOST_BITS_PER_WIDE_INT)
7110         {
7111           temp = GEN_INT (mask << INTVAL (XEXP (XEXP (x, 0), 1)));
7112           temp = gen_binary (XOR, GET_MODE (x), XEXP (XEXP (x, 0), 0), temp);
7113           x = gen_binary (LSHIFTRT, GET_MODE (x), temp, XEXP (XEXP (x, 0), 1));
7114
7115           return force_to_mode (x, mode, mask, reg, next_select);
7116         }
7117
7118       /* (and (not FOO) CONST) is (not (or FOO (not CONST))), so we must
7119          use the full mask inside the NOT.  */
7120       mask = fuller_mask;
7121
7122     unop:
7123       op0 = gen_lowpart_for_combine (op_mode,
7124                                      force_to_mode (XEXP (x, 0), mode, mask,
7125                                                     reg, next_select));
7126       if (op_mode != GET_MODE (x) || op0 != XEXP (x, 0))
7127         x = simplify_gen_unary (code, op_mode, op0, op_mode);
7128       break;
7129
7130     case NE:
7131       /* (and (ne FOO 0) CONST) can be (and FOO CONST) if CONST is included
7132          in STORE_FLAG_VALUE and FOO has a single bit that might be nonzero,
7133          which is equal to STORE_FLAG_VALUE.  */
7134       if ((mask & ~STORE_FLAG_VALUE) == 0 && XEXP (x, 1) == const0_rtx
7135           && exact_log2 (nonzero_bits (XEXP (x, 0), mode)) >= 0
7136           && nonzero_bits (XEXP (x, 0), mode) == STORE_FLAG_VALUE)
7137         return force_to_mode (XEXP (x, 0), mode, mask, reg, next_select);
7138
7139       break;
7140
7141     case IF_THEN_ELSE:
7142       /* We have no way of knowing if the IF_THEN_ELSE can itself be
7143          written in a narrower mode.  We play it safe and do not do so.  */
7144
7145       SUBST (XEXP (x, 1),
7146              gen_lowpart_for_combine (GET_MODE (x),
7147                                       force_to_mode (XEXP (x, 1), mode,
7148                                                      mask, reg, next_select)));
7149       SUBST (XEXP (x, 2),
7150              gen_lowpart_for_combine (GET_MODE (x),
7151                                       force_to_mode (XEXP (x, 2), mode,
7152                                                      mask, reg,next_select)));
7153       break;
7154
7155     default:
7156       break;
7157     }
7158
7159   /* Ensure we return a value of the proper mode.  */
7160   return gen_lowpart_for_combine (mode, x);
7161 }
7162 \f
7163 /* Return nonzero if X is an expression that has one of two values depending on
7164    whether some other value is zero or nonzero.  In that case, we return the
7165    value that is being tested, *PTRUE is set to the value if the rtx being
7166    returned has a nonzero value, and *PFALSE is set to the other alternative.
7167
7168    If we return zero, we set *PTRUE and *PFALSE to X.  */
7169
7170 static rtx
7171 if_then_else_cond (x, ptrue, pfalse)
7172      rtx x;
7173      rtx *ptrue, *pfalse;
7174 {
7175   enum machine_mode mode = GET_MODE (x);
7176   enum rtx_code code = GET_CODE (x);
7177   rtx cond0, cond1, true0, true1, false0, false1;
7178   unsigned HOST_WIDE_INT nz;
7179
7180   /* If we are comparing a value against zero, we are done.  */
7181   if ((code == NE || code == EQ)
7182       && GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
7183     {
7184       *ptrue = (code == NE) ? const_true_rtx : const0_rtx;
7185       *pfalse = (code == NE) ? const0_rtx : const_true_rtx;
7186       return XEXP (x, 0);
7187     }
7188
7189   /* If this is a unary operation whose operand has one of two values, apply
7190      our opcode to compute those values.  */
7191   else if (GET_RTX_CLASS (code) == '1'
7192            && (cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0)) != 0)
7193     {
7194       *ptrue = simplify_gen_unary (code, mode, true0, GET_MODE (XEXP (x, 0)));
7195       *pfalse = simplify_gen_unary (code, mode, false0,
7196                                     GET_MODE (XEXP (x, 0)));
7197       return cond0;
7198     }
7199
7200   /* If this is a COMPARE, do nothing, since the IF_THEN_ELSE we would
7201      make can't possibly match and would suppress other optimizations.  */
7202   else if (code == COMPARE)
7203     ;
7204
7205   /* If this is a binary operation, see if either side has only one of two
7206      values.  If either one does or if both do and they are conditional on
7207      the same value, compute the new true and false values.  */
7208   else if (GET_RTX_CLASS (code) == 'c' || GET_RTX_CLASS (code) == '2'
7209            || GET_RTX_CLASS (code) == '<')
7210     {
7211       cond0 = if_then_else_cond (XEXP (x, 0), &true0, &false0);
7212       cond1 = if_then_else_cond (XEXP (x, 1), &true1, &false1);
7213
7214       if ((cond0 != 0 || cond1 != 0)
7215           && ! (cond0 != 0 && cond1 != 0 && ! rtx_equal_p (cond0, cond1)))
7216         {
7217           /* If if_then_else_cond returned zero, then true/false are the
7218              same rtl.  We must copy one of them to prevent invalid rtl
7219              sharing.  */
7220           if (cond0 == 0)
7221             true0 = copy_rtx (true0);
7222           else if (cond1 == 0)
7223             true1 = copy_rtx (true1);
7224
7225           *ptrue = gen_binary (code, mode, true0, true1);
7226           *pfalse = gen_binary (code, mode, false0, false1);
7227           return cond0 ? cond0 : cond1;
7228         }
7229
7230       /* See if we have PLUS, IOR, XOR, MINUS or UMAX, where one of the
7231          operands is zero when the other is non-zero, and vice-versa,
7232          and STORE_FLAG_VALUE is 1 or -1.  */
7233
7234       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7235           && (code == PLUS || code == IOR || code == XOR || code == MINUS
7236               || code == UMAX)
7237           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7238         {
7239           rtx op0 = XEXP (XEXP (x, 0), 1);
7240           rtx op1 = XEXP (XEXP (x, 1), 1);
7241
7242           cond0 = XEXP (XEXP (x, 0), 0);
7243           cond1 = XEXP (XEXP (x, 1), 0);
7244
7245           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7246               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7247               && ((GET_CODE (cond0) == combine_reversed_comparison_code (cond1)
7248                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7249                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7250                   || ((swap_condition (GET_CODE (cond0))
7251                        == combine_reversed_comparison_code (cond1))
7252                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7253                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7254               && ! side_effects_p (x))
7255             {
7256               *ptrue = gen_binary (MULT, mode, op0, const_true_rtx);
7257               *pfalse = gen_binary (MULT, mode,
7258                                     (code == MINUS
7259                                      ? simplify_gen_unary (NEG, mode, op1,
7260                                                            mode)
7261                                      : op1),
7262                                     const_true_rtx);
7263               return cond0;
7264             }
7265         }
7266
7267       /* Similarly for MULT, AND and UMIN, execpt that for these the result
7268          is always zero.  */
7269       if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
7270           && (code == MULT || code == AND || code == UMIN)
7271           && GET_CODE (XEXP (x, 0)) == MULT && GET_CODE (XEXP (x, 1)) == MULT)
7272         {
7273           cond0 = XEXP (XEXP (x, 0), 0);
7274           cond1 = XEXP (XEXP (x, 1), 0);
7275
7276           if (GET_RTX_CLASS (GET_CODE (cond0)) == '<'
7277               && GET_RTX_CLASS (GET_CODE (cond1)) == '<'
7278               && ((GET_CODE (cond0) == combine_reversed_comparison_code (cond1)
7279                    && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 0))
7280                    && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 1)))
7281                   || ((swap_condition (GET_CODE (cond0))
7282                        == combine_reversed_comparison_code (cond1))
7283                       && rtx_equal_p (XEXP (cond0, 0), XEXP (cond1, 1))
7284                       && rtx_equal_p (XEXP (cond0, 1), XEXP (cond1, 0))))
7285               && ! side_effects_p (x))
7286             {
7287               *ptrue = *pfalse = const0_rtx;
7288               return cond0;
7289             }
7290         }
7291     }
7292
7293   else if (code == IF_THEN_ELSE)
7294     {
7295       /* If we have IF_THEN_ELSE already, extract the condition and
7296          canonicalize it if it is NE or EQ.  */
7297       cond0 = XEXP (x, 0);
7298       *ptrue = XEXP (x, 1), *pfalse = XEXP (x, 2);
7299       if (GET_CODE (cond0) == NE && XEXP (cond0, 1) == const0_rtx)
7300         return XEXP (cond0, 0);
7301       else if (GET_CODE (cond0) == EQ && XEXP (cond0, 1) == const0_rtx)
7302         {
7303           *ptrue = XEXP (x, 2), *pfalse = XEXP (x, 1);
7304           return XEXP (cond0, 0);
7305         }
7306       else
7307         return cond0;
7308     }
7309
7310   /* If X is a SUBREG, we can narrow both the true and false values
7311      if the inner expression, if there is a condition.  */
7312   else if (code == SUBREG
7313            && 0 != (cond0 = if_then_else_cond (SUBREG_REG (x),
7314                                                &true0, &false0)))
7315     {
7316       *ptrue = simplify_gen_subreg (mode, true0,
7317                                     GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
7318       *pfalse = simplify_gen_subreg (mode, false0,
7319                                      GET_MODE (SUBREG_REG (x)), SUBREG_BYTE (x));
7320
7321       return cond0;
7322     }
7323
7324   /* If X is a constant, this isn't special and will cause confusions
7325      if we treat it as such.  Likewise if it is equivalent to a constant.  */
7326   else if (CONSTANT_P (x)
7327            || ((cond0 = get_last_value (x)) != 0 && CONSTANT_P (cond0)))
7328     ;
7329
7330   /* If we're in BImode, canonicalize on 0 and STORE_FLAG_VALUE, as that
7331      will be least confusing to the rest of the compiler.  */
7332   else if (mode == BImode)
7333     {
7334       *ptrue = GEN_INT (STORE_FLAG_VALUE), *pfalse = const0_rtx;
7335       return x;
7336     }
7337
7338   /* If X is known to be either 0 or -1, those are the true and
7339      false values when testing X.  */
7340   else if (x == constm1_rtx || x == const0_rtx
7341            || (mode != VOIDmode
7342                && num_sign_bit_copies (x, mode) == GET_MODE_BITSIZE (mode)))
7343     {
7344       *ptrue = constm1_rtx, *pfalse = const0_rtx;
7345       return x;
7346     }
7347
7348   /* Likewise for 0 or a single bit.  */
7349   else if (mode != VOIDmode
7350            && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
7351            && exact_log2 (nz = nonzero_bits (x, mode)) >= 0)
7352     {
7353       *ptrue = GEN_INT (nz), *pfalse = const0_rtx;
7354       return x;
7355     }
7356
7357   /* Otherwise fail; show no condition with true and false values the same.  */
7358   *ptrue = *pfalse = x;
7359   return 0;
7360 }
7361 \f
7362 /* Return the value of expression X given the fact that condition COND
7363    is known to be true when applied to REG as its first operand and VAL
7364    as its second.  X is known to not be shared and so can be modified in
7365    place.
7366
7367    We only handle the simplest cases, and specifically those cases that
7368    arise with IF_THEN_ELSE expressions.  */
7369
7370 static rtx
7371 known_cond (x, cond, reg, val)
7372      rtx x;
7373      enum rtx_code cond;
7374      rtx reg, val;
7375 {
7376   enum rtx_code code = GET_CODE (x);
7377   rtx temp;
7378   const char *fmt;
7379   int i, j;
7380
7381   if (side_effects_p (x))
7382     return x;
7383
7384   if (cond == EQ && rtx_equal_p (x, reg) && !FLOAT_MODE_P (cond))
7385     return val;
7386   if (cond == UNEQ && rtx_equal_p (x, reg))
7387     return val;
7388
7389   /* If X is (abs REG) and we know something about REG's relationship
7390      with zero, we may be able to simplify this.  */
7391
7392   if (code == ABS && rtx_equal_p (XEXP (x, 0), reg) && val == const0_rtx)
7393     switch (cond)
7394       {
7395       case GE:  case GT:  case EQ:
7396         return XEXP (x, 0);
7397       case LT:  case LE:
7398         return simplify_gen_unary (NEG, GET_MODE (XEXP (x, 0)),
7399                                    XEXP (x, 0),
7400                                    GET_MODE (XEXP (x, 0)));
7401       default:
7402         break;
7403       }
7404
7405   /* The only other cases we handle are MIN, MAX, and comparisons if the
7406      operands are the same as REG and VAL.  */
7407
7408   else if (GET_RTX_CLASS (code) == '<' || GET_RTX_CLASS (code) == 'c')
7409     {
7410       if (rtx_equal_p (XEXP (x, 0), val))
7411         cond = swap_condition (cond), temp = val, val = reg, reg = temp;
7412
7413       if (rtx_equal_p (XEXP (x, 0), reg) && rtx_equal_p (XEXP (x, 1), val))
7414         {
7415           if (GET_RTX_CLASS (code) == '<')
7416             {
7417               if (comparison_dominates_p (cond, code))
7418                 return const_true_rtx;
7419
7420               code = combine_reversed_comparison_code (x);
7421               if (code != UNKNOWN
7422                   && comparison_dominates_p (cond, code))
7423                 return const0_rtx;
7424               else
7425                 return x;
7426             }
7427           else if (code == SMAX || code == SMIN
7428                    || code == UMIN || code == UMAX)
7429             {
7430               int unsignedp = (code == UMIN || code == UMAX);
7431
7432               /* Do not reverse the condition when it is NE or EQ.
7433                  This is because we cannot conclude anything about
7434                  the value of 'SMAX (x, y)' when x is not equal to y,
7435                  but we can when x equals y.  */
7436               if ((code == SMAX || code == UMAX)
7437                   && ! (cond == EQ || cond == NE))
7438                 cond = reverse_condition (cond);
7439
7440               switch (cond)
7441                 {
7442                 case GE:   case GT:
7443                   return unsignedp ? x : XEXP (x, 1);
7444                 case LE:   case LT:
7445                   return unsignedp ? x : XEXP (x, 0);
7446                 case GEU:  case GTU:
7447                   return unsignedp ? XEXP (x, 1) : x;
7448                 case LEU:  case LTU:
7449                   return unsignedp ? XEXP (x, 0) : x;
7450                 default:
7451                   break;
7452                 }
7453             }
7454         }
7455     }
7456
7457   fmt = GET_RTX_FORMAT (code);
7458   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
7459     {
7460       if (fmt[i] == 'e')
7461         SUBST (XEXP (x, i), known_cond (XEXP (x, i), cond, reg, val));
7462       else if (fmt[i] == 'E')
7463         for (j = XVECLEN (x, i) - 1; j >= 0; j--)
7464           SUBST (XVECEXP (x, i, j), known_cond (XVECEXP (x, i, j),
7465                                                 cond, reg, val));
7466     }
7467
7468   return x;
7469 }
7470 \f
7471 /* See if X and Y are equal for the purposes of seeing if we can rewrite an
7472    assignment as a field assignment.  */
7473
7474 static int
7475 rtx_equal_for_field_assignment_p (x, y)
7476      rtx x;
7477      rtx y;
7478 {
7479   if (x == y || rtx_equal_p (x, y))
7480     return 1;
7481
7482   if (x == 0 || y == 0 || GET_MODE (x) != GET_MODE (y))
7483     return 0;
7484
7485   /* Check for a paradoxical SUBREG of a MEM compared with the MEM.
7486      Note that all SUBREGs of MEM are paradoxical; otherwise they
7487      would have been rewritten.  */
7488   if (GET_CODE (x) == MEM && GET_CODE (y) == SUBREG
7489       && GET_CODE (SUBREG_REG (y)) == MEM
7490       && rtx_equal_p (SUBREG_REG (y),
7491                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (y)), x)))
7492     return 1;
7493
7494   if (GET_CODE (y) == MEM && GET_CODE (x) == SUBREG
7495       && GET_CODE (SUBREG_REG (x)) == MEM
7496       && rtx_equal_p (SUBREG_REG (x),
7497                       gen_lowpart_for_combine (GET_MODE (SUBREG_REG (x)), y)))
7498     return 1;
7499
7500   /* We used to see if get_last_value of X and Y were the same but that's
7501      not correct.  In one direction, we'll cause the assignment to have
7502      the wrong destination and in the case, we'll import a register into this
7503      insn that might have already have been dead.   So fail if none of the
7504      above cases are true.  */
7505   return 0;
7506 }
7507 \f
7508 /* See if X, a SET operation, can be rewritten as a bit-field assignment.
7509    Return that assignment if so.
7510
7511    We only handle the most common cases.  */
7512
7513 static rtx
7514 make_field_assignment (x)
7515      rtx x;
7516 {
7517   rtx dest = SET_DEST (x);
7518   rtx src = SET_SRC (x);
7519   rtx assign;
7520   rtx rhs, lhs;
7521   HOST_WIDE_INT c1;
7522   HOST_WIDE_INT pos;
7523   unsigned HOST_WIDE_INT len;
7524   rtx other;
7525   enum machine_mode mode;
7526
7527   /* If SRC was (and (not (ashift (const_int 1) POS)) DEST), this is
7528      a clear of a one-bit field.  We will have changed it to
7529      (and (rotate (const_int -2) POS) DEST), so check for that.  Also check
7530      for a SUBREG.  */
7531
7532   if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == ROTATE
7533       && GET_CODE (XEXP (XEXP (src, 0), 0)) == CONST_INT
7534       && INTVAL (XEXP (XEXP (src, 0), 0)) == -2
7535       && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7536     {
7537       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7538                                 1, 1, 1, 0);
7539       if (assign != 0)
7540         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7541       return x;
7542     }
7543
7544   else if (GET_CODE (src) == AND && GET_CODE (XEXP (src, 0)) == SUBREG
7545            && subreg_lowpart_p (XEXP (src, 0))
7546            && (GET_MODE_SIZE (GET_MODE (XEXP (src, 0)))
7547                < GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (src, 0)))))
7548            && GET_CODE (SUBREG_REG (XEXP (src, 0))) == ROTATE
7549            && INTVAL (XEXP (SUBREG_REG (XEXP (src, 0)), 0)) == -2
7550            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7551     {
7552       assign = make_extraction (VOIDmode, dest, 0,
7553                                 XEXP (SUBREG_REG (XEXP (src, 0)), 1),
7554                                 1, 1, 1, 0);
7555       if (assign != 0)
7556         return gen_rtx_SET (VOIDmode, assign, const0_rtx);
7557       return x;
7558     }
7559
7560   /* If SRC is (ior (ashift (const_int 1) POS) DEST), this is a set of a
7561      one-bit field.  */
7562   else if (GET_CODE (src) == IOR && GET_CODE (XEXP (src, 0)) == ASHIFT
7563            && XEXP (XEXP (src, 0), 0) == const1_rtx
7564            && rtx_equal_for_field_assignment_p (dest, XEXP (src, 1)))
7565     {
7566       assign = make_extraction (VOIDmode, dest, 0, XEXP (XEXP (src, 0), 1),
7567                                 1, 1, 1, 0);
7568       if (assign != 0)
7569         return gen_rtx_SET (VOIDmode, assign, const1_rtx);
7570       return x;
7571     }
7572
7573   /* The other case we handle is assignments into a constant-position
7574      field.  They look like (ior/xor (and DEST C1) OTHER).  If C1 represents
7575      a mask that has all one bits except for a group of zero bits and
7576      OTHER is known to have zeros where C1 has ones, this is such an
7577      assignment.  Compute the position and length from C1.  Shift OTHER
7578      to the appropriate position, force it to the required mode, and
7579      make the extraction.  Check for the AND in both operands.  */
7580
7581   if (GET_CODE (src) != IOR && GET_CODE (src) != XOR)
7582     return x;
7583
7584   rhs = expand_compound_operation (XEXP (src, 0));
7585   lhs = expand_compound_operation (XEXP (src, 1));
7586
7587   if (GET_CODE (rhs) == AND
7588       && GET_CODE (XEXP (rhs, 1)) == CONST_INT
7589       && rtx_equal_for_field_assignment_p (XEXP (rhs, 0), dest))
7590     c1 = INTVAL (XEXP (rhs, 1)), other = lhs;
7591   else if (GET_CODE (lhs) == AND
7592            && GET_CODE (XEXP (lhs, 1)) == CONST_INT
7593            && rtx_equal_for_field_assignment_p (XEXP (lhs, 0), dest))
7594     c1 = INTVAL (XEXP (lhs, 1)), other = rhs;
7595   else
7596     return x;
7597
7598   pos = get_pos_from_mask ((~c1) & GET_MODE_MASK (GET_MODE (dest)), &len);
7599   if (pos < 0 || pos + len > GET_MODE_BITSIZE (GET_MODE (dest))
7600       || GET_MODE_BITSIZE (GET_MODE (dest)) > HOST_BITS_PER_WIDE_INT
7601       || (c1 & nonzero_bits (other, GET_MODE (dest))) != 0)
7602     return x;
7603
7604   assign = make_extraction (VOIDmode, dest, pos, NULL_RTX, len, 1, 1, 0);
7605   if (assign == 0)
7606     return x;
7607
7608   /* The mode to use for the source is the mode of the assignment, or of
7609      what is inside a possible STRICT_LOW_PART.  */
7610   mode = (GET_CODE (assign) == STRICT_LOW_PART
7611           ? GET_MODE (XEXP (assign, 0)) : GET_MODE (assign));
7612
7613   /* Shift OTHER right POS places and make it the source, restricting it
7614      to the proper length and mode.  */
7615
7616   src = force_to_mode (simplify_shift_const (NULL_RTX, LSHIFTRT,
7617                                              GET_MODE (src), other, pos),
7618                        mode,
7619                        GET_MODE_BITSIZE (mode) >= HOST_BITS_PER_WIDE_INT
7620                        ? ~(unsigned HOST_WIDE_INT) 0
7621                        : ((unsigned HOST_WIDE_INT) 1 << len) - 1,
7622                        dest, 0);
7623
7624   return gen_rtx_SET (VOIDmode, assign, src);
7625 }
7626 \f
7627 /* See if X is of the form (+ (* a c) (* b c)) and convert to (* (+ a b) c)
7628    if so.  */
7629
7630 static rtx
7631 apply_distributive_law (x)
7632      rtx x;
7633 {
7634   enum rtx_code code = GET_CODE (x);
7635   rtx lhs, rhs, other;
7636   rtx tem;
7637   enum rtx_code inner_code;
7638
7639   /* Distributivity is not true for floating point.
7640      It can change the value.  So don't do it.
7641      -- rms and moshier@world.std.com.  */
7642   if (FLOAT_MODE_P (GET_MODE (x)))
7643     return x;
7644
7645   /* The outer operation can only be one of the following:  */
7646   if (code != IOR && code != AND && code != XOR
7647       && code != PLUS && code != MINUS)
7648     return x;
7649
7650   lhs = XEXP (x, 0), rhs = XEXP (x, 1);
7651
7652   /* If either operand is a primitive we can't do anything, so get out
7653      fast.  */
7654   if (GET_RTX_CLASS (GET_CODE (lhs)) == 'o'
7655       || GET_RTX_CLASS (GET_CODE (rhs)) == 'o')
7656     return x;
7657
7658   lhs = expand_compound_operation (lhs);
7659   rhs = expand_compound_operation (rhs);
7660   inner_code = GET_CODE (lhs);
7661   if (inner_code != GET_CODE (rhs))
7662     return x;
7663
7664   /* See if the inner and outer operations distribute.  */
7665   switch (inner_code)
7666     {
7667     case LSHIFTRT:
7668     case ASHIFTRT:
7669     case AND:
7670     case IOR:
7671       /* These all distribute except over PLUS.  */
7672       if (code == PLUS || code == MINUS)
7673         return x;
7674       break;
7675
7676     case MULT:
7677       if (code != PLUS && code != MINUS)
7678         return x;
7679       break;
7680
7681     case ASHIFT:
7682       /* This is also a multiply, so it distributes over everything.  */
7683       break;
7684
7685     case SUBREG:
7686       /* Non-paradoxical SUBREGs distributes over all operations, provided
7687          the inner modes and byte offsets are the same, this is an extraction
7688          of a low-order part, we don't convert an fp operation to int or
7689          vice versa, and we would not be converting a single-word
7690          operation into a multi-word operation.  The latter test is not
7691          required, but it prevents generating unneeded multi-word operations.
7692          Some of the previous tests are redundant given the latter test, but
7693          are retained because they are required for correctness.
7694
7695          We produce the result slightly differently in this case.  */
7696
7697       if (GET_MODE (SUBREG_REG (lhs)) != GET_MODE (SUBREG_REG (rhs))
7698           || SUBREG_BYTE (lhs) != SUBREG_BYTE (rhs)
7699           || ! subreg_lowpart_p (lhs)
7700           || (GET_MODE_CLASS (GET_MODE (lhs))
7701               != GET_MODE_CLASS (GET_MODE (SUBREG_REG (lhs))))
7702           || (GET_MODE_SIZE (GET_MODE (lhs))
7703               > GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))))
7704           || GET_MODE_SIZE (GET_MODE (SUBREG_REG (lhs))) > UNITS_PER_WORD)
7705         return x;
7706
7707       tem = gen_binary (code, GET_MODE (SUBREG_REG (lhs)),
7708                         SUBREG_REG (lhs), SUBREG_REG (rhs));
7709       return gen_lowpart_for_combine (GET_MODE (x), tem);
7710
7711     default:
7712       return x;
7713     }
7714
7715   /* Set LHS and RHS to the inner operands (A and B in the example
7716      above) and set OTHER to the common operand (C in the example).
7717      These is only one way to do this unless the inner operation is
7718      commutative.  */
7719   if (GET_RTX_CLASS (inner_code) == 'c'
7720       && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 0)))
7721     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 1);
7722   else if (GET_RTX_CLASS (inner_code) == 'c'
7723            && rtx_equal_p (XEXP (lhs, 0), XEXP (rhs, 1)))
7724     other = XEXP (lhs, 0), lhs = XEXP (lhs, 1), rhs = XEXP (rhs, 0);
7725   else if (GET_RTX_CLASS (inner_code) == 'c'
7726            && rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 0)))
7727     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 1);
7728   else if (rtx_equal_p (XEXP (lhs, 1), XEXP (rhs, 1)))
7729     other = XEXP (lhs, 1), lhs = XEXP (lhs, 0), rhs = XEXP (rhs, 0);
7730   else
7731     return x;
7732
7733   /* Form the new inner operation, seeing if it simplifies first.  */
7734   tem = gen_binary (code, GET_MODE (x), lhs, rhs);
7735
7736   /* There is one exception to the general way of distributing:
7737      (a ^ b) | (a ^ c) -> (~a) & (b ^ c)  */
7738   if (code == XOR && inner_code == IOR)
7739     {
7740       inner_code = AND;
7741       other = simplify_gen_unary (NOT, GET_MODE (x), other, GET_MODE (x));
7742     }
7743
7744   /* We may be able to continuing distributing the result, so call
7745      ourselves recursively on the inner operation before forming the
7746      outer operation, which we return.  */
7747   return gen_binary (inner_code, GET_MODE (x),
7748                      apply_distributive_law (tem), other);
7749 }
7750 \f
7751 /* We have X, a logical `and' of VAROP with the constant CONSTOP, to be done
7752    in MODE.
7753
7754    Return an equivalent form, if different from X.  Otherwise, return X.  If
7755    X is zero, we are to always construct the equivalent form.  */
7756
7757 static rtx
7758 simplify_and_const_int (x, mode, varop, constop)
7759      rtx x;
7760      enum machine_mode mode;
7761      rtx varop;
7762      unsigned HOST_WIDE_INT constop;
7763 {
7764   unsigned HOST_WIDE_INT nonzero;
7765   int i;
7766
7767   /* Simplify VAROP knowing that we will be only looking at some of the
7768      bits in it.  */
7769   varop = force_to_mode (varop, mode, constop, NULL_RTX, 0);
7770
7771   /* If VAROP is a CLOBBER, we will fail so return it; if it is a
7772      CONST_INT, we are done.  */
7773   if (GET_CODE (varop) == CLOBBER || GET_CODE (varop) == CONST_INT)
7774     return varop;
7775
7776   /* See what bits may be nonzero in VAROP.  Unlike the general case of
7777      a call to nonzero_bits, here we don't care about bits outside
7778      MODE.  */
7779
7780   nonzero = nonzero_bits (varop, mode) & GET_MODE_MASK (mode);
7781   nonzero = trunc_int_for_mode (nonzero, mode);
7782
7783   /* Turn off all bits in the constant that are known to already be zero.
7784      Thus, if the AND isn't needed at all, we will have CONSTOP == NONZERO_BITS
7785      which is tested below.  */
7786
7787   constop &= nonzero;
7788
7789   /* If we don't have any bits left, return zero.  */
7790   if (constop == 0)
7791     return const0_rtx;
7792
7793   /* If VAROP is a NEG of something known to be zero or 1 and CONSTOP is
7794      a power of two, we can replace this with a ASHIFT.  */
7795   if (GET_CODE (varop) == NEG && nonzero_bits (XEXP (varop, 0), mode) == 1
7796       && (i = exact_log2 (constop)) >= 0)
7797     return simplify_shift_const (NULL_RTX, ASHIFT, mode, XEXP (varop, 0), i);
7798
7799   /* If VAROP is an IOR or XOR, apply the AND to both branches of the IOR
7800      or XOR, then try to apply the distributive law.  This may eliminate
7801      operations if either branch can be simplified because of the AND.
7802      It may also make some cases more complex, but those cases probably
7803      won't match a pattern either with or without this.  */
7804
7805   if (GET_CODE (varop) == IOR || GET_CODE (varop) == XOR)
7806     return
7807       gen_lowpart_for_combine
7808         (mode,
7809          apply_distributive_law
7810          (gen_binary (GET_CODE (varop), GET_MODE (varop),
7811                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7812                                               XEXP (varop, 0), constop),
7813                       simplify_and_const_int (NULL_RTX, GET_MODE (varop),
7814                                               XEXP (varop, 1), constop))));
7815
7816   /* Get VAROP in MODE.  Try to get a SUBREG if not.  Don't make a new SUBREG
7817      if we already had one (just check for the simplest cases).  */
7818   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
7819       && GET_MODE (XEXP (x, 0)) == mode
7820       && SUBREG_REG (XEXP (x, 0)) == varop)
7821     varop = XEXP (x, 0);
7822   else
7823     varop = gen_lowpart_for_combine (mode, varop);
7824
7825   /* If we can't make the SUBREG, try to return what we were given.  */
7826   if (GET_CODE (varop) == CLOBBER)
7827     return x ? x : varop;
7828
7829   /* If we are only masking insignificant bits, return VAROP.  */
7830   if (constop == nonzero)
7831     x = varop;
7832
7833   /* Otherwise, return an AND.  See how much, if any, of X we can use.  */
7834   else if (x == 0 || GET_CODE (x) != AND || GET_MODE (x) != mode)
7835     x = gen_binary (AND, mode, varop, GEN_INT (constop));
7836
7837   else
7838     {
7839       if (GET_CODE (XEXP (x, 1)) != CONST_INT
7840           || (unsigned HOST_WIDE_INT) INTVAL (XEXP (x, 1)) != constop)
7841         SUBST (XEXP (x, 1), GEN_INT (constop));
7842
7843       SUBST (XEXP (x, 0), varop);
7844     }
7845
7846   return x;
7847 }
7848 \f
7849 /* We let num_sign_bit_copies recur into nonzero_bits as that is useful.
7850    We don't let nonzero_bits recur into num_sign_bit_copies, because that
7851    is less useful.  We can't allow both, because that results in exponential
7852    run time recursion.  There is a nullstone testcase that triggered
7853    this.  This macro avoids accidental uses of num_sign_bit_copies.  */
7854 #define num_sign_bit_copies()
7855
7856 /* Given an expression, X, compute which bits in X can be non-zero.
7857    We don't care about bits outside of those defined in MODE.
7858
7859    For most X this is simply GET_MODE_MASK (GET_MODE (MODE)), but if X is
7860    a shift, AND, or zero_extract, we can do better.  */
7861
7862 static unsigned HOST_WIDE_INT
7863 nonzero_bits (x, mode)
7864      rtx x;
7865      enum machine_mode mode;
7866 {
7867   unsigned HOST_WIDE_INT nonzero = GET_MODE_MASK (mode);
7868   unsigned HOST_WIDE_INT inner_nz;
7869   enum rtx_code code;
7870   unsigned int mode_width = GET_MODE_BITSIZE (mode);
7871   rtx tem;
7872
7873   /* For floating-point values, assume all bits are needed.  */
7874   if (FLOAT_MODE_P (GET_MODE (x)) || FLOAT_MODE_P (mode))
7875     return nonzero;
7876
7877   /* If X is wider than MODE, use its mode instead.  */
7878   if (GET_MODE_BITSIZE (GET_MODE (x)) > mode_width)
7879     {
7880       mode = GET_MODE (x);
7881       nonzero = GET_MODE_MASK (mode);
7882       mode_width = GET_MODE_BITSIZE (mode);
7883     }
7884
7885   if (mode_width > HOST_BITS_PER_WIDE_INT)
7886     /* Our only callers in this case look for single bit values.  So
7887        just return the mode mask.  Those tests will then be false.  */
7888     return nonzero;
7889
7890 #ifndef WORD_REGISTER_OPERATIONS
7891   /* If MODE is wider than X, but both are a single word for both the host
7892      and target machines, we can compute this from which bits of the
7893      object might be nonzero in its own mode, taking into account the fact
7894      that on many CISC machines, accessing an object in a wider mode
7895      causes the high-order bits to become undefined.  So they are
7896      not known to be zero.  */
7897
7898   if (GET_MODE (x) != VOIDmode && GET_MODE (x) != mode
7899       && GET_MODE_BITSIZE (GET_MODE (x)) <= BITS_PER_WORD
7900       && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
7901       && GET_MODE_BITSIZE (mode) > GET_MODE_BITSIZE (GET_MODE (x)))
7902     {
7903       nonzero &= nonzero_bits (x, GET_MODE (x));
7904       nonzero |= GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x));
7905       return nonzero;
7906     }
7907 #endif
7908
7909   code = GET_CODE (x);
7910   switch (code)
7911     {
7912     case REG:
7913 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
7914       /* If pointers extend unsigned and this is a pointer in Pmode, say that
7915          all the bits above ptr_mode are known to be zero.  */
7916       if (POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
7917           && REG_POINTER (x))
7918         nonzero &= GET_MODE_MASK (ptr_mode);
7919 #endif
7920
7921 #ifdef STACK_BOUNDARY
7922       /* If this is the stack pointer, we may know something about its
7923          alignment.  If PUSH_ROUNDING is defined, it is possible for the
7924          stack to be momentarily aligned only to that amount, so we pick
7925          the least alignment.  */
7926
7927       /* We can't check for arg_pointer_rtx here, because it is not
7928          guaranteed to have as much alignment as the stack pointer.
7929          In particular, in the Irix6 n64 ABI, the stack has 128 bit
7930          alignment but the argument pointer has only 64 bit alignment.  */
7931
7932       if ((x == frame_pointer_rtx
7933            || x == stack_pointer_rtx
7934            || x == hard_frame_pointer_rtx
7935            || (REGNO (x) >= FIRST_VIRTUAL_REGISTER
7936                && REGNO (x) <= LAST_VIRTUAL_REGISTER))
7937 #ifdef STACK_BIAS
7938           && !STACK_BIAS
7939 #endif
7940               )
7941         {
7942           int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
7943
7944 #ifdef PUSH_ROUNDING
7945           if (REGNO (x) == STACK_POINTER_REGNUM && PUSH_ARGS)
7946             sp_alignment = MIN (PUSH_ROUNDING (1), sp_alignment);
7947 #endif
7948
7949           /* We must return here, otherwise we may get a worse result from
7950              one of the choices below.  There is nothing useful below as
7951              far as the stack pointer is concerned.  */
7952           return nonzero &= ~(sp_alignment - 1);
7953         }
7954 #endif
7955
7956       /* If X is a register whose nonzero bits value is current, use it.
7957          Otherwise, if X is a register whose value we can find, use that
7958          value.  Otherwise, use the previously-computed global nonzero bits
7959          for this register.  */
7960
7961       if (reg_last_set_value[REGNO (x)] != 0
7962           && reg_last_set_mode[REGNO (x)] == mode
7963           && (reg_last_set_label[REGNO (x)] == label_tick
7964               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
7965                   && REG_N_SETS (REGNO (x)) == 1
7966                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start,
7967                                         REGNO (x))))
7968           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
7969         return reg_last_set_nonzero_bits[REGNO (x)];
7970
7971       tem = get_last_value (x);
7972
7973       if (tem)
7974         {
7975 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
7976           /* If X is narrower than MODE and TEM is a non-negative
7977              constant that would appear negative in the mode of X,
7978              sign-extend it for use in reg_nonzero_bits because some
7979              machines (maybe most) will actually do the sign-extension
7980              and this is the conservative approach.
7981
7982              ??? For 2.5, try to tighten up the MD files in this regard
7983              instead of this kludge.  */
7984
7985           if (GET_MODE_BITSIZE (GET_MODE (x)) < mode_width
7986               && GET_CODE (tem) == CONST_INT
7987               && INTVAL (tem) > 0
7988               && 0 != (INTVAL (tem)
7989                        & ((HOST_WIDE_INT) 1
7990                           << (GET_MODE_BITSIZE (GET_MODE (x)) - 1))))
7991             tem = GEN_INT (INTVAL (tem)
7992                            | ((HOST_WIDE_INT) (-1)
7993                               << GET_MODE_BITSIZE (GET_MODE (x))));
7994 #endif
7995           return nonzero_bits (tem, mode);
7996         }
7997       else if (nonzero_sign_valid && reg_nonzero_bits[REGNO (x)])
7998         return reg_nonzero_bits[REGNO (x)] & nonzero;
7999       else
8000         return nonzero;
8001
8002     case CONST_INT:
8003 #ifdef SHORT_IMMEDIATES_SIGN_EXTEND
8004       /* If X is negative in MODE, sign-extend the value.  */
8005       if (INTVAL (x) > 0 && mode_width < BITS_PER_WORD
8006           && 0 != (INTVAL (x) & ((HOST_WIDE_INT) 1 << (mode_width - 1))))
8007         return (INTVAL (x) | ((HOST_WIDE_INT) (-1) << mode_width));
8008 #endif
8009
8010       return INTVAL (x);
8011
8012     case MEM:
8013 #ifdef LOAD_EXTEND_OP
8014       /* In many, if not most, RISC machines, reading a byte from memory
8015          zeros the rest of the register.  Noticing that fact saves a lot
8016          of extra zero-extends.  */
8017       if (LOAD_EXTEND_OP (GET_MODE (x)) == ZERO_EXTEND)
8018         nonzero &= GET_MODE_MASK (GET_MODE (x));
8019 #endif
8020       break;
8021
8022     case EQ:  case NE:
8023     case UNEQ:  case LTGT:
8024     case GT:  case GTU:  case UNGT:
8025     case LT:  case LTU:  case UNLT:
8026     case GE:  case GEU:  case UNGE:
8027     case LE:  case LEU:  case UNLE:
8028     case UNORDERED: case ORDERED:
8029
8030       /* If this produces an integer result, we know which bits are set.
8031          Code here used to clear bits outside the mode of X, but that is
8032          now done above.  */
8033
8034       if (GET_MODE_CLASS (mode) == MODE_INT
8035           && mode_width <= HOST_BITS_PER_WIDE_INT)
8036         nonzero = STORE_FLAG_VALUE;
8037       break;
8038
8039     case NEG:
8040 #if 0
8041       /* Disabled to avoid exponential mutual recursion between nonzero_bits
8042          and num_sign_bit_copies.  */
8043       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
8044           == GET_MODE_BITSIZE (GET_MODE (x)))
8045         nonzero = 1;
8046 #endif
8047
8048       if (GET_MODE_SIZE (GET_MODE (x)) < mode_width)
8049         nonzero |= (GET_MODE_MASK (mode) & ~GET_MODE_MASK (GET_MODE (x)));
8050       break;
8051
8052     case ABS:
8053 #if 0
8054       /* Disabled to avoid exponential mutual recursion between nonzero_bits
8055          and num_sign_bit_copies.  */
8056       if (num_sign_bit_copies (XEXP (x, 0), GET_MODE (x))
8057           == GET_MODE_BITSIZE (GET_MODE (x)))
8058         nonzero = 1;
8059 #endif
8060       break;
8061
8062     case TRUNCATE:
8063       nonzero &= (nonzero_bits (XEXP (x, 0), mode) & GET_MODE_MASK (mode));
8064       break;
8065
8066     case ZERO_EXTEND:
8067       nonzero &= nonzero_bits (XEXP (x, 0), mode);
8068       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8069         nonzero &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8070       break;
8071
8072     case SIGN_EXTEND:
8073       /* If the sign bit is known clear, this is the same as ZERO_EXTEND.
8074          Otherwise, show all the bits in the outer mode but not the inner
8075          may be non-zero.  */
8076       inner_nz = nonzero_bits (XEXP (x, 0), mode);
8077       if (GET_MODE (XEXP (x, 0)) != VOIDmode)
8078         {
8079           inner_nz &= GET_MODE_MASK (GET_MODE (XEXP (x, 0)));
8080           if (inner_nz
8081               & (((HOST_WIDE_INT) 1
8082                   << (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0))) - 1))))
8083             inner_nz |= (GET_MODE_MASK (mode)
8084                          & ~GET_MODE_MASK (GET_MODE (XEXP (x, 0))));
8085         }
8086
8087       nonzero &= inner_nz;
8088       break;
8089
8090     case AND:
8091       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8092                   & nonzero_bits (XEXP (x, 1), mode));
8093       break;
8094
8095     case XOR:   case IOR:
8096     case UMIN:  case UMAX:  case SMIN:  case SMAX:
8097       nonzero &= (nonzero_bits (XEXP (x, 0), mode)
8098                   | nonzero_bits (XEXP (x, 1), mode));
8099       break;
8100
8101     case PLUS:  case MINUS:
8102     case MULT:
8103     case DIV:   case UDIV:
8104     case MOD:   case UMOD:
8105       /* We can apply the rules of arithmetic to compute the number of
8106          high- and low-order zero bits of these operations.  We start by
8107          computing the width (position of the highest-order non-zero bit)
8108          and the number of low-order zero bits for each value.  */
8109       {
8110         unsigned HOST_WIDE_INT nz0 = nonzero_bits (XEXP (x, 0), mode);
8111         unsigned HOST_WIDE_INT nz1 = nonzero_bits (XEXP (x, 1), mode);
8112         int width0 = floor_log2 (nz0) + 1;
8113         int width1 = floor_log2 (nz1) + 1;
8114         int low0 = floor_log2 (nz0 & -nz0);
8115         int low1 = floor_log2 (nz1 & -nz1);
8116         HOST_WIDE_INT op0_maybe_minusp
8117           = (nz0 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8118         HOST_WIDE_INT op1_maybe_minusp
8119           = (nz1 & ((HOST_WIDE_INT) 1 << (mode_width - 1)));
8120         unsigned int result_width = mode_width;
8121         int result_low = 0;
8122
8123         switch (code)
8124           {
8125           case PLUS:
8126 #ifdef STACK_BIAS
8127             if (STACK_BIAS
8128                 && (XEXP (x, 0) == stack_pointer_rtx
8129                     || XEXP (x, 0) == frame_pointer_rtx)
8130                 && GET_CODE (XEXP (x, 1)) == CONST_INT)
8131               {
8132                 int sp_alignment = STACK_BOUNDARY / BITS_PER_UNIT;
8133
8134                 nz0 = (GET_MODE_MASK (mode) & ~(sp_alignment - 1));
8135                 nz1 = INTVAL (XEXP (x, 1)) - STACK_BIAS;
8136                 width0 = floor_log2 (nz0) + 1;
8137                 width1 = floor_log2 (nz1) + 1;
8138                 low0 = floor_log2 (nz0 & -nz0);
8139                 low1 = floor_log2 (nz1 & -nz1);
8140               }
8141 #endif
8142             result_width = MAX (width0, width1) + 1;
8143             result_low = MIN (low0, low1);
8144             break;
8145           case MINUS:
8146             result_low = MIN (low0, low1);
8147             break;
8148           case MULT:
8149             result_width = width0 + width1;
8150             result_low = low0 + low1;
8151             break;
8152           case DIV:
8153             if (width1 == 0)
8154               break;
8155             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8156               result_width = width0;
8157             break;
8158           case UDIV:
8159             if (width1 == 0)
8160               break;
8161             result_width = width0;
8162             break;
8163           case MOD:
8164             if (width1 == 0)
8165               break;
8166             if (! op0_maybe_minusp && ! op1_maybe_minusp)
8167               result_width = MIN (width0, width1);
8168             result_low = MIN (low0, low1);
8169             break;
8170           case UMOD:
8171             if (width1 == 0)
8172               break;
8173             result_width = MIN (width0, width1);
8174             result_low = MIN (low0, low1);
8175             break;
8176           default:
8177             abort ();
8178           }
8179
8180         if (result_width < mode_width)
8181           nonzero &= ((HOST_WIDE_INT) 1 << result_width) - 1;
8182
8183         if (result_low > 0)
8184           nonzero &= ~(((HOST_WIDE_INT) 1 << result_low) - 1);
8185
8186 #ifdef POINTERS_EXTEND_UNSIGNED
8187         /* If pointers extend unsigned and this is an addition or subtraction
8188            to a pointer in Pmode, all the bits above ptr_mode are known to be
8189            zero.  */
8190         if (POINTERS_EXTEND_UNSIGNED > 0 && GET_MODE (x) == Pmode
8191             && (code == PLUS || code == MINUS)
8192             && GET_CODE (XEXP (x, 0)) == REG && REG_POINTER (XEXP (x, 0)))
8193           nonzero &= GET_MODE_MASK (ptr_mode);
8194 #endif
8195       }
8196       break;
8197
8198     case ZERO_EXTRACT:
8199       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8200           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8201         nonzero &= ((HOST_WIDE_INT) 1 << INTVAL (XEXP (x, 1))) - 1;
8202       break;
8203
8204     case SUBREG:
8205       /* If this is a SUBREG formed for a promoted variable that has
8206          been zero-extended, we know that at least the high-order bits
8207          are zero, though others might be too.  */
8208
8209       if (SUBREG_PROMOTED_VAR_P (x) && SUBREG_PROMOTED_UNSIGNED_P (x))
8210         nonzero = (GET_MODE_MASK (GET_MODE (x))
8211                    & nonzero_bits (SUBREG_REG (x), GET_MODE (x)));
8212
8213       /* If the inner mode is a single word for both the host and target
8214          machines, we can compute this from which bits of the inner
8215          object might be nonzero.  */
8216       if (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) <= BITS_PER_WORD
8217           && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8218               <= HOST_BITS_PER_WIDE_INT))
8219         {
8220           nonzero &= nonzero_bits (SUBREG_REG (x), mode);
8221
8222 #if defined (WORD_REGISTER_OPERATIONS) && defined (LOAD_EXTEND_OP)
8223           /* If this is a typical RISC machine, we only have to worry
8224              about the way loads are extended.  */
8225           if (LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND
8226               ? (((nonzero
8227                    & (((unsigned HOST_WIDE_INT) 1
8228                        << (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))) - 1))))
8229                   != 0))
8230               : LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) != ZERO_EXTEND)
8231 #endif
8232             {
8233               /* On many CISC machines, accessing an object in a wider mode
8234                  causes the high-order bits to become undefined.  So they are
8235                  not known to be zero.  */
8236               if (GET_MODE_SIZE (GET_MODE (x))
8237                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8238                 nonzero |= (GET_MODE_MASK (GET_MODE (x))
8239                             & ~GET_MODE_MASK (GET_MODE (SUBREG_REG (x))));
8240             }
8241         }
8242       break;
8243
8244     case ASHIFTRT:
8245     case LSHIFTRT:
8246     case ASHIFT:
8247     case ROTATE:
8248       /* The nonzero bits are in two classes: any bits within MODE
8249          that aren't in GET_MODE (x) are always significant.  The rest of the
8250          nonzero bits are those that are significant in the operand of
8251          the shift when shifted the appropriate number of bits.  This
8252          shows that high-order bits are cleared by the right shift and
8253          low-order bits by left shifts.  */
8254       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8255           && INTVAL (XEXP (x, 1)) >= 0
8256           && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
8257         {
8258           enum machine_mode inner_mode = GET_MODE (x);
8259           unsigned int width = GET_MODE_BITSIZE (inner_mode);
8260           int count = INTVAL (XEXP (x, 1));
8261           unsigned HOST_WIDE_INT mode_mask = GET_MODE_MASK (inner_mode);
8262           unsigned HOST_WIDE_INT op_nonzero = nonzero_bits (XEXP (x, 0), mode);
8263           unsigned HOST_WIDE_INT inner = op_nonzero & mode_mask;
8264           unsigned HOST_WIDE_INT outer = 0;
8265
8266           if (mode_width > width)
8267             outer = (op_nonzero & nonzero & ~mode_mask);
8268
8269           if (code == LSHIFTRT)
8270             inner >>= count;
8271           else if (code == ASHIFTRT)
8272             {
8273               inner >>= count;
8274
8275               /* If the sign bit may have been nonzero before the shift, we
8276                  need to mark all the places it could have been copied to
8277                  by the shift as possibly nonzero.  */
8278               if (inner & ((HOST_WIDE_INT) 1 << (width - 1 - count)))
8279                 inner |= (((HOST_WIDE_INT) 1 << count) - 1) << (width - count);
8280             }
8281           else if (code == ASHIFT)
8282             inner <<= count;
8283           else
8284             inner = ((inner << (count % width)
8285                       | (inner >> (width - (count % width)))) & mode_mask);
8286
8287           nonzero &= (outer | inner);
8288         }
8289       break;
8290
8291     case FFS:
8292       /* This is at most the number of bits in the mode.  */
8293       nonzero = ((HOST_WIDE_INT) 1 << (floor_log2 (mode_width) + 1)) - 1;
8294       break;
8295
8296     case IF_THEN_ELSE:
8297       nonzero &= (nonzero_bits (XEXP (x, 1), mode)
8298                   | nonzero_bits (XEXP (x, 2), mode));
8299       break;
8300
8301     default:
8302       break;
8303     }
8304
8305   return nonzero;
8306 }
8307
8308 /* See the macro definition above.  */
8309 #undef num_sign_bit_copies
8310 \f
8311 /* Return the number of bits at the high-order end of X that are known to
8312    be equal to the sign bit.  X will be used in mode MODE; if MODE is
8313    VOIDmode, X will be used in its own mode.  The returned value  will always
8314    be between 1 and the number of bits in MODE.  */
8315
8316 static unsigned int
8317 num_sign_bit_copies (x, mode)
8318      rtx x;
8319      enum machine_mode mode;
8320 {
8321   enum rtx_code code = GET_CODE (x);
8322   unsigned int bitwidth;
8323   int num0, num1, result;
8324   unsigned HOST_WIDE_INT nonzero;
8325   rtx tem;
8326
8327   /* If we weren't given a mode, use the mode of X.  If the mode is still
8328      VOIDmode, we don't know anything.  Likewise if one of the modes is
8329      floating-point.  */
8330
8331   if (mode == VOIDmode)
8332     mode = GET_MODE (x);
8333
8334   if (mode == VOIDmode || FLOAT_MODE_P (mode) || FLOAT_MODE_P (GET_MODE (x)))
8335     return 1;
8336
8337   bitwidth = GET_MODE_BITSIZE (mode);
8338
8339   /* For a smaller object, just ignore the high bits.  */
8340   if (bitwidth < GET_MODE_BITSIZE (GET_MODE (x)))
8341     {
8342       num0 = num_sign_bit_copies (x, GET_MODE (x));
8343       return MAX (1,
8344                   num0 - (int) (GET_MODE_BITSIZE (GET_MODE (x)) - bitwidth));
8345     }
8346
8347   if (GET_MODE (x) != VOIDmode && bitwidth > GET_MODE_BITSIZE (GET_MODE (x)))
8348     {
8349 #ifndef WORD_REGISTER_OPERATIONS
8350   /* If this machine does not do all register operations on the entire
8351      register and MODE is wider than the mode of X, we can say nothing
8352      at all about the high-order bits.  */
8353       return 1;
8354 #else
8355       /* Likewise on machines that do, if the mode of the object is smaller
8356          than a word and loads of that size don't sign extend, we can say
8357          nothing about the high order bits.  */
8358       if (GET_MODE_BITSIZE (GET_MODE (x)) < BITS_PER_WORD
8359 #ifdef LOAD_EXTEND_OP
8360           && LOAD_EXTEND_OP (GET_MODE (x)) != SIGN_EXTEND
8361 #endif
8362           )
8363         return 1;
8364 #endif
8365     }
8366
8367   switch (code)
8368     {
8369     case REG:
8370
8371 #if defined(POINTERS_EXTEND_UNSIGNED) && !defined(HAVE_ptr_extend)
8372       /* If pointers extend signed and this is a pointer in Pmode, say that
8373          all the bits above ptr_mode are known to be sign bit copies.  */
8374       if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode && mode == Pmode
8375           && REG_POINTER (x))
8376         return GET_MODE_BITSIZE (Pmode) - GET_MODE_BITSIZE (ptr_mode) + 1;
8377 #endif
8378
8379       if (reg_last_set_value[REGNO (x)] != 0
8380           && reg_last_set_mode[REGNO (x)] == mode
8381           && (reg_last_set_label[REGNO (x)] == label_tick
8382               || (REGNO (x) >= FIRST_PSEUDO_REGISTER
8383                   && REG_N_SETS (REGNO (x)) == 1
8384                   && ! REGNO_REG_SET_P (BASIC_BLOCK (0)->global_live_at_start,
8385                                         REGNO (x))))
8386           && INSN_CUID (reg_last_set[REGNO (x)]) < subst_low_cuid)
8387         return reg_last_set_sign_bit_copies[REGNO (x)];
8388
8389       tem = get_last_value (x);
8390       if (tem != 0)
8391         return num_sign_bit_copies (tem, mode);
8392
8393       if (nonzero_sign_valid && reg_sign_bit_copies[REGNO (x)] != 0)
8394         return reg_sign_bit_copies[REGNO (x)];
8395       break;
8396
8397     case MEM:
8398 #ifdef LOAD_EXTEND_OP
8399       /* Some RISC machines sign-extend all loads of smaller than a word.  */
8400       if (LOAD_EXTEND_OP (GET_MODE (x)) == SIGN_EXTEND)
8401         return MAX (1, ((int) bitwidth
8402                         - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1));
8403 #endif
8404       break;
8405
8406     case CONST_INT:
8407       /* If the constant is negative, take its 1's complement and remask.
8408          Then see how many zero bits we have.  */
8409       nonzero = INTVAL (x) & GET_MODE_MASK (mode);
8410       if (bitwidth <= HOST_BITS_PER_WIDE_INT
8411           && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8412         nonzero = (~nonzero) & GET_MODE_MASK (mode);
8413
8414       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
8415
8416     case SUBREG:
8417       /* If this is a SUBREG for a promoted object that is sign-extended
8418          and we are looking at it in a wider mode, we know that at least the
8419          high-order bits are known to be sign bit copies.  */
8420
8421       if (SUBREG_PROMOTED_VAR_P (x) && ! SUBREG_PROMOTED_UNSIGNED_P (x))
8422         {
8423           num0 = num_sign_bit_copies (SUBREG_REG (x), mode);
8424           return MAX ((int) bitwidth
8425                       - (int) GET_MODE_BITSIZE (GET_MODE (x)) + 1,
8426                       num0);
8427         }
8428
8429       /* For a smaller object, just ignore the high bits.  */
8430       if (bitwidth <= GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x))))
8431         {
8432           num0 = num_sign_bit_copies (SUBREG_REG (x), VOIDmode);
8433           return MAX (1, (num0
8434                           - (int) (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (x)))
8435                                    - bitwidth)));
8436         }
8437
8438 #ifdef WORD_REGISTER_OPERATIONS
8439 #ifdef LOAD_EXTEND_OP
8440       /* For paradoxical SUBREGs on machines where all register operations
8441          affect the entire register, just look inside.  Note that we are
8442          passing MODE to the recursive call, so the number of sign bit copies
8443          will remain relative to that mode, not the inner mode.  */
8444
8445       /* This works only if loads sign extend.  Otherwise, if we get a
8446          reload for the inner part, it may be loaded from the stack, and
8447          then we lose all sign bit copies that existed before the store
8448          to the stack.  */
8449
8450       if ((GET_MODE_SIZE (GET_MODE (x))
8451            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
8452           && LOAD_EXTEND_OP (GET_MODE (SUBREG_REG (x))) == SIGN_EXTEND)
8453         return num_sign_bit_copies (SUBREG_REG (x), mode);
8454 #endif
8455 #endif
8456       break;
8457
8458     case SIGN_EXTRACT:
8459       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
8460         return MAX (1, (int) bitwidth - INTVAL (XEXP (x, 1)));
8461       break;
8462
8463     case SIGN_EXTEND:
8464       return (bitwidth - GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8465               + num_sign_bit_copies (XEXP (x, 0), VOIDmode));
8466
8467     case TRUNCATE:
8468       /* For a smaller object, just ignore the high bits.  */
8469       num0 = num_sign_bit_copies (XEXP (x, 0), VOIDmode);
8470       return MAX (1, (num0 - (int) (GET_MODE_BITSIZE (GET_MODE (XEXP (x, 0)))
8471                                     - bitwidth)));
8472
8473     case NOT:
8474       return num_sign_bit_copies (XEXP (x, 0), mode);
8475
8476     case ROTATE:       case ROTATERT:
8477       /* If we are rotating left by a number of bits less than the number
8478          of sign bit copies, we can just subtract that amount from the
8479          number.  */
8480       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8481           && INTVAL (XEXP (x, 1)) >= 0
8482           && INTVAL (XEXP (x, 1)) < (int) bitwidth)
8483         {
8484           num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8485           return MAX (1, num0 - (code == ROTATE ? INTVAL (XEXP (x, 1))
8486                                  : (int) bitwidth - INTVAL (XEXP (x, 1))));
8487         }
8488       break;
8489
8490     case NEG:
8491       /* In general, this subtracts one sign bit copy.  But if the value
8492          is known to be positive, the number of sign bit copies is the
8493          same as that of the input.  Finally, if the input has just one bit
8494          that might be nonzero, all the bits are copies of the sign bit.  */
8495       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8496       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8497         return num0 > 1 ? num0 - 1 : 1;
8498
8499       nonzero = nonzero_bits (XEXP (x, 0), mode);
8500       if (nonzero == 1)
8501         return bitwidth;
8502
8503       if (num0 > 1
8504           && (((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero))
8505         num0--;
8506
8507       return num0;
8508
8509     case IOR:   case AND:   case XOR:
8510     case SMIN:  case SMAX:  case UMIN:  case UMAX:
8511       /* Logical operations will preserve the number of sign-bit copies.
8512          MIN and MAX operations always return one of the operands.  */
8513       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8514       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8515       return MIN (num0, num1);
8516
8517     case PLUS:  case MINUS:
8518       /* For addition and subtraction, we can have a 1-bit carry.  However,
8519          if we are subtracting 1 from a positive number, there will not
8520          be such a carry.  Furthermore, if the positive number is known to
8521          be 0 or 1, we know the result is either -1 or 0.  */
8522
8523       if (code == PLUS && XEXP (x, 1) == constm1_rtx
8524           && bitwidth <= HOST_BITS_PER_WIDE_INT)
8525         {
8526           nonzero = nonzero_bits (XEXP (x, 0), mode);
8527           if ((((HOST_WIDE_INT) 1 << (bitwidth - 1)) & nonzero) == 0)
8528             return (nonzero == 1 || nonzero == 0 ? bitwidth
8529                     : bitwidth - floor_log2 (nonzero) - 1);
8530         }
8531
8532       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8533       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8534       result = MAX (1, MIN (num0, num1) - 1);
8535
8536 #ifdef POINTERS_EXTEND_UNSIGNED
8537       /* If pointers extend signed and this is an addition or subtraction
8538          to a pointer in Pmode, all the bits above ptr_mode are known to be
8539          sign bit copies.  */
8540       if (! POINTERS_EXTEND_UNSIGNED && GET_MODE (x) == Pmode
8541           && (code == PLUS || code == MINUS)
8542           && GET_CODE (XEXP (x, 0)) == REG && REG_POINTER (XEXP (x, 0)))
8543         result = MAX ((GET_MODE_BITSIZE (Pmode)
8544                        - GET_MODE_BITSIZE (ptr_mode) + 1),
8545                       result);
8546 #endif
8547       return result;
8548
8549     case MULT:
8550       /* The number of bits of the product is the sum of the number of
8551          bits of both terms.  However, unless one of the terms if known
8552          to be positive, we must allow for an additional bit since negating
8553          a negative number can remove one sign bit copy.  */
8554
8555       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8556       num1 = num_sign_bit_copies (XEXP (x, 1), mode);
8557
8558       result = bitwidth - (bitwidth - num0) - (bitwidth - num1);
8559       if (result > 0
8560           && (bitwidth > HOST_BITS_PER_WIDE_INT
8561               || (((nonzero_bits (XEXP (x, 0), mode)
8562                     & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8563                   && ((nonzero_bits (XEXP (x, 1), mode)
8564                        & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))))
8565         result--;
8566
8567       return MAX (1, result);
8568
8569     case UDIV:
8570       /* The result must be <= the first operand.  If the first operand
8571          has the high bit set, we know nothing about the number of sign
8572          bit copies.  */
8573       if (bitwidth > HOST_BITS_PER_WIDE_INT)
8574         return 1;
8575       else if ((nonzero_bits (XEXP (x, 0), mode)
8576                 & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8577         return 1;
8578       else
8579         return num_sign_bit_copies (XEXP (x, 0), mode);
8580
8581     case UMOD:
8582       /* The result must be <= the scond operand.  */
8583       return num_sign_bit_copies (XEXP (x, 1), mode);
8584
8585     case DIV:
8586       /* Similar to unsigned division, except that we have to worry about
8587          the case where the divisor is negative, in which case we have
8588          to add 1.  */
8589       result = num_sign_bit_copies (XEXP (x, 0), mode);
8590       if (result > 1
8591           && (bitwidth > HOST_BITS_PER_WIDE_INT
8592               || (nonzero_bits (XEXP (x, 1), mode)
8593                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8594         result--;
8595
8596       return result;
8597
8598     case MOD:
8599       result = num_sign_bit_copies (XEXP (x, 1), mode);
8600       if (result > 1
8601           && (bitwidth > HOST_BITS_PER_WIDE_INT
8602               || (nonzero_bits (XEXP (x, 1), mode)
8603                   & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0))
8604         result--;
8605
8606       return result;
8607
8608     case ASHIFTRT:
8609       /* Shifts by a constant add to the number of bits equal to the
8610          sign bit.  */
8611       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8612       if (GET_CODE (XEXP (x, 1)) == CONST_INT
8613           && INTVAL (XEXP (x, 1)) > 0)
8614         num0 = MIN ((int) bitwidth, num0 + INTVAL (XEXP (x, 1)));
8615
8616       return num0;
8617
8618     case ASHIFT:
8619       /* Left shifts destroy copies.  */
8620       if (GET_CODE (XEXP (x, 1)) != CONST_INT
8621           || INTVAL (XEXP (x, 1)) < 0
8622           || INTVAL (XEXP (x, 1)) >= (int) bitwidth)
8623         return 1;
8624
8625       num0 = num_sign_bit_copies (XEXP (x, 0), mode);
8626       return MAX (1, num0 - INTVAL (XEXP (x, 1)));
8627
8628     case IF_THEN_ELSE:
8629       num0 = num_sign_bit_copies (XEXP (x, 1), mode);
8630       num1 = num_sign_bit_copies (XEXP (x, 2), mode);
8631       return MIN (num0, num1);
8632
8633     case EQ:  case NE:  case GE:  case GT:  case LE:  case LT:
8634     case UNEQ:  case LTGT:  case UNGE:  case UNGT:  case UNLE:  case UNLT:
8635     case GEU: case GTU: case LEU: case LTU:
8636     case UNORDERED: case ORDERED:
8637       /* If the constant is negative, take its 1's complement and remask.
8638          Then see how many zero bits we have.  */
8639       nonzero = STORE_FLAG_VALUE;
8640       if (bitwidth <= HOST_BITS_PER_WIDE_INT
8641           && (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))) != 0)
8642         nonzero = (~nonzero) & GET_MODE_MASK (mode);
8643
8644       return (nonzero == 0 ? bitwidth : bitwidth - floor_log2 (nonzero) - 1);
8645       break;
8646
8647     default:
8648       break;
8649     }
8650
8651   /* If we haven't been able to figure it out by one of the above rules,
8652      see if some of the high-order bits are known to be zero.  If so,
8653      count those bits and return one less than that amount.  If we can't
8654      safely compute the mask for this mode, always return BITWIDTH.  */
8655
8656   if (bitwidth > HOST_BITS_PER_WIDE_INT)
8657     return 1;
8658
8659   nonzero = nonzero_bits (x, mode);
8660   return (nonzero & ((HOST_WIDE_INT) 1 << (bitwidth - 1))
8661           ? 1 : bitwidth - floor_log2 (nonzero) - 1);
8662 }
8663 \f
8664 /* Return the number of "extended" bits there are in X, when interpreted
8665    as a quantity in MODE whose signedness is indicated by UNSIGNEDP.  For
8666    unsigned quantities, this is the number of high-order zero bits.
8667    For signed quantities, this is the number of copies of the sign bit
8668    minus 1.  In both case, this function returns the number of "spare"
8669    bits.  For example, if two quantities for which this function returns
8670    at least 1 are added, the addition is known not to overflow.
8671
8672    This function will always return 0 unless called during combine, which
8673    implies that it must be called from a define_split.  */
8674
8675 unsigned int
8676 extended_count (x, mode, unsignedp)
8677      rtx x;
8678      enum machine_mode mode;
8679      int unsignedp;
8680 {
8681   if (nonzero_sign_valid == 0)
8682     return 0;
8683
8684   return (unsignedp
8685           ? (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
8686              ? (GET_MODE_BITSIZE (mode) - 1
8687                 - floor_log2 (nonzero_bits (x, mode)))
8688              : 0)
8689           : num_sign_bit_copies (x, mode) - 1);
8690 }
8691 \f
8692 /* This function is called from `simplify_shift_const' to merge two
8693    outer operations.  Specifically, we have already found that we need
8694    to perform operation *POP0 with constant *PCONST0 at the outermost
8695    position.  We would now like to also perform OP1 with constant CONST1
8696    (with *POP0 being done last).
8697
8698    Return 1 if we can do the operation and update *POP0 and *PCONST0 with
8699    the resulting operation.  *PCOMP_P is set to 1 if we would need to
8700    complement the innermost operand, otherwise it is unchanged.
8701
8702    MODE is the mode in which the operation will be done.  No bits outside
8703    the width of this mode matter.  It is assumed that the width of this mode
8704    is smaller than or equal to HOST_BITS_PER_WIDE_INT.
8705
8706    If *POP0 or OP1 are NIL, it means no operation is required.  Only NEG, PLUS,
8707    IOR, XOR, and AND are supported.  We may set *POP0 to SET if the proper
8708    result is simply *PCONST0.
8709
8710    If the resulting operation cannot be expressed as one operation, we
8711    return 0 and do not change *POP0, *PCONST0, and *PCOMP_P.  */
8712
8713 static int
8714 merge_outer_ops (pop0, pconst0, op1, const1, mode, pcomp_p)
8715      enum rtx_code *pop0;
8716      HOST_WIDE_INT *pconst0;
8717      enum rtx_code op1;
8718      HOST_WIDE_INT const1;
8719      enum machine_mode mode;
8720      int *pcomp_p;
8721 {
8722   enum rtx_code op0 = *pop0;
8723   HOST_WIDE_INT const0 = *pconst0;
8724
8725   const0 &= GET_MODE_MASK (mode);
8726   const1 &= GET_MODE_MASK (mode);
8727
8728   /* If OP0 is an AND, clear unimportant bits in CONST1.  */
8729   if (op0 == AND)
8730     const1 &= const0;
8731
8732   /* If OP0 or OP1 is NIL, this is easy.  Similarly if they are the same or
8733      if OP0 is SET.  */
8734
8735   if (op1 == NIL || op0 == SET)
8736     return 1;
8737
8738   else if (op0 == NIL)
8739     op0 = op1, const0 = const1;
8740
8741   else if (op0 == op1)
8742     {
8743       switch (op0)
8744         {
8745         case AND:
8746           const0 &= const1;
8747           break;
8748         case IOR:
8749           const0 |= const1;
8750           break;
8751         case XOR:
8752           const0 ^= const1;
8753           break;
8754         case PLUS:
8755           const0 += const1;
8756           break;
8757         case NEG:
8758           op0 = NIL;
8759           break;
8760         default:
8761           break;
8762         }
8763     }
8764
8765   /* Otherwise, if either is a PLUS or NEG, we can't do anything.  */
8766   else if (op0 == PLUS || op1 == PLUS || op0 == NEG || op1 == NEG)
8767     return 0;
8768
8769   /* If the two constants aren't the same, we can't do anything.  The
8770      remaining six cases can all be done.  */
8771   else if (const0 != const1)
8772     return 0;
8773
8774   else
8775     switch (op0)
8776       {
8777       case IOR:
8778         if (op1 == AND)
8779           /* (a & b) | b == b */
8780           op0 = SET;
8781         else /* op1 == XOR */
8782           /* (a ^ b) | b == a | b */
8783           {;}
8784         break;
8785
8786       case XOR:
8787         if (op1 == AND)
8788           /* (a & b) ^ b == (~a) & b */
8789           op0 = AND, *pcomp_p = 1;
8790         else /* op1 == IOR */
8791           /* (a | b) ^ b == a & ~b */
8792           op0 = AND, *pconst0 = ~const0;
8793         break;
8794
8795       case AND:
8796         if (op1 == IOR)
8797           /* (a | b) & b == b */
8798         op0 = SET;
8799         else /* op1 == XOR */
8800           /* (a ^ b) & b) == (~a) & b */
8801           *pcomp_p = 1;
8802         break;
8803       default:
8804         break;
8805       }
8806
8807   /* Check for NO-OP cases.  */
8808   const0 &= GET_MODE_MASK (mode);
8809   if (const0 == 0
8810       && (op0 == IOR || op0 == XOR || op0 == PLUS))
8811     op0 = NIL;
8812   else if (const0 == 0 && op0 == AND)
8813     op0 = SET;
8814   else if ((unsigned HOST_WIDE_INT) const0 == GET_MODE_MASK (mode)
8815            && op0 == AND)
8816     op0 = NIL;
8817
8818   /* ??? Slightly redundant with the above mask, but not entirely.
8819      Moving this above means we'd have to sign-extend the mode mask
8820      for the final test.  */
8821   const0 = trunc_int_for_mode (const0, mode);
8822
8823   *pop0 = op0;
8824   *pconst0 = const0;
8825
8826   return 1;
8827 }
8828 \f
8829 /* Simplify a shift of VAROP by COUNT bits.  CODE says what kind of shift.
8830    The result of the shift is RESULT_MODE.  X, if non-zero, is an expression
8831    that we started with.
8832
8833    The shift is normally computed in the widest mode we find in VAROP, as
8834    long as it isn't a different number of words than RESULT_MODE.  Exceptions
8835    are ASHIFTRT and ROTATE, which are always done in their original mode,  */
8836
8837 static rtx
8838 simplify_shift_const (x, code, result_mode, varop, input_count)
8839      rtx x;
8840      enum rtx_code code;
8841      enum machine_mode result_mode;
8842      rtx varop;
8843      int input_count;
8844 {
8845   enum rtx_code orig_code = code;
8846   int orig_count = input_count;
8847   unsigned int count;
8848   int signed_count;
8849   enum machine_mode mode = result_mode;
8850   enum machine_mode shift_mode, tmode;
8851   unsigned int mode_words
8852     = (GET_MODE_SIZE (mode) + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
8853   /* We form (outer_op (code varop count) (outer_const)).  */
8854   enum rtx_code outer_op = NIL;
8855   HOST_WIDE_INT outer_const = 0;
8856   rtx const_rtx;
8857   int complement_p = 0;
8858   rtx new;
8859
8860   /* If we were given an invalid count, don't do anything except exactly
8861      what was requested.  */
8862
8863   if (input_count < 0 || input_count > (int) GET_MODE_BITSIZE (mode))
8864     {
8865       if (x)
8866         return x;
8867
8868       return gen_rtx_fmt_ee (code, mode, varop, GEN_INT (input_count));
8869     }
8870
8871   count = input_count;
8872
8873   /* Make sure and truncate the "natural" shift on the way in.  We don't
8874      want to do this inside the loop as it makes it more difficult to
8875      combine shifts.  */
8876 #ifdef SHIFT_COUNT_TRUNCATED
8877   if (SHIFT_COUNT_TRUNCATED)
8878     count %= GET_MODE_BITSIZE (mode);
8879 #endif
8880
8881   /* Unless one of the branches of the `if' in this loop does a `continue',
8882      we will `break' the loop after the `if'.  */
8883
8884   while (count != 0)
8885     {
8886       /* If we have an operand of (clobber (const_int 0)), just return that
8887          value.  */
8888       if (GET_CODE (varop) == CLOBBER)
8889         return varop;
8890
8891       /* If we discovered we had to complement VAROP, leave.  Making a NOT
8892          here would cause an infinite loop.  */
8893       if (complement_p)
8894         break;
8895
8896       /* Convert ROTATERT to ROTATE.  */
8897       if (code == ROTATERT)
8898         code = ROTATE, count = GET_MODE_BITSIZE (result_mode) - count;
8899
8900       /* We need to determine what mode we will do the shift in.  If the
8901          shift is a right shift or a ROTATE, we must always do it in the mode
8902          it was originally done in.  Otherwise, we can do it in MODE, the
8903          widest mode encountered.  */
8904       shift_mode
8905         = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
8906            ? result_mode : mode);
8907
8908       /* Handle cases where the count is greater than the size of the mode
8909          minus 1.  For ASHIFT, use the size minus one as the count (this can
8910          occur when simplifying (lshiftrt (ashiftrt ..))).  For rotates,
8911          take the count modulo the size.  For other shifts, the result is
8912          zero.
8913
8914          Since these shifts are being produced by the compiler by combining
8915          multiple operations, each of which are defined, we know what the
8916          result is supposed to be.  */
8917
8918       if (count > GET_MODE_BITSIZE (shift_mode) - 1)
8919         {
8920           if (code == ASHIFTRT)
8921             count = GET_MODE_BITSIZE (shift_mode) - 1;
8922           else if (code == ROTATE || code == ROTATERT)
8923             count %= GET_MODE_BITSIZE (shift_mode);
8924           else
8925             {
8926               /* We can't simply return zero because there may be an
8927                  outer op.  */
8928               varop = const0_rtx;
8929               count = 0;
8930               break;
8931             }
8932         }
8933
8934       /* An arithmetic right shift of a quantity known to be -1 or 0
8935          is a no-op.  */
8936       if (code == ASHIFTRT
8937           && (num_sign_bit_copies (varop, shift_mode)
8938               == GET_MODE_BITSIZE (shift_mode)))
8939         {
8940           count = 0;
8941           break;
8942         }
8943
8944       /* If we are doing an arithmetic right shift and discarding all but
8945          the sign bit copies, this is equivalent to doing a shift by the
8946          bitsize minus one.  Convert it into that shift because it will often
8947          allow other simplifications.  */
8948
8949       if (code == ASHIFTRT
8950           && (count + num_sign_bit_copies (varop, shift_mode)
8951               >= GET_MODE_BITSIZE (shift_mode)))
8952         count = GET_MODE_BITSIZE (shift_mode) - 1;
8953
8954       /* We simplify the tests below and elsewhere by converting
8955          ASHIFTRT to LSHIFTRT if we know the sign bit is clear.
8956          `make_compound_operation' will convert it to a ASHIFTRT for
8957          those machines (such as VAX) that don't have a LSHIFTRT.  */
8958       if (GET_MODE_BITSIZE (shift_mode) <= HOST_BITS_PER_WIDE_INT
8959           && code == ASHIFTRT
8960           && ((nonzero_bits (varop, shift_mode)
8961                & ((HOST_WIDE_INT) 1 << (GET_MODE_BITSIZE (shift_mode) - 1)))
8962               == 0))
8963         code = LSHIFTRT;
8964
8965       switch (GET_CODE (varop))
8966         {
8967         case SIGN_EXTEND:
8968         case ZERO_EXTEND:
8969         case SIGN_EXTRACT:
8970         case ZERO_EXTRACT:
8971           new = expand_compound_operation (varop);
8972           if (new != varop)
8973             {
8974               varop = new;
8975               continue;
8976             }
8977           break;
8978
8979         case MEM:
8980           /* If we have (xshiftrt (mem ...) C) and C is MODE_WIDTH
8981              minus the width of a smaller mode, we can do this with a
8982              SIGN_EXTEND or ZERO_EXTEND from the narrower memory location.  */
8983           if ((code == ASHIFTRT || code == LSHIFTRT)
8984               && ! mode_dependent_address_p (XEXP (varop, 0))
8985               && ! MEM_VOLATILE_P (varop)
8986               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
8987                                          MODE_INT, 1)) != BLKmode)
8988             {
8989               new = adjust_address_nv (varop, tmode,
8990                                        BYTES_BIG_ENDIAN ? 0
8991                                        : count / BITS_PER_UNIT);
8992
8993               varop = gen_rtx_fmt_e (code == ASHIFTRT ? SIGN_EXTEND
8994                                      : ZERO_EXTEND, mode, new);
8995               count = 0;
8996               continue;
8997             }
8998           break;
8999
9000         case USE:
9001           /* Similar to the case above, except that we can only do this if
9002              the resulting mode is the same as that of the underlying
9003              MEM and adjust the address depending on the *bits* endianness
9004              because of the way that bit-field extract insns are defined.  */
9005           if ((code == ASHIFTRT || code == LSHIFTRT)
9006               && (tmode = mode_for_size (GET_MODE_BITSIZE (mode) - count,
9007                                          MODE_INT, 1)) != BLKmode
9008               && tmode == GET_MODE (XEXP (varop, 0)))
9009             {
9010               if (BITS_BIG_ENDIAN)
9011                 new = XEXP (varop, 0);
9012               else
9013                 {
9014                   new = copy_rtx (XEXP (varop, 0));
9015                   SUBST (XEXP (new, 0),
9016                          plus_constant (XEXP (new, 0),
9017                                         count / BITS_PER_UNIT));
9018                 }
9019
9020               varop = gen_rtx_fmt_e (code == ASHIFTRT ? SIGN_EXTEND
9021                                      : ZERO_EXTEND, mode, new);
9022               count = 0;
9023               continue;
9024             }
9025           break;
9026
9027         case SUBREG:
9028           /* If VAROP is a SUBREG, strip it as long as the inner operand has
9029              the same number of words as what we've seen so far.  Then store
9030              the widest mode in MODE.  */
9031           if (subreg_lowpart_p (varop)
9032               && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9033                   > GET_MODE_SIZE (GET_MODE (varop)))
9034               && (((GET_MODE_SIZE (GET_MODE (SUBREG_REG (varop)))
9035                     + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD)
9036                   == mode_words))
9037             {
9038               varop = SUBREG_REG (varop);
9039               if (GET_MODE_SIZE (GET_MODE (varop)) > GET_MODE_SIZE (mode))
9040                 mode = GET_MODE (varop);
9041               continue;
9042             }
9043           break;
9044
9045         case MULT:
9046           /* Some machines use MULT instead of ASHIFT because MULT
9047              is cheaper.  But it is still better on those machines to
9048              merge two shifts into one.  */
9049           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9050               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
9051             {
9052               varop
9053                 = gen_binary (ASHIFT, GET_MODE (varop), XEXP (varop, 0),
9054                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
9055               continue;
9056             }
9057           break;
9058
9059         case UDIV:
9060           /* Similar, for when divides are cheaper.  */
9061           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9062               && exact_log2 (INTVAL (XEXP (varop, 1))) >= 0)
9063             {
9064               varop
9065                 = gen_binary (LSHIFTRT, GET_MODE (varop), XEXP (varop, 0),
9066                               GEN_INT (exact_log2 (INTVAL (XEXP (varop, 1)))));
9067               continue;
9068             }
9069           break;
9070
9071         case ASHIFTRT:
9072           /* If we are extracting just the sign bit of an arithmetic
9073              right shift, that shift is not needed.  However, the sign
9074              bit of a wider mode may be different from what would be
9075              interpreted as the sign bit in a narrower mode, so, if
9076              the result is narrower, don't discard the shift.  */
9077           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9078               && (GET_MODE_BITSIZE (result_mode)
9079                   >= GET_MODE_BITSIZE (GET_MODE (varop))))
9080             {
9081               varop = XEXP (varop, 0);
9082               continue;
9083             }
9084
9085           /* ... fall through ...  */
9086
9087         case LSHIFTRT:
9088         case ASHIFT:
9089         case ROTATE:
9090           /* Here we have two nested shifts.  The result is usually the
9091              AND of a new shift with a mask.  We compute the result below.  */
9092           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9093               && INTVAL (XEXP (varop, 1)) >= 0
9094               && INTVAL (XEXP (varop, 1)) < GET_MODE_BITSIZE (GET_MODE (varop))
9095               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9096               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
9097             {
9098               enum rtx_code first_code = GET_CODE (varop);
9099               unsigned int first_count = INTVAL (XEXP (varop, 1));
9100               unsigned HOST_WIDE_INT mask;
9101               rtx mask_rtx;
9102
9103               /* We have one common special case.  We can't do any merging if
9104                  the inner code is an ASHIFTRT of a smaller mode.  However, if
9105                  we have (ashift:M1 (subreg:M1 (ashiftrt:M2 FOO C1) 0) C2)
9106                  with C2 == GET_MODE_BITSIZE (M1) - GET_MODE_BITSIZE (M2),
9107                  we can convert it to
9108                  (ashiftrt:M1 (ashift:M1 (and:M1 (subreg:M1 FOO 0 C2) C3) C1).
9109                  This simplifies certain SIGN_EXTEND operations.  */
9110               if (code == ASHIFT && first_code == ASHIFTRT
9111                   && (GET_MODE_BITSIZE (result_mode)
9112                       - GET_MODE_BITSIZE (GET_MODE (varop))) == count)
9113                 {
9114                   /* C3 has the low-order C1 bits zero.  */
9115
9116                   mask = (GET_MODE_MASK (mode)
9117                           & ~(((HOST_WIDE_INT) 1 << first_count) - 1));
9118
9119                   varop = simplify_and_const_int (NULL_RTX, result_mode,
9120                                                   XEXP (varop, 0), mask);
9121                   varop = simplify_shift_const (NULL_RTX, ASHIFT, result_mode,
9122                                                 varop, count);
9123                   count = first_count;
9124                   code = ASHIFTRT;
9125                   continue;
9126                 }
9127
9128               /* If this was (ashiftrt (ashift foo C1) C2) and FOO has more
9129                  than C1 high-order bits equal to the sign bit, we can convert
9130                  this to either an ASHIFT or a ASHIFTRT depending on the
9131                  two counts.
9132
9133                  We cannot do this if VAROP's mode is not SHIFT_MODE.  */
9134
9135               if (code == ASHIFTRT && first_code == ASHIFT
9136                   && GET_MODE (varop) == shift_mode
9137                   && (num_sign_bit_copies (XEXP (varop, 0), shift_mode)
9138                       > first_count))
9139                 {
9140                   varop = XEXP (varop, 0);
9141
9142                   signed_count = count - first_count;
9143                   if (signed_count < 0)
9144                     count = -signed_count, code = ASHIFT;
9145                   else
9146                     count = signed_count;
9147
9148                   continue;
9149                 }
9150
9151               /* There are some cases we can't do.  If CODE is ASHIFTRT,
9152                  we can only do this if FIRST_CODE is also ASHIFTRT.
9153
9154                  We can't do the case when CODE is ROTATE and FIRST_CODE is
9155                  ASHIFTRT.
9156
9157                  If the mode of this shift is not the mode of the outer shift,
9158                  we can't do this if either shift is a right shift or ROTATE.
9159
9160                  Finally, we can't do any of these if the mode is too wide
9161                  unless the codes are the same.
9162
9163                  Handle the case where the shift codes are the same
9164                  first.  */
9165
9166               if (code == first_code)
9167                 {
9168                   if (GET_MODE (varop) != result_mode
9169                       && (code == ASHIFTRT || code == LSHIFTRT
9170                           || code == ROTATE))
9171                     break;
9172
9173                   count += first_count;
9174                   varop = XEXP (varop, 0);
9175                   continue;
9176                 }
9177
9178               if (code == ASHIFTRT
9179                   || (code == ROTATE && first_code == ASHIFTRT)
9180                   || GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT
9181                   || (GET_MODE (varop) != result_mode
9182                       && (first_code == ASHIFTRT || first_code == LSHIFTRT
9183                           || first_code == ROTATE
9184                           || code == ROTATE)))
9185                 break;
9186
9187               /* To compute the mask to apply after the shift, shift the
9188                  nonzero bits of the inner shift the same way the
9189                  outer shift will.  */
9190
9191               mask_rtx = GEN_INT (nonzero_bits (varop, GET_MODE (varop)));
9192
9193               mask_rtx
9194                 = simplify_binary_operation (code, result_mode, mask_rtx,
9195                                              GEN_INT (count));
9196
9197               /* Give up if we can't compute an outer operation to use.  */
9198               if (mask_rtx == 0
9199                   || GET_CODE (mask_rtx) != CONST_INT
9200                   || ! merge_outer_ops (&outer_op, &outer_const, AND,
9201                                         INTVAL (mask_rtx),
9202                                         result_mode, &complement_p))
9203                 break;
9204
9205               /* If the shifts are in the same direction, we add the
9206                  counts.  Otherwise, we subtract them.  */
9207               signed_count = count;
9208               if ((code == ASHIFTRT || code == LSHIFTRT)
9209                   == (first_code == ASHIFTRT || first_code == LSHIFTRT))
9210                 signed_count += first_count;
9211               else
9212                 signed_count -= first_count;
9213
9214               /* If COUNT is positive, the new shift is usually CODE,
9215                  except for the two exceptions below, in which case it is
9216                  FIRST_CODE.  If the count is negative, FIRST_CODE should
9217                  always be used  */
9218               if (signed_count > 0
9219                   && ((first_code == ROTATE && code == ASHIFT)
9220                       || (first_code == ASHIFTRT && code == LSHIFTRT)))
9221                 code = first_code, count = signed_count;
9222               else if (signed_count < 0)
9223                 code = first_code, count = -signed_count;
9224               else
9225                 count = signed_count;
9226
9227               varop = XEXP (varop, 0);
9228               continue;
9229             }
9230
9231           /* If we have (A << B << C) for any shift, we can convert this to
9232              (A << C << B).  This wins if A is a constant.  Only try this if
9233              B is not a constant.  */
9234
9235           else if (GET_CODE (varop) == code
9236                    && GET_CODE (XEXP (varop, 1)) != CONST_INT
9237                    && 0 != (new
9238                             = simplify_binary_operation (code, mode,
9239                                                          XEXP (varop, 0),
9240                                                          GEN_INT (count))))
9241             {
9242               varop = gen_rtx_fmt_ee (code, mode, new, XEXP (varop, 1));
9243               count = 0;
9244               continue;
9245             }
9246           break;
9247
9248         case NOT:
9249           /* Make this fit the case below.  */
9250           varop = gen_rtx_XOR (mode, XEXP (varop, 0),
9251                                GEN_INT (GET_MODE_MASK (mode)));
9252           continue;
9253
9254         case IOR:
9255         case AND:
9256         case XOR:
9257           /* If we have (xshiftrt (ior (plus X (const_int -1)) X) C)
9258              with C the size of VAROP - 1 and the shift is logical if
9259              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9260              we have an (le X 0) operation.   If we have an arithmetic shift
9261              and STORE_FLAG_VALUE is 1 or we have a logical shift with
9262              STORE_FLAG_VALUE of -1, we have a (neg (le X 0)) operation.  */
9263
9264           if (GET_CODE (varop) == IOR && GET_CODE (XEXP (varop, 0)) == PLUS
9265               && XEXP (XEXP (varop, 0), 1) == constm1_rtx
9266               && (STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9267               && (code == LSHIFTRT || code == ASHIFTRT)
9268               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9269               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9270             {
9271               count = 0;
9272               varop = gen_rtx_LE (GET_MODE (varop), XEXP (varop, 1),
9273                                   const0_rtx);
9274
9275               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9276                 varop = gen_rtx_NEG (GET_MODE (varop), varop);
9277
9278               continue;
9279             }
9280
9281           /* If we have (shift (logical)), move the logical to the outside
9282              to allow it to possibly combine with another logical and the
9283              shift to combine with another shift.  This also canonicalizes to
9284              what a ZERO_EXTRACT looks like.  Also, some machines have
9285              (and (shift)) insns.  */
9286
9287           if (GET_CODE (XEXP (varop, 1)) == CONST_INT
9288               && (new = simplify_binary_operation (code, result_mode,
9289                                                    XEXP (varop, 1),
9290                                                    GEN_INT (count))) != 0
9291               && GET_CODE (new) == CONST_INT
9292               && merge_outer_ops (&outer_op, &outer_const, GET_CODE (varop),
9293                                   INTVAL (new), result_mode, &complement_p))
9294             {
9295               varop = XEXP (varop, 0);
9296               continue;
9297             }
9298
9299           /* If we can't do that, try to simplify the shift in each arm of the
9300              logical expression, make a new logical expression, and apply
9301              the inverse distributive law.  */
9302           {
9303             rtx lhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9304                                             XEXP (varop, 0), count);
9305             rtx rhs = simplify_shift_const (NULL_RTX, code, shift_mode,
9306                                             XEXP (varop, 1), count);
9307
9308             varop = gen_binary (GET_CODE (varop), shift_mode, lhs, rhs);
9309             varop = apply_distributive_law (varop);
9310
9311             count = 0;
9312           }
9313           break;
9314
9315         case EQ:
9316           /* convert (lshiftrt (eq FOO 0) C) to (xor FOO 1) if STORE_FLAG_VALUE
9317              says that the sign bit can be tested, FOO has mode MODE, C is
9318              GET_MODE_BITSIZE (MODE) - 1, and FOO has only its low-order bit
9319              that may be nonzero.  */
9320           if (code == LSHIFTRT
9321               && XEXP (varop, 1) == const0_rtx
9322               && GET_MODE (XEXP (varop, 0)) == result_mode
9323               && count == GET_MODE_BITSIZE (result_mode) - 1
9324               && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9325               && ((STORE_FLAG_VALUE
9326                    & ((HOST_WIDE_INT) 1
9327                       < (GET_MODE_BITSIZE (result_mode) - 1))))
9328               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9329               && merge_outer_ops (&outer_op, &outer_const, XOR,
9330                                   (HOST_WIDE_INT) 1, result_mode,
9331                                   &complement_p))
9332             {
9333               varop = XEXP (varop, 0);
9334               count = 0;
9335               continue;
9336             }
9337           break;
9338
9339         case NEG:
9340           /* (lshiftrt (neg A) C) where A is either 0 or 1 and C is one less
9341              than the number of bits in the mode is equivalent to A.  */
9342           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9343               && nonzero_bits (XEXP (varop, 0), result_mode) == 1)
9344             {
9345               varop = XEXP (varop, 0);
9346               count = 0;
9347               continue;
9348             }
9349
9350           /* NEG commutes with ASHIFT since it is multiplication.  Move the
9351              NEG outside to allow shifts to combine.  */
9352           if (code == ASHIFT
9353               && merge_outer_ops (&outer_op, &outer_const, NEG,
9354                                   (HOST_WIDE_INT) 0, result_mode,
9355                                   &complement_p))
9356             {
9357               varop = XEXP (varop, 0);
9358               continue;
9359             }
9360           break;
9361
9362         case PLUS:
9363           /* (lshiftrt (plus A -1) C) where A is either 0 or 1 and C
9364              is one less than the number of bits in the mode is
9365              equivalent to (xor A 1).  */
9366           if (code == LSHIFTRT && count == GET_MODE_BITSIZE (result_mode) - 1
9367               && XEXP (varop, 1) == constm1_rtx
9368               && nonzero_bits (XEXP (varop, 0), result_mode) == 1
9369               && merge_outer_ops (&outer_op, &outer_const, XOR,
9370                                   (HOST_WIDE_INT) 1, result_mode,
9371                                   &complement_p))
9372             {
9373               count = 0;
9374               varop = XEXP (varop, 0);
9375               continue;
9376             }
9377
9378           /* If we have (xshiftrt (plus FOO BAR) C), and the only bits
9379              that might be nonzero in BAR are those being shifted out and those
9380              bits are known zero in FOO, we can replace the PLUS with FOO.
9381              Similarly in the other operand order.  This code occurs when
9382              we are computing the size of a variable-size array.  */
9383
9384           if ((code == ASHIFTRT || code == LSHIFTRT)
9385               && count < HOST_BITS_PER_WIDE_INT
9386               && nonzero_bits (XEXP (varop, 1), result_mode) >> count == 0
9387               && (nonzero_bits (XEXP (varop, 1), result_mode)
9388                   & nonzero_bits (XEXP (varop, 0), result_mode)) == 0)
9389             {
9390               varop = XEXP (varop, 0);
9391               continue;
9392             }
9393           else if ((code == ASHIFTRT || code == LSHIFTRT)
9394                    && count < HOST_BITS_PER_WIDE_INT
9395                    && GET_MODE_BITSIZE (result_mode) <= HOST_BITS_PER_WIDE_INT
9396                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9397                             >> count)
9398                    && 0 == (nonzero_bits (XEXP (varop, 0), result_mode)
9399                             & nonzero_bits (XEXP (varop, 1),
9400                                                  result_mode)))
9401             {
9402               varop = XEXP (varop, 1);
9403               continue;
9404             }
9405
9406           /* (ashift (plus foo C) N) is (plus (ashift foo N) C').  */
9407           if (code == ASHIFT
9408               && GET_CODE (XEXP (varop, 1)) == CONST_INT
9409               && (new = simplify_binary_operation (ASHIFT, result_mode,
9410                                                    XEXP (varop, 1),
9411                                                    GEN_INT (count))) != 0
9412               && GET_CODE (new) == CONST_INT
9413               && merge_outer_ops (&outer_op, &outer_const, PLUS,
9414                                   INTVAL (new), result_mode, &complement_p))
9415             {
9416               varop = XEXP (varop, 0);
9417               continue;
9418             }
9419           break;
9420
9421         case MINUS:
9422           /* If we have (xshiftrt (minus (ashiftrt X C)) X) C)
9423              with C the size of VAROP - 1 and the shift is logical if
9424              STORE_FLAG_VALUE is 1 and arithmetic if STORE_FLAG_VALUE is -1,
9425              we have a (gt X 0) operation.  If the shift is arithmetic with
9426              STORE_FLAG_VALUE of 1 or logical with STORE_FLAG_VALUE == -1,
9427              we have a (neg (gt X 0)) operation.  */
9428
9429           if ((STORE_FLAG_VALUE == 1 || STORE_FLAG_VALUE == -1)
9430               && GET_CODE (XEXP (varop, 0)) == ASHIFTRT
9431               && count == GET_MODE_BITSIZE (GET_MODE (varop)) - 1
9432               && (code == LSHIFTRT || code == ASHIFTRT)
9433               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9434               && INTVAL (XEXP (XEXP (varop, 0), 1)) == count
9435               && rtx_equal_p (XEXP (XEXP (varop, 0), 0), XEXP (varop, 1)))
9436             {
9437               count = 0;
9438               varop = gen_rtx_GT (GET_MODE (varop), XEXP (varop, 1),
9439                                   const0_rtx);
9440
9441               if (STORE_FLAG_VALUE == 1 ? code == ASHIFTRT : code == LSHIFTRT)
9442                 varop = gen_rtx_NEG (GET_MODE (varop), varop);
9443
9444               continue;
9445             }
9446           break;
9447
9448         case TRUNCATE:
9449           /* Change (lshiftrt (truncate (lshiftrt))) to (truncate (lshiftrt))
9450              if the truncate does not affect the value.  */
9451           if (code == LSHIFTRT
9452               && GET_CODE (XEXP (varop, 0)) == LSHIFTRT
9453               && GET_CODE (XEXP (XEXP (varop, 0), 1)) == CONST_INT
9454               && (INTVAL (XEXP (XEXP (varop, 0), 1))
9455                   >= (GET_MODE_BITSIZE (GET_MODE (XEXP (varop, 0)))
9456                       - GET_MODE_BITSIZE (GET_MODE (varop)))))
9457             {
9458               rtx varop_inner = XEXP (varop, 0);
9459
9460               varop_inner
9461                 = gen_rtx_LSHIFTRT (GET_MODE (varop_inner),
9462                                     XEXP (varop_inner, 0),
9463                                     GEN_INT
9464                                     (count + INTVAL (XEXP (varop_inner, 1))));
9465               varop = gen_rtx_TRUNCATE (GET_MODE (varop), varop_inner);
9466               count = 0;
9467               continue;
9468             }
9469           break;
9470
9471         default:
9472           break;
9473         }
9474
9475       break;
9476     }
9477
9478   /* We need to determine what mode to do the shift in.  If the shift is
9479      a right shift or ROTATE, we must always do it in the mode it was
9480      originally done in.  Otherwise, we can do it in MODE, the widest mode
9481      encountered.  The code we care about is that of the shift that will
9482      actually be done, not the shift that was originally requested.  */
9483   shift_mode
9484     = (code == ASHIFTRT || code == LSHIFTRT || code == ROTATE
9485        ? result_mode : mode);
9486
9487   /* We have now finished analyzing the shift.  The result should be
9488      a shift of type CODE with SHIFT_MODE shifting VAROP COUNT places.  If
9489      OUTER_OP is non-NIL, it is an operation that needs to be applied
9490      to the result of the shift.  OUTER_CONST is the relevant constant,
9491      but we must turn off all bits turned off in the shift.
9492
9493      If we were passed a value for X, see if we can use any pieces of
9494      it.  If not, make new rtx.  */
9495
9496   if (x && GET_RTX_CLASS (GET_CODE (x)) == '2'
9497       && GET_CODE (XEXP (x, 1)) == CONST_INT
9498       && INTVAL (XEXP (x, 1)) == count)
9499     const_rtx = XEXP (x, 1);
9500   else
9501     const_rtx = GEN_INT (count);
9502
9503   if (x && GET_CODE (XEXP (x, 0)) == SUBREG
9504       && GET_MODE (XEXP (x, 0)) == shift_mode
9505       && SUBREG_REG (XEXP (x, 0)) == varop)
9506     varop = XEXP (x, 0);
9507   else if (GET_MODE (varop) != shift_mode)
9508     varop = gen_lowpart_for_combine (shift_mode, varop);
9509
9510   /* If we can't make the SUBREG, try to return what we were given.  */
9511   if (GET_CODE (varop) == CLOBBER)
9512     return x ? x : varop;
9513
9514   new = simplify_binary_operation (code, shift_mode, varop, const_rtx);
9515   if (new != 0)
9516     x = new;
9517   else
9518     {
9519       if (x == 0 || GET_CODE (x) != code || GET_MODE (x) != shift_mode)
9520         x = gen_rtx_fmt_ee (code, shift_mode, varop, const_rtx);
9521
9522       SUBST (XEXP (x, 0), varop);
9523       SUBST (XEXP (x, 1), const_rtx);
9524     }
9525
9526   /* If we have an outer operation and we just made a shift, it is
9527      possible that we could have simplified the shift were it not
9528      for the outer operation.  So try to do the simplification
9529      recursively.  */
9530
9531   if (outer_op != NIL && GET_CODE (x) == code
9532       && GET_CODE (XEXP (x, 1)) == CONST_INT)
9533     x = simplify_shift_const (x, code, shift_mode, XEXP (x, 0),
9534                               INTVAL (XEXP (x, 1)));
9535
9536   /* If we were doing a LSHIFTRT in a wider mode than it was originally,
9537      turn off all the bits that the shift would have turned off.  */
9538   if (orig_code == LSHIFTRT && result_mode != shift_mode)
9539     x = simplify_and_const_int (NULL_RTX, shift_mode, x,
9540                                 GET_MODE_MASK (result_mode) >> orig_count);
9541
9542   /* Do the remainder of the processing in RESULT_MODE.  */
9543   x = gen_lowpart_for_combine (result_mode, x);
9544
9545   /* If COMPLEMENT_P is set, we have to complement X before doing the outer
9546      operation.  */
9547   if (complement_p)
9548     x =simplify_gen_unary (NOT, result_mode, x, result_mode);
9549
9550   if (outer_op != NIL)
9551     {
9552       if (GET_MODE_BITSIZE (result_mode) < HOST_BITS_PER_WIDE_INT)
9553         outer_const = trunc_int_for_mode (outer_const, result_mode);
9554
9555       if (outer_op == AND)
9556         x = simplify_and_const_int (NULL_RTX, result_mode, x, outer_const);
9557       else if (outer_op == SET)
9558         /* This means that we have determined that the result is
9559            equivalent to a constant.  This should be rare.  */
9560         x = GEN_INT (outer_const);
9561       else if (GET_RTX_CLASS (outer_op) == '1')
9562         x = simplify_gen_unary (outer_op, result_mode, x, result_mode);
9563       else
9564         x = gen_binary (outer_op, result_mode, x, GEN_INT (outer_const));
9565     }
9566
9567   return x;
9568 }
9569 \f
9570 /* Like recog, but we receive the address of a pointer to a new pattern.
9571    We try to match the rtx that the pointer points to.
9572    If that fails, we may try to modify or replace the pattern,
9573    storing the replacement into the same pointer object.
9574
9575    Modifications include deletion or addition of CLOBBERs.
9576
9577    PNOTES is a pointer to a location where any REG_UNUSED notes added for
9578    the CLOBBERs are placed.
9579
9580    The value is the final insn code from the pattern ultimately matched,
9581    or -1.  */
9582
9583 static int
9584 recog_for_combine (pnewpat, insn, pnotes)
9585      rtx *pnewpat;
9586      rtx insn;
9587      rtx *pnotes;
9588 {
9589   register rtx pat = *pnewpat;
9590   int insn_code_number;
9591   int num_clobbers_to_add = 0;
9592   int i;
9593   rtx notes = 0;
9594   rtx old_notes;
9595
9596   /* If PAT is a PARALLEL, check to see if it contains the CLOBBER
9597      we use to indicate that something didn't match.  If we find such a
9598      thing, force rejection.  */
9599   if (GET_CODE (pat) == PARALLEL)
9600     for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
9601       if (GET_CODE (XVECEXP (pat, 0, i)) == CLOBBER
9602           && XEXP (XVECEXP (pat, 0, i), 0) == const0_rtx)
9603         return -1;
9604
9605   /* Remove the old notes prior to trying to recognize the new pattern.  */
9606   old_notes = REG_NOTES (insn);
9607   REG_NOTES (insn) = 0;
9608
9609   insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9610
9611   /* If it isn't, there is the possibility that we previously had an insn
9612      that clobbered some register as a side effect, but the combined
9613      insn doesn't need to do that.  So try once more without the clobbers
9614      unless this represents an ASM insn.  */
9615
9616   if (insn_code_number < 0 && ! check_asm_operands (pat)
9617       && GET_CODE (pat) == PARALLEL)
9618     {
9619       int pos;
9620
9621       for (pos = 0, i = 0; i < XVECLEN (pat, 0); i++)
9622         if (GET_CODE (XVECEXP (pat, 0, i)) != CLOBBER)
9623           {
9624             if (i != pos)
9625               SUBST (XVECEXP (pat, 0, pos), XVECEXP (pat, 0, i));
9626             pos++;
9627           }
9628
9629       SUBST_INT (XVECLEN (pat, 0), pos);
9630
9631       if (pos == 1)
9632         pat = XVECEXP (pat, 0, 0);
9633
9634       insn_code_number = recog (pat, insn, &num_clobbers_to_add);
9635     }
9636
9637   /* Recognize all noop sets, these will be killed by followup pass.  */
9638   if (insn_code_number < 0 && GET_CODE (pat) == SET && set_noop_p (pat))
9639     insn_code_number = NOOP_MOVE_INSN_CODE, num_clobbers_to_add = 0;
9640
9641   REG_NOTES (insn) = old_notes;
9642
9643   /* If we had any clobbers to add, make a new pattern than contains
9644      them.  Then check to make sure that all of them are dead.  */
9645   if (num_clobbers_to_add)
9646     {
9647       rtx newpat = gen_rtx_PARALLEL (VOIDmode,
9648                                      rtvec_alloc (GET_CODE (pat) == PARALLEL
9649                                                   ? (XVECLEN (pat, 0)
9650                                                      + num_clobbers_to_add)
9651                                                   : num_clobbers_to_add + 1));
9652
9653       if (GET_CODE (pat) == PARALLEL)
9654         for (i = 0; i < XVECLEN (pat, 0); i++)
9655           XVECEXP (newpat, 0, i) = XVECEXP (pat, 0, i);
9656       else
9657         XVECEXP (newpat, 0, 0) = pat;
9658
9659       add_clobbers (newpat, insn_code_number);
9660
9661       for (i = XVECLEN (newpat, 0) - num_clobbers_to_add;
9662            i < XVECLEN (newpat, 0); i++)
9663         {
9664           if (GET_CODE (XEXP (XVECEXP (newpat, 0, i), 0)) == REG
9665               && ! reg_dead_at_p (XEXP (XVECEXP (newpat, 0, i), 0), insn))
9666             return -1;
9667           notes = gen_rtx_EXPR_LIST (REG_UNUSED,
9668                                      XEXP (XVECEXP (newpat, 0, i), 0), notes);
9669         }
9670       pat = newpat;
9671     }
9672
9673   *pnewpat = pat;
9674   *pnotes = notes;
9675
9676   return insn_code_number;
9677 }
9678 \f
9679 /* Like gen_lowpart but for use by combine.  In combine it is not possible
9680    to create any new pseudoregs.  However, it is safe to create
9681    invalid memory addresses, because combine will try to recognize
9682    them and all they will do is make the combine attempt fail.
9683
9684    If for some reason this cannot do its job, an rtx
9685    (clobber (const_int 0)) is returned.
9686    An insn containing that will not be recognized.  */
9687
9688 #undef gen_lowpart
9689
9690 static rtx
9691 gen_lowpart_for_combine (mode, x)
9692      enum machine_mode mode;
9693      register rtx x;
9694 {
9695   rtx result;
9696
9697   if (GET_MODE (x) == mode)
9698     return x;
9699
9700   /* We can only support MODE being wider than a word if X is a
9701      constant integer or has a mode the same size.  */
9702
9703   if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
9704       && ! ((GET_MODE (x) == VOIDmode
9705              && (GET_CODE (x) == CONST_INT
9706                  || GET_CODE (x) == CONST_DOUBLE))
9707             || GET_MODE_SIZE (GET_MODE (x)) == GET_MODE_SIZE (mode)))
9708     return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9709
9710   /* X might be a paradoxical (subreg (mem)).  In that case, gen_lowpart
9711      won't know what to do.  So we will strip off the SUBREG here and
9712      process normally.  */
9713   if (GET_CODE (x) == SUBREG && GET_CODE (SUBREG_REG (x)) == MEM)
9714     {
9715       x = SUBREG_REG (x);
9716       if (GET_MODE (x) == mode)
9717         return x;
9718     }
9719
9720   result = gen_lowpart_common (mode, x);
9721 #ifdef CLASS_CANNOT_CHANGE_MODE
9722   if (result != 0
9723       && GET_CODE (result) == SUBREG
9724       && GET_CODE (SUBREG_REG (result)) == REG
9725       && REGNO (SUBREG_REG (result)) >= FIRST_PSEUDO_REGISTER
9726       && CLASS_CANNOT_CHANGE_MODE_P (GET_MODE (result),
9727                                      GET_MODE (SUBREG_REG (result))))
9728     REG_CHANGES_MODE (REGNO (SUBREG_REG (result))) = 1;
9729 #endif
9730
9731   if (result)
9732     return result;
9733
9734   if (GET_CODE (x) == MEM)
9735     {
9736       register int offset = 0;
9737
9738       /* Refuse to work on a volatile memory ref or one with a mode-dependent
9739          address.  */
9740       if (MEM_VOLATILE_P (x) || mode_dependent_address_p (XEXP (x, 0)))
9741         return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9742
9743       /* If we want to refer to something bigger than the original memref,
9744          generate a perverse subreg instead.  That will force a reload
9745          of the original memref X.  */
9746       if (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (mode))
9747         return gen_rtx_SUBREG (mode, x, 0);
9748
9749       if (WORDS_BIG_ENDIAN)
9750         offset = (MAX (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
9751                   - MAX (GET_MODE_SIZE (mode), UNITS_PER_WORD));
9752
9753       if (BYTES_BIG_ENDIAN)
9754         {
9755           /* Adjust the address so that the address-after-the-data is
9756              unchanged.  */
9757           offset -= (MIN (UNITS_PER_WORD, GET_MODE_SIZE (mode))
9758                      - MIN (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x))));
9759         }
9760
9761       return adjust_address_nv (x, mode, offset);
9762     }
9763
9764   /* If X is a comparison operator, rewrite it in a new mode.  This
9765      probably won't match, but may allow further simplifications.  */
9766   else if (GET_RTX_CLASS (GET_CODE (x)) == '<')
9767     return gen_rtx_fmt_ee (GET_CODE (x), mode, XEXP (x, 0), XEXP (x, 1));
9768
9769   /* If we couldn't simplify X any other way, just enclose it in a
9770      SUBREG.  Normally, this SUBREG won't match, but some patterns may
9771      include an explicit SUBREG or we may simplify it further in combine.  */
9772   else
9773     {
9774       int offset = 0;
9775       rtx res;
9776
9777       offset = subreg_lowpart_offset (mode, GET_MODE (x));
9778       res = simplify_gen_subreg (mode, x, GET_MODE (x), offset);
9779       if (res)
9780         return res;
9781       return gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
9782     }
9783 }
9784 \f
9785 /* These routines make binary and unary operations by first seeing if they
9786    fold; if not, a new expression is allocated.  */
9787
9788 static rtx
9789 gen_binary (code, mode, op0, op1)
9790      enum rtx_code code;
9791      enum machine_mode mode;
9792      rtx op0, op1;
9793 {
9794   rtx result;
9795   rtx tem;
9796
9797   if (GET_RTX_CLASS (code) == 'c'
9798       && swap_commutative_operands_p (op0, op1))
9799     tem = op0, op0 = op1, op1 = tem;
9800
9801   if (GET_RTX_CLASS (code) == '<')
9802     {
9803       enum machine_mode op_mode = GET_MODE (op0);
9804
9805       /* Strip the COMPARE from (REL_OP (compare X Y) 0) to get
9806          just (REL_OP X Y).  */
9807       if (GET_CODE (op0) == COMPARE && op1 == const0_rtx)
9808         {
9809           op1 = XEXP (op0, 1);
9810           op0 = XEXP (op0, 0);
9811           op_mode = GET_MODE (op0);
9812         }
9813
9814       if (op_mode == VOIDmode)
9815         op_mode = GET_MODE (op1);
9816       result = simplify_relational_operation (code, op_mode, op0, op1);
9817     }
9818   else
9819     result = simplify_binary_operation (code, mode, op0, op1);
9820
9821   if (result)
9822     return result;
9823
9824   /* Put complex operands first and constants second.  */
9825   if (GET_RTX_CLASS (code) == 'c'
9826       && swap_commutative_operands_p (op0, op1))
9827     return gen_rtx_fmt_ee (code, mode, op1, op0);
9828
9829   /* If we are turning off bits already known off in OP0, we need not do
9830      an AND.  */
9831   else if (code == AND && GET_CODE (op1) == CONST_INT
9832            && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
9833            && (nonzero_bits (op0, mode) & ~INTVAL (op1)) == 0)
9834     return op0;
9835
9836   return gen_rtx_fmt_ee (code, mode, op0, op1);
9837 }
9838 \f
9839 /* Simplify a comparison between *POP0 and *POP1 where CODE is the
9840    comparison code that will be tested.
9841
9842    The result is a possibly different comparison code to use.  *POP0 and
9843    *POP1 may be updated.
9844
9845    It is possible that we might detect that a comparison is either always
9846    true or always false.  However, we do not perform general constant
9847    folding in combine, so this knowledge isn't useful.  Such tautologies
9848    should have been detected earlier.  Hence we ignore all such cases.  */
9849
9850 static enum rtx_code
9851 simplify_comparison (code, pop0, pop1)
9852      enum rtx_code code;
9853      rtx *pop0;
9854      rtx *pop1;
9855 {
9856   rtx op0 = *pop0;
9857   rtx op1 = *pop1;
9858   rtx tem, tem1;
9859   int i;
9860   enum machine_mode mode, tmode;
9861
9862   /* Try a few ways of applying the same transformation to both operands.  */
9863   while (1)
9864     {
9865 #ifndef WORD_REGISTER_OPERATIONS
9866       /* The test below this one won't handle SIGN_EXTENDs on these machines,
9867          so check specially.  */
9868       if (code != GTU && code != GEU && code != LTU && code != LEU
9869           && GET_CODE (op0) == ASHIFTRT && GET_CODE (op1) == ASHIFTRT
9870           && GET_CODE (XEXP (op0, 0)) == ASHIFT
9871           && GET_CODE (XEXP (op1, 0)) == ASHIFT
9872           && GET_CODE (XEXP (XEXP (op0, 0), 0)) == SUBREG
9873           && GET_CODE (XEXP (XEXP (op1, 0), 0)) == SUBREG
9874           && (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0)))
9875               == GET_MODE (SUBREG_REG (XEXP (XEXP (op1, 0), 0))))
9876           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9877           && GET_CODE (XEXP (op1, 1)) == CONST_INT
9878           && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
9879           && GET_CODE (XEXP (XEXP (op1, 0), 1)) == CONST_INT
9880           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (op1, 1))
9881           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op0, 0), 1))
9882           && INTVAL (XEXP (op0, 1)) == INTVAL (XEXP (XEXP (op1, 0), 1))
9883           && (INTVAL (XEXP (op0, 1))
9884               == (GET_MODE_BITSIZE (GET_MODE (op0))
9885                   - (GET_MODE_BITSIZE
9886                      (GET_MODE (SUBREG_REG (XEXP (XEXP (op0, 0), 0))))))))
9887         {
9888           op0 = SUBREG_REG (XEXP (XEXP (op0, 0), 0));
9889           op1 = SUBREG_REG (XEXP (XEXP (op1, 0), 0));
9890         }
9891 #endif
9892
9893       /* If both operands are the same constant shift, see if we can ignore the
9894          shift.  We can if the shift is a rotate or if the bits shifted out of
9895          this shift are known to be zero for both inputs and if the type of
9896          comparison is compatible with the shift.  */
9897       if (GET_CODE (op0) == GET_CODE (op1)
9898           && GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
9899           && ((GET_CODE (op0) == ROTATE && (code == NE || code == EQ))
9900               || ((GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFT)
9901                   && (code != GT && code != LT && code != GE && code != LE))
9902               || (GET_CODE (op0) == ASHIFTRT
9903                   && (code != GTU && code != LTU
9904                       && code != GEU && code != LEU)))
9905           && GET_CODE (XEXP (op0, 1)) == CONST_INT
9906           && INTVAL (XEXP (op0, 1)) >= 0
9907           && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
9908           && XEXP (op0, 1) == XEXP (op1, 1))
9909         {
9910           enum machine_mode mode = GET_MODE (op0);
9911           unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
9912           int shift_count = INTVAL (XEXP (op0, 1));
9913
9914           if (GET_CODE (op0) == LSHIFTRT || GET_CODE (op0) == ASHIFTRT)
9915             mask &= (mask >> shift_count) << shift_count;
9916           else if (GET_CODE (op0) == ASHIFT)
9917             mask = (mask & (mask << shift_count)) >> shift_count;
9918
9919           if ((nonzero_bits (XEXP (op0, 0), mode) & ~mask) == 0
9920               && (nonzero_bits (XEXP (op1, 0), mode) & ~mask) == 0)
9921             op0 = XEXP (op0, 0), op1 = XEXP (op1, 0);
9922           else
9923             break;
9924         }
9925
9926       /* If both operands are AND's of a paradoxical SUBREG by constant, the
9927          SUBREGs are of the same mode, and, in both cases, the AND would
9928          be redundant if the comparison was done in the narrower mode,
9929          do the comparison in the narrower mode (e.g., we are AND'ing with 1
9930          and the operand's possibly nonzero bits are 0xffffff01; in that case
9931          if we only care about QImode, we don't need the AND).  This case
9932          occurs if the output mode of an scc insn is not SImode and
9933          STORE_FLAG_VALUE == 1 (e.g., the 386).
9934
9935          Similarly, check for a case where the AND's are ZERO_EXTEND
9936          operations from some narrower mode even though a SUBREG is not
9937          present.  */
9938
9939       else if (GET_CODE (op0) == AND && GET_CODE (op1) == AND
9940                && GET_CODE (XEXP (op0, 1)) == CONST_INT
9941                && GET_CODE (XEXP (op1, 1)) == CONST_INT)
9942         {
9943           rtx inner_op0 = XEXP (op0, 0);
9944           rtx inner_op1 = XEXP (op1, 0);
9945           HOST_WIDE_INT c0 = INTVAL (XEXP (op0, 1));
9946           HOST_WIDE_INT c1 = INTVAL (XEXP (op1, 1));
9947           int changed = 0;
9948
9949           if (GET_CODE (inner_op0) == SUBREG && GET_CODE (inner_op1) == SUBREG
9950               && (GET_MODE_SIZE (GET_MODE (inner_op0))
9951                   > GET_MODE_SIZE (GET_MODE (SUBREG_REG (inner_op0))))
9952               && (GET_MODE (SUBREG_REG (inner_op0))
9953                   == GET_MODE (SUBREG_REG (inner_op1)))
9954               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (inner_op0)))
9955                   <= HOST_BITS_PER_WIDE_INT)
9956               && (0 == ((~c0) & nonzero_bits (SUBREG_REG (inner_op0),
9957                                              GET_MODE (SUBREG_REG (inner_op0)))))
9958               && (0 == ((~c1) & nonzero_bits (SUBREG_REG (inner_op1),
9959                                              GET_MODE (SUBREG_REG (inner_op1))))))
9960             {
9961               op0 = SUBREG_REG (inner_op0);
9962               op1 = SUBREG_REG (inner_op1);
9963
9964               /* The resulting comparison is always unsigned since we masked
9965                  off the original sign bit.  */
9966               code = unsigned_condition (code);
9967
9968               changed = 1;
9969             }
9970
9971           else if (c0 == c1)
9972             for (tmode = GET_CLASS_NARROWEST_MODE
9973                  (GET_MODE_CLASS (GET_MODE (op0)));
9974                  tmode != GET_MODE (op0); tmode = GET_MODE_WIDER_MODE (tmode))
9975               if ((unsigned HOST_WIDE_INT) c0 == GET_MODE_MASK (tmode))
9976                 {
9977                   op0 = gen_lowpart_for_combine (tmode, inner_op0);
9978                   op1 = gen_lowpart_for_combine (tmode, inner_op1);
9979                   code = unsigned_condition (code);
9980                   changed = 1;
9981                   break;
9982                 }
9983
9984           if (! changed)
9985             break;
9986         }
9987
9988       /* If both operands are NOT, we can strip off the outer operation
9989          and adjust the comparison code for swapped operands; similarly for
9990          NEG, except that this must be an equality comparison.  */
9991       else if ((GET_CODE (op0) == NOT && GET_CODE (op1) == NOT)
9992                || (GET_CODE (op0) == NEG && GET_CODE (op1) == NEG
9993                    && (code == EQ || code == NE)))
9994         op0 = XEXP (op0, 0), op1 = XEXP (op1, 0), code = swap_condition (code);
9995
9996       else
9997         break;
9998     }
9999
10000   /* If the first operand is a constant, swap the operands and adjust the
10001      comparison code appropriately, but don't do this if the second operand
10002      is already a constant integer.  */
10003   if (swap_commutative_operands_p (op0, op1))
10004     {
10005       tem = op0, op0 = op1, op1 = tem;
10006       code = swap_condition (code);
10007     }
10008
10009   /* We now enter a loop during which we will try to simplify the comparison.
10010      For the most part, we only are concerned with comparisons with zero,
10011      but some things may really be comparisons with zero but not start
10012      out looking that way.  */
10013
10014   while (GET_CODE (op1) == CONST_INT)
10015     {
10016       enum machine_mode mode = GET_MODE (op0);
10017       unsigned int mode_width = GET_MODE_BITSIZE (mode);
10018       unsigned HOST_WIDE_INT mask = GET_MODE_MASK (mode);
10019       int equality_comparison_p;
10020       int sign_bit_comparison_p;
10021       int unsigned_comparison_p;
10022       HOST_WIDE_INT const_op;
10023
10024       /* We only want to handle integral modes.  This catches VOIDmode,
10025          CCmode, and the floating-point modes.  An exception is that we
10026          can handle VOIDmode if OP0 is a COMPARE or a comparison
10027          operation.  */
10028
10029       if (GET_MODE_CLASS (mode) != MODE_INT
10030           && ! (mode == VOIDmode
10031                 && (GET_CODE (op0) == COMPARE
10032                     || GET_RTX_CLASS (GET_CODE (op0)) == '<')))
10033         break;
10034
10035       /* Get the constant we are comparing against and turn off all bits
10036          not on in our mode.  */
10037       const_op = trunc_int_for_mode (INTVAL (op1), mode);
10038       op1 = GEN_INT (const_op);
10039
10040       /* If we are comparing against a constant power of two and the value
10041          being compared can only have that single bit nonzero (e.g., it was
10042          `and'ed with that bit), we can replace this with a comparison
10043          with zero.  */
10044       if (const_op
10045           && (code == EQ || code == NE || code == GE || code == GEU
10046               || code == LT || code == LTU)
10047           && mode_width <= HOST_BITS_PER_WIDE_INT
10048           && exact_log2 (const_op) >= 0
10049           && nonzero_bits (op0, mode) == (unsigned HOST_WIDE_INT) const_op)
10050         {
10051           code = (code == EQ || code == GE || code == GEU ? NE : EQ);
10052           op1 = const0_rtx, const_op = 0;
10053         }
10054
10055       /* Similarly, if we are comparing a value known to be either -1 or
10056          0 with -1, change it to the opposite comparison against zero.  */
10057
10058       if (const_op == -1
10059           && (code == EQ || code == NE || code == GT || code == LE
10060               || code == GEU || code == LTU)
10061           && num_sign_bit_copies (op0, mode) == mode_width)
10062         {
10063           code = (code == EQ || code == LE || code == GEU ? NE : EQ);
10064           op1 = const0_rtx, const_op = 0;
10065         }
10066
10067       /* Do some canonicalizations based on the comparison code.  We prefer
10068          comparisons against zero and then prefer equality comparisons.
10069          If we can reduce the size of a constant, we will do that too.  */
10070
10071       switch (code)
10072         {
10073         case LT:
10074           /* < C is equivalent to <= (C - 1) */
10075           if (const_op > 0)
10076             {
10077               const_op -= 1;
10078               op1 = GEN_INT (const_op);
10079               code = LE;
10080               /* ... fall through to LE case below.  */
10081             }
10082           else
10083             break;
10084
10085         case LE:
10086           /* <= C is equivalent to < (C + 1); we do this for C < 0  */
10087           if (const_op < 0)
10088             {
10089               const_op += 1;
10090               op1 = GEN_INT (const_op);
10091               code = LT;
10092             }
10093
10094           /* If we are doing a <= 0 comparison on a value known to have
10095              a zero sign bit, we can replace this with == 0.  */
10096           else if (const_op == 0
10097                    && mode_width <= HOST_BITS_PER_WIDE_INT
10098                    && (nonzero_bits (op0, mode)
10099                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10100             code = EQ;
10101           break;
10102
10103         case GE:
10104           /* >= C is equivalent to > (C - 1).  */
10105           if (const_op > 0)
10106             {
10107               const_op -= 1;
10108               op1 = GEN_INT (const_op);
10109               code = GT;
10110               /* ... fall through to GT below.  */
10111             }
10112           else
10113             break;
10114
10115         case GT:
10116           /* > C is equivalent to >= (C + 1); we do this for C < 0.  */
10117           if (const_op < 0)
10118             {
10119               const_op += 1;
10120               op1 = GEN_INT (const_op);
10121               code = GE;
10122             }
10123
10124           /* If we are doing a > 0 comparison on a value known to have
10125              a zero sign bit, we can replace this with != 0.  */
10126           else if (const_op == 0
10127                    && mode_width <= HOST_BITS_PER_WIDE_INT
10128                    && (nonzero_bits (op0, mode)
10129                        & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)
10130             code = NE;
10131           break;
10132
10133         case LTU:
10134           /* < C is equivalent to <= (C - 1).  */
10135           if (const_op > 0)
10136             {
10137               const_op -= 1;
10138               op1 = GEN_INT (const_op);
10139               code = LEU;
10140               /* ... fall through ...  */
10141             }
10142
10143           /* (unsigned) < 0x80000000 is equivalent to >= 0.  */
10144           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10145                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10146             {
10147               const_op = 0, op1 = const0_rtx;
10148               code = GE;
10149               break;
10150             }
10151           else
10152             break;
10153
10154         case LEU:
10155           /* unsigned <= 0 is equivalent to == 0 */
10156           if (const_op == 0)
10157             code = EQ;
10158
10159           /* (unsigned) <= 0x7fffffff is equivalent to >= 0.  */
10160           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10161                    && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10162             {
10163               const_op = 0, op1 = const0_rtx;
10164               code = GE;
10165             }
10166           break;
10167
10168         case GEU:
10169           /* >= C is equivalent to < (C - 1).  */
10170           if (const_op > 1)
10171             {
10172               const_op -= 1;
10173               op1 = GEN_INT (const_op);
10174               code = GTU;
10175               /* ... fall through ...  */
10176             }
10177
10178           /* (unsigned) >= 0x80000000 is equivalent to < 0.  */
10179           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10180                    && (const_op == (HOST_WIDE_INT) 1 << (mode_width - 1)))
10181             {
10182               const_op = 0, op1 = const0_rtx;
10183               code = LT;
10184               break;
10185             }
10186           else
10187             break;
10188
10189         case GTU:
10190           /* unsigned > 0 is equivalent to != 0 */
10191           if (const_op == 0)
10192             code = NE;
10193
10194           /* (unsigned) > 0x7fffffff is equivalent to < 0.  */
10195           else if ((mode_width <= HOST_BITS_PER_WIDE_INT)
10196                     && (const_op == ((HOST_WIDE_INT) 1 << (mode_width - 1)) - 1))
10197             {
10198               const_op = 0, op1 = const0_rtx;
10199               code = LT;
10200             }
10201           break;
10202
10203         default:
10204           break;
10205         }
10206
10207       /* Compute some predicates to simplify code below.  */
10208
10209       equality_comparison_p = (code == EQ || code == NE);
10210       sign_bit_comparison_p = ((code == LT || code == GE) && const_op == 0);
10211       unsigned_comparison_p = (code == LTU || code == LEU || code == GTU
10212                                || code == GEU);
10213
10214       /* If this is a sign bit comparison and we can do arithmetic in
10215          MODE, say that we will only be needing the sign bit of OP0.  */
10216       if (sign_bit_comparison_p
10217           && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10218         op0 = force_to_mode (op0, mode,
10219                              ((HOST_WIDE_INT) 1
10220                               << (GET_MODE_BITSIZE (mode) - 1)),
10221                              NULL_RTX, 0);
10222
10223       /* Now try cases based on the opcode of OP0.  If none of the cases
10224          does a "continue", we exit this loop immediately after the
10225          switch.  */
10226
10227       switch (GET_CODE (op0))
10228         {
10229         case ZERO_EXTRACT:
10230           /* If we are extracting a single bit from a variable position in
10231              a constant that has only a single bit set and are comparing it
10232              with zero, we can convert this into an equality comparison
10233              between the position and the location of the single bit.  */
10234
10235           if (GET_CODE (XEXP (op0, 0)) == CONST_INT
10236               && XEXP (op0, 1) == const1_rtx
10237               && equality_comparison_p && const_op == 0
10238               && (i = exact_log2 (INTVAL (XEXP (op0, 0)))) >= 0)
10239             {
10240               if (BITS_BIG_ENDIAN)
10241                 {
10242 #ifdef HAVE_extzv
10243                   mode = insn_data[(int) CODE_FOR_extzv].operand[1].mode;
10244                   if (mode == VOIDmode)
10245                     mode = word_mode;
10246                   i = (GET_MODE_BITSIZE (mode) - 1 - i);
10247 #else
10248                   i = BITS_PER_WORD - 1 - i;
10249 #endif
10250                 }
10251
10252               op0 = XEXP (op0, 2);
10253               op1 = GEN_INT (i);
10254               const_op = i;
10255
10256               /* Result is nonzero iff shift count is equal to I.  */
10257               code = reverse_condition (code);
10258               continue;
10259             }
10260
10261           /* ... fall through ...  */
10262
10263         case SIGN_EXTRACT:
10264           tem = expand_compound_operation (op0);
10265           if (tem != op0)
10266             {
10267               op0 = tem;
10268               continue;
10269             }
10270           break;
10271
10272         case NOT:
10273           /* If testing for equality, we can take the NOT of the constant.  */
10274           if (equality_comparison_p
10275               && (tem = simplify_unary_operation (NOT, mode, op1, mode)) != 0)
10276             {
10277               op0 = XEXP (op0, 0);
10278               op1 = tem;
10279               continue;
10280             }
10281
10282           /* If just looking at the sign bit, reverse the sense of the
10283              comparison.  */
10284           if (sign_bit_comparison_p)
10285             {
10286               op0 = XEXP (op0, 0);
10287               code = (code == GE ? LT : GE);
10288               continue;
10289             }
10290           break;
10291
10292         case NEG:
10293           /* If testing for equality, we can take the NEG of the constant.  */
10294           if (equality_comparison_p
10295               && (tem = simplify_unary_operation (NEG, mode, op1, mode)) != 0)
10296             {
10297               op0 = XEXP (op0, 0);
10298               op1 = tem;
10299               continue;
10300             }
10301
10302           /* The remaining cases only apply to comparisons with zero.  */
10303           if (const_op != 0)
10304             break;
10305
10306           /* When X is ABS or is known positive,
10307              (neg X) is < 0 if and only if X != 0.  */
10308
10309           if (sign_bit_comparison_p
10310               && (GET_CODE (XEXP (op0, 0)) == ABS
10311                   || (mode_width <= HOST_BITS_PER_WIDE_INT
10312                       && (nonzero_bits (XEXP (op0, 0), mode)
10313                           & ((HOST_WIDE_INT) 1 << (mode_width - 1))) == 0)))
10314             {
10315               op0 = XEXP (op0, 0);
10316               code = (code == LT ? NE : EQ);
10317               continue;
10318             }
10319
10320           /* If we have NEG of something whose two high-order bits are the
10321              same, we know that "(-a) < 0" is equivalent to "a > 0".  */
10322           if (num_sign_bit_copies (op0, mode) >= 2)
10323             {
10324               op0 = XEXP (op0, 0);
10325               code = swap_condition (code);
10326               continue;
10327             }
10328           break;
10329
10330         case ROTATE:
10331           /* If we are testing equality and our count is a constant, we
10332              can perform the inverse operation on our RHS.  */
10333           if (equality_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10334               && (tem = simplify_binary_operation (ROTATERT, mode,
10335                                                    op1, XEXP (op0, 1))) != 0)
10336             {
10337               op0 = XEXP (op0, 0);
10338               op1 = tem;
10339               continue;
10340             }
10341
10342           /* If we are doing a < 0 or >= 0 comparison, it means we are testing
10343              a particular bit.  Convert it to an AND of a constant of that
10344              bit.  This will be converted into a ZERO_EXTRACT.  */
10345           if (const_op == 0 && sign_bit_comparison_p
10346               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10347               && mode_width <= HOST_BITS_PER_WIDE_INT)
10348             {
10349               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10350                                             ((HOST_WIDE_INT) 1
10351                                              << (mode_width - 1
10352                                                  - INTVAL (XEXP (op0, 1)))));
10353               code = (code == LT ? NE : EQ);
10354               continue;
10355             }
10356
10357           /* Fall through.  */
10358
10359         case ABS:
10360           /* ABS is ignorable inside an equality comparison with zero.  */
10361           if (const_op == 0 && equality_comparison_p)
10362             {
10363               op0 = XEXP (op0, 0);
10364               continue;
10365             }
10366           break;
10367
10368         case SIGN_EXTEND:
10369           /* Can simplify (compare (zero/sign_extend FOO) CONST)
10370              to (compare FOO CONST) if CONST fits in FOO's mode and we
10371              are either testing inequality or have an unsigned comparison
10372              with ZERO_EXTEND or a signed comparison with SIGN_EXTEND.  */
10373           if (! unsigned_comparison_p
10374               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10375                   <= HOST_BITS_PER_WIDE_INT)
10376               && ((unsigned HOST_WIDE_INT) const_op
10377                   < (((unsigned HOST_WIDE_INT) 1
10378                       << (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0))) - 1)))))
10379             {
10380               op0 = XEXP (op0, 0);
10381               continue;
10382             }
10383           break;
10384
10385         case SUBREG:
10386           /* Check for the case where we are comparing A - C1 with C2,
10387              both constants are smaller than 1/2 the maximum positive
10388              value in MODE, and the comparison is equality or unsigned.
10389              In that case, if A is either zero-extended to MODE or has
10390              sufficient sign bits so that the high-order bit in MODE
10391              is a copy of the sign in the inner mode, we can prove that it is
10392              safe to do the operation in the wider mode.  This simplifies
10393              many range checks.  */
10394
10395           if (mode_width <= HOST_BITS_PER_WIDE_INT
10396               && subreg_lowpart_p (op0)
10397               && GET_CODE (SUBREG_REG (op0)) == PLUS
10398               && GET_CODE (XEXP (SUBREG_REG (op0), 1)) == CONST_INT
10399               && INTVAL (XEXP (SUBREG_REG (op0), 1)) < 0
10400               && (-INTVAL (XEXP (SUBREG_REG (op0), 1))
10401                   < (HOST_WIDE_INT) (GET_MODE_MASK (mode) / 2))
10402               && (unsigned HOST_WIDE_INT) const_op < GET_MODE_MASK (mode) / 2
10403               && (0 == (nonzero_bits (XEXP (SUBREG_REG (op0), 0),
10404                                       GET_MODE (SUBREG_REG (op0)))
10405                         & ~GET_MODE_MASK (mode))
10406                   || (num_sign_bit_copies (XEXP (SUBREG_REG (op0), 0),
10407                                            GET_MODE (SUBREG_REG (op0)))
10408                       > (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10409                          - GET_MODE_BITSIZE (mode)))))
10410             {
10411               op0 = SUBREG_REG (op0);
10412               continue;
10413             }
10414
10415           /* If the inner mode is narrower and we are extracting the low part,
10416              we can treat the SUBREG as if it were a ZERO_EXTEND.  */
10417           if (subreg_lowpart_p (op0)
10418               && GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0))) < mode_width)
10419             /* Fall through */ ;
10420           else
10421             break;
10422
10423           /* ... fall through ...  */
10424
10425         case ZERO_EXTEND:
10426           if ((unsigned_comparison_p || equality_comparison_p)
10427               && (GET_MODE_BITSIZE (GET_MODE (XEXP (op0, 0)))
10428                   <= HOST_BITS_PER_WIDE_INT)
10429               && ((unsigned HOST_WIDE_INT) const_op
10430                   < GET_MODE_MASK (GET_MODE (XEXP (op0, 0)))))
10431             {
10432               op0 = XEXP (op0, 0);
10433               continue;
10434             }
10435           break;
10436
10437         case PLUS:
10438           /* (eq (plus X A) B) -> (eq X (minus B A)).  We can only do
10439              this for equality comparisons due to pathological cases involving
10440              overflows.  */
10441           if (equality_comparison_p
10442               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10443                                                         op1, XEXP (op0, 1))))
10444             {
10445               op0 = XEXP (op0, 0);
10446               op1 = tem;
10447               continue;
10448             }
10449
10450           /* (plus (abs X) (const_int -1)) is < 0 if and only if X == 0.  */
10451           if (const_op == 0 && XEXP (op0, 1) == constm1_rtx
10452               && GET_CODE (XEXP (op0, 0)) == ABS && sign_bit_comparison_p)
10453             {
10454               op0 = XEXP (XEXP (op0, 0), 0);
10455               code = (code == LT ? EQ : NE);
10456               continue;
10457             }
10458           break;
10459
10460         case MINUS:
10461           /* We used to optimize signed comparisons against zero, but that
10462              was incorrect.  Unsigned comparisons against zero (GTU, LEU)
10463              arrive here as equality comparisons, or (GEU, LTU) are
10464              optimized away.  No need to special-case them.  */
10465
10466           /* (eq (minus A B) C) -> (eq A (plus B C)) or
10467              (eq B (minus A C)), whichever simplifies.  We can only do
10468              this for equality comparisons due to pathological cases involving
10469              overflows.  */
10470           if (equality_comparison_p
10471               && 0 != (tem = simplify_binary_operation (PLUS, mode,
10472                                                         XEXP (op0, 1), op1)))
10473             {
10474               op0 = XEXP (op0, 0);
10475               op1 = tem;
10476               continue;
10477             }
10478
10479           if (equality_comparison_p
10480               && 0 != (tem = simplify_binary_operation (MINUS, mode,
10481                                                         XEXP (op0, 0), op1)))
10482             {
10483               op0 = XEXP (op0, 1);
10484               op1 = tem;
10485               continue;
10486             }
10487
10488           /* The sign bit of (minus (ashiftrt X C) X), where C is the number
10489              of bits in X minus 1, is one iff X > 0.  */
10490           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == ASHIFTRT
10491               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10492               && INTVAL (XEXP (XEXP (op0, 0), 1)) == mode_width - 1
10493               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10494             {
10495               op0 = XEXP (op0, 1);
10496               code = (code == GE ? LE : GT);
10497               continue;
10498             }
10499           break;
10500
10501         case XOR:
10502           /* (eq (xor A B) C) -> (eq A (xor B C)).  This is a simplification
10503              if C is zero or B is a constant.  */
10504           if (equality_comparison_p
10505               && 0 != (tem = simplify_binary_operation (XOR, mode,
10506                                                         XEXP (op0, 1), op1)))
10507             {
10508               op0 = XEXP (op0, 0);
10509               op1 = tem;
10510               continue;
10511             }
10512           break;
10513
10514         case EQ:  case NE:
10515         case UNEQ:  case LTGT:
10516         case LT:  case LTU:  case UNLT:  case LE:  case LEU:  case UNLE:
10517         case GT:  case GTU:  case UNGT:  case GE:  case GEU:  case UNGE:
10518         case UNORDERED: case ORDERED:
10519           /* We can't do anything if OP0 is a condition code value, rather
10520              than an actual data value.  */
10521           if (const_op != 0
10522 #ifdef HAVE_cc0
10523               || XEXP (op0, 0) == cc0_rtx
10524 #endif
10525               || GET_MODE_CLASS (GET_MODE (XEXP (op0, 0))) == MODE_CC)
10526             break;
10527
10528           /* Get the two operands being compared.  */
10529           if (GET_CODE (XEXP (op0, 0)) == COMPARE)
10530             tem = XEXP (XEXP (op0, 0), 0), tem1 = XEXP (XEXP (op0, 0), 1);
10531           else
10532             tem = XEXP (op0, 0), tem1 = XEXP (op0, 1);
10533
10534           /* Check for the cases where we simply want the result of the
10535              earlier test or the opposite of that result.  */
10536           if (code == NE || code == EQ
10537               || (GET_MODE_BITSIZE (GET_MODE (op0)) <= HOST_BITS_PER_WIDE_INT
10538                   && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10539                   && (STORE_FLAG_VALUE
10540                       & (((HOST_WIDE_INT) 1
10541                           << (GET_MODE_BITSIZE (GET_MODE (op0)) - 1))))
10542                   && (code == LT || code == GE)))
10543             {
10544               enum rtx_code new_code;
10545               if (code == LT || code == NE)
10546                 new_code = GET_CODE (op0);
10547               else
10548                 new_code = combine_reversed_comparison_code (op0);
10549
10550               if (new_code != UNKNOWN)
10551                 {
10552                   code = new_code;
10553                   op0 = tem;
10554                   op1 = tem1;
10555                   continue;
10556                 }
10557             }
10558           break;
10559
10560         case IOR:
10561           /* The sign bit of (ior (plus X (const_int -1)) X) is non-zero
10562              iff X <= 0.  */
10563           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 0)) == PLUS
10564               && XEXP (XEXP (op0, 0), 1) == constm1_rtx
10565               && rtx_equal_p (XEXP (XEXP (op0, 0), 0), XEXP (op0, 1)))
10566             {
10567               op0 = XEXP (op0, 1);
10568               code = (code == GE ? GT : LE);
10569               continue;
10570             }
10571           break;
10572
10573         case AND:
10574           /* Convert (and (xshift 1 X) Y) to (and (lshiftrt Y X) 1).  This
10575              will be converted to a ZERO_EXTRACT later.  */
10576           if (const_op == 0 && equality_comparison_p
10577               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10578               && XEXP (XEXP (op0, 0), 0) == const1_rtx)
10579             {
10580               op0 = simplify_and_const_int
10581                 (op0, mode, gen_rtx_LSHIFTRT (mode,
10582                                               XEXP (op0, 1),
10583                                               XEXP (XEXP (op0, 0), 1)),
10584                  (HOST_WIDE_INT) 1);
10585               continue;
10586             }
10587
10588           /* If we are comparing (and (lshiftrt X C1) C2) for equality with
10589              zero and X is a comparison and C1 and C2 describe only bits set
10590              in STORE_FLAG_VALUE, we can compare with X.  */
10591           if (const_op == 0 && equality_comparison_p
10592               && mode_width <= HOST_BITS_PER_WIDE_INT
10593               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10594               && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
10595               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10596               && INTVAL (XEXP (XEXP (op0, 0), 1)) >= 0
10597               && INTVAL (XEXP (XEXP (op0, 0), 1)) < HOST_BITS_PER_WIDE_INT)
10598             {
10599               mask = ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10600                       << INTVAL (XEXP (XEXP (op0, 0), 1)));
10601               if ((~STORE_FLAG_VALUE & mask) == 0
10602                   && (GET_RTX_CLASS (GET_CODE (XEXP (XEXP (op0, 0), 0))) == '<'
10603                       || ((tem = get_last_value (XEXP (XEXP (op0, 0), 0))) != 0
10604                           && GET_RTX_CLASS (GET_CODE (tem)) == '<')))
10605                 {
10606                   op0 = XEXP (XEXP (op0, 0), 0);
10607                   continue;
10608                 }
10609             }
10610
10611           /* If we are doing an equality comparison of an AND of a bit equal
10612              to the sign bit, replace this with a LT or GE comparison of
10613              the underlying value.  */
10614           if (equality_comparison_p
10615               && const_op == 0
10616               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10617               && mode_width <= HOST_BITS_PER_WIDE_INT
10618               && ((INTVAL (XEXP (op0, 1)) & GET_MODE_MASK (mode))
10619                   == (unsigned HOST_WIDE_INT) 1 << (mode_width - 1)))
10620             {
10621               op0 = XEXP (op0, 0);
10622               code = (code == EQ ? GE : LT);
10623               continue;
10624             }
10625
10626           /* If this AND operation is really a ZERO_EXTEND from a narrower
10627              mode, the constant fits within that mode, and this is either an
10628              equality or unsigned comparison, try to do this comparison in
10629              the narrower mode.  */
10630           if ((equality_comparison_p || unsigned_comparison_p)
10631               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10632               && (i = exact_log2 ((INTVAL (XEXP (op0, 1))
10633                                    & GET_MODE_MASK (mode))
10634                                   + 1)) >= 0
10635               && const_op >> i == 0
10636               && (tmode = mode_for_size (i, MODE_INT, 1)) != BLKmode)
10637             {
10638               op0 = gen_lowpart_for_combine (tmode, XEXP (op0, 0));
10639               continue;
10640             }
10641
10642           /* If this is (and:M1 (subreg:M2 X 0) (const_int C1)) where C1 fits
10643              in both M1 and M2 and the SUBREG is either paradoxical or
10644              represents the low part, permute the SUBREG and the AND and
10645              try again.  */
10646           if (GET_CODE (XEXP (op0, 0)) == SUBREG
10647               && (0
10648 #ifdef WORD_REGISTER_OPERATIONS
10649                   || ((mode_width
10650                        > (GET_MODE_BITSIZE
10651                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10652                       && mode_width <= BITS_PER_WORD)
10653 #endif
10654                   || ((mode_width
10655                        <= (GET_MODE_BITSIZE
10656                            (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10657                       && subreg_lowpart_p (XEXP (op0, 0))))
10658 #ifndef WORD_REGISTER_OPERATIONS
10659               /* It is unsafe to commute the AND into the SUBREG if the SUBREG
10660                  is paradoxical and WORD_REGISTER_OPERATIONS is not defined.
10661                  As originally written the upper bits have a defined value
10662                  due to the AND operation.  However, if we commute the AND
10663                  inside the SUBREG then they no longer have defined values
10664                  and the meaning of the code has been changed.  */
10665               && (GET_MODE_SIZE (GET_MODE (XEXP (op0, 0)))
10666                   <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0)))))
10667 #endif
10668               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10669               && mode_width <= HOST_BITS_PER_WIDE_INT
10670               && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10671                   <= HOST_BITS_PER_WIDE_INT)
10672               && (INTVAL (XEXP (op0, 1)) & ~mask) == 0
10673               && 0 == (~GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))
10674                        & INTVAL (XEXP (op0, 1)))
10675               && (unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1)) != mask
10676               && ((unsigned HOST_WIDE_INT) INTVAL (XEXP (op0, 1))
10677                   != GET_MODE_MASK (GET_MODE (SUBREG_REG (XEXP (op0, 0))))))
10678
10679             {
10680               op0
10681                 = gen_lowpart_for_combine
10682                   (mode,
10683                    gen_binary (AND, GET_MODE (SUBREG_REG (XEXP (op0, 0))),
10684                                SUBREG_REG (XEXP (op0, 0)), XEXP (op0, 1)));
10685               continue;
10686             }
10687
10688           /* Convert (ne (and (lshiftrt (not X)) 1) 0) to
10689              (eq (and (lshiftrt X) 1) 0).  */
10690           if (const_op == 0 && equality_comparison_p
10691               && XEXP (op0, 1) == const1_rtx
10692               && GET_CODE (XEXP (op0, 0)) == LSHIFTRT
10693               && GET_CODE (XEXP (XEXP (op0, 0), 0)) == NOT)
10694             {
10695               op0 = simplify_and_const_int
10696                 (op0, mode,
10697                  gen_rtx_LSHIFTRT (mode, XEXP (XEXP (XEXP (op0, 0), 0), 0),
10698                                    XEXP (XEXP (op0, 0), 1)),
10699                  (HOST_WIDE_INT) 1);
10700               code = (code == NE ? EQ : NE);
10701               continue;
10702             }
10703           break;
10704
10705         case ASHIFT:
10706           /* If we have (compare (ashift FOO N) (const_int C)) and
10707              the high order N bits of FOO (N+1 if an inequality comparison)
10708              are known to be zero, we can do this by comparing FOO with C
10709              shifted right N bits so long as the low-order N bits of C are
10710              zero.  */
10711           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10712               && INTVAL (XEXP (op0, 1)) >= 0
10713               && ((INTVAL (XEXP (op0, 1)) + ! equality_comparison_p)
10714                   < HOST_BITS_PER_WIDE_INT)
10715               && ((const_op
10716                    & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0)
10717               && mode_width <= HOST_BITS_PER_WIDE_INT
10718               && (nonzero_bits (XEXP (op0, 0), mode)
10719                   & ~(mask >> (INTVAL (XEXP (op0, 1))
10720                                + ! equality_comparison_p))) == 0)
10721             {
10722               /* We must perform a logical shift, not an arithmetic one,
10723                  as we want the top N bits of C to be zero.  */
10724               unsigned HOST_WIDE_INT temp = const_op & GET_MODE_MASK (mode);
10725
10726               temp >>= INTVAL (XEXP (op0, 1));
10727               op1 = GEN_INT (trunc_int_for_mode (temp, mode));
10728               op0 = XEXP (op0, 0);
10729               continue;
10730             }
10731
10732           /* If we are doing a sign bit comparison, it means we are testing
10733              a particular bit.  Convert it to the appropriate AND.  */
10734           if (sign_bit_comparison_p && GET_CODE (XEXP (op0, 1)) == CONST_INT
10735               && mode_width <= HOST_BITS_PER_WIDE_INT)
10736             {
10737               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10738                                             ((HOST_WIDE_INT) 1
10739                                              << (mode_width - 1
10740                                                  - INTVAL (XEXP (op0, 1)))));
10741               code = (code == LT ? NE : EQ);
10742               continue;
10743             }
10744
10745           /* If this an equality comparison with zero and we are shifting
10746              the low bit to the sign bit, we can convert this to an AND of the
10747              low-order bit.  */
10748           if (const_op == 0 && equality_comparison_p
10749               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10750               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10751             {
10752               op0 = simplify_and_const_int (NULL_RTX, mode, XEXP (op0, 0),
10753                                             (HOST_WIDE_INT) 1);
10754               continue;
10755             }
10756           break;
10757
10758         case ASHIFTRT:
10759           /* If this is an equality comparison with zero, we can do this
10760              as a logical shift, which might be much simpler.  */
10761           if (equality_comparison_p && const_op == 0
10762               && GET_CODE (XEXP (op0, 1)) == CONST_INT)
10763             {
10764               op0 = simplify_shift_const (NULL_RTX, LSHIFTRT, mode,
10765                                           XEXP (op0, 0),
10766                                           INTVAL (XEXP (op0, 1)));
10767               continue;
10768             }
10769
10770           /* If OP0 is a sign extension and CODE is not an unsigned comparison,
10771              do the comparison in a narrower mode.  */
10772           if (! unsigned_comparison_p
10773               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10774               && GET_CODE (XEXP (op0, 0)) == ASHIFT
10775               && XEXP (op0, 1) == XEXP (XEXP (op0, 0), 1)
10776               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10777                                          MODE_INT, 1)) != BLKmode
10778               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10779                   || ((unsigned HOST_WIDE_INT) -const_op
10780                       <= GET_MODE_MASK (tmode))))
10781             {
10782               op0 = gen_lowpart_for_combine (tmode, XEXP (XEXP (op0, 0), 0));
10783               continue;
10784             }
10785
10786           /* Likewise if OP0 is a PLUS of a sign extension with a
10787              constant, which is usually represented with the PLUS
10788              between the shifts.  */
10789           if (! unsigned_comparison_p
10790               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10791               && GET_CODE (XEXP (op0, 0)) == PLUS
10792               && GET_CODE (XEXP (XEXP (op0, 0), 1)) == CONST_INT
10793               && GET_CODE (XEXP (XEXP (op0, 0), 0)) == ASHIFT
10794               && XEXP (op0, 1) == XEXP (XEXP (XEXP (op0, 0), 0), 1)
10795               && (tmode = mode_for_size (mode_width - INTVAL (XEXP (op0, 1)),
10796                                          MODE_INT, 1)) != BLKmode
10797               && ((unsigned HOST_WIDE_INT) const_op <= GET_MODE_MASK (tmode)
10798                   || ((unsigned HOST_WIDE_INT) -const_op
10799                       <= GET_MODE_MASK (tmode))))
10800             {
10801               rtx inner = XEXP (XEXP (XEXP (op0, 0), 0), 0);
10802               rtx add_const = XEXP (XEXP (op0, 0), 1);
10803               rtx new_const = gen_binary (ASHIFTRT, GET_MODE (op0), add_const,
10804                                           XEXP (op0, 1));
10805
10806               op0 = gen_binary (PLUS, tmode,
10807                                 gen_lowpart_for_combine (tmode, inner),
10808                                 new_const);
10809               continue;
10810             }
10811
10812           /* ... fall through ...  */
10813         case LSHIFTRT:
10814           /* If we have (compare (xshiftrt FOO N) (const_int C)) and
10815              the low order N bits of FOO are known to be zero, we can do this
10816              by comparing FOO with C shifted left N bits so long as no
10817              overflow occurs.  */
10818           if (GET_CODE (XEXP (op0, 1)) == CONST_INT
10819               && INTVAL (XEXP (op0, 1)) >= 0
10820               && INTVAL (XEXP (op0, 1)) < HOST_BITS_PER_WIDE_INT
10821               && mode_width <= HOST_BITS_PER_WIDE_INT
10822               && (nonzero_bits (XEXP (op0, 0), mode)
10823                   & (((HOST_WIDE_INT) 1 << INTVAL (XEXP (op0, 1))) - 1)) == 0
10824               && (const_op == 0
10825                   || (floor_log2 (const_op) + INTVAL (XEXP (op0, 1))
10826                       < mode_width)))
10827             {
10828               const_op <<= INTVAL (XEXP (op0, 1));
10829               op1 = GEN_INT (const_op);
10830               op0 = XEXP (op0, 0);
10831               continue;
10832             }
10833
10834           /* If we are using this shift to extract just the sign bit, we
10835              can replace this with an LT or GE comparison.  */
10836           if (const_op == 0
10837               && (equality_comparison_p || sign_bit_comparison_p)
10838               && GET_CODE (XEXP (op0, 1)) == CONST_INT
10839               && INTVAL (XEXP (op0, 1)) == mode_width - 1)
10840             {
10841               op0 = XEXP (op0, 0);
10842               code = (code == NE || code == GT ? LT : GE);
10843               continue;
10844             }
10845           break;
10846
10847         default:
10848           break;
10849         }
10850
10851       break;
10852     }
10853
10854   /* Now make any compound operations involved in this comparison.  Then,
10855      check for an outmost SUBREG on OP0 that is not doing anything or is
10856      paradoxical.  The latter case can only occur when it is known that the
10857      "extra" bits will be zero.  Therefore, it is safe to remove the SUBREG.
10858      We can never remove a SUBREG for a non-equality comparison because the
10859      sign bit is in a different place in the underlying object.  */
10860
10861   op0 = make_compound_operation (op0, op1 == const0_rtx ? COMPARE : SET);
10862   op1 = make_compound_operation (op1, SET);
10863
10864   if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10865       && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10866       && (code == NE || code == EQ)
10867       && ((GET_MODE_SIZE (GET_MODE (op0))
10868            > GET_MODE_SIZE (GET_MODE (SUBREG_REG (op0))))))
10869     {
10870       op0 = SUBREG_REG (op0);
10871       op1 = gen_lowpart_for_combine (GET_MODE (op0), op1);
10872     }
10873
10874   else if (GET_CODE (op0) == SUBREG && subreg_lowpart_p (op0)
10875            && GET_MODE_CLASS (GET_MODE (op0)) == MODE_INT
10876            && (code == NE || code == EQ)
10877            && (GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0)))
10878                <= HOST_BITS_PER_WIDE_INT)
10879            && (nonzero_bits (SUBREG_REG (op0), GET_MODE (SUBREG_REG (op0)))
10880                & ~GET_MODE_MASK (GET_MODE (op0))) == 0
10881            && (tem = gen_lowpart_for_combine (GET_MODE (SUBREG_REG (op0)),
10882                                               op1),
10883                (nonzero_bits (tem, GET_MODE (SUBREG_REG (op0)))
10884                 & ~GET_MODE_MASK (GET_MODE (op0))) == 0))
10885     op0 = SUBREG_REG (op0), op1 = tem;
10886
10887   /* We now do the opposite procedure: Some machines don't have compare
10888      insns in all modes.  If OP0's mode is an integer mode smaller than a
10889      word and we can't do a compare in that mode, see if there is a larger
10890      mode for which we can do the compare.  There are a number of cases in
10891      which we can use the wider mode.  */
10892
10893   mode = GET_MODE (op0);
10894   if (mode != VOIDmode && GET_MODE_CLASS (mode) == MODE_INT
10895       && GET_MODE_SIZE (mode) < UNITS_PER_WORD
10896       && cmp_optab->handlers[(int) mode].insn_code == CODE_FOR_nothing)
10897     for (tmode = GET_MODE_WIDER_MODE (mode);
10898          (tmode != VOIDmode
10899           && GET_MODE_BITSIZE (tmode) <= HOST_BITS_PER_WIDE_INT);
10900          tmode = GET_MODE_WIDER_MODE (tmode))
10901       if (cmp_optab->handlers[(int) tmode].insn_code != CODE_FOR_nothing)
10902         {
10903           /* If the only nonzero bits in OP0 and OP1 are those in the
10904              narrower mode and this is an equality or unsigned comparison,
10905              we can use the wider mode.  Similarly for sign-extended
10906              values, in which case it is true for all comparisons.  */
10907           if (((code == EQ || code == NE
10908                 || code == GEU || code == GTU || code == LEU || code == LTU)
10909                && (nonzero_bits (op0, tmode) & ~GET_MODE_MASK (mode)) == 0
10910                && (nonzero_bits (op1, tmode) & ~GET_MODE_MASK (mode)) == 0)
10911               || ((num_sign_bit_copies (op0, tmode)
10912                    > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))
10913                   && (num_sign_bit_copies (op1, tmode)
10914                       > GET_MODE_BITSIZE (tmode) - GET_MODE_BITSIZE (mode))))
10915             {
10916               /* If OP0 is an AND and we don't have an AND in MODE either,
10917                  make a new AND in the proper mode.  */
10918               if (GET_CODE (op0) == AND
10919                   && (add_optab->handlers[(int) mode].insn_code
10920                       == CODE_FOR_nothing))
10921                 op0 = gen_binary (AND, tmode,
10922                                   gen_lowpart_for_combine (tmode,
10923                                                            XEXP (op0, 0)),
10924                                   gen_lowpart_for_combine (tmode,
10925                                                            XEXP (op0, 1)));
10926
10927               op0 = gen_lowpart_for_combine (tmode, op0);
10928               op1 = gen_lowpart_for_combine (tmode, op1);
10929               break;
10930             }
10931
10932           /* If this is a test for negative, we can make an explicit
10933              test of the sign bit.  */
10934
10935           if (op1 == const0_rtx && (code == LT || code == GE)
10936               && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10937             {
10938               op0 = gen_binary (AND, tmode,
10939                                 gen_lowpart_for_combine (tmode, op0),
10940                                 GEN_INT ((HOST_WIDE_INT) 1
10941                                          << (GET_MODE_BITSIZE (mode) - 1)));
10942               code = (code == LT) ? NE : EQ;
10943               break;
10944             }
10945         }
10946
10947 #ifdef CANONICALIZE_COMPARISON
10948   /* If this machine only supports a subset of valid comparisons, see if we
10949      can convert an unsupported one into a supported one.  */
10950   CANONICALIZE_COMPARISON (code, op0, op1);
10951 #endif
10952
10953   *pop0 = op0;
10954   *pop1 = op1;
10955
10956   return code;
10957 }
10958 \f
10959 /* Like jump.c' reversed_comparison_code, but use combine infrastructure for
10960    searching backward.  */
10961 static enum rtx_code
10962 combine_reversed_comparison_code (exp)
10963      rtx exp;
10964 {
10965    enum rtx_code code1 = reversed_comparison_code (exp, NULL);
10966    rtx x;
10967
10968    if (code1 != UNKNOWN
10969        || GET_MODE_CLASS (GET_MODE (XEXP (exp, 0))) != MODE_CC)
10970      return code1;
10971    /* Otherwise try and find where the condition codes were last set and
10972       use that.  */
10973    x = get_last_value (XEXP (exp, 0));
10974    if (!x || GET_CODE (x) != COMPARE)
10975      return UNKNOWN;
10976    return reversed_comparison_code_parts (GET_CODE (exp),
10977                                           XEXP (x, 0), XEXP (x, 1), NULL);
10978 }
10979 /* Return comparison with reversed code of EXP and operands OP0 and OP1.
10980    Return NULL_RTX in case we fail to do the reversal.  */
10981 static rtx
10982 reversed_comparison (exp, mode, op0, op1)
10983      rtx exp, op0, op1;
10984      enum machine_mode mode;
10985 {
10986   enum rtx_code reversed_code = combine_reversed_comparison_code (exp);
10987   if (reversed_code == UNKNOWN)
10988     return NULL_RTX;
10989   else
10990     return gen_binary (reversed_code, mode, op0, op1);
10991 }
10992 \f
10993 /* Utility function for following routine.  Called when X is part of a value
10994    being stored into reg_last_set_value.  Sets reg_last_set_table_tick
10995    for each register mentioned.  Similar to mention_regs in cse.c  */
10996
10997 static void
10998 update_table_tick (x)
10999      rtx x;
11000 {
11001   register enum rtx_code code = GET_CODE (x);
11002   register const char *fmt = GET_RTX_FORMAT (code);
11003   register int i;
11004
11005   if (code == REG)
11006     {
11007       unsigned int regno = REGNO (x);
11008       unsigned int endregno
11009         = regno + (regno < FIRST_PSEUDO_REGISTER
11010                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11011       unsigned int r;
11012
11013       for (r = regno; r < endregno; r++)
11014         reg_last_set_table_tick[r] = label_tick;
11015
11016       return;
11017     }
11018
11019   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11020     /* Note that we can't have an "E" in values stored; see
11021        get_last_value_validate.  */
11022     if (fmt[i] == 'e')
11023       update_table_tick (XEXP (x, i));
11024 }
11025
11026 /* Record that REG is set to VALUE in insn INSN.  If VALUE is zero, we
11027    are saying that the register is clobbered and we no longer know its
11028    value.  If INSN is zero, don't update reg_last_set; this is only permitted
11029    with VALUE also zero and is used to invalidate the register.  */
11030
11031 static void
11032 record_value_for_reg (reg, insn, value)
11033      rtx reg;
11034      rtx insn;
11035      rtx value;
11036 {
11037   unsigned int regno = REGNO (reg);
11038   unsigned int endregno
11039     = regno + (regno < FIRST_PSEUDO_REGISTER
11040                ? HARD_REGNO_NREGS (regno, GET_MODE (reg)) : 1);
11041   unsigned int i;
11042
11043   /* If VALUE contains REG and we have a previous value for REG, substitute
11044      the previous value.  */
11045   if (value && insn && reg_overlap_mentioned_p (reg, value))
11046     {
11047       rtx tem;
11048
11049       /* Set things up so get_last_value is allowed to see anything set up to
11050          our insn.  */
11051       subst_low_cuid = INSN_CUID (insn);
11052       tem = get_last_value (reg);
11053
11054       /* If TEM is simply a binary operation with two CLOBBERs as operands,
11055          it isn't going to be useful and will take a lot of time to process,
11056          so just use the CLOBBER.  */
11057
11058       if (tem)
11059         {
11060           if ((GET_RTX_CLASS (GET_CODE (tem)) == '2'
11061                || GET_RTX_CLASS (GET_CODE (tem)) == 'c')
11062               && GET_CODE (XEXP (tem, 0)) == CLOBBER
11063               && GET_CODE (XEXP (tem, 1)) == CLOBBER)
11064             tem = XEXP (tem, 0);
11065
11066           value = replace_rtx (copy_rtx (value), reg, tem);
11067         }
11068     }
11069
11070   /* For each register modified, show we don't know its value, that
11071      we don't know about its bitwise content, that its value has been
11072      updated, and that we don't know the location of the death of the
11073      register.  */
11074   for (i = regno; i < endregno; i++)
11075     {
11076       if (insn)
11077         reg_last_set[i] = insn;
11078
11079       reg_last_set_value[i] = 0;
11080       reg_last_set_mode[i] = 0;
11081       reg_last_set_nonzero_bits[i] = 0;
11082       reg_last_set_sign_bit_copies[i] = 0;
11083       reg_last_death[i] = 0;
11084     }
11085
11086   /* Mark registers that are being referenced in this value.  */
11087   if (value)
11088     update_table_tick (value);
11089
11090   /* Now update the status of each register being set.
11091      If someone is using this register in this block, set this register
11092      to invalid since we will get confused between the two lives in this
11093      basic block.  This makes using this register always invalid.  In cse, we
11094      scan the table to invalidate all entries using this register, but this
11095      is too much work for us.  */
11096
11097   for (i = regno; i < endregno; i++)
11098     {
11099       reg_last_set_label[i] = label_tick;
11100       if (value && reg_last_set_table_tick[i] == label_tick)
11101         reg_last_set_invalid[i] = 1;
11102       else
11103         reg_last_set_invalid[i] = 0;
11104     }
11105
11106   /* The value being assigned might refer to X (like in "x++;").  In that
11107      case, we must replace it with (clobber (const_int 0)) to prevent
11108      infinite loops.  */
11109   if (value && ! get_last_value_validate (&value, insn,
11110                                           reg_last_set_label[regno], 0))
11111     {
11112       value = copy_rtx (value);
11113       if (! get_last_value_validate (&value, insn,
11114                                      reg_last_set_label[regno], 1))
11115         value = 0;
11116     }
11117
11118   /* For the main register being modified, update the value, the mode, the
11119      nonzero bits, and the number of sign bit copies.  */
11120
11121   reg_last_set_value[regno] = value;
11122
11123   if (value)
11124     {
11125       subst_low_cuid = INSN_CUID (insn);
11126       reg_last_set_mode[regno] = GET_MODE (reg);
11127       reg_last_set_nonzero_bits[regno] = nonzero_bits (value, GET_MODE (reg));
11128       reg_last_set_sign_bit_copies[regno]
11129         = num_sign_bit_copies (value, GET_MODE (reg));
11130     }
11131 }
11132
11133 /* Called via note_stores from record_dead_and_set_regs to handle one
11134    SET or CLOBBER in an insn.  DATA is the instruction in which the
11135    set is occurring.  */
11136
11137 static void
11138 record_dead_and_set_regs_1 (dest, setter, data)
11139      rtx dest, setter;
11140      void *data;
11141 {
11142   rtx record_dead_insn = (rtx) data;
11143
11144   if (GET_CODE (dest) == SUBREG)
11145     dest = SUBREG_REG (dest);
11146
11147   if (GET_CODE (dest) == REG)
11148     {
11149       /* If we are setting the whole register, we know its value.  Otherwise
11150          show that we don't know the value.  We can handle SUBREG in
11151          some cases.  */
11152       if (GET_CODE (setter) == SET && dest == SET_DEST (setter))
11153         record_value_for_reg (dest, record_dead_insn, SET_SRC (setter));
11154       else if (GET_CODE (setter) == SET
11155                && GET_CODE (SET_DEST (setter)) == SUBREG
11156                && SUBREG_REG (SET_DEST (setter)) == dest
11157                && GET_MODE_BITSIZE (GET_MODE (dest)) <= BITS_PER_WORD
11158                && subreg_lowpart_p (SET_DEST (setter)))
11159         record_value_for_reg (dest, record_dead_insn,
11160                               gen_lowpart_for_combine (GET_MODE (dest),
11161                                                        SET_SRC (setter)));
11162       else
11163         record_value_for_reg (dest, record_dead_insn, NULL_RTX);
11164     }
11165   else if (GET_CODE (dest) == MEM
11166            /* Ignore pushes, they clobber nothing.  */
11167            && ! push_operand (dest, GET_MODE (dest)))
11168     mem_last_set = INSN_CUID (record_dead_insn);
11169 }
11170
11171 /* Update the records of when each REG was most recently set or killed
11172    for the things done by INSN.  This is the last thing done in processing
11173    INSN in the combiner loop.
11174
11175    We update reg_last_set, reg_last_set_value, reg_last_set_mode,
11176    reg_last_set_nonzero_bits, reg_last_set_sign_bit_copies, reg_last_death,
11177    and also the similar information mem_last_set (which insn most recently
11178    modified memory) and last_call_cuid (which insn was the most recent
11179    subroutine call).  */
11180
11181 static void
11182 record_dead_and_set_regs (insn)
11183      rtx insn;
11184 {
11185   register rtx link;
11186   unsigned int i;
11187
11188   for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
11189     {
11190       if (REG_NOTE_KIND (link) == REG_DEAD
11191           && GET_CODE (XEXP (link, 0)) == REG)
11192         {
11193           unsigned int regno = REGNO (XEXP (link, 0));
11194           unsigned int endregno
11195             = regno + (regno < FIRST_PSEUDO_REGISTER
11196                        ? HARD_REGNO_NREGS (regno, GET_MODE (XEXP (link, 0)))
11197                        : 1);
11198
11199           for (i = regno; i < endregno; i++)
11200             reg_last_death[i] = insn;
11201         }
11202       else if (REG_NOTE_KIND (link) == REG_INC)
11203         record_value_for_reg (XEXP (link, 0), insn, NULL_RTX);
11204     }
11205
11206   if (GET_CODE (insn) == CALL_INSN)
11207     {
11208       for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
11209         if (call_used_regs[i])
11210           {
11211             reg_last_set_value[i] = 0;
11212             reg_last_set_mode[i] = 0;
11213             reg_last_set_nonzero_bits[i] = 0;
11214             reg_last_set_sign_bit_copies[i] = 0;
11215             reg_last_death[i] = 0;
11216           }
11217
11218       last_call_cuid = mem_last_set = INSN_CUID (insn);
11219     }
11220
11221   note_stores (PATTERN (insn), record_dead_and_set_regs_1, insn);
11222 }
11223
11224 /* If a SUBREG has the promoted bit set, it is in fact a property of the
11225    register present in the SUBREG, so for each such SUBREG go back and
11226    adjust nonzero and sign bit information of the registers that are
11227    known to have some zero/sign bits set.
11228
11229    This is needed because when combine blows the SUBREGs away, the
11230    information on zero/sign bits is lost and further combines can be
11231    missed because of that.  */
11232
11233 static void
11234 record_promoted_value (insn, subreg)
11235      rtx insn;
11236      rtx subreg;
11237 {
11238   rtx links, set;
11239   unsigned int regno = REGNO (SUBREG_REG (subreg));
11240   enum machine_mode mode = GET_MODE (subreg);
11241
11242   if (GET_MODE_BITSIZE (mode) > HOST_BITS_PER_WIDE_INT)
11243     return;
11244
11245   for (links = LOG_LINKS (insn); links;)
11246     {
11247       insn = XEXP (links, 0);
11248       set = single_set (insn);
11249
11250       if (! set || GET_CODE (SET_DEST (set)) != REG
11251           || REGNO (SET_DEST (set)) != regno
11252           || GET_MODE (SET_DEST (set)) != GET_MODE (SUBREG_REG (subreg)))
11253         {
11254           links = XEXP (links, 1);
11255           continue;
11256         }
11257
11258       if (reg_last_set[regno] == insn)
11259         {
11260           if (SUBREG_PROMOTED_UNSIGNED_P (subreg))
11261             reg_last_set_nonzero_bits[regno] &= GET_MODE_MASK (mode);
11262         }
11263
11264       if (GET_CODE (SET_SRC (set)) == REG)
11265         {
11266           regno = REGNO (SET_SRC (set));
11267           links = LOG_LINKS (insn);
11268         }
11269       else
11270         break;
11271     }
11272 }
11273
11274 /* Scan X for promoted SUBREGs.  For each one found,
11275    note what it implies to the registers used in it.  */
11276
11277 static void
11278 check_promoted_subreg (insn, x)
11279      rtx insn;
11280      rtx x;
11281 {
11282   if (GET_CODE (x) == SUBREG && SUBREG_PROMOTED_VAR_P (x)
11283       && GET_CODE (SUBREG_REG (x)) == REG)
11284     record_promoted_value (insn, x);
11285   else
11286     {
11287       const char *format = GET_RTX_FORMAT (GET_CODE (x));
11288       int i, j;
11289
11290       for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
11291         switch (format[i])
11292           {
11293           case 'e':
11294             check_promoted_subreg (insn, XEXP (x, i));
11295             break;
11296           case 'V':
11297           case 'E':
11298             if (XVEC (x, i) != 0)
11299               for (j = 0; j < XVECLEN (x, i); j++)
11300                 check_promoted_subreg (insn, XVECEXP (x, i, j));
11301             break;
11302           }
11303     }
11304 }
11305 \f
11306 /* Utility routine for the following function.  Verify that all the registers
11307    mentioned in *LOC are valid when *LOC was part of a value set when
11308    label_tick == TICK.  Return 0 if some are not.
11309
11310    If REPLACE is non-zero, replace the invalid reference with
11311    (clobber (const_int 0)) and return 1.  This replacement is useful because
11312    we often can get useful information about the form of a value (e.g., if
11313    it was produced by a shift that always produces -1 or 0) even though
11314    we don't know exactly what registers it was produced from.  */
11315
11316 static int
11317 get_last_value_validate (loc, insn, tick, replace)
11318      rtx *loc;
11319      rtx insn;
11320      int tick;
11321      int replace;
11322 {
11323   rtx x = *loc;
11324   const char *fmt = GET_RTX_FORMAT (GET_CODE (x));
11325   int len = GET_RTX_LENGTH (GET_CODE (x));
11326   int i;
11327
11328   if (GET_CODE (x) == REG)
11329     {
11330       unsigned int regno = REGNO (x);
11331       unsigned int endregno
11332         = regno + (regno < FIRST_PSEUDO_REGISTER
11333                    ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11334       unsigned int j;
11335
11336       for (j = regno; j < endregno; j++)
11337         if (reg_last_set_invalid[j]
11338             /* If this is a pseudo-register that was only set once and not
11339                live at the beginning of the function, it is always valid.  */
11340             || (! (regno >= FIRST_PSEUDO_REGISTER
11341                    && REG_N_SETS (regno) == 1
11342                    && (! REGNO_REG_SET_P
11343                        (BASIC_BLOCK (0)->global_live_at_start, regno)))
11344                 && reg_last_set_label[j] > tick))
11345           {
11346             if (replace)
11347               *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11348             return replace;
11349           }
11350
11351       return 1;
11352     }
11353   /* If this is a memory reference, make sure that there were
11354      no stores after it that might have clobbered the value.  We don't
11355      have alias info, so we assume any store invalidates it.  */
11356   else if (GET_CODE (x) == MEM && ! RTX_UNCHANGING_P (x)
11357            && INSN_CUID (insn) <= mem_last_set)
11358     {
11359       if (replace)
11360         *loc = gen_rtx_CLOBBER (GET_MODE (x), const0_rtx);
11361       return replace;
11362     }
11363
11364   for (i = 0; i < len; i++)
11365     if ((fmt[i] == 'e'
11366          && get_last_value_validate (&XEXP (x, i), insn, tick, replace) == 0)
11367         /* Don't bother with these.  They shouldn't occur anyway.  */
11368         || fmt[i] == 'E')
11369       return 0;
11370
11371   /* If we haven't found a reason for it to be invalid, it is valid.  */
11372   return 1;
11373 }
11374
11375 /* Get the last value assigned to X, if known.  Some registers
11376    in the value may be replaced with (clobber (const_int 0)) if their value
11377    is known longer known reliably.  */
11378
11379 static rtx
11380 get_last_value (x)
11381      rtx x;
11382 {
11383   unsigned int regno;
11384   rtx value;
11385
11386   /* If this is a non-paradoxical SUBREG, get the value of its operand and
11387      then convert it to the desired mode.  If this is a paradoxical SUBREG,
11388      we cannot predict what values the "extra" bits might have.  */
11389   if (GET_CODE (x) == SUBREG
11390       && subreg_lowpart_p (x)
11391       && (GET_MODE_SIZE (GET_MODE (x))
11392           <= GET_MODE_SIZE (GET_MODE (SUBREG_REG (x))))
11393       && (value = get_last_value (SUBREG_REG (x))) != 0)
11394     return gen_lowpart_for_combine (GET_MODE (x), value);
11395
11396   if (GET_CODE (x) != REG)
11397     return 0;
11398
11399   regno = REGNO (x);
11400   value = reg_last_set_value[regno];
11401
11402   /* If we don't have a value, or if it isn't for this basic block and
11403      it's either a hard register, set more than once, or it's a live
11404      at the beginning of the function, return 0.
11405
11406      Because if it's not live at the beginnning of the function then the reg
11407      is always set before being used (is never used without being set).
11408      And, if it's set only once, and it's always set before use, then all
11409      uses must have the same last value, even if it's not from this basic
11410      block.  */
11411
11412   if (value == 0
11413       || (reg_last_set_label[regno] != label_tick
11414           && (regno < FIRST_PSEUDO_REGISTER
11415               || REG_N_SETS (regno) != 1
11416               || (REGNO_REG_SET_P
11417                   (BASIC_BLOCK (0)->global_live_at_start, regno)))))
11418     return 0;
11419
11420   /* If the value was set in a later insn than the ones we are processing,
11421      we can't use it even if the register was only set once.  */
11422   if (INSN_CUID (reg_last_set[regno]) >= subst_low_cuid)
11423     return 0;
11424
11425   /* If the value has all its registers valid, return it.  */
11426   if (get_last_value_validate (&value, reg_last_set[regno],
11427                                reg_last_set_label[regno], 0))
11428     return value;
11429
11430   /* Otherwise, make a copy and replace any invalid register with
11431      (clobber (const_int 0)).  If that fails for some reason, return 0.  */
11432
11433   value = copy_rtx (value);
11434   if (get_last_value_validate (&value, reg_last_set[regno],
11435                                reg_last_set_label[regno], 1))
11436     return value;
11437
11438   return 0;
11439 }
11440 \f
11441 /* Return nonzero if expression X refers to a REG or to memory
11442    that is set in an instruction more recent than FROM_CUID.  */
11443
11444 static int
11445 use_crosses_set_p (x, from_cuid)
11446      register rtx x;
11447      int from_cuid;
11448 {
11449   register const char *fmt;
11450   register int i;
11451   register enum rtx_code code = GET_CODE (x);
11452
11453   if (code == REG)
11454     {
11455       unsigned int regno = REGNO (x);
11456       unsigned endreg = regno + (regno < FIRST_PSEUDO_REGISTER
11457                                  ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1);
11458
11459 #ifdef PUSH_ROUNDING
11460       /* Don't allow uses of the stack pointer to be moved,
11461          because we don't know whether the move crosses a push insn.  */
11462       if (regno == STACK_POINTER_REGNUM && PUSH_ARGS)
11463         return 1;
11464 #endif
11465       for (; regno < endreg; regno++)
11466         if (reg_last_set[regno]
11467             && INSN_CUID (reg_last_set[regno]) > from_cuid)
11468           return 1;
11469       return 0;
11470     }
11471
11472   if (code == MEM && mem_last_set > from_cuid)
11473     return 1;
11474
11475   fmt = GET_RTX_FORMAT (code);
11476
11477   for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11478     {
11479       if (fmt[i] == 'E')
11480         {
11481           register int j;
11482           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11483             if (use_crosses_set_p (XVECEXP (x, i, j), from_cuid))
11484               return 1;
11485         }
11486       else if (fmt[i] == 'e'
11487                && use_crosses_set_p (XEXP (x, i), from_cuid))
11488         return 1;
11489     }
11490   return 0;
11491 }
11492 \f
11493 /* Define three variables used for communication between the following
11494    routines.  */
11495
11496 static unsigned int reg_dead_regno, reg_dead_endregno;
11497 static int reg_dead_flag;
11498
11499 /* Function called via note_stores from reg_dead_at_p.
11500
11501    If DEST is within [reg_dead_regno, reg_dead_endregno), set
11502    reg_dead_flag to 1 if X is a CLOBBER and to -1 it is a SET.  */
11503
11504 static void
11505 reg_dead_at_p_1 (dest, x, data)
11506      rtx dest;
11507      rtx x;
11508      void *data ATTRIBUTE_UNUSED;
11509 {
11510   unsigned int regno, endregno;
11511
11512   if (GET_CODE (dest) != REG)
11513     return;
11514
11515   regno = REGNO (dest);
11516   endregno = regno + (regno < FIRST_PSEUDO_REGISTER
11517                       ? HARD_REGNO_NREGS (regno, GET_MODE (dest)) : 1);
11518
11519   if (reg_dead_endregno > regno && reg_dead_regno < endregno)
11520     reg_dead_flag = (GET_CODE (x) == CLOBBER) ? 1 : -1;
11521 }
11522
11523 /* Return non-zero if REG is known to be dead at INSN.
11524
11525    We scan backwards from INSN.  If we hit a REG_DEAD note or a CLOBBER
11526    referencing REG, it is dead.  If we hit a SET referencing REG, it is
11527    live.  Otherwise, see if it is live or dead at the start of the basic
11528    block we are in.  Hard regs marked as being live in NEWPAT_USED_REGS
11529    must be assumed to be always live.  */
11530
11531 static int
11532 reg_dead_at_p (reg, insn)
11533      rtx reg;
11534      rtx insn;
11535 {
11536   int block;
11537   unsigned int i;
11538
11539   /* Set variables for reg_dead_at_p_1.  */
11540   reg_dead_regno = REGNO (reg);
11541   reg_dead_endregno = reg_dead_regno + (reg_dead_regno < FIRST_PSEUDO_REGISTER
11542                                         ? HARD_REGNO_NREGS (reg_dead_regno,
11543                                                             GET_MODE (reg))
11544                                         : 1);
11545
11546   reg_dead_flag = 0;
11547
11548   /* Check that reg isn't mentioned in NEWPAT_USED_REGS.  */
11549   if (reg_dead_regno < FIRST_PSEUDO_REGISTER)
11550     {
11551       for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11552         if (TEST_HARD_REG_BIT (newpat_used_regs, i))
11553           return 0;
11554     }
11555
11556   /* Scan backwards until we find a REG_DEAD note, SET, CLOBBER, label, or
11557      beginning of function.  */
11558   for (; insn && GET_CODE (insn) != CODE_LABEL && GET_CODE (insn) != BARRIER;
11559        insn = prev_nonnote_insn (insn))
11560     {
11561       note_stores (PATTERN (insn), reg_dead_at_p_1, NULL);
11562       if (reg_dead_flag)
11563         return reg_dead_flag == 1 ? 1 : 0;
11564
11565       if (find_regno_note (insn, REG_DEAD, reg_dead_regno))
11566         return 1;
11567     }
11568
11569   /* Get the basic block number that we were in.  */
11570   if (insn == 0)
11571     block = 0;
11572   else
11573     {
11574       for (block = 0; block < n_basic_blocks; block++)
11575         if (insn == BLOCK_HEAD (block))
11576           break;
11577
11578       if (block == n_basic_blocks)
11579         return 0;
11580     }
11581
11582   for (i = reg_dead_regno; i < reg_dead_endregno; i++)
11583     if (REGNO_REG_SET_P (BASIC_BLOCK (block)->global_live_at_start, i))
11584       return 0;
11585
11586   return 1;
11587 }
11588 \f
11589 /* Note hard registers in X that are used.  This code is similar to
11590    that in flow.c, but much simpler since we don't care about pseudos.  */
11591
11592 static void
11593 mark_used_regs_combine (x)
11594      rtx x;
11595 {
11596   RTX_CODE code = GET_CODE (x);
11597   unsigned int regno;
11598   int i;
11599
11600   switch (code)
11601     {
11602     case LABEL_REF:
11603     case SYMBOL_REF:
11604     case CONST_INT:
11605     case CONST:
11606     case CONST_DOUBLE:
11607     case PC:
11608     case ADDR_VEC:
11609     case ADDR_DIFF_VEC:
11610     case ASM_INPUT:
11611 #ifdef HAVE_cc0
11612     /* CC0 must die in the insn after it is set, so we don't need to take
11613        special note of it here.  */
11614     case CC0:
11615 #endif
11616       return;
11617
11618     case CLOBBER:
11619       /* If we are clobbering a MEM, mark any hard registers inside the
11620          address as used.  */
11621       if (GET_CODE (XEXP (x, 0)) == MEM)
11622         mark_used_regs_combine (XEXP (XEXP (x, 0), 0));
11623       return;
11624
11625     case REG:
11626       regno = REGNO (x);
11627       /* A hard reg in a wide mode may really be multiple registers.
11628          If so, mark all of them just like the first.  */
11629       if (regno < FIRST_PSEUDO_REGISTER)
11630         {
11631           unsigned int endregno, r;
11632
11633           /* None of this applies to the stack, frame or arg pointers */
11634           if (regno == STACK_POINTER_REGNUM
11635 #if FRAME_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
11636               || regno == HARD_FRAME_POINTER_REGNUM
11637 #endif
11638 #if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
11639               || (regno == ARG_POINTER_REGNUM && fixed_regs[regno])
11640 #endif
11641               || regno == FRAME_POINTER_REGNUM)
11642             return;
11643
11644           endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11645           for (r = regno; r < endregno; r++)
11646             SET_HARD_REG_BIT (newpat_used_regs, r);
11647         }
11648       return;
11649
11650     case SET:
11651       {
11652         /* If setting a MEM, or a SUBREG of a MEM, then note any hard regs in
11653            the address.  */
11654         register rtx testreg = SET_DEST (x);
11655
11656         while (GET_CODE (testreg) == SUBREG
11657                || GET_CODE (testreg) == ZERO_EXTRACT
11658                || GET_CODE (testreg) == SIGN_EXTRACT
11659                || GET_CODE (testreg) == STRICT_LOW_PART)
11660           testreg = XEXP (testreg, 0);
11661
11662         if (GET_CODE (testreg) == MEM)
11663           mark_used_regs_combine (XEXP (testreg, 0));
11664
11665         mark_used_regs_combine (SET_SRC (x));
11666       }
11667       return;
11668
11669     default:
11670       break;
11671     }
11672
11673   /* Recursively scan the operands of this expression.  */
11674
11675   {
11676     register const char *fmt = GET_RTX_FORMAT (code);
11677
11678     for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
11679       {
11680         if (fmt[i] == 'e')
11681           mark_used_regs_combine (XEXP (x, i));
11682         else if (fmt[i] == 'E')
11683           {
11684             register int j;
11685
11686             for (j = 0; j < XVECLEN (x, i); j++)
11687               mark_used_regs_combine (XVECEXP (x, i, j));
11688           }
11689       }
11690   }
11691 }
11692 \f
11693 /* Remove register number REGNO from the dead registers list of INSN.
11694
11695    Return the note used to record the death, if there was one.  */
11696
11697 rtx
11698 remove_death (regno, insn)
11699      unsigned int regno;
11700      rtx insn;
11701 {
11702   register rtx note = find_regno_note (insn, REG_DEAD, regno);
11703
11704   if (note)
11705     {
11706       REG_N_DEATHS (regno)--;
11707       remove_note (insn, note);
11708     }
11709
11710   return note;
11711 }
11712
11713 /* For each register (hardware or pseudo) used within expression X, if its
11714    death is in an instruction with cuid between FROM_CUID (inclusive) and
11715    TO_INSN (exclusive), put a REG_DEAD note for that register in the
11716    list headed by PNOTES.
11717
11718    That said, don't move registers killed by maybe_kill_insn.
11719
11720    This is done when X is being merged by combination into TO_INSN.  These
11721    notes will then be distributed as needed.  */
11722
11723 static void
11724 move_deaths (x, maybe_kill_insn, from_cuid, to_insn, pnotes)
11725      rtx x;
11726      rtx maybe_kill_insn;
11727      int from_cuid;
11728      rtx to_insn;
11729      rtx *pnotes;
11730 {
11731   register const char *fmt;
11732   register int len, i;
11733   register enum rtx_code code = GET_CODE (x);
11734
11735   if (code == REG)
11736     {
11737       unsigned int regno = REGNO (x);
11738       register rtx where_dead = reg_last_death[regno];
11739       register rtx before_dead, after_dead;
11740
11741       /* Don't move the register if it gets killed in between from and to */
11742       if (maybe_kill_insn && reg_set_p (x, maybe_kill_insn)
11743           && ! reg_referenced_p (x, maybe_kill_insn))
11744         return;
11745
11746       /* WHERE_DEAD could be a USE insn made by combine, so first we
11747          make sure that we have insns with valid INSN_CUID values.  */
11748       before_dead = where_dead;
11749       while (before_dead && INSN_UID (before_dead) > max_uid_cuid)
11750         before_dead = PREV_INSN (before_dead);
11751
11752       after_dead = where_dead;
11753       while (after_dead && INSN_UID (after_dead) > max_uid_cuid)
11754         after_dead = NEXT_INSN (after_dead);
11755
11756       if (before_dead && after_dead
11757           && INSN_CUID (before_dead) >= from_cuid
11758           && (INSN_CUID (after_dead) < INSN_CUID (to_insn)
11759               || (where_dead != after_dead
11760                   && INSN_CUID (after_dead) == INSN_CUID (to_insn))))
11761         {
11762           rtx note = remove_death (regno, where_dead);
11763
11764           /* It is possible for the call above to return 0.  This can occur
11765              when reg_last_death points to I2 or I1 that we combined with.
11766              In that case make a new note.
11767
11768              We must also check for the case where X is a hard register
11769              and NOTE is a death note for a range of hard registers
11770              including X.  In that case, we must put REG_DEAD notes for
11771              the remaining registers in place of NOTE.  */
11772
11773           if (note != 0 && regno < FIRST_PSEUDO_REGISTER
11774               && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11775                   > GET_MODE_SIZE (GET_MODE (x))))
11776             {
11777               unsigned int deadregno = REGNO (XEXP (note, 0));
11778               unsigned int deadend
11779                 = (deadregno + HARD_REGNO_NREGS (deadregno,
11780                                                  GET_MODE (XEXP (note, 0))));
11781               unsigned int ourend
11782                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11783               unsigned int i;
11784
11785               for (i = deadregno; i < deadend; i++)
11786                 if (i < regno || i >= ourend)
11787                   REG_NOTES (where_dead)
11788                     = gen_rtx_EXPR_LIST (REG_DEAD,
11789                                          gen_rtx_REG (reg_raw_mode[i], i),
11790                                          REG_NOTES (where_dead));
11791             }
11792
11793           /* If we didn't find any note, or if we found a REG_DEAD note that
11794              covers only part of the given reg, and we have a multi-reg hard
11795              register, then to be safe we must check for REG_DEAD notes
11796              for each register other than the first.  They could have
11797              their own REG_DEAD notes lying around.  */
11798           else if ((note == 0
11799                     || (note != 0
11800                         && (GET_MODE_SIZE (GET_MODE (XEXP (note, 0)))
11801                             < GET_MODE_SIZE (GET_MODE (x)))))
11802                    && regno < FIRST_PSEUDO_REGISTER
11803                    && HARD_REGNO_NREGS (regno, GET_MODE (x)) > 1)
11804             {
11805               unsigned int ourend
11806                 = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11807               unsigned int i, offset;
11808               rtx oldnotes = 0;
11809
11810               if (note)
11811                 offset = HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0)));
11812               else
11813                 offset = 1;
11814
11815               for (i = regno + offset; i < ourend; i++)
11816                 move_deaths (gen_rtx_REG (reg_raw_mode[i], i),
11817                              maybe_kill_insn, from_cuid, to_insn, &oldnotes);
11818             }
11819
11820           if (note != 0 && GET_MODE (XEXP (note, 0)) == GET_MODE (x))
11821             {
11822               XEXP (note, 1) = *pnotes;
11823               *pnotes = note;
11824             }
11825           else
11826             *pnotes = gen_rtx_EXPR_LIST (REG_DEAD, x, *pnotes);
11827
11828           REG_N_DEATHS (regno)++;
11829         }
11830
11831       return;
11832     }
11833
11834   else if (GET_CODE (x) == SET)
11835     {
11836       rtx dest = SET_DEST (x);
11837
11838       move_deaths (SET_SRC (x), maybe_kill_insn, from_cuid, to_insn, pnotes);
11839
11840       /* In the case of a ZERO_EXTRACT, a STRICT_LOW_PART, or a SUBREG
11841          that accesses one word of a multi-word item, some
11842          piece of everything register in the expression is used by
11843          this insn, so remove any old death.  */
11844       /* ??? So why do we test for equality of the sizes?  */
11845
11846       if (GET_CODE (dest) == ZERO_EXTRACT
11847           || GET_CODE (dest) == STRICT_LOW_PART
11848           || (GET_CODE (dest) == SUBREG
11849               && (((GET_MODE_SIZE (GET_MODE (dest))
11850                     + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
11851                   == ((GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
11852                        + UNITS_PER_WORD - 1) / UNITS_PER_WORD))))
11853         {
11854           move_deaths (dest, maybe_kill_insn, from_cuid, to_insn, pnotes);
11855           return;
11856         }
11857
11858       /* If this is some other SUBREG, we know it replaces the entire
11859          value, so use that as the destination.  */
11860       if (GET_CODE (dest) == SUBREG)
11861         dest = SUBREG_REG (dest);
11862
11863       /* If this is a MEM, adjust deaths of anything used in the address.
11864          For a REG (the only other possibility), the entire value is
11865          being replaced so the old value is not used in this insn.  */
11866
11867       if (GET_CODE (dest) == MEM)
11868         move_deaths (XEXP (dest, 0), maybe_kill_insn, from_cuid,
11869                      to_insn, pnotes);
11870       return;
11871     }
11872
11873   else if (GET_CODE (x) == CLOBBER)
11874     return;
11875
11876   len = GET_RTX_LENGTH (code);
11877   fmt = GET_RTX_FORMAT (code);
11878
11879   for (i = 0; i < len; i++)
11880     {
11881       if (fmt[i] == 'E')
11882         {
11883           register int j;
11884           for (j = XVECLEN (x, i) - 1; j >= 0; j--)
11885             move_deaths (XVECEXP (x, i, j), maybe_kill_insn, from_cuid,
11886                          to_insn, pnotes);
11887         }
11888       else if (fmt[i] == 'e')
11889         move_deaths (XEXP (x, i), maybe_kill_insn, from_cuid, to_insn, pnotes);
11890     }
11891 }
11892 \f
11893 /* Return 1 if X is the target of a bit-field assignment in BODY, the
11894    pattern of an insn.  X must be a REG.  */
11895
11896 static int
11897 reg_bitfield_target_p (x, body)
11898      rtx x;
11899      rtx body;
11900 {
11901   int i;
11902
11903   if (GET_CODE (body) == SET)
11904     {
11905       rtx dest = SET_DEST (body);
11906       rtx target;
11907       unsigned int regno, tregno, endregno, endtregno;
11908
11909       if (GET_CODE (dest) == ZERO_EXTRACT)
11910         target = XEXP (dest, 0);
11911       else if (GET_CODE (dest) == STRICT_LOW_PART)
11912         target = SUBREG_REG (XEXP (dest, 0));
11913       else
11914         return 0;
11915
11916       if (GET_CODE (target) == SUBREG)
11917         target = SUBREG_REG (target);
11918
11919       if (GET_CODE (target) != REG)
11920         return 0;
11921
11922       tregno = REGNO (target), regno = REGNO (x);
11923       if (tregno >= FIRST_PSEUDO_REGISTER || regno >= FIRST_PSEUDO_REGISTER)
11924         return target == x;
11925
11926       endtregno = tregno + HARD_REGNO_NREGS (tregno, GET_MODE (target));
11927       endregno = regno + HARD_REGNO_NREGS (regno, GET_MODE (x));
11928
11929       return endregno > tregno && regno < endtregno;
11930     }
11931
11932   else if (GET_CODE (body) == PARALLEL)
11933     for (i = XVECLEN (body, 0) - 1; i >= 0; i--)
11934       if (reg_bitfield_target_p (x, XVECEXP (body, 0, i)))
11935         return 1;
11936
11937   return 0;
11938 }
11939 \f
11940 /* Given a chain of REG_NOTES originally from FROM_INSN, try to place them
11941    as appropriate.  I3 and I2 are the insns resulting from the combination
11942    insns including FROM (I2 may be zero).
11943
11944    ELIM_I2 and ELIM_I1 are either zero or registers that we know will
11945    not need REG_DEAD notes because they are being substituted for.  This
11946    saves searching in the most common cases.
11947
11948    Each note in the list is either ignored or placed on some insns, depending
11949    on the type of note.  */
11950
11951 static void
11952 distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
11953      rtx notes;
11954      rtx from_insn;
11955      rtx i3, i2;
11956      rtx elim_i2, elim_i1;
11957 {
11958   rtx note, next_note;
11959   rtx tem;
11960
11961   for (note = notes; note; note = next_note)
11962     {
11963       rtx place = 0, place2 = 0;
11964
11965       /* If this NOTE references a pseudo register, ensure it references
11966          the latest copy of that register.  */
11967       if (XEXP (note, 0) && GET_CODE (XEXP (note, 0)) == REG
11968           && REGNO (XEXP (note, 0)) >= FIRST_PSEUDO_REGISTER)
11969         XEXP (note, 0) = regno_reg_rtx[REGNO (XEXP (note, 0))];
11970
11971       next_note = XEXP (note, 1);
11972       switch (REG_NOTE_KIND (note))
11973         {
11974         case REG_BR_PROB:
11975         case REG_BR_PRED:
11976         case REG_EXEC_COUNT:
11977           /* Doesn't matter much where we put this, as long as it's somewhere.
11978              It is preferable to keep these notes on branches, which is most
11979              likely to be i3.  */
11980           place = i3;
11981           break;
11982
11983         case REG_NON_LOCAL_GOTO:
11984           if (GET_CODE (i3) == JUMP_INSN)
11985             place = i3;
11986           else if (i2 && GET_CODE (i2) == JUMP_INSN)
11987             place = i2;
11988           else
11989             abort();
11990           break;
11991
11992         case REG_EH_REGION:
11993           /* These notes must remain with the call or trapping instruction.  */
11994           if (GET_CODE (i3) == CALL_INSN)
11995             place = i3;
11996           else if (i2 && GET_CODE (i2) == CALL_INSN)
11997             place = i2;
11998           else if (flag_non_call_exceptions)
11999             {
12000               if (may_trap_p (i3))
12001                 place = i3;
12002               else if (i2 && may_trap_p (i2))
12003                 place = i2;
12004               /* ??? Otherwise assume we've combined things such that we
12005                  can now prove that the instructions can't trap.  Drop the
12006                  note in this case.  */
12007             }
12008           else
12009             abort ();
12010           break;
12011
12012         case REG_NORETURN:
12013         case REG_SETJMP:
12014           /* These notes must remain with the call.  It should not be
12015              possible for both I2 and I3 to be a call.  */
12016           if (GET_CODE (i3) == CALL_INSN)
12017             place = i3;
12018           else if (i2 && GET_CODE (i2) == CALL_INSN)
12019             place = i2;
12020           else
12021             abort ();
12022           break;
12023
12024         case REG_UNUSED:
12025           /* Any clobbers for i3 may still exist, and so we must process
12026              REG_UNUSED notes from that insn.
12027
12028              Any clobbers from i2 or i1 can only exist if they were added by
12029              recog_for_combine.  In that case, recog_for_combine created the
12030              necessary REG_UNUSED notes.  Trying to keep any original
12031              REG_UNUSED notes from these insns can cause incorrect output
12032              if it is for the same register as the original i3 dest.
12033              In that case, we will notice that the register is set in i3,
12034              and then add a REG_UNUSED note for the destination of i3, which
12035              is wrong.  However, it is possible to have REG_UNUSED notes from
12036              i2 or i1 for register which were both used and clobbered, so
12037              we keep notes from i2 or i1 if they will turn into REG_DEAD
12038              notes.  */
12039
12040           /* If this register is set or clobbered in I3, put the note there
12041              unless there is one already.  */
12042           if (reg_set_p (XEXP (note, 0), PATTERN (i3)))
12043             {
12044               if (from_insn != i3)
12045                 break;
12046
12047               if (! (GET_CODE (XEXP (note, 0)) == REG
12048                      ? find_regno_note (i3, REG_UNUSED, REGNO (XEXP (note, 0)))
12049                      : find_reg_note (i3, REG_UNUSED, XEXP (note, 0))))
12050                 place = i3;
12051             }
12052           /* Otherwise, if this register is used by I3, then this register
12053              now dies here, so we must put a REG_DEAD note here unless there
12054              is one already.  */
12055           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3))
12056                    && ! (GET_CODE (XEXP (note, 0)) == REG
12057                          ? find_regno_note (i3, REG_DEAD,
12058                                             REGNO (XEXP (note, 0)))
12059                          : find_reg_note (i3, REG_DEAD, XEXP (note, 0))))
12060             {
12061               PUT_REG_NOTE_KIND (note, REG_DEAD);
12062               place = i3;
12063             }
12064           break;
12065
12066         case REG_EQUAL:
12067         case REG_EQUIV:
12068         case REG_NOALIAS:
12069           /* These notes say something about results of an insn.  We can
12070              only support them if they used to be on I3 in which case they
12071              remain on I3.  Otherwise they are ignored.
12072
12073              If the note refers to an expression that is not a constant, we
12074              must also ignore the note since we cannot tell whether the
12075              equivalence is still true.  It might be possible to do
12076              slightly better than this (we only have a problem if I2DEST
12077              or I1DEST is present in the expression), but it doesn't
12078              seem worth the trouble.  */
12079
12080           if (from_insn == i3
12081               && (XEXP (note, 0) == 0 || CONSTANT_P (XEXP (note, 0))))
12082             place = i3;
12083           break;
12084
12085         case REG_INC:
12086         case REG_NO_CONFLICT:
12087           /* These notes say something about how a register is used.  They must
12088              be present on any use of the register in I2 or I3.  */
12089           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3)))
12090             place = i3;
12091
12092           if (i2 && reg_mentioned_p (XEXP (note, 0), PATTERN (i2)))
12093             {
12094               if (place)
12095                 place2 = i2;
12096               else
12097                 place = i2;
12098             }
12099           break;
12100
12101         case REG_LABEL:
12102           /* This can show up in several ways -- either directly in the
12103              pattern, or hidden off in the constant pool with (or without?)
12104              a REG_EQUAL note.  */
12105           /* ??? Ignore the without-reg_equal-note problem for now.  */
12106           if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3))
12107               || ((tem = find_reg_note (i3, REG_EQUAL, NULL_RTX))
12108                   && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12109                   && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0)))
12110             place = i3;
12111
12112           if (i2
12113               && (reg_mentioned_p (XEXP (note, 0), PATTERN (i2))
12114                   || ((tem = find_reg_note (i2, REG_EQUAL, NULL_RTX))
12115                       && GET_CODE (XEXP (tem, 0)) == LABEL_REF
12116                       && XEXP (XEXP (tem, 0), 0) == XEXP (note, 0))))
12117             {
12118               if (place)
12119                 place2 = i2;
12120               else
12121                 place = i2;
12122             }
12123           break;
12124
12125         case REG_NONNEG:
12126         case REG_WAS_0:
12127           /* These notes say something about the value of a register prior
12128              to the execution of an insn.  It is too much trouble to see
12129              if the note is still correct in all situations.  It is better
12130              to simply delete it.  */
12131           break;
12132
12133         case REG_RETVAL:
12134           /* If the insn previously containing this note still exists,
12135              put it back where it was.  Otherwise move it to the previous
12136              insn.  Adjust the corresponding REG_LIBCALL note.  */
12137           if (GET_CODE (from_insn) != NOTE)
12138             place = from_insn;
12139           else
12140             {
12141               tem = find_reg_note (XEXP (note, 0), REG_LIBCALL, NULL_RTX);
12142               place = prev_real_insn (from_insn);
12143               if (tem && place)
12144                 XEXP (tem, 0) = place;
12145               /* If we're deleting the last remaining instruction of a
12146                  libcall sequence, don't add the notes.  */
12147               else if (XEXP (note, 0) == from_insn)
12148                 tem = place = 0;
12149             }
12150           break;
12151
12152         case REG_LIBCALL:
12153           /* This is handled similarly to REG_RETVAL.  */
12154           if (GET_CODE (from_insn) != NOTE)
12155             place = from_insn;
12156           else
12157             {
12158               tem = find_reg_note (XEXP (note, 0), REG_RETVAL, NULL_RTX);
12159               place = next_real_insn (from_insn);
12160               if (tem && place)
12161                 XEXP (tem, 0) = place;
12162               /* If we're deleting the last remaining instruction of a
12163                  libcall sequence, don't add the notes.  */
12164               else if (XEXP (note, 0) == from_insn)
12165                 tem = place = 0;
12166             }
12167           break;
12168
12169         case REG_DEAD:
12170           /* If the register is used as an input in I3, it dies there.
12171              Similarly for I2, if it is non-zero and adjacent to I3.
12172
12173              If the register is not used as an input in either I3 or I2
12174              and it is not one of the registers we were supposed to eliminate,
12175              there are two possibilities.  We might have a non-adjacent I2
12176              or we might have somehow eliminated an additional register
12177              from a computation.  For example, we might have had A & B where
12178              we discover that B will always be zero.  In this case we will
12179              eliminate the reference to A.
12180
12181              In both cases, we must search to see if we can find a previous
12182              use of A and put the death note there.  */
12183
12184           if (from_insn
12185               && GET_CODE (from_insn) == CALL_INSN
12186               && find_reg_fusage (from_insn, USE, XEXP (note, 0)))
12187             place = from_insn;
12188           else if (reg_referenced_p (XEXP (note, 0), PATTERN (i3)))
12189             place = i3;
12190           else if (i2 != 0 && next_nonnote_insn (i2) == i3
12191                    && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12192             place = i2;
12193
12194           if (rtx_equal_p (XEXP (note, 0), elim_i2)
12195               || rtx_equal_p (XEXP (note, 0), elim_i1))
12196             break;
12197
12198           if (place == 0)
12199             {
12200               basic_block bb = BASIC_BLOCK (this_basic_block);
12201
12202               for (tem = PREV_INSN (i3); place == 0; tem = PREV_INSN (tem))
12203                 {
12204                   if (! INSN_P (tem))
12205                     {
12206                       if (tem == bb->head)
12207                         break;
12208                       continue;
12209                     }
12210
12211                   /* If the register is being set at TEM, see if that is all
12212                      TEM is doing.  If so, delete TEM.  Otherwise, make this
12213                      into a REG_UNUSED note instead.  */
12214                   if (reg_set_p (XEXP (note, 0), PATTERN (tem)))
12215                     {
12216                       rtx set = single_set (tem);
12217                       rtx inner_dest = 0;
12218 #ifdef HAVE_cc0
12219                       rtx cc0_setter = NULL_RTX;
12220 #endif
12221
12222                       if (set != 0)
12223                         for (inner_dest = SET_DEST (set);
12224                              (GET_CODE (inner_dest) == STRICT_LOW_PART
12225                               || GET_CODE (inner_dest) == SUBREG
12226                               || GET_CODE (inner_dest) == ZERO_EXTRACT);
12227                              inner_dest = XEXP (inner_dest, 0))
12228                           ;
12229
12230                       /* Verify that it was the set, and not a clobber that
12231                          modified the register.
12232
12233                          CC0 targets must be careful to maintain setter/user
12234                          pairs.  If we cannot delete the setter due to side
12235                          effects, mark the user with an UNUSED note instead
12236                          of deleting it.  */
12237
12238                       if (set != 0 && ! side_effects_p (SET_SRC (set))
12239                           && rtx_equal_p (XEXP (note, 0), inner_dest)
12240 #ifdef HAVE_cc0
12241                           && (! reg_mentioned_p (cc0_rtx, SET_SRC (set))
12242                               || ((cc0_setter = prev_cc0_setter (tem)) != NULL
12243                                   && sets_cc0_p (PATTERN (cc0_setter)) > 0))
12244 #endif
12245                           )
12246                         {
12247                           /* Move the notes and links of TEM elsewhere.
12248                              This might delete other dead insns recursively.
12249                              First set the pattern to something that won't use
12250                              any register.  */
12251
12252                           PATTERN (tem) = pc_rtx;
12253
12254                           distribute_notes (REG_NOTES (tem), tem, tem,
12255                                             NULL_RTX, NULL_RTX, NULL_RTX);
12256                           distribute_links (LOG_LINKS (tem));
12257
12258                           PUT_CODE (tem, NOTE);
12259                           NOTE_LINE_NUMBER (tem) = NOTE_INSN_DELETED;
12260                           NOTE_SOURCE_FILE (tem) = 0;
12261
12262 #ifdef HAVE_cc0
12263                           /* Delete the setter too.  */
12264                           if (cc0_setter)
12265                             {
12266                               PATTERN (cc0_setter) = pc_rtx;
12267
12268                               distribute_notes (REG_NOTES (cc0_setter),
12269                                                 cc0_setter, cc0_setter,
12270                                                 NULL_RTX, NULL_RTX, NULL_RTX);
12271                               distribute_links (LOG_LINKS (cc0_setter));
12272
12273                               PUT_CODE (cc0_setter, NOTE);
12274                               NOTE_LINE_NUMBER (cc0_setter)
12275                                 = NOTE_INSN_DELETED;
12276                               NOTE_SOURCE_FILE (cc0_setter) = 0;
12277                             }
12278 #endif
12279                         }
12280                       /* If the register is both set and used here, put the
12281                          REG_DEAD note here, but place a REG_UNUSED note
12282                          here too unless there already is one.  */
12283                       else if (reg_referenced_p (XEXP (note, 0),
12284                                                  PATTERN (tem)))
12285                         {
12286                           place = tem;
12287
12288                           if (! find_regno_note (tem, REG_UNUSED,
12289                                                  REGNO (XEXP (note, 0))))
12290                             REG_NOTES (tem)
12291                               = gen_rtx_EXPR_LIST (REG_UNUSED, XEXP (note, 0),
12292                                                    REG_NOTES (tem));
12293                         }
12294                       else
12295                         {
12296                           PUT_REG_NOTE_KIND (note, REG_UNUSED);
12297
12298                           /*  If there isn't already a REG_UNUSED note, put one
12299                               here.  */
12300                           if (! find_regno_note (tem, REG_UNUSED,
12301                                                  REGNO (XEXP (note, 0))))
12302                             place = tem;
12303                           break;
12304                         }
12305                     }
12306                   else if (reg_referenced_p (XEXP (note, 0), PATTERN (tem))
12307                            || (GET_CODE (tem) == CALL_INSN
12308                                && find_reg_fusage (tem, USE, XEXP (note, 0))))
12309                     {
12310                       place = tem;
12311
12312                       /* If we are doing a 3->2 combination, and we have a
12313                          register which formerly died in i3 and was not used
12314                          by i2, which now no longer dies in i3 and is used in
12315                          i2 but does not die in i2, and place is between i2
12316                          and i3, then we may need to move a link from place to
12317                          i2.  */
12318                       if (i2 && INSN_UID (place) <= max_uid_cuid
12319                           && INSN_CUID (place) > INSN_CUID (i2)
12320                           && from_insn
12321                           && INSN_CUID (from_insn) > INSN_CUID (i2)
12322                           && reg_referenced_p (XEXP (note, 0), PATTERN (i2)))
12323                         {
12324                           rtx links = LOG_LINKS (place);
12325                           LOG_LINKS (place) = 0;
12326                           distribute_links (links);
12327                         }
12328                       break;
12329                     }
12330
12331                   if (tem == bb->head)
12332                     break;
12333                 }
12334
12335               /* We haven't found an insn for the death note and it
12336                  is still a REG_DEAD note, but we have hit the beginning
12337                  of the block.  If the existing life info says the reg
12338                  was dead, there's nothing left to do.  Otherwise, we'll
12339                  need to do a global life update after combine.  */
12340               if (REG_NOTE_KIND (note) == REG_DEAD && place == 0
12341                   && REGNO_REG_SET_P (bb->global_live_at_start,
12342                                       REGNO (XEXP (note, 0))))
12343                 {
12344                   SET_BIT (refresh_blocks, this_basic_block);
12345                   need_refresh = 1;
12346                 }
12347             }
12348
12349           /* If the register is set or already dead at PLACE, we needn't do
12350              anything with this note if it is still a REG_DEAD note.
12351              We can here if it is set at all, not if is it totally replace,
12352              which is what `dead_or_set_p' checks, so also check for it being
12353              set partially.  */
12354
12355           if (place && REG_NOTE_KIND (note) == REG_DEAD)
12356             {
12357               unsigned int regno = REGNO (XEXP (note, 0));
12358
12359               /* Similarly, if the instruction on which we want to place
12360                  the note is a noop, we'll need do a global live update
12361                  after we remove them in delete_noop_moves.  */
12362               if (noop_move_p (place))
12363                 {
12364                   SET_BIT (refresh_blocks, this_basic_block);
12365                   need_refresh = 1;
12366                 }
12367
12368               if (dead_or_set_p (place, XEXP (note, 0))
12369                   || reg_bitfield_target_p (XEXP (note, 0), PATTERN (place)))
12370                 {
12371                   /* Unless the register previously died in PLACE, clear
12372                      reg_last_death.  [I no longer understand why this is
12373                      being done.] */
12374                   if (reg_last_death[regno] != place)
12375                     reg_last_death[regno] = 0;
12376                   place = 0;
12377                 }
12378               else
12379                 reg_last_death[regno] = place;
12380
12381               /* If this is a death note for a hard reg that is occupying
12382                  multiple registers, ensure that we are still using all
12383                  parts of the object.  If we find a piece of the object
12384                  that is unused, we must arrange for an appropriate REG_DEAD
12385                  note to be added for it.  However, we can't just emit a USE
12386                  and tag the note to it, since the register might actually
12387                  be dead; so we recourse, and the recursive call then finds
12388                  the previous insn that used this register.  */
12389
12390               if (place && regno < FIRST_PSEUDO_REGISTER
12391                   && HARD_REGNO_NREGS (regno, GET_MODE (XEXP (note, 0))) > 1)
12392                 {
12393                   unsigned int endregno
12394                     = regno + HARD_REGNO_NREGS (regno,
12395                                                 GET_MODE (XEXP (note, 0)));
12396                   int all_used = 1;
12397                   unsigned int i;
12398
12399                   for (i = regno; i < endregno; i++)
12400                     if ((! refers_to_regno_p (i, i + 1, PATTERN (place), 0)
12401                          && ! find_regno_fusage (place, USE, i))
12402                         || dead_or_set_regno_p (place, i))
12403                       all_used = 0;
12404
12405                   if (! all_used)
12406                     {
12407                       /* Put only REG_DEAD notes for pieces that are
12408                          not already dead or set.  */
12409
12410                       for (i = regno; i < endregno;
12411                            i += HARD_REGNO_NREGS (i, reg_raw_mode[i]))
12412                         {
12413                           rtx piece = gen_rtx_REG (reg_raw_mode[i], i);
12414                           basic_block bb = BASIC_BLOCK (this_basic_block);
12415
12416                           if (! dead_or_set_p (place, piece)
12417                               && ! reg_bitfield_target_p (piece,
12418                                                           PATTERN (place)))
12419                             {
12420                               rtx new_note
12421                                 = gen_rtx_EXPR_LIST (REG_DEAD, piece, NULL_RTX);
12422
12423                               distribute_notes (new_note, place, place,
12424                                                 NULL_RTX, NULL_RTX, NULL_RTX);
12425                             }
12426                           else if (! refers_to_regno_p (i, i + 1,
12427                                                         PATTERN (place), 0)
12428                                    && ! find_regno_fusage (place, USE, i))
12429                             for (tem = PREV_INSN (place); ;
12430                                  tem = PREV_INSN (tem))
12431                               {
12432                                 if (! INSN_P (tem))
12433                                   {
12434                                     if (tem == bb->head)
12435                                       {
12436                                         SET_BIT (refresh_blocks,
12437                                                  this_basic_block);
12438                                         need_refresh = 1;
12439                                         break;
12440                                       }
12441                                     continue;
12442                                   }
12443                                 if (dead_or_set_p (tem, piece)
12444                                     || reg_bitfield_target_p (piece,
12445                                                               PATTERN (tem)))
12446                                   {
12447                                     REG_NOTES (tem)
12448                                       = gen_rtx_EXPR_LIST (REG_UNUSED, piece,
12449                                                            REG_NOTES (tem));
12450                                     break;
12451                                   }
12452                               }
12453
12454                         }
12455
12456                       place = 0;
12457                     }
12458                 }
12459             }
12460           break;
12461
12462         default:
12463           /* Any other notes should not be present at this point in the
12464              compilation.  */
12465           abort ();
12466         }
12467
12468       if (place)
12469         {
12470           XEXP (note, 1) = REG_NOTES (place);
12471           REG_NOTES (place) = note;
12472         }
12473       else if ((REG_NOTE_KIND (note) == REG_DEAD
12474                 || REG_NOTE_KIND (note) == REG_UNUSED)
12475                && GET_CODE (XEXP (note, 0)) == REG)
12476         REG_N_DEATHS (REGNO (XEXP (note, 0)))--;
12477
12478       if (place2)
12479         {
12480           if ((REG_NOTE_KIND (note) == REG_DEAD
12481                || REG_NOTE_KIND (note) == REG_UNUSED)
12482               && GET_CODE (XEXP (note, 0)) == REG)
12483             REG_N_DEATHS (REGNO (XEXP (note, 0)))++;
12484
12485           REG_NOTES (place2) = gen_rtx_fmt_ee (GET_CODE (note),
12486                                                REG_NOTE_KIND (note),
12487                                                XEXP (note, 0),
12488                                                REG_NOTES (place2));
12489         }
12490     }
12491 }
12492 \f
12493 /* Similarly to above, distribute the LOG_LINKS that used to be present on
12494    I3, I2, and I1 to new locations.  This is also called in one case to
12495    add a link pointing at I3 when I3's destination is changed.  */
12496
12497 static void
12498 distribute_links (links)
12499      rtx links;
12500 {
12501   rtx link, next_link;
12502
12503   for (link = links; link; link = next_link)
12504     {
12505       rtx place = 0;
12506       rtx insn;
12507       rtx set, reg;
12508
12509       next_link = XEXP (link, 1);
12510
12511       /* If the insn that this link points to is a NOTE or isn't a single
12512          set, ignore it.  In the latter case, it isn't clear what we
12513          can do other than ignore the link, since we can't tell which
12514          register it was for.  Such links wouldn't be used by combine
12515          anyway.
12516
12517          It is not possible for the destination of the target of the link to
12518          have been changed by combine.  The only potential of this is if we
12519          replace I3, I2, and I1 by I3 and I2.  But in that case the
12520          destination of I2 also remains unchanged.  */
12521
12522       if (GET_CODE (XEXP (link, 0)) == NOTE
12523           || (set = single_set (XEXP (link, 0))) == 0)
12524         continue;
12525
12526       reg = SET_DEST (set);
12527       while (GET_CODE (reg) == SUBREG || GET_CODE (reg) == ZERO_EXTRACT
12528              || GET_CODE (reg) == SIGN_EXTRACT
12529              || GET_CODE (reg) == STRICT_LOW_PART)
12530         reg = XEXP (reg, 0);
12531
12532       /* A LOG_LINK is defined as being placed on the first insn that uses
12533          a register and points to the insn that sets the register.  Start
12534          searching at the next insn after the target of the link and stop
12535          when we reach a set of the register or the end of the basic block.
12536
12537          Note that this correctly handles the link that used to point from
12538          I3 to I2.  Also note that not much searching is typically done here
12539          since most links don't point very far away.  */
12540
12541       for (insn = NEXT_INSN (XEXP (link, 0));
12542            (insn && (this_basic_block == n_basic_blocks - 1
12543                      || BLOCK_HEAD (this_basic_block + 1) != insn));
12544            insn = NEXT_INSN (insn))
12545         if (INSN_P (insn) && reg_overlap_mentioned_p (reg, PATTERN (insn)))
12546           {
12547             if (reg_referenced_p (reg, PATTERN (insn)))
12548               place = insn;
12549             break;
12550           }
12551         else if (GET_CODE (insn) == CALL_INSN
12552                  && find_reg_fusage (insn, USE, reg))
12553           {
12554             place = insn;
12555             break;
12556           }
12557
12558       /* If we found a place to put the link, place it there unless there
12559          is already a link to the same insn as LINK at that point.  */
12560
12561       if (place)
12562         {
12563           rtx link2;
12564
12565           for (link2 = LOG_LINKS (place); link2; link2 = XEXP (link2, 1))
12566             if (XEXP (link2, 0) == XEXP (link, 0))
12567               break;
12568
12569           if (link2 == 0)
12570             {
12571               XEXP (link, 1) = LOG_LINKS (place);
12572               LOG_LINKS (place) = link;
12573
12574               /* Set added_links_insn to the earliest insn we added a
12575                  link to.  */
12576               if (added_links_insn == 0
12577                   || INSN_CUID (added_links_insn) > INSN_CUID (place))
12578                 added_links_insn = place;
12579             }
12580         }
12581     }
12582 }
12583 \f
12584 /* Compute INSN_CUID for INSN, which is an insn made by combine.  */
12585
12586 static int
12587 insn_cuid (insn)
12588      rtx insn;
12589 {
12590   while (insn != 0 && INSN_UID (insn) > max_uid_cuid
12591          && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == USE)
12592     insn = NEXT_INSN (insn);
12593
12594   if (INSN_UID (insn) > max_uid_cuid)
12595     abort ();
12596
12597   return INSN_CUID (insn);
12598 }
12599 \f
12600 void
12601 dump_combine_stats (file)
12602      FILE *file;
12603 {
12604   fnotice
12605     (file,
12606      ";; Combiner statistics: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n\n",
12607      combine_attempts, combine_merges, combine_extras, combine_successes);
12608 }
12609
12610 void
12611 dump_combine_total_stats (file)
12612      FILE *file;
12613 {
12614   fnotice
12615     (file,
12616      "\n;; Combiner totals: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n",
12617      total_attempts, total_merges, total_extras, total_successes);
12618 }